horizon.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:17k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.   Madge Horizon ATM Adapter driver.
  3.   Copyright (C) 1995-1999  Madge Networks Ltd.
  4.   This program is free software; you can redistribute it and/or modify
  5.   it under the terms of the GNU General Public License as published by
  6.   the Free Software Foundation; either version 2 of the License, or
  7.   (at your option) any later version.
  8.   This program is distributed in the hope that it will be useful,
  9.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.   GNU General Public License for more details.
  12.   You should have received a copy of the GNU General Public License
  13.   along with this program; if not, write to the Free Software
  14.   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.   The GNU GPL is contained in /usr/doc/copyright/GPL on a Debian
  16.   system and in the file COPYING in the Linux kernel source.
  17. */
  18. /*
  19.   IMPORTANT NOTE: Madge Networks no longer makes the adapters
  20.   supported by this driver and makes no commitment to maintain it.
  21. */
  22. /* too many macros - change to inline functions */
  23. #ifndef DRIVER_ATM_HORIZON_H
  24. #define DRIVER_ATM_HORIZON_H
  25. #include <linux/config.h>
  26. #include <linux/version.h>
  27. #ifdef CONFIG_ATM_HORIZON_DEBUG
  28. #define DEBUG_HORIZON
  29. #endif
  30. #define DEV_LABEL                         "hrz"
  31. #ifndef PCI_VENDOR_ID_MADGE
  32. #define PCI_VENDOR_ID_MADGE               0x10B6
  33. #endif
  34. #ifndef PCI_DEVICE_ID_MADGE_HORIZON
  35. #define PCI_DEVICE_ID_MADGE_HORIZON       0x1000
  36. #endif
  37. // diagnostic output
  38. #define PRINTK(severity,format,args...) 
  39.   printk(severity DEV_LABEL ": " format "n" , ## args)
  40. #ifdef DEBUG_HORIZON
  41. #define DBG_ERR  0x0001
  42. #define DBG_WARN 0x0002
  43. #define DBG_INFO 0x0004
  44. #define DBG_VCC  0x0008
  45. #define DBG_QOS  0x0010
  46. #define DBG_TX   0x0020
  47. #define DBG_RX   0x0040
  48. #define DBG_SKB  0x0080
  49. #define DBG_IRQ  0x0100
  50. #define DBG_FLOW 0x0200
  51. #define DBG_BUS  0x0400
  52. #define DBG_REGS 0x0800
  53. #define DBG_DATA 0x1000
  54. #define DBG_MASK 0x1fff
  55. /* the ## prevents the annoying double expansion of the macro arguments */
  56. /* KERN_INFO is used since KERN_DEBUG often does not make it to the console */
  57. #define PRINTDB(bits,format,args...) 
  58.   ( (debug & (bits)) ? printk (KERN_INFO DEV_LABEL ": " format , ## args) : 1 )
  59. #define PRINTDM(bits,format,args...) 
  60.   ( (debug & (bits)) ? printk (format , ## args) : 1 )
  61. #define PRINTDE(bits,format,args...) 
  62.   ( (debug & (bits)) ? printk (format "n" , ## args) : 1 )
  63. #define PRINTD(bits,format,args...) 
  64.   ( (debug & (bits)) ? printk (KERN_INFO DEV_LABEL ": " format "n" , ## args) : 1 )
  65. #else
  66. #define PRINTD(bits,format,args...)
  67. #define PRINTDB(bits,format,args...)
  68. #define PRINTDM(bits,format,args...)
  69. #define PRINTDE(bits,format,args...)
  70. #endif
  71. #define PRINTDD(sec,fmt,args...)
  72. #define PRINTDDB(sec,fmt,args...)
  73. #define PRINTDDM(sec,fmt,args...)
  74. #define PRINTDDE(sec,fmt,args...)
  75. // fixed constants
  76. #define SPARE_BUFFER_POOL_SIZE            MAX_VCS
  77. #define HRZ_MAX_VPI                       4
  78. #define MIN_PCI_LATENCY                   48 // 24 IS TOO SMALL
  79. /*  Horizon specific bits */
  80. /*  Register offsets */
  81. #define HRZ_IO_EXTENT                     0x80
  82. #define DATA_PORT_OFF                     0x00
  83. #define TX_CHANNEL_PORT_OFF               0x04
  84. #define TX_DESCRIPTOR_PORT_OFF            0x08
  85. #define MEMORY_PORT_OFF                   0x0C
  86. #define MEM_WR_ADDR_REG_OFF               0x14
  87. #define MEM_RD_ADDR_REG_OFF               0x18
  88. #define CONTROL_0_REG                     0x1C
  89. #define INT_SOURCE_REG_OFF                0x20
  90. #define INT_ENABLE_REG_OFF                0x24
  91. #define MASTER_RX_ADDR_REG_OFF            0x28
  92. #define MASTER_RX_COUNT_REG_OFF           0x2C
  93. #define MASTER_TX_ADDR_REG_OFF            0x30
  94. #define MASTER_TX_COUNT_REG_OFF           0x34
  95. #define TX_DESCRIPTOR_REG_OFF             0x38
  96. #define TX_CHANNEL_CONFIG_COMMAND_OFF     0x40
  97. #define TX_CHANNEL_CONFIG_DATA_OFF        0x44
  98. #define TX_FREE_BUFFER_COUNT_OFF          0x48
  99. #define RX_FREE_BUFFER_COUNT_OFF          0x4C
  100. #define TX_CONFIG_OFF                     0x50
  101. #define TX_STATUS_OFF                     0x54
  102. #define RX_CONFIG_OFF                     0x58
  103. #define RX_LINE_CONFIG_OFF                0x5C
  104. #define RX_QUEUE_RD_PTR_OFF               0x60
  105. #define RX_QUEUE_WR_PTR_OFF               0x64
  106. #define MAX_AAL5_CELL_COUNT_OFF           0x68
  107. #define RX_CHANNEL_PORT_OFF               0x6C
  108. #define TX_CELL_COUNT_OFF                 0x70
  109. #define RX_CELL_COUNT_OFF                 0x74
  110. #define HEC_ERROR_COUNT_OFF               0x78
  111. #define UNASSIGNED_CELL_COUNT_OFF         0x7C
  112. /*  Register bit definitions */
  113. /* Control 0 register */
  114. #define SEEPROM_DO                        0x00000001
  115. #define SEEPROM_DI                        0x00000002
  116. #define SEEPROM_SK                        0x00000004
  117. #define SEEPROM_CS                        0x00000008
  118. #define DEBUG_BIT_0                       0x00000010
  119. #define DEBUG_BIT_1                       0x00000020
  120. #define DEBUG_BIT_2                       0x00000040
  121. //      RESERVED                          0x00000080
  122. #define DEBUG_BIT_0_OE                    0x00000100
  123. #define DEBUG_BIT_1_OE                    0x00000200
  124. #define DEBUG_BIT_2_OE                    0x00000400
  125. //      RESERVED                          0x00000800
  126. #define DEBUG_BIT_0_STATE                 0x00001000
  127. #define DEBUG_BIT_1_STATE                 0x00002000
  128. #define DEBUG_BIT_2_STATE                 0x00004000
  129. //      RESERVED                          0x00008000
  130. #define GENERAL_BIT_0                     0x00010000
  131. #define GENERAL_BIT_1                     0x00020000
  132. #define GENERAL_BIT_2                     0x00040000
  133. #define GENERAL_BIT_3                     0x00080000
  134. #define RESET_HORIZON                     0x00100000
  135. #define RESET_ATM                         0x00200000
  136. #define RESET_RX                          0x00400000
  137. #define RESET_TX                          0x00800000
  138. #define RESET_HOST                        0x01000000
  139. //      RESERVED                          0x02000000
  140. #define TARGET_RETRY_DISABLE              0x04000000
  141. #define ATM_LAYER_SELECT                  0x08000000
  142. #define ATM_LAYER_STATUS                  0x10000000
  143. //      RESERVED                          0xE0000000
  144. /* Interrupt source and enable registers */
  145. #define RX_DATA_AV                        0x00000001
  146. #define RX_DISABLED                       0x00000002
  147. #define TIMING_MARKER                     0x00000004
  148. #define FORCED                            0x00000008
  149. #define RX_BUS_MASTER_COMPLETE            0x00000010
  150. #define TX_BUS_MASTER_COMPLETE            0x00000020
  151. #define ABR_TX_CELL_COUNT_INT             0x00000040
  152. #define DEBUG_INT                         0x00000080
  153. //      RESERVED                          0xFFFFFF00
  154. /* PIO and Bus Mastering */
  155. #define MAX_PIO_COUNT                     0x000000ff // 255 - make tunable?
  156. // 8188 is a hard limit for bus mastering
  157. #define MAX_TRANSFER_COUNT                0x00001ffc // 8188
  158. #define MASTER_TX_AUTO_APPEND_DESC        0x80000000
  159. /* TX channel config command port */
  160. #define PCR_TIMER_ACCESS                      0x0000
  161. #define SCR_TIMER_ACCESS                      0x0001
  162. #define BUCKET_CAPACITY_ACCESS                0x0002
  163. #define BUCKET_FULLNESS_ACCESS                0x0003
  164. #define RATE_TYPE_ACCESS                      0x0004
  165. //      UNUSED                                0x00F8
  166. #define TX_CHANNEL_CONFIG_MULT                0x0100
  167. //      UNUSED                                0xF800
  168. #define BUCKET_MAX_SIZE                       0x003f
  169. /* TX channel config data port */
  170. #define CLOCK_SELECT_SHIFT                    4
  171. #define CLOCK_DISABLE                         0x00ff
  172. #define IDLE_RATE_TYPE                       0x0
  173. #define ABR_RATE_TYPE                        0x1
  174. #define VBR_RATE_TYPE                        0x2
  175. #define CBR_RATE_TYPE                        0x3
  176. /* TX config register */
  177. #define DRVR_DRVRBAR_ENABLE                   0x0001
  178. #define TXCLK_MUX_SELECT_RCLK                 0x0002
  179. #define TRANSMIT_TIMING_MARKER                0x0004
  180. #define LOOPBACK_TIMING_MARKER                0x0008
  181. #define TX_TEST_MODE_16MHz                    0x0000
  182. #define TX_TEST_MODE_8MHz                     0x0010
  183. #define TX_TEST_MODE_5_33MHz                  0x0020
  184. #define TX_TEST_MODE_4MHz                     0x0030
  185. #define TX_TEST_MODE_3_2MHz                   0x0040
  186. #define TX_TEST_MODE_2_66MHz                  0x0050
  187. #define TX_TEST_MODE_2_29MHz                  0x0060
  188. #define TX_NORMAL_OPERATION                   0x0070
  189. #define ABR_ROUND_ROBIN                       0x0080
  190. /* TX status register */
  191. #define IDLE_CHANNELS_MASK                    0x00FF
  192. #define ABR_CELL_COUNT_REACHED_MULT           0x0100 
  193. #define ABR_CELL_COUNT_REACHED_MASK           0xFF
  194. /* RX config register */
  195. #define NON_USER_CELLS_IN_ONE_CHANNEL         0x0008
  196. #define RX_ENABLE                             0x0010
  197. #define IGNORE_UNUSED_VPI_VCI_BITS_SET        0x0000
  198. #define NON_USER_UNUSED_VPI_VCI_BITS_SET      0x0020
  199. #define DISCARD_UNUSED_VPI_VCI_BITS_SET       0x0040
  200. /* RX line config register */
  201. #define SIGNAL_LOSS                           0x0001
  202. #define FREQUENCY_DETECT_ERROR                0x0002
  203. #define LOCK_DETECT_ERROR                     0x0004
  204. #define SELECT_INTERNAL_LOOPBACK              0x0008
  205. #define LOCK_DETECT_ENABLE                    0x0010
  206. #define FREQUENCY_DETECT_ENABLE               0x0020
  207. #define USER_FRAQ                             0x0040
  208. #define GXTALOUT_SELECT_DIV4                  0x0080
  209. #define GXTALOUT_SELECT_NO_GATING             0x0100
  210. #define TIMING_MARKER_RECEIVED                0x0200
  211. /* RX channel port */
  212. #define RX_CHANNEL_MASK                       0x03FF
  213. // UNUSED                                     0x3C00
  214. #define FLUSH_CHANNEL                         0x4000
  215. #define RX_CHANNEL_UPDATE_IN_PROGRESS         0x8000
  216. /* Receive queue entry */
  217. #define RX_Q_ENTRY_LENGTH_MASK            0x0000FFFF
  218. #define RX_Q_ENTRY_CHANNEL_SHIFT          16
  219. #define SIMONS_DODGEY_MARKER              0x08000000
  220. #define RX_CONGESTION_EXPERIENCED         0x10000000
  221. #define RX_CRC_10_OK                      0x20000000
  222. #define RX_CRC_32_OK                      0x40000000
  223. #define RX_COMPLETE_FRAME                 0x80000000
  224. /*  Offsets and constants for use with the buffer memory         */
  225. /* Buffer pointers and channel types */
  226. #define BUFFER_PTR_MASK                   0x0000FFFF
  227. #define RX_INT_THRESHOLD_MULT             0x00010000
  228. #define RX_INT_THRESHOLD_MASK             0x07FF
  229. #define INT_EVERY_N_CELLS                 0x08000000
  230. #define CONGESTION_EXPERIENCED            0x10000000
  231. #define FIRST_CELL_OF_AAL5_FRAME          0x20000000
  232. #define CHANNEL_TYPE_AAL5                 0x00000000
  233. #define CHANNEL_TYPE_RAW_CELLS            0x40000000
  234. #define CHANNEL_TYPE_AAL3_4               0x80000000
  235. /* Buffer status stuff */
  236. #define BUFF_STATUS_MASK                  0x00030000
  237. #define BUFF_STATUS_EMPTY                 0x00000000
  238. #define BUFF_STATUS_CELL_AV               0x00010000
  239. #define BUFF_STATUS_LAST_CELL_AV          0x00020000
  240. /* Transmit channel stuff */
  241. /* Receive channel stuff */
  242. #define RX_CHANNEL_DISABLED               0x00000000
  243. #define RX_CHANNEL_IDLE                   0x00000001
  244. /*  General things */
  245. #define INITIAL_CRC                       0xFFFFFFFF
  246. // A Horizon u32, a byte! Really nasty. Horizon pointers are (32 bit)
  247. // word addresses and so standard C pointer operations break (as they
  248. // assume byte addresses); so we pretend that Horizon words (and word
  249. // pointers) are bytes (and byte pointers) for the purposes of having
  250. // a memory map that works.
  251. typedef u8 HDW;
  252. typedef struct cell_buf {
  253.   HDW payload[12];
  254.   HDW next;
  255.   HDW cell_count;               // AAL5 rx bufs
  256.   HDW res;
  257.   union {
  258.     HDW partial_crc;            // AAL5 rx bufs
  259.     HDW cell_header;            // RAW     bufs
  260.   } u;
  261. } cell_buf;
  262. typedef struct tx_ch_desc {
  263.   HDW rd_buf_type;
  264.   HDW wr_buf_type;
  265.   HDW partial_crc;
  266.   HDW cell_header;
  267. } tx_ch_desc;
  268. typedef struct rx_ch_desc {
  269.   HDW wr_buf_type;
  270.   HDW rd_buf_type;
  271. } rx_ch_desc;
  272. typedef struct rx_q_entry {
  273.   HDW entry;
  274. } rx_q_entry;
  275. #define TX_CHANS 8
  276. #define RX_CHANS 1024
  277. #define RX_QS 1024
  278. #define MAX_VCS RX_CHANS
  279. /* Horizon buffer memory map */
  280. // TX Channel Descriptors         2
  281. // TX Initial Buffers             8 // TX_CHANS
  282. #define BUFN1_SIZE              118 // (126 - TX_CHANS)
  283. //      RX/TX Start/End Buffers   4
  284. #define BUFN2_SIZE              124
  285. //      RX Queue Entries         64
  286. #define BUFN3_SIZE              192
  287. //      RX Channel Descriptors  128
  288. #define BUFN4_SIZE             1408
  289. //      TOTAL cell_buff chunks 2048
  290. //    cell_buf             bufs[2048];
  291. //    HDW                  dws[32768];
  292. typedef struct MEMMAP {
  293.   tx_ch_desc  tx_descs[TX_CHANS];     //  8 *    4 =    32 , 0x0020
  294.   cell_buf    inittxbufs[TX_CHANS];   // these are really
  295.   cell_buf    bufn1[BUFN1_SIZE];      // part of this pool
  296.   cell_buf    txfreebufstart;
  297.   cell_buf    txfreebufend;
  298.   cell_buf    rxfreebufstart;
  299.   cell_buf    rxfreebufend;           // 8+118+1+1+1+1+124 = 254
  300.   cell_buf    bufn2[BUFN2_SIZE];      // 16 *  254 =  4064 , 0x1000
  301.   rx_q_entry  rx_q_entries[RX_QS];    //  1 * 1024 =  1024 , 0x1400
  302.   cell_buf    bufn3[BUFN3_SIZE];      // 16 *  192 =  3072 , 0x2000
  303.   rx_ch_desc  rx_descs[MAX_VCS];      //  2 * 1024 =  2048 , 0x2800
  304.   cell_buf    bufn4[BUFN4_SIZE];      // 16 * 1408 = 22528 , 0x8000
  305. } MEMMAP;
  306. #define memmap ((MEMMAP *)0)
  307. /* end horizon specific bits */
  308. typedef enum {
  309.   aal0,
  310.   aal34,
  311.   aal5
  312. } hrz_aal;
  313. typedef enum {
  314.   tx_busy,
  315.   rx_busy,
  316.   ultra
  317. } hrz_flags;
  318. // a single struct pointed to by atm_vcc->dev_data
  319. typedef struct {
  320.   unsigned int        tx_rate;
  321.   unsigned int        rx_rate;
  322.   u16                 channel;
  323.   u16                 tx_xbr_bits;
  324.   u16                 tx_pcr_bits;
  325. #if 0
  326.   u16                 tx_scr_bits;
  327.   u16                 tx_bucket_bits;
  328. #endif
  329.   hrz_aal             aal;
  330. } hrz_vcc;
  331. struct hrz_dev {
  332.   
  333.   u32                 iobase;
  334.   u32 *               membase;
  335.   struct sk_buff *    rx_skb;     // skb being RXed
  336.   unsigned int        rx_bytes;   // bytes remaining to RX within region
  337.   void *              rx_addr;    // addr to send bytes to (for PIO)
  338.   unsigned int        rx_channel; // channel that the skb is going out on
  339.   struct sk_buff *    tx_skb;     // skb being TXed
  340.   unsigned int        tx_bytes;   // bytes remaining to TX within region
  341.   void *              tx_addr;    // addr to send bytes from (for PIO)
  342.   struct iovec *      tx_iovec;   // remaining regions
  343.   unsigned int        tx_regions; // number of remaining regions
  344.   spinlock_t          mem_lock;
  345. #if LINUX_VERSION_CODE >= 0x20303
  346.   wait_queue_head_t   tx_queue;
  347. #else
  348.   struct wait_queue * tx_queue;
  349. #endif
  350.   u8                  irq;
  351.   u8                  flags;
  352.   u8                  tx_last;
  353.   u8                  tx_idle;
  354.   rx_q_entry *        rx_q_reset;
  355.   rx_q_entry *        rx_q_entry;
  356.   rx_q_entry *        rx_q_wrap;
  357.   struct atm_dev *    atm_dev;
  358.   u32                 last_vc;
  359.   
  360.   int                 noof_spare_buffers;
  361.   u16                 spare_buffers[SPARE_BUFFER_POOL_SIZE];
  362.   u16                 tx_channel_record[TX_CHANS];
  363.   // this is what we follow when we get incoming data
  364.   u32              txer[MAX_VCS/32];
  365.   struct atm_vcc * rxer[MAX_VCS];
  366.   // cell rate allocation
  367.   spinlock_t       rate_lock;
  368.   unsigned int     rx_avail;
  369.   unsigned int     tx_avail;
  370.   
  371.   // dev stats
  372.   unsigned long    tx_cell_count;
  373.   unsigned long    rx_cell_count;
  374.   unsigned long    hec_error_count;
  375.   unsigned long    unassigned_cell_count;
  376.   struct pci_dev * pci_dev;
  377.   struct hrz_dev * prev;
  378. };
  379. typedef struct hrz_dev hrz_dev;
  380. /* macros for use later */
  381. #define BUF_PTR(cbptr) ((cbptr) - (cell_buf *) 0)
  382. #define INTERESTING_INTERRUPTS 
  383.   (RX_DATA_AV | RX_DISABLED | TX_BUS_MASTER_COMPLETE | RX_BUS_MASTER_COMPLETE)
  384. // 190 cells by default (192 TX buffers - 2 elbow room, see docs)
  385. #define TX_AAL5_LIMIT (190*ATM_CELL_PAYLOAD-ATM_AAL5_TRAILER) // 9112
  386. // Have enough RX buffers (unless we allow other buffer splits)
  387. #define RX_AAL5_LIMIT ATM_MAX_AAL5_PDU
  388. /* multi-statement macro protector */
  389. #define DW(x) do{ x } while(0)
  390. #define HRZ_DEV(atm_dev) ((hrz_dev *) (atm_dev)->dev_data)
  391. #define HRZ_VCC(atm_vcc) ((hrz_vcc *) (atm_vcc)->dev_data)
  392. /* Turn the LEDs on and off                                                 */
  393. // The LEDs bits are upside down in that setting the bit in the debug
  394. // register will turn the appropriate LED off.
  395. #define YELLOW_LED    DEBUG_BIT_0
  396. #define GREEN_LED     DEBUG_BIT_1
  397. #define YELLOW_LED_OE DEBUG_BIT_0_OE
  398. #define GREEN_LED_OE  DEBUG_BIT_1_OE
  399. #define GREEN_LED_OFF(dev)                      
  400.   wr_regl (dev, CONTROL_0_REG, rd_regl (dev, CONTROL_0_REG) | GREEN_LED)
  401. #define GREEN_LED_ON(dev)                       
  402.   wr_regl (dev, CONTROL_0_REG, rd_regl (dev, CONTROL_0_REG) &~ GREEN_LED)
  403. #define YELLOW_LED_OFF(dev)                     
  404.   wr_regl (dev, CONTROL_0_REG, rd_regl (dev, CONTROL_0_REG) | YELLOW_LED)
  405. #define YELLOW_LED_ON(dev)                      
  406.   wr_regl (dev, CONTROL_0_REG, rd_regl (dev, CONTROL_0_REG) &~ YELLOW_LED)
  407. typedef enum {
  408.   round_up,
  409.   round_down,
  410.   round_nearest
  411. } rounding;
  412. #endif /* DRIVER_ATM_HORIZON_H */