diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-07-31 00:06:29 -0700 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-08-27 00:58:13 -0700 |
commit | 33f810b2036f13f1b123062a9e5c1794d400ce81 (patch) | |
tree | 370b55026f4bd856e96842f86af631ca2bab3da2 /drivers/net/defxx.h | |
parent | 3cd0999d134235d64b175edd2eb1d46ebc97b377 (diff) |
fddi: Move the FDDI drivers
Move the FDDI drivers into drivers/net/fddi/ and make the
necessary Kconfig and Makefile changes.
CC: "Maciej W. Rozycki" <macro@linux-mips.org>
CC: Christoph Goos <cgoos@syskonnect.de>
CC: <linux@syskonnect.de>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/defxx.h')
-rw-r--r-- | drivers/net/defxx.h | 1801 |
1 files changed, 0 insertions, 1801 deletions
diff --git a/drivers/net/defxx.h b/drivers/net/defxx.h deleted file mode 100644 index 19a6f64df19..00000000000 --- a/drivers/net/defxx.h +++ /dev/null @@ -1,1801 +0,0 @@ -/* - * File Name: - * defxx.h - * - * Copyright Information: - * Copyright Digital Equipment Corporation 1996. - * - * This software may be used and distributed according to the terms of - * the GNU General Public License, incorporated herein by reference. - * - * Abstract: - * Contains all definitions specified by port specification and required - * by the defxx.c driver. - * - * The original author: - * LVS Lawrence V. Stefani <lstefani@yahoo.com> - * - * Maintainers: - * macro Maciej W. Rozycki <macro@linux-mips.org> - * - * Modification History: - * Date Name Description - * 16-Aug-96 LVS Created. - * 09-Sep-96 LVS Added group_prom field. Moved read/write I/O - * macros to DEFXX.C. - * 12-Sep-96 LVS Removed packet request header pointers. - * 04 Aug 2003 macro Converted to the DMA API. - * 23 Oct 2006 macro Big-endian host support. - * 14 Dec 2006 macro TURBOchannel support. - */ - -#ifndef _DEFXX_H_ -#define _DEFXX_H_ - -/* Define basic types for unsigned chars, shorts, longs */ - -typedef u8 PI_UINT8; -typedef u16 PI_UINT16; -typedef u32 PI_UINT32; - -/* Define general structures */ - -typedef struct /* 64-bit counter */ - { - PI_UINT32 ms; - PI_UINT32 ls; - } PI_CNTR; - -typedef struct /* LAN address */ - { - PI_UINT32 lwrd_0; - PI_UINT32 lwrd_1; - } PI_LAN_ADDR; - -typedef struct /* Station ID address */ - { - PI_UINT32 octet_7_4; - PI_UINT32 octet_3_0; - } PI_STATION_ID; - - -/* Define general constants */ - -#define PI_ALIGN_K_DESC_BLK 8192 /* Descriptor block boundary */ -#define PI_ALIGN_K_CONS_BLK 64 /* Consumer block boundary */ -#define PI_ALIGN_K_CMD_REQ_BUFF 128 /* Xmt Command que buffer alignment */ -#define PI_ALIGN_K_CMD_RSP_BUFF 128 /* Rcv Command que buffer alignment */ -#define PI_ALIGN_K_UNSOL_BUFF 128 /* Unsol que buffer alignment */ -#define PI_ALIGN_K_XMT_DATA_BUFF 0 /* Xmt data que buffer alignment */ -#define PI_ALIGN_K_RCV_DATA_BUFF 128 /* Rcv que buffer alignment */ - -/* Define PHY index values */ - -#define PI_PHY_K_S 0 /* Index to S phy */ -#define PI_PHY_K_A 0 /* Index to A phy */ -#define PI_PHY_K_B 1 /* Index to B phy */ -#define PI_PHY_K_MAX 2 /* Max number of phys */ - -/* Define FMC descriptor fields */ - -#define PI_FMC_DESCR_V_SOP 31 -#define PI_FMC_DESCR_V_EOP 30 -#define PI_FMC_DESCR_V_FSC 27 -#define PI_FMC_DESCR_V_FSB_ERROR 26 -#define PI_FMC_DESCR_V_FSB_ADDR_RECOG 25 -#define PI_FMC_DESCR_V_FSB_ADDR_COPIED 24 -#define PI_FMC_DESCR_V_FSB 22 -#define PI_FMC_DESCR_V_RCC_FLUSH 21 -#define PI_FMC_DESCR_V_RCC_CRC 20 -#define PI_FMC_DESCR_V_RCC_RRR 17 -#define PI_FMC_DESCR_V_RCC_DD 15 -#define PI_FMC_DESCR_V_RCC_SS 13 -#define PI_FMC_DESCR_V_RCC 13 -#define PI_FMC_DESCR_V_LEN 0 - -#define PI_FMC_DESCR_M_SOP 0x80000000 -#define PI_FMC_DESCR_M_EOP 0x40000000 -#define PI_FMC_DESCR_M_FSC 0x38000000 -#define PI_FMC_DESCR_M_FSB_ERROR 0x04000000 -#define PI_FMC_DESCR_M_FSB_ADDR_RECOG 0x02000000 -#define PI_FMC_DESCR_M_FSB_ADDR_COPIED 0x01000000 -#define PI_FMC_DESCR_M_FSB 0x07C00000 -#define PI_FMC_DESCR_M_RCC_FLUSH 0x00200000 -#define PI_FMC_DESCR_M_RCC_CRC 0x00100000 -#define PI_FMC_DESCR_M_RCC_RRR 0x000E0000 -#define PI_FMC_DESCR_M_RCC_DD 0x00018000 -#define PI_FMC_DESCR_M_RCC_SS 0x00006000 -#define PI_FMC_DESCR_M_RCC 0x003FE000 -#define PI_FMC_DESCR_M_LEN 0x00001FFF - -#define PI_FMC_DESCR_K_RCC_FMC_INT_ERR 0x01AA - -#define PI_FMC_DESCR_K_RRR_SUCCESS 0x00 -#define PI_FMC_DESCR_K_RRR_SA_MATCH 0x01 -#define PI_FMC_DESCR_K_RRR_DA_MATCH 0x02 -#define PI_FMC_DESCR_K_RRR_FMC_ABORT 0x03 -#define PI_FMC_DESCR_K_RRR_LENGTH_BAD 0x04 -#define PI_FMC_DESCR_K_RRR_FRAGMENT 0x05 -#define PI_FMC_DESCR_K_RRR_FORMAT_ERR 0x06 -#define PI_FMC_DESCR_K_RRR_MAC_RESET 0x07 - -#define PI_FMC_DESCR_K_DD_NO_MATCH 0x0 -#define PI_FMC_DESCR_K_DD_PROMISCUOUS 0x1 -#define PI_FMC_DESCR_K_DD_CAM_MATCH 0x2 -#define PI_FMC_DESCR_K_DD_LOCAL_MATCH 0x3 - -#define PI_FMC_DESCR_K_SS_NO_MATCH 0x0 -#define PI_FMC_DESCR_K_SS_BRIDGE_MATCH 0x1 -#define PI_FMC_DESCR_K_SS_NOT_POSSIBLE 0x2 -#define PI_FMC_DESCR_K_SS_LOCAL_MATCH 0x3 - -/* Define some max buffer sizes */ - -#define PI_CMD_REQ_K_SIZE_MAX 512 -#define PI_CMD_RSP_K_SIZE_MAX 512 -#define PI_UNSOL_K_SIZE_MAX 512 -#define PI_SMT_HOST_K_SIZE_MAX 4608 /* 4 1/2 K */ -#define PI_RCV_DATA_K_SIZE_MAX 4608 /* 4 1/2 K */ -#define PI_XMT_DATA_K_SIZE_MAX 4608 /* 4 1/2 K */ - -/* Define adapter states */ - -#define PI_STATE_K_RESET 0 -#define PI_STATE_K_UPGRADE 1 -#define PI_STATE_K_DMA_UNAVAIL 2 -#define PI_STATE_K_DMA_AVAIL 3 -#define PI_STATE_K_LINK_AVAIL 4 -#define PI_STATE_K_LINK_UNAVAIL 5 -#define PI_STATE_K_HALTED 6 -#define PI_STATE_K_RING_MEMBER 7 -#define PI_STATE_K_NUMBER 8 - -/* Define codes for command type */ - -#define PI_CMD_K_START 0x00 -#define PI_CMD_K_FILTERS_SET 0x01 -#define PI_CMD_K_FILTERS_GET 0x02 -#define PI_CMD_K_CHARS_SET 0x03 -#define PI_CMD_K_STATUS_CHARS_GET 0x04 -#define PI_CMD_K_CNTRS_GET 0x05 -#define PI_CMD_K_CNTRS_SET 0x06 -#define PI_CMD_K_ADDR_FILTER_SET 0x07 -#define PI_CMD_K_ADDR_FILTER_GET 0x08 -#define PI_CMD_K_ERROR_LOG_CLEAR 0x09 -#define PI_CMD_K_ERROR_LOG_GET 0x0A -#define PI_CMD_K_FDDI_MIB_GET 0x0B -#define PI_CMD_K_DEC_EXT_MIB_GET 0x0C -#define PI_CMD_K_DEVICE_SPECIFIC_GET 0x0D -#define PI_CMD_K_SNMP_SET 0x0E -#define PI_CMD_K_UNSOL_TEST 0x0F -#define PI_CMD_K_SMT_MIB_GET 0x10 -#define PI_CMD_K_SMT_MIB_SET 0x11 -#define PI_CMD_K_MAX 0x11 /* Must match last */ - -/* Define item codes for Chars_Set and Filters_Set commands */ - -#define PI_ITEM_K_EOL 0x00 /* End-of-Item list */ -#define PI_ITEM_K_T_REQ 0x01 /* DECnet T_REQ */ -#define PI_ITEM_K_TVX 0x02 /* DECnet TVX */ -#define PI_ITEM_K_RESTRICTED_TOKEN 0x03 /* DECnet Restricted Token */ -#define PI_ITEM_K_LEM_THRESHOLD 0x04 /* DECnet LEM Threshold */ -#define PI_ITEM_K_RING_PURGER 0x05 /* DECnet Ring Purger Enable */ -#define PI_ITEM_K_CNTR_INTERVAL 0x06 /* Chars_Set */ -#define PI_ITEM_K_IND_GROUP_PROM 0x07 /* Filters_Set */ -#define PI_ITEM_K_GROUP_PROM 0x08 /* Filters_Set */ -#define PI_ITEM_K_BROADCAST 0x09 /* Filters_Set */ -#define PI_ITEM_K_SMT_PROM 0x0A /* Filters_Set */ -#define PI_ITEM_K_SMT_USER 0x0B /* Filters_Set */ -#define PI_ITEM_K_RESERVED 0x0C /* Filters_Set */ -#define PI_ITEM_K_IMPLEMENTOR 0x0D /* Filters_Set */ -#define PI_ITEM_K_LOOPBACK_MODE 0x0E /* Chars_Set */ -#define PI_ITEM_K_CONFIG_POLICY 0x10 /* SMTConfigPolicy */ -#define PI_ITEM_K_CON_POLICY 0x11 /* SMTConnectionPolicy */ -#define PI_ITEM_K_T_NOTIFY 0x12 /* SMTTNotify */ -#define PI_ITEM_K_STATION_ACTION 0x13 /* SMTStationAction */ -#define PI_ITEM_K_MAC_PATHS_REQ 0x15 /* MACPathsRequested */ -#define PI_ITEM_K_MAC_ACTION 0x17 /* MACAction */ -#define PI_ITEM_K_CON_POLICIES 0x18 /* PORTConnectionPolicies */ -#define PI_ITEM_K_PORT_PATHS_REQ 0x19 /* PORTPathsRequested */ -#define PI_ITEM_K_MAC_LOOP_TIME 0x1A /* PORTMACLoopTime */ -#define PI_ITEM_K_TB_MAX 0x1B /* PORTTBMax */ -#define PI_ITEM_K_LER_CUTOFF 0x1C /* PORTLerCutoff */ -#define PI_ITEM_K_LER_ALARM 0x1D /* PORTLerAlarm */ -#define PI_ITEM_K_PORT_ACTION 0x1E /* PORTAction */ -#define PI_ITEM_K_FLUSH_TIME 0x20 /* Chars_Set */ -#define PI_ITEM_K_MAC_T_REQ 0x29 /* MACTReq */ -#define PI_ITEM_K_EMAC_RING_PURGER 0x2A /* eMACRingPurgerEnable */ -#define PI_ITEM_K_EMAC_RTOKEN_TIMEOUT 0x2B /* eMACRestrictedTokenTimeout */ -#define PI_ITEM_K_FDX_ENB_DIS 0x2C /* eFDXEnable */ -#define PI_ITEM_K_MAX 0x2C /* Must equal high item */ - -/* Values for some of the items */ - -#define PI_K_FALSE 0 /* Generic false */ -#define PI_K_TRUE 1 /* Generic true */ - -#define PI_SNMP_K_TRUE 1 /* SNMP true/false values */ -#define PI_SNMP_K_FALSE 2 - -#define PI_FSTATE_K_BLOCK 0 /* Filter State */ -#define PI_FSTATE_K_PASS 1 - -/* Define command return codes */ - -#define PI_RSP_K_SUCCESS 0x00 -#define PI_RSP_K_FAILURE 0x01 -#define PI_RSP_K_WARNING 0x02 -#define PI_RSP_K_LOOP_MODE_BAD 0x03 -#define PI_RSP_K_ITEM_CODE_BAD 0x04 -#define PI_RSP_K_TVX_BAD 0x05 -#define PI_RSP_K_TREQ_BAD 0x06 -#define PI_RSP_K_TOKEN_BAD 0x07 -#define PI_RSP_K_NO_EOL 0x0C -#define PI_RSP_K_FILTER_STATE_BAD 0x0D -#define PI_RSP_K_CMD_TYPE_BAD 0x0E -#define PI_RSP_K_ADAPTER_STATE_BAD 0x0F -#define PI_RSP_K_RING_PURGER_BAD 0x10 -#define PI_RSP_K_LEM_THRESHOLD_BAD 0x11 -#define PI_RSP_K_LOOP_NOT_SUPPORTED 0x12 -#define PI_RSP_K_FLUSH_TIME_BAD 0x13 -#define PI_RSP_K_NOT_IMPLEMENTED 0x14 -#define PI_RSP_K_CONFIG_POLICY_BAD 0x15 -#define PI_RSP_K_STATION_ACTION_BAD 0x16 -#define PI_RSP_K_MAC_ACTION_BAD 0x17 -#define PI_RSP_K_CON_POLICIES_BAD 0x18 -#define PI_RSP_K_MAC_LOOP_TIME_BAD 0x19 -#define PI_RSP_K_TB_MAX_BAD 0x1A -#define PI_RSP_K_LER_CUTOFF_BAD 0x1B -#define PI_RSP_K_LER_ALARM_BAD 0x1C -#define PI_RSP_K_MAC_PATHS_REQ_BAD 0x1D -#define PI_RSP_K_MAC_T_REQ_BAD 0x1E -#define PI_RSP_K_EMAC_RING_PURGER_BAD 0x1F -#define PI_RSP_K_EMAC_RTOKEN_TIME_BAD 0x20 -#define PI_RSP_K_NO_SUCH_ENTRY 0x21 -#define PI_RSP_K_T_NOTIFY_BAD 0x22 -#define PI_RSP_K_TR_MAX_EXP_BAD 0x23 -#define PI_RSP_K_MAC_FRM_ERR_THR_BAD 0x24 -#define PI_RSP_K_MAX_T_REQ_BAD 0x25 -#define PI_RSP_K_FDX_ENB_DIS_BAD 0x26 -#define PI_RSP_K_ITEM_INDEX_BAD 0x27 -#define PI_RSP_K_PORT_ACTION_BAD 0x28 - -/* Commonly used structures */ - -typedef struct /* Item list */ - { - PI_UINT32 item_code; - PI_UINT32 value; - } PI_ITEM_LIST; - -typedef struct /* Response header */ - { - PI_UINT32 reserved; - PI_UINT32 cmd_type; - PI_UINT32 status; - } PI_RSP_HEADER; - - -/* Start Command */ - -typedef struct - { - PI_UINT32 cmd_type; - } PI_CMD_START_REQ; - -/* Start Response */ - -typedef struct - { - PI_RSP_HEADER header; - } PI_CMD_START_RSP; - -/* Filters_Set Request */ - -#define PI_CMD_FILTERS_SET_K_ITEMS_MAX 63 /* Fits in a 512 byte buffer */ - -typedef struct - { - PI_UINT32 cmd_type; - PI_ITEM_LIST item[PI_CMD_FILTERS_SET_K_ITEMS_MAX]; - } PI_CMD_FILTERS_SET_REQ; - -/* Filters_Set Response */ - -typedef struct - { - PI_RSP_HEADER header; - } PI_CMD_FILTERS_SET_RSP; - -/* Filters_Get Request */ - -typedef struct - { - PI_UINT32 cmd_type; - } PI_CMD_FILTERS_GET_REQ; - -/* Filters_Get Response */ - -typedef struct - { - PI_RSP_HEADER header; - PI_UINT32 ind_group_prom; - PI_UINT32 group_prom; - PI_UINT32 broadcast_all; - PI_UINT32 smt_all; - PI_UINT32 smt_user; - PI_UINT32 reserved_all; - PI_UINT32 implementor_all; - } PI_CMD_FILTERS_GET_RSP; - - -/* Chars_Set Request */ - -#define PI_CMD_CHARS_SET_K_ITEMS_MAX 42 /* Fits in a 512 byte buffer */ - -typedef struct - { - PI_UINT32 cmd_type; - struct /* Item list */ - { - PI_UINT32 item_code; - PI_UINT32 value; - PI_UINT32 item_index; - } item[PI_CMD_CHARS_SET_K_ITEMS_MAX]; - } PI_CMD_CHARS_SET_REQ; - -/* Chars_Set Response */ - -typedef struct - { - PI_RSP_HEADER header; - } PI_CMD_CHARS_SET_RSP; - - -/* SNMP_Set Request */ - -#define PI_CMD_SNMP_SET_K_ITEMS_MAX 42 /* Fits in a 512 byte buffer */ - -typedef struct - { - PI_UINT32 cmd_type; - struct /* Item list */ - { - PI_UINT32 item_code; - PI_UINT32 value; - PI_UINT32 item_index; - } item[PI_CMD_SNMP_SET_K_ITEMS_MAX]; - } PI_CMD_SNMP_SET_REQ; - -/* SNMP_Set Response */ - -typedef struct - { - PI_RSP_HEADER header; - } PI_CMD_SNMP_SET_RSP; - - -/* SMT_MIB_Set Request */ - -#define PI_CMD_SMT_MIB_SET_K_ITEMS_MAX 42 /* Max number of items */ - -typedef struct - { - PI_UINT32 cmd_type; - struct - { - PI_UINT32 item_code; - PI_UINT32 value; - PI_UINT32 item_index; - } item[PI_CMD_SMT_MIB_SET_K_ITEMS_MAX]; - } PI_CMD_SMT_MIB_SET_REQ; - -/* SMT_MIB_Set Response */ - -typedef struct - { - PI_RSP_HEADER header; - } PI_CMD_SMT_MIB_SET_RSP; - -/* SMT_MIB_Get Request */ - -typedef struct - { - PI_UINT32 cmd_type; - } PI_CMD_SMT_MIB_GET_REQ; - -/* SMT_MIB_Get Response */ - -typedef struct /* Refer to ANSI FDDI SMT Rev. 7.3 */ - { - PI_RSP_HEADER header; - - /* SMT GROUP */ - - PI_STATION_ID smt_station_id; - PI_UINT32 smt_op_version_id; - PI_UINT32 smt_hi_version_id; - PI_UINT32 smt_lo_version_id; - PI_UINT32 smt_user_data[8]; - PI_UINT32 smt_mib_version_id; - PI_UINT32 smt_mac_ct; - PI_UINT32 smt_non_master_ct; - PI_UINT32 smt_master_ct; - PI_UINT32 smt_available_paths; - PI_UINT32 smt_config_capabilities; - PI_UINT32 smt_config_policy; - PI_UINT32 smt_connection_policy; - PI_UINT32 smt_t_notify; - PI_UINT32 smt_stat_rpt_policy; - PI_UINT32 smt_trace_max_expiration; - PI_UINT32 smt_bypass_present; - PI_UINT32 smt_ecm_state; - PI_UINT32 smt_cf_state; - PI_UINT32 smt_remote_disconnect_flag; - PI_UINT32 smt_station_status; - PI_UINT32 smt_peer_wrap_flag; - PI_CNTR smt_msg_time_stamp; - PI_CNTR smt_transition_time_stamp; - - /* MAC GROUP */ - - PI_UINT32 mac_frame_status_functions; - PI_UINT32 mac_t_max_capability; - PI_UINT32 mac_tvx_capability; - PI_UINT32 mac_available_paths; - PI_UINT32 mac_current_path; - PI_LAN_ADDR mac_upstream_nbr; - PI_LAN_ADDR mac_downstream_nbr; - PI_LAN_ADDR mac_old_upstream_nbr; - PI_LAN_ADDR mac_old_downstream_nbr; - PI_UINT32 mac_dup_address_test; - PI_UINT32 mac_requested_paths; - PI_UINT32 mac_downstream_port_type; - PI_LAN_ADDR mac_smt_address; - PI_UINT32 mac_t_req; - PI_UINT32 mac_t_neg; - PI_UINT32 mac_t_max; - PI_UINT32 mac_tvx_value; - PI_UINT32 mac_frame_error_threshold; - PI_UINT32 mac_frame_error_ratio; - PI_UINT32 mac_rmt_state; - PI_UINT32 mac_da_flag; - PI_UINT32 mac_unda_flag; - PI_UINT32 mac_frame_error_flag; - PI_UINT32 mac_ma_unitdata_available; - PI_UINT32 mac_hardware_present; - PI_UINT32 mac_ma_unitdata_enable; - - /* PATH GROUP */ - - PI_UINT32 path_configuration[8]; - PI_UINT32 path_tvx_lower_bound; - PI_UINT32 path_t_max_lower_bound; - PI_UINT32 path_max_t_req; - - /* PORT GROUP */ - - PI_UINT32 port_my_type[PI_PHY_K_MAX]; - PI_UINT32 port_neighbor_type[PI_PHY_K_MAX]; - PI_UINT32 port_connection_policies[PI_PHY_K_MAX]; - PI_UINT32 port_mac_indicated[PI_PHY_K_MAX]; - PI_UINT32 port_current_path[PI_PHY_K_MAX]; - PI_UINT32 port_requested_paths[PI_PHY_K_MAX]; - PI_UINT32 port_mac_placement[PI_PHY_K_MAX]; - PI_UINT32 port_available_paths[PI_PHY_K_MAX]; - PI_UINT32 port_pmd_class[PI_PHY_K_MAX]; - PI_UINT32 port_connection_capabilities[PI_PHY_K_MAX]; - PI_UINT32 port_bs_flag[PI_PHY_K_MAX]; - PI_UINT32 port_ler_estimate[PI_PHY_K_MAX]; - PI_UINT32 port_ler_cutoff[PI_PHY_K_MAX]; - PI_UINT32 port_ler_alarm[PI_PHY_K_MAX]; - PI_UINT32 port_connect_state[PI_PHY_K_MAX]; - PI_UINT32 port_pcm_state[PI_PHY_K_MAX]; - PI_UINT32 port_pc_withhold[PI_PHY_K_MAX]; - PI_UINT32 port_ler_flag[PI_PHY_K_MAX]; - PI_UINT32 port_hardware_present[PI_PHY_K_MAX]; - - /* GROUP for things that were added later, so must be at the end. */ - - PI_CNTR path_ring_latency; - - } PI_CMD_SMT_MIB_GET_RSP; - - -/* - * Item and group code definitions for SMT 7.3 mandatory objects. These - * definitions are to be used as appropriate in SMT_MIB_SET commands and - * certain host-sent SMT frames such as PMF Get and Set requests. The - * codes have been taken from the MIB summary section of ANSI SMT 7.3. - */ - -#define PI_GRP_K_SMT_STATION_ID 0x100A -#define PI_ITEM_K_SMT_STATION_ID 0x100B -#define PI_ITEM_K_SMT_OP_VERS_ID 0x100D -#define PI_ITEM_K_SMT_HI_VERS_ID 0x100E -#define PI_ITEM_K_SMT_LO_VERS_ID 0x100F -#define PI_ITEM_K_SMT_USER_DATA 0x1011 -#define PI_ITEM_K_SMT_MIB_VERS_ID 0x1012 - -#define PI_GRP_K_SMT_STATION_CONFIG 0x1014 -#define PI_ITEM_K_SMT_MAC_CT 0x1015 -#define PI_ITEM_K_SMT_NON_MASTER_CT 0x1016 -#define PI_ITEM_K_SMT_MASTER_CT 0x1017 -#define PI_ITEM_K_SMT_AVAIL_PATHS 0x1018 -#define PI_ITEM_K_SMT_CONFIG_CAPS 0x1019 -#define PI_ITEM_K_SMT_CONFIG_POL 0x101A -#define PI_ITEM_K_SMT_CONN_POL 0x101B -#define PI_ITEM_K_SMT_T_NOTIFY 0x101D -#define PI_ITEM_K_SMT_STAT_POL 0x101E -#define PI_ITEM_K_SMT_TR_MAX_EXP 0x101F -#define PI_ITEM_K_SMT_PORT_INDEXES 0x1020 -#define PI_ITEM_K_SMT_MAC_INDEXES 0x1021 -#define PI_ITEM_K_SMT_BYPASS_PRESENT 0x1022 - -#define PI_GRP_K_SMT_STATUS 0x1028 -#define PI_ITEM_K_SMT_ECM_STATE 0x1029 -#define PI_ITEM_K_SMT_CF_STATE 0x102A -#define PI_ITEM_K_SMT_REM_DISC_FLAG 0x102C -#define PI_ITEM_K_SMT_STATION_STATUS 0x102D -#define PI_ITEM_K_SMT_PEER_WRAP_FLAG 0x102E - -#define PI_GRP_K_SMT_MIB_OPERATION 0x1032 -#define PI_ITEM_K_SMT_MSG_TIME_STAMP 0x1033 -#define PI_ITEM_K_SMT_TRN_TIME_STAMP 0x1034 - -#define PI_ITEM_K_SMT_STATION_ACT 0x103C - -#define PI_GRP_K_MAC_CAPABILITIES 0x200A -#define PI_ITEM_K_MAC_FRM_STAT_FUNC 0x200B -#define PI_ITEM_K_MAC_T_MAX_CAP 0x200D -#define PI_ITEM_K_MAC_TVX_CAP 0x200E - -#define PI_GRP_K_MAC_CONFIG 0x2014 -#define PI_ITEM_K_MAC_AVAIL_PATHS 0x2016 -#define PI_ITEM_K_MAC_CURRENT_PATH 0x2017 -#define PI_ITEM_K_MAC_UP_NBR 0x2018 -#define PI_ITEM_K_MAC_DOWN_NBR 0x2019 -#define PI_ITEM_K_MAC_OLD_UP_NBR 0x201A -#define PI_ITEM_K_MAC_OLD_DOWN_NBR 0x201B -#define PI_ITEM_K_MAC_DUP_ADDR_TEST 0x201D -#define PI_ITEM_K_MAC_REQ_PATHS 0x2020 -#define PI_ITEM_K_MAC_DOWN_PORT_TYPE 0x2021 -#define PI_ITEM_K_MAC_INDEX 0x2022 - -#define PI_GRP_K_MAC_ADDRESS 0x2028 -#define PI_ITEM_K_MAC_SMT_ADDRESS 0x2029 - -#define PI_GRP_K_MAC_OPERATION 0x2032 -#define PI_ITEM_K_MAC_TREQ 0x2033 -#define PI_ITEM_K_MAC_TNEG 0x2034 -#define PI_ITEM_K_MAC_TMAX 0x2035 -#define PI_ITEM_K_MAC_TVX_VALUE 0x2036 - -#define PI_GRP_K_MAC_COUNTERS 0x2046 -#define PI_ITEM_K_MAC_FRAME_CT 0x2047 -#define PI_ITEM_K_MAC_COPIED_CT 0x2048 -#define PI_ITEM_K_MAC_TRANSMIT_CT 0x2049 -#define PI_ITEM_K_MAC_ERROR_CT 0x2051 -#define PI_ITEM_K_MAC_LOST_CT 0x2052 - -#define PI_GRP_K_MAC_FRM_ERR_COND 0x205A -#define PI_ITEM_K_MAC_FRM_ERR_THR 0x205F -#define PI_ITEM_K_MAC_FRM_ERR_RAT 0x2060 - -#define PI_GRP_K_MAC_STATUS 0x206E -#define PI_ITEM_K_MAC_RMT_STATE 0x206F -#define PI_ITEM_K_MAC_DA_FLAG 0x2070 -#define PI_ITEM_K_MAC_UNDA_FLAG 0x2071 -#define PI_ITEM_K_MAC_FRM_ERR_FLAG 0x2072 -#define PI_ITEM_K_MAC_MA_UNIT_AVAIL 0x2074 -#define PI_ITEM_K_MAC_HW_PRESENT 0x2075 -#define PI_ITEM_K_MAC_MA_UNIT_ENAB 0x2076 - -#define PI_GRP_K_PATH_CONFIG 0x320A -#define PI_ITEM_K_PATH_INDEX 0x320B -#define PI_ITEM_K_PATH_CONFIGURATION 0x3212 -#define PI_ITEM_K_PATH_TVX_LB 0x3215 -#define PI_ITEM_K_PATH_T_MAX_LB 0x3216 -#define PI_ITEM_K_PATH_MAX_T_REQ 0x3217 - -#define PI_GRP_K_PORT_CONFIG 0x400A -#define PI_ITEM_K_PORT_MY_TYPE 0x400C -#define PI_ITEM_K_PORT_NBR_TYPE 0x400D -#define PI_ITEM_K_PORT_CONN_POLS 0x400E -#define PI_ITEM_K_PORT_MAC_INDICATED 0x400F -#define PI_ITEM_K_PORT_CURRENT_PATH 0x4010 -#define PI_ITEM_K_PORT_REQ_PATHS 0x4011 -#define PI_ITEM_K_PORT_MAC_PLACEMENT 0x4012 -#define PI_ITEM_K_PORT_AVAIL_PATHS 0x4013 -#define PI_ITEM_K_PORT_PMD_CLASS 0x4016 -#define PI_ITEM_K_PORT_CONN_CAPS 0x4017 -#define PI_ITEM_K_PORT_INDEX 0x401D - -#define PI_GRP_K_PORT_OPERATION 0x401E -#define PI_ITEM_K_PORT_BS_FLAG 0x4021 - -#define PI_GRP_K_PORT_ERR_CNTRS 0x4028 -#define PI_ITEM_K_PORT_LCT_FAIL_CT 0x402A - -#define PI_GRP_K_PORT_LER 0x4032 -#define PI_ITEM_K_PORT_LER_ESTIMATE 0x4033 -#define PI_ITEM_K_PORT_LEM_REJ_CT 0x4034 -#define PI_ITEM_K_PORT_LEM_CT 0x4035 -#define PI_ITEM_K_PORT_LER_CUTOFF 0x403A -#define PI_ITEM_K_PORT_LER_ALARM 0x403B - -#define PI_GRP_K_PORT_STATUS 0x403C -#define PI_ITEM_K_PORT_CONNECT_STATE 0x403D -#define PI_ITEM_K_PORT_PCM_STATE 0x403E -#define PI_ITEM_K_PORT_PC_WITHHOLD 0x403F -#define PI_ITEM_K_PORT_LER_FLAG 0x4040 -#define PI_ITEM_K_PORT_HW_PRESENT 0x4041 - -#define PI_ITEM_K_PORT_ACT 0x4046 - -/* Addr_Filter_Set Request */ - -#define PI_CMD_ADDR_FILTER_K_SIZE 62 - -typedef struct - { - PI_UINT32 cmd_type; - PI_LAN_ADDR entry[PI_CMD_ADDR_FILTER_K_SIZE]; - } PI_CMD_ADDR_FILTER_SET_REQ; - -/* Addr_Filter_Set Response */ - -typedef struct - { - PI_RSP_HEADER header; - } PI_CMD_ADDR_FILTER_SET_RSP; - -/* Addr_Filter_Get Request */ - -typedef struct - { - PI_UINT32 cmd_type; - } PI_CMD_ADDR_FILTER_GET_REQ; - -/* Addr_Filter_Get Response */ - -typedef struct - { - PI_RSP_HEADER header; - PI_LAN_ADDR entry[PI_CMD_ADDR_FILTER_K_SIZE]; - } PI_CMD_ADDR_FILTER_GET_RSP; - -/* Status_Chars_Get Request */ - -typedef struct - { - PI_UINT32 cmd_type; - } PI_CMD_STATUS_CHARS_GET_REQ; - -/* Status_Chars_Get Response */ - -typedef struct - { - PI_RSP_HEADER header; - PI_STATION_ID station_id; /* Station */ - PI_UINT32 station_type; - PI_UINT32 smt_ver_id; - PI_UINT32 smt_ver_id_max; - PI_UINT32 smt_ver_id_min; - PI_UINT32 station_state; - PI_LAN_ADDR link_addr; /* Link */ - PI_UINT32 t_req; - PI_UINT32 tvx; - PI_UINT32 token_timeout; - PI_UINT32 purger_enb; - PI_UINT32 link_state; - PI_UINT32 tneg; - PI_UINT32 dup_addr_flag; - PI_LAN_ADDR una; - PI_LAN_ADDR una_old; - PI_UINT32 un_dup_addr_flag; - PI_LAN_ADDR dna; - PI_LAN_ADDR dna_old; - PI_UINT32 purger_state; - PI_UINT32 fci_mode; - PI_UINT32 error_reason; - PI_UINT32 loopback; - PI_UINT32 ring_latency; - PI_LAN_ADDR last_dir_beacon_sa; - PI_LAN_ADDR last_dir_beacon_una; - PI_UINT32 phy_type[PI_PHY_K_MAX]; /* Phy */ - PI_UINT32 pmd_type[PI_PHY_K_MAX]; - PI_UINT32 lem_threshold[PI_PHY_K_MAX]; - PI_UINT32 phy_state[PI_PHY_K_MAX]; - PI_UINT32 nbor_phy_type[PI_PHY_K_MAX]; - PI_UINT32 link_error_est[PI_PHY_K_MAX]; - PI_UINT32 broken_reason[PI_PHY_K_MAX]; - PI_UINT32 reject_reason[PI_PHY_K_MAX]; - PI_UINT32 cntr_interval; /* Miscellaneous */ - PI_UINT32 module_rev; - PI_UINT32 firmware_rev; - PI_UINT32 mop_device_type; - PI_UINT32 phy_led[PI_PHY_K_MAX]; - PI_UINT32 flush_time; - } PI_CMD_STATUS_CHARS_GET_RSP; - -/* FDDI_MIB_Get Request */ - -typedef struct - { - PI_UINT32 cmd_type; - } PI_CMD_FDDI_MIB_GET_REQ; - -/* FDDI_MIB_Get Response */ - -typedef struct - { - PI_RSP_HEADER header; - - /* SMT GROUP */ - - PI_STATION_ID smt_station_id; - PI_UINT32 smt_op_version_id; - PI_UINT32 smt_hi_version_id; - PI_UINT32 smt_lo_version_id; - PI_UINT32 smt_mac_ct; - PI_UINT32 smt_non_master_ct; - PI_UINT32 smt_master_ct; - PI_UINT32 smt_paths_available; - PI_UINT32 smt_config_capabilities; - PI_UINT32 smt_config_policy; - PI_UINT32 smt_connection_policy; - PI_UINT32 smt_t_notify; - PI_UINT32 smt_status_reporting; - PI_UINT32 smt_ecm_state; - PI_UINT32 smt_cf_state; - PI_UINT32 smt_hold_state; - PI_UINT32 smt_remote_disconnect_flag; - PI_UINT32 smt_station_action; - - /* MAC GROUP */ - - PI_UINT32 mac_frame_status_capabilities; - PI_UINT32 mac_t_max_greatest_lower_bound; - PI_UINT32 mac_tvx_greatest_lower_bound; - PI_UINT32 mac_paths_available; - PI_UINT32 mac_current_path; - PI_LAN_ADDR mac_upstream_nbr; - PI_LAN_ADDR mac_old_upstream_nbr; - PI_UINT32 mac_dup_addr_test; - PI_UINT32 mac_paths_requested; - PI_UINT32 mac_downstream_port_type; - PI_LAN_ADDR mac_smt_address; - PI_UINT32 mac_t_req; - PI_UINT32 mac_t_neg; - PI_UINT32 mac_t_max; - PI_UINT32 mac_tvx_value; - PI_UINT32 mac_t_min; - PI_UINT32 mac_current_frame_status; - /* mac_frame_cts */ - /* mac_error_cts */ - /* mac_lost_cts */ - PI_UINT32 mac_frame_error_threshold; - PI_UINT32 mac_frame_error_ratio; - PI_UINT32 mac_rmt_state; - PI_UINT32 mac_da_flag; - PI_UINT32 mac_una_da_flag; - PI_UINT32 mac_frame_condition; - PI_UINT32 mac_chip_set; - PI_UINT32 mac_action; - - /* PATH GROUP => Does not need to be implemented */ - - /* PORT GROUP */ - - PI_UINT32 port_pc_type[PI_PHY_K_MAX]; - PI_UINT32 port_pc_neighbor[PI_PHY_K_MAX]; - PI_UINT32 port_connection_policies[PI_PHY_K_MAX]; - PI_UINT32 port_remote_mac_indicated[PI_PHY_K_MAX]; - PI_UINT32 port_ce_state[PI_PHY_K_MAX]; - PI_UINT32 port_paths_requested[PI_PHY_K_MAX]; - PI_UINT32 port_mac_placement[PI_PHY_K_MAX]; - PI_UINT32 port_available_paths[PI_PHY_K_MAX]; - PI_UINT32 port_mac_loop_time[PI_PHY_K_MAX]; - PI_UINT32 port_tb_max[PI_PHY_K_MAX]; - PI_UINT32 port_bs_flag[PI_PHY_K_MAX]; - /* port_lct_fail_cts[PI_PHY_K_MAX]; */ - PI_UINT32 port_ler_estimate[PI_PHY_K_MAX]; - /* port_lem_reject_cts[PI_PHY_K_MAX]; */ - /* port_lem_cts[PI_PHY_K_MAX]; */ - PI_UINT32 port_ler_cutoff[PI_PHY_K_MAX]; - PI_UINT32 port_ler_alarm[PI_PHY_K_MAX]; - PI_UINT32 port_connect_state[PI_PHY_K_MAX]; - PI_UINT32 port_pcm_state[PI_PHY_K_MAX]; - PI_UINT32 port_pc_withhold[PI_PHY_K_MAX]; - PI_UINT32 port_ler_condition[PI_PHY_K_MAX]; - PI_UINT32 port_chip_set[PI_PHY_K_MAX]; - PI_UINT32 port_action[PI_PHY_K_MAX]; - - /* ATTACHMENT GROUP */ - - PI_UINT32 attachment_class; - PI_UINT32 attachment_ob_present; - PI_UINT32 attachment_imax_expiration; - PI_UINT32 attachment_inserted_status; - PI_UINT32 attachment_insert_policy; - - /* CHIP SET GROUP => Does not need to be implemented */ - - } PI_CMD_FDDI_MIB_GET_RSP; - -/* DEC_Ext_MIB_Get Request */ - -typedef struct - { - PI_UINT32 cmd_type; - } PI_CMD_DEC_EXT_MIB_GET_REQ; - -/* DEC_Ext_MIB_Get (efddi and efdx groups only) Response */ - -typedef struct - { - PI_RSP_HEADER header; - - /* SMT GROUP */ - - PI_UINT32 esmt_station_type; - - /* MAC GROUP */ - - PI_UINT32 emac_link_state; - PI_UINT32 emac_ring_purger_state; - PI_UINT32 emac_ring_purger_enable; - PI_UINT32 emac_frame_strip_mode; - PI_UINT32 emac_ring_error_reason; - PI_UINT32 emac_up_nbr_dup_addr_flag; - PI_UINT32 emac_restricted_token_timeout; - - /* PORT GROUP */ - - PI_UINT32 eport_pmd_type[PI_PHY_K_MAX]; - PI_UINT32 eport_phy_state[PI_PHY_K_MAX]; - PI_UINT32 eport_reject_reason[PI_PHY_K_MAX]; - - /* FDX (Full-Duplex) GROUP */ - - PI_UINT32 efdx_enable; /* Valid only in SMT 7.3 */ - PI_UINT32 efdx_op; /* Valid only in SMT 7.3 */ - PI_UINT32 efdx_state; /* Valid only in SMT 7.3 */ - - } PI_CMD_DEC_EXT_MIB_GET_RSP; - -typedef struct - { - PI_CNTR traces_rcvd; /* Station */ - PI_CNTR frame_cnt; /* Link */ - PI_CNTR error_cnt; - PI_CNTR lost_cnt; - PI_CNTR octets_rcvd; - PI_CNTR octets_sent; - PI_CNTR pdus_rcvd; - PI_CNTR pdus_sent; - PI_CNTR mcast_octets_rcvd; - PI_CNTR mcast_octets_sent; - PI_CNTR mcast_pdus_rcvd; - PI_CNTR mcast_pdus_sent; - PI_CNTR xmt_underruns; - PI_CNTR xmt_failures; - PI_CNTR block_check_errors; - PI_CNTR frame_status_errors; - PI_CNTR pdu_length_errors; - PI_CNTR rcv_overruns; - PI_CNTR user_buff_unavailable; - PI_CNTR inits_initiated; - PI_CNTR inits_rcvd; - PI_CNTR beacons_initiated; - PI_CNTR dup_addrs; - PI_CNTR dup_tokens; - PI_CNTR purge_errors; - PI_CNTR fci_strip_errors; - PI_CNTR traces_initiated; - PI_CNTR directed_beacons_rcvd; - PI_CNTR emac_frame_alignment_errors; - PI_CNTR ebuff_errors[PI_PHY_K_MAX]; /* Phy */ - PI_CNTR lct_rejects[PI_PHY_K_MAX]; - PI_CNTR lem_rejects[PI_PHY_K_MAX]; - PI_CNTR link_errors[PI_PHY_K_MAX]; - PI_CNTR connections[PI_PHY_K_MAX]; - PI_CNTR copied_cnt; /* Valid only if using SMT 7.3 */ - PI_CNTR transmit_cnt; /* Valid only if using SMT 7.3 */ - PI_CNTR tokens; - } PI_CNTR_BLK; - -/* Counters_Get Request */ - -typedef struct - { - PI_UINT32 cmd_type; - } PI_CMD_CNTRS_GET_REQ; - -/* Counters_Get Response */ - -typedef struct - { - PI_RSP_HEADER header; - PI_CNTR time_since_reset; - PI_CNTR_BLK cntrs; - } PI_CMD_CNTRS_GET_RSP; - -/* Counters_Set Request */ - -typedef struct - { - PI_UINT32 cmd_type; - PI_CNTR_BLK cntrs; - } PI_CMD_CNTRS_SET_REQ; - -/* Counters_Set Response */ - -typedef struct - { - PI_RSP_HEADER header; - } PI_CMD_CNTRS_SET_RSP; - -/* Error_Log_Clear Request */ - -typedef struct - { - PI_UINT32 cmd_type; - } PI_CMD_ERROR_LOG_CLEAR_REQ; - -/* Error_Log_Clear Response */ - -typedef struct - { - PI_RSP_HEADER header; - } PI_CMD_ERROR_LOG_CLEAR_RSP; - -/* Error_Log_Get Request */ - -#define PI_LOG_ENTRY_K_INDEX_MIN 0 /* Minimum index for entry */ - -typedef struct - { - PI_UINT32 cmd_type; - PI_UINT32 entry_index; - } PI_CMD_ERROR_LOG_GET_REQ; - -/* Error_Log_Get Response */ - -#define PI_K_LOG_FW_SIZE 111 /* Max number of fw longwords */ -#define PI_K_LOG_DIAG_SIZE 6 /* Max number of diag longwords */ - -typedef struct - { - struct - { - PI_UINT32 fru_imp_mask; - PI_UINT32 test_id; - PI_UINT32 reserved[PI_K_LOG_DIAG_SIZE]; - } diag; - PI_UINT32 fw[PI_K_LOG_FW_SIZE]; - } PI_LOG_ENTRY; - -typedef struct - { - PI_RSP_HEADER header; - PI_UINT32 event_status; - PI_UINT32 caller_id; - PI_UINT32 timestamp_l; - PI_UINT32 timestamp_h; - PI_UINT32 write_count; - PI_LOG_ENTRY entry_info; - } PI_CMD_ERROR_LOG_GET_RSP; - -/* Define error log related constants and types. */ -/* Not all of the caller id's can occur. The only ones currently */ -/* implemented are: none, selftest, mfg, fw, console */ - -#define PI_LOG_EVENT_STATUS_K_VALID 0 /* Valid Event Status */ -#define PI_LOG_EVENT_STATUS_K_INVALID 1 /* Invalid Event Status */ -#define PI_LOG_CALLER_ID_K_NONE 0 /* No caller */ -#define PI_LOG_CALLER_ID_K_SELFTEST 1 /* Normal power-up selftest */ -#define PI_LOG_CALLER_ID_K_MFG 2 /* Mfg power-up selftest */ -#define PI_LOG_CALLER_ID_K_ONLINE 3 /* On-line diagnostics */ -#define PI_LOG_CALLER_ID_K_HW 4 /* Hardware */ -#define PI_LOG_CALLER_ID_K_FW 5 /* Firmware */ -#define PI_LOG_CALLER_ID_K_CNS_HW 6 /* CNS firmware */ -#define PI_LOG_CALLER_ID_K_CNS_FW 7 /* CNS hardware */ -#define PI_LOG_CALLER_ID_K_CONSOLE 8 /* Console Caller Id */ - -/* - * Place all DMA commands in the following request and response structures - * to simplify code. - */ - -typedef union - { - PI_UINT32 cmd_type; - PI_CMD_START_REQ start; - PI_CMD_FILTERS_SET_REQ filter_set; - PI_CMD_FILTERS_GET_REQ filter_get; - PI_CMD_CHARS_SET_REQ char_set; - PI_CMD_ADDR_FILTER_SET_REQ addr_filter_set; - PI_CMD_ADDR_FILTER_GET_REQ addr_filter_get; - PI_CMD_STATUS_CHARS_GET_REQ stat_char_get; - PI_CMD_CNTRS_GET_REQ cntrs_get; - PI_CMD_CNTRS_SET_REQ cntrs_set; - PI_CMD_ERROR_LOG_CLEAR_REQ error_log_clear; - PI_CMD_ERROR_LOG_GET_REQ error_log_read; - PI_CMD_SNMP_SET_REQ snmp_set; - PI_CMD_FDDI_MIB_GET_REQ fddi_mib_get; - PI_CMD_DEC_EXT_MIB_GET_REQ dec_mib_get; - PI_CMD_SMT_MIB_SET_REQ smt_mib_set; - PI_CMD_SMT_MIB_GET_REQ smt_mib_get; - char pad[PI_CMD_REQ_K_SIZE_MAX]; - } PI_DMA_CMD_REQ; - -typedef union - { - PI_RSP_HEADER header; - PI_CMD_START_RSP start; - PI_CMD_FILTERS_SET_RSP filter_set; - PI_CMD_FILTERS_GET_RSP filter_get; - PI_CMD_CHARS_SET_RSP char_set; - PI_CMD_ADDR_FILTER_SET_RSP addr_filter_set; - PI_CMD_ADDR_FILTER_GET_RSP addr_filter_get; - PI_CMD_STATUS_CHARS_GET_RSP stat_char_get; - PI_CMD_CNTRS_GET_RSP cntrs_get; - PI_CMD_CNTRS_SET_RSP cntrs_set; - PI_CMD_ERROR_LOG_CLEAR_RSP error_log_clear; - PI_CMD_ERROR_LOG_GET_RSP error_log_get; - PI_CMD_SNMP_SET_RSP snmp_set; - PI_CMD_FDDI_MIB_GET_RSP fddi_mib_get; - PI_CMD_DEC_EXT_MIB_GET_RSP dec_mib_get; - PI_CMD_SMT_MIB_SET_RSP smt_mib_set; - PI_CMD_SMT_MIB_GET_RSP smt_mib_get; - char pad[PI_CMD_RSP_K_SIZE_MAX]; - } PI_DMA_CMD_RSP; - -typedef union - { - PI_DMA_CMD_REQ request; - PI_DMA_CMD_RSP response; - } PI_DMA_CMD_BUFFER; - - -/* Define format of Consumer Block (resident in host memory) */ - -typedef struct - { - volatile PI_UINT32 xmt_rcv_data; - volatile PI_UINT32 reserved_1; - volatile PI_UINT32 smt_host; - volatile PI_UINT32 reserved_2; - volatile PI_UINT32 unsol; - volatile PI_UINT32 reserved_3; - volatile PI_UINT32 cmd_rsp; - volatile PI_UINT32 reserved_4; - volatile PI_UINT32 cmd_req; - volatile PI_UINT32 reserved_5; - } PI_CONSUMER_BLOCK; - -#define PI_CONS_M_RCV_INDEX 0x000000FF -#define PI_CONS_M_XMT_INDEX 0x00FF0000 -#define PI_CONS_V_RCV_INDEX 0 -#define PI_CONS_V_XMT_INDEX 16 - -/* Offsets into consumer block */ - -#define PI_CONS_BLK_K_XMT_RCV 0x00 -#define PI_CONS_BLK_K_SMT_HOST 0x08 -#define PI_CONS_BLK_K_UNSOL 0x10 -#define PI_CONS_BLK_K_CMD_RSP 0x18 -#define PI_CONS_BLK_K_CMD_REQ 0x20 - -/* Offsets into descriptor block */ - -#define PI_DESCR_BLK_K_RCV_DATA 0x0000 -#define PI_DESCR_BLK_K_XMT_DATA 0x0800 -#define PI_DESCR_BLK_K_SMT_HOST 0x1000 -#define PI_DESCR_BLK_K_UNSOL 0x1200 -#define PI_DESCR_BLK_K_CMD_RSP 0x1280 -#define PI_DESCR_BLK_K_CMD_REQ 0x1300 - -/* Define format of a rcv descr (Rcv Data, Cmd Rsp, Unsolicited, SMT Host) */ -/* Note a field has been added for later versions of the PDQ to allow for */ -/* finer granularity of the rcv buffer alignment. For backwards */ -/* compatibility, the two bits (which allow the rcv buffer to be longword */ -/* aligned) have been added at the MBZ bits. To support previous drivers, */ -/* the MBZ definition is left intact. */ - -typedef struct - { - PI_UINT32 long_0; - PI_UINT32 long_1; - } PI_RCV_DESCR; - -#define PI_RCV_DESCR_M_SOP 0x80000000 -#define PI_RCV_DESCR_M_SEG_LEN_LO 0x60000000 -#define PI_RCV_DESCR_M_MBZ 0x60000000 -#define PI_RCV_DESCR_M_SEG_LEN 0x1F800000 -#define PI_RCV_DESCR_M_SEG_LEN_HI 0x1FF00000 -#define PI_RCV_DESCR_M_SEG_CNT 0x000F0000 -#define PI_RCV_DESCR_M_BUFF_HI 0x0000FFFF - -#define PI_RCV_DESCR_V_SOP 31 -#define PI_RCV_DESCR_V_SEG_LEN_LO 29 -#define PI_RCV_DESCR_V_MBZ 29 |