ibmtr.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __LINUX_IBMTR_H__
  2. #define __LINUX_IBMTR_H__
  3. /* Definitions for an IBM Token Ring card. */
  4. /* This file is distributed under the GNU GPL   */
  5. /* ported to the Alpha architecture 02/20/96 (just used the HZ macro) */
  6. #define TR_RETRY_INTERVAL (30*HZ) /* 500 on PC = 5 s */
  7. #define TR_RST_TIME (HZ/20) /* 5 on PC = 50 ms */
  8. #define TR_BUSY_INTERVAL (HZ/5) /* 5 on PC = 200 ms */
  9. #define TR_SPIN_INTERVAL (3*HZ) /* 3 seconds before init timeout */
  10. #define TR_ISA 1
  11. #define TR_MCA 2
  12. #define TR_ISAPNP 3
  13. #define NOTOK 0
  14. #define IBMTR_SHARED_RAM_SIZE 0x10000
  15. #define IBMTR_IO_EXTENT 4
  16. #define IBMTR_MAX_ADAPTERS 4
  17. #define CHANNEL_ID      0X1F30
  18. #define AIP             0X1F00
  19. #define AIPADAPTYPE     0X1FA0
  20. #define AIPDATARATE     0X1FA2
  21. #define AIPEARLYTOKEN   0X1FA4
  22. #define AIPAVAILSHRAM   0X1FA6
  23. #define AIPSHRAMPAGE    0X1FA8
  24. #define AIP4MBDHB       0X1FAA
  25. #define AIP16MBDHB      0X1FAC
  26. #define AIPFID 0X1FBA
  27. #define ADAPTRESET      0x1     /* Control Adapter reset (add to base) */
  28. #define ADAPTRESETREL   0x2     /* Release Adapter from reset ( """)  */
  29. #define ADAPTINTREL 0x3  /* Adapter interrupt release */
  30. #define GLOBAL_INT_ENABLE 0x02f0
  31. /* MMIO bits 0-4 select register */
  32. #define RRR_EVEN       0x00 /* Shared RAM relocation registers - even and odd */
  33. /* Used to set the starting address of shared RAM  */
  34. /* Bits 1 through 7 of this register map to bits 13 through 19 of the shared
  35.    RAM address.*/
  36. /* ie: 0x02 sets RAM address to ...ato!  issy su wazzoo !! GODZILLA!!! */
  37. #define RRR_ODD         0x01
  38. /* Bits 2 and 3 of this register can be read to determine shared RAM size */
  39. /* 00 for 8k, 01 for 16k, 10 for 32k, 11 for 64k  */
  40. #define WRBR_EVEN       0x02    /* Write region base registers - even and odd */
  41. #define WRBR_ODD        0x03
  42. #define WWOR_EVEN       0x04    /* Write window open registers - even and odd */
  43. #define WWOR_ODD        0x05
  44. #define WWCR_EVEN       0x06   /* Write window close registers - even and odd */
  45. #define WWCR_ODD        0x07
  46. /* Interrupt status registers - PC system  - even and odd */
  47. #define ISRP_EVEN       0x08
  48. #define TCR_INT    0x10    /* Bit 4 - Timer interrupt.  The TVR_EVEN timer has
  49.                                                                    expired. */
  50. #define ERR_INT    0x08    /* Bit 3 - Error interrupt.  The adapter has had an
  51.                                                             internal error. */
  52. #define ACCESS_INT 0x04    /* Bit 2 - Access interrupt.  You have attempted to
  53.       write to an invalid area of shared RAM
  54.       or an invalid register within the MMIO. */
  55. /* In addition, the following bits within ISRP_EVEN can be turned on or off   */
  56. /* by you to control the interrupt processing:   */
  57. #define INT_ENABLE 0x40 /* Bit 6 - Interrupt enable.  If 0, no interrupts will
  58.                                    occur.  If 1, interrupts will occur normally.
  59.                                                          Normally set to 1.  */
  60. /* Bit 0 - Primary or alternate adapter.  Set to zero if this adapter is the
  61. primary adapter, 1 if this adapter is the alternate adapter. */
  62. #define ISRP_ODD        0x09
  63. #define ADAP_CHK_INT 0x40 /* Bit 6 - Adapter check.  the adapter has
  64.                              encountered a serious problem and has closed
  65.                              itself.  Whoa.  */
  66. #define SRB_RESP_INT 0x20 /* Bit 5 - SRB response.  The adapter has accepted
  67.                              an SRB request and set the return code within
  68.                              the SRB. */
  69. #define ASB_FREE_INT 0x10 /* Bit 4 - ASB free.  The adapter has read the ASB
  70.                              and this area can be safely reused. This interrupt
  71.                              is only used if your application has set the ASB
  72.                              free request bit in ISRA_ODD or if an error was
  73.                              detected in your response. */
  74. #define ARB_CMD_INT  0x08 /* Bit 3 - ARB command.  The adapter has given you a
  75.                              command for action.  The command is located in the
  76.                              ARB area of shared memory. */
  77. #define SSB_RESP_INT 0x04 /* Bit 2 - SSB response.  The adapter has posted a
  78.                              response to your SRB (the response is located in
  79.                              the SSB area of shared memory). */
  80. /* Bit 1 - Bridge frame forward complete. */
  81. #define ISRA_EVEN 0x0A /*Interrupt status registers - adapter  - even and odd */
  82. /* Bit 7 - Internal parity error (on adapter's internal bus) */
  83. /* Bit 6 - Timer interrupt pending */
  84. /* Bit 5 - Access interrupt (attempt by adapter to access illegal address) */
  85. /* Bit 4 - Adapter microcode problem (microcode dead-man timer expired) */
  86. /* Bit 3 - Adapter processor check status */
  87. /* Bit 2 - Reserved */
  88. /* Bit 1 - Adapter hardware interrupt mask (prevents internal interrupts) */
  89. /* Bit 0 - Adapter software interrupt mask (prevents internal software ints) */
  90. #define ISRA_ODD        0x0B
  91. #define CMD_IN_SRB  0x20 /* Bit 5  - Indicates that you have placed a new
  92.                            command in the SRB and are ready for the adapter to
  93.                            process the command. */
  94. #define RESP_IN_ASB 0x10 /* Bit 4 - Indicates that you have placed a response
  95.                             (an ASB) in the shared RAM which is available for
  96.                             the adapter's use. */
  97. /* Bit 3 - Indicates that you are ready to put an SRB in the shared RAM, but
  98. that a previous command is still pending.  The adapter will then
  99. interrupt you when the previous command is completed */
  100. /* Bit 2 - Indicates that you are ready to put an ASB in the shared RAM, but
  101. that a previous ASB is still pending.  The adapter will then interrupt
  102. you when the previous ASB is copied.  */
  103. #define ARB_FREE 0x2
  104. #define SSB_FREE 0x1
  105. #define TCR_EVEN        0x0C    /* Timer control registers - even and odd */
  106. #define TCR_ODD         0x0D
  107. #define TVR_EVEN        0x0E    /* Timer value registers - even and odd */
  108. #define TVR_ODD         0x0F
  109. #define SRPR_EVEN       0x18    /* Shared RAM paging registers - even and odd */
  110. #define SRPR_ENABLE_PAGING 0xc0
  111. #define SRPR_ODD        0x19 /* Not used. */
  112. #define TOKREAD         0x60
  113. #define TOKOR           0x40
  114. #define TOKAND          0x20
  115. #define TOKWRITE        0x00
  116. /* MMIO bits 5-6 select operation */
  117. /* 00 is used to write to a register */
  118. /* 01 is used to bitwise AND a byte with a register */
  119. /* 10 is used to bitwise OR a byte with a register  */
  120. /* 11 is used to read from a register */
  121. /* MMIO bits 7-8 select area of interest.. see below */
  122. /* 00 selects attachment control area. */
  123. /* 01 is reserved. */
  124. /* 10 selects adapter identification area A containing the adapter encoded
  125. address. */
  126. /* 11 selects the adapter identification area B containing test patterns. */
  127. #define PCCHANNELID 5049434F3631313039393020
  128. #define MCCHANNELID 4D4152533633583435313820
  129. #define ACA_OFFSET 0x1e00
  130. #define ACA_SET 0x40
  131. #define ACA_RESET 0x20
  132. #define ACA_RW 0x00
  133. #ifdef ENABLE_PAGING
  134. #define SET_PAGE(x) (writeb((x), ti->mmio + ACA_OFFSET+ ACA_RW + SRPR_EVEN))
  135. #else
  136. #define SET_PAGE(x)
  137. #endif
  138. /* do_tok_int possible values */
  139. #define FIRST_INT 1
  140. #define NOT_FIRST 2
  141. typedef enum { CLOSED, OPEN } open_state;
  142. //staic const char *printstate[] = { "CLOSED","OPEN"};
  143. struct tok_info {
  144. unsigned char irq;
  145. void __iomem *mmio;
  146. unsigned char hw_address[32];
  147. unsigned char adapter_type;
  148. unsigned char data_rate;
  149. unsigned char token_release;
  150. unsigned char avail_shared_ram;
  151. unsigned char shared_ram_paging;
  152.         unsigned char turbo;
  153. unsigned short dhb_size4mb;
  154. unsigned short rbuf_len4;
  155. unsigned short rbuf_cnt4;
  156. unsigned short maxmtu4;
  157. unsigned short dhb_size16mb;
  158. unsigned short rbuf_len16;
  159. unsigned short rbuf_cnt16;
  160. unsigned short maxmtu16;
  161. /* Additions by David Morris       */
  162. unsigned char do_tok_int;
  163. wait_queue_head_t wait_for_reset;
  164. unsigned char sram_base;
  165. /* Additions by Peter De Schrijver */
  166. unsigned char page_mask;          /* mask to select RAM page to Map*/
  167. unsigned char mapped_ram_size;    /* size of RAM page */
  168. __u32 sram_phys;          /* Shared memory base address */
  169. void __iomem *sram_virt;          /* Shared memory base address */
  170. void __iomem *init_srb;   /* Initial System Request Block address */
  171. void __iomem *srb;                /* System Request Block address */
  172. void __iomem *ssb;                /* System Status Block address */
  173. void __iomem *arb;                /* Adapter Request Block address */
  174. void __iomem *asb;                /* Adapter Status Block address */
  175.         __u8  init_srb_page;
  176.         __u8  srb_page;
  177.         __u8  ssb_page;
  178.         __u8  arb_page;
  179.         __u8  asb_page;
  180. unsigned short exsap_station_id;
  181. unsigned short global_int_enable;
  182. struct sk_buff *current_skb;
  183. struct net_device_stats tr_stats;
  184. unsigned char auto_speedsave;
  185. open_state open_status, sap_status;
  186. enum {MANUAL, AUTOMATIC} open_mode;
  187. enum {FAIL, RESTART, REOPEN} open_action;
  188. enum {NO, YES} open_failure;
  189. unsigned char readlog_pending;
  190. unsigned short adapter_int_enable; /* Adapter-specific int enable */
  191.         struct timer_list tr_timer;
  192. unsigned char ring_speed;
  193. spinlock_t lock; /* SMP protection */
  194. };
  195. /* token ring adapter commands */
  196. #define DIR_INTERRUPT  0x00 /* struct srb_interrupt */
  197. #define DIR_MOD_OPEN_PARAMS  0x01
  198. #define DIR_OPEN_ADAPTER  0x03 /* struct dir_open_adapter */
  199. #define DIR_CLOSE_ADAPTER    0x04
  200. #define DIR_SET_GRP_ADDR     0x06
  201. #define DIR_SET_FUNC_ADDR    0x07 /* struct srb_set_funct_addr */
  202. #define DIR_READ_LOG  0x08 /* struct srb_read_log */
  203. #define DLC_OPEN_SAP  0x15 /* struct dlc_open_sap */
  204. #define DLC_CLOSE_SAP        0x16
  205. #define DATA_LOST  0x20 /* struct asb_rec */
  206. #define REC_DATA  0x81 /* struct arb_rec_req */
  207. #define XMIT_DATA_REQ  0x82 /* struct arb_xmit_req */
  208. #define DLC_STATUS  0x83 /* struct arb_dlc_status */
  209. #define RING_STAT_CHANGE     0x84 /* struct dlc_open_sap ??? */
  210. /* DIR_OPEN_ADAPTER options */
  211. #define OPEN_PASS_BCON_MAC 0x0100
  212. #define NUM_RCV_BUF 2
  213. #define RCV_BUF_LEN 1024
  214. #define DHB_LENGTH 2048
  215. #define NUM_DHB 2
  216. #define DLC_MAX_SAP 2
  217. #define DLC_MAX_STA 1
  218. /* DLC_OPEN_SAP options */
  219. #define MAX_I_FIELD 0x0088
  220. #define SAP_OPEN_IND_SAP 0x04
  221. #define SAP_OPEN_PRIORITY 0x20
  222. #define SAP_OPEN_STATION_CNT 0x1
  223. #define XMIT_DIR_FRAME 0x0A
  224. #define XMIT_UI_FRAME  0x0d
  225. #define XMIT_XID_CMD   0x0e
  226. #define XMIT_TEST_CMD  0x11
  227. /* srb close return code */
  228. #define SIGNAL_LOSS  0x8000
  229. #define HARD_ERROR   0x4000
  230. #define XMIT_BEACON  0x1000
  231. #define LOBE_FAULT   0x0800
  232. #define AUTO_REMOVAL 0x0400
  233. #define REMOVE_RECV  0x0100
  234. #define LOG_OVERFLOW 0x0080
  235. #define RING_RECOVER 0x0020
  236. struct srb_init_response {
  237. unsigned char command;
  238. unsigned char init_status;
  239. unsigned char init_status_2;
  240. unsigned char reserved[3];
  241. __u16 bring_up_code;
  242. __u16 encoded_address;
  243. __u16 level_address;
  244. __u16 adapter_address;
  245. __u16 parms_address;
  246. __u16 mac_address;
  247. };
  248. struct dir_open_adapter {
  249. unsigned char command;
  250. char reserved[7];
  251. __u16 open_options;
  252. unsigned char node_address[6];
  253. unsigned char group_address[4];
  254. unsigned char funct_address[4];
  255. __u16 num_rcv_buf;
  256. __u16 rcv_buf_len;
  257. __u16 dhb_length;
  258. unsigned char num_dhb;
  259. char reserved2;
  260. unsigned char dlc_max_sap;
  261. unsigned char dlc_max_sta;
  262. unsigned char dlc_max_gsap;
  263. unsigned char dlc_max_gmem;
  264. unsigned char dlc_t1_tick_1;
  265. unsigned char dlc_t2_tick_1;
  266. unsigned char dlc_ti_tick_1;
  267. unsigned char dlc_t1_tick_2;
  268. unsigned char dlc_t2_tick_2;
  269. unsigned char dlc_ti_tick_2;
  270. unsigned char product_id[18];
  271. };
  272. struct dlc_open_sap {
  273. unsigned char command;
  274. unsigned char reserved1;
  275. unsigned char ret_code;
  276. unsigned char reserved2;
  277. __u16 station_id;
  278. unsigned char timer_t1;
  279. unsigned char timer_t2;
  280. unsigned char timer_ti;
  281. unsigned char maxout;
  282. unsigned char maxin;
  283. unsigned char maxout_incr;
  284. unsigned char max_retry_count;
  285. unsigned char gsap_max_mem;
  286. __u16 max_i_field;
  287. unsigned char sap_value;
  288. unsigned char sap_options;
  289. unsigned char station_count;
  290. unsigned char sap_gsap_mem;
  291. unsigned char gsap[0];
  292. };
  293. struct srb_xmit {
  294. unsigned char command;
  295. unsigned char cmd_corr;
  296. unsigned char ret_code;
  297. unsigned char reserved1;
  298. __u16 station_id;
  299. };
  300. struct arb_rec_req {
  301. unsigned char command;
  302. unsigned char reserved1[3];
  303. __u16 station_id;
  304. __u16 rec_buf_addr;
  305. unsigned char lan_hdr_len;
  306. unsigned char dlc_hdr_len;
  307. __u16 frame_len;
  308. unsigned char msg_type;
  309. };
  310. struct asb_rec {
  311. unsigned char command;
  312. unsigned char reserved1;
  313. unsigned char ret_code;
  314. unsigned char reserved2;
  315. __u16 station_id;
  316. __u16 rec_buf_addr;
  317. };
  318. struct rec_buf {
  319.    unsigned char reserved1[2];
  320. __u16 buf_ptr;
  321. unsigned char reserved2;
  322. unsigned char receive_fs;
  323. __u16 buf_len;
  324. unsigned char data[0];
  325. };
  326. struct srb_set_funct_addr {
  327. unsigned char command;
  328. unsigned char reserved1;
  329. unsigned char ret_code;
  330. unsigned char reserved2[3];
  331. unsigned char funct_address[4];
  332. };
  333. #endif