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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.   Madge Horizon ATM Adapter driver.
  3.   Copyright (C) 1995-1999  Madge Networks Ltd.
  4.   
  5.   This program is free software; you can redistribute it and/or modify
  6.   it under the terms of the GNU General Public License as published by
  7.   the Free Software Foundation; either version 2 of the License, or
  8.   (at your option) any later version.
  9.   
  10.   This program is distributed in the hope that it will be useful,
  11.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.   GNU General Public License for more details.
  14.   
  15.   You should have received a copy of the GNU General Public License
  16.   along with this program; if not, write to the Free Software
  17.   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.   
  19.   The GNU GPL is contained in /usr/doc/copyright/GPL on a Debian
  20.   system and in the file COPYING in the Linux kernel source.
  21. */
  22. /*
  23.   IMPORTANT NOTE: Madge Networks no longer makes the adapters
  24.   supported by this driver and makes no commitment to maintain it.
  25. */
  26. #include <linux/module.h>
  27. #include <linux/kernel.h>
  28. #include <linux/mm.h>
  29. #include <linux/pci.h>
  30. #include <linux/errno.h>
  31. #include <linux/atm.h>
  32. #include <linux/atmdev.h>
  33. #include <linux/sonet.h>
  34. #include <linux/skbuff.h>
  35. #include <linux/time.h>
  36. #include <linux/delay.h>
  37. #include <linux/uio.h>
  38. #include <linux/init.h>
  39. #include <linux/ioport.h>
  40. #include <asm/system.h>
  41. #include <asm/io.h>
  42. #include <asm/atomic.h>
  43. #include <asm/uaccess.h>
  44. #include <asm/string.h>
  45. #include <asm/byteorder.h>
  46. #include "horizon.h"
  47. #define maintainer_string "Giuliano Procida at Madge Networks <gprocida@madge.com>"
  48. #define description_string "Madge ATM Horizon [Ultra] driver"
  49. #define version_string "1.2.1"
  50. static inline void __init show_version (void) {
  51.   printk ("%s version %sn", description_string, version_string);
  52. }
  53. /*
  54.   
  55.   CREDITS
  56.   
  57.   Driver and documentation by:
  58.   
  59.   Chris Aston        Madge Networks
  60.   Giuliano Procida   Madge Networks
  61.   Simon Benham       Madge Networks
  62.   Simon Johnson      Madge Networks
  63.   Various Others     Madge Networks
  64.   
  65.   Some inspiration taken from other drivers by:
  66.   
  67.   Alexandru Cucos    UTBv
  68.   Kari Mettinen      University of Helsinki
  69.   Werner Almesberger EPFL LRC
  70.   
  71.   Theory of Operation
  72.   
  73.   I Hardware, detection, initialisation and shutdown.
  74.   
  75.   1. Supported Hardware
  76.   
  77.   This driver should handle all variants of the PCI Madge ATM adapters
  78.   with the Horizon chipset. These are all PCI cards supporting PIO, BM
  79.   DMA and a form of MMIO (registers only, not internal RAM).
  80.   
  81.   The driver is only known to work with SONET and UTP Horizon Ultra
  82.   cards at 155Mb/s. However, code is in place to deal with both the
  83.   original Horizon and 25Mb/s operation.
  84.   
  85.   There are two revisions of the Horizon ASIC: the original and the
  86.   Ultra. Details of hardware bugs are in section III.
  87.   
  88.   The ASIC version can be distinguished by chip markings but is NOT
  89.   indicated by the PCI revision (all adapters seem to have PCI rev 1).
  90.   
  91.   I believe that:
  92.   
  93.   Horizon       => Collage  25 PCI Adapter (UTP and STP)
  94.   Horizon Ultra => Collage 155 PCI Client (UTP or SONET)
  95.   Ambassador x  => Collage 155 PCI Server (completely different)
  96.   
  97.   Horizon (25Mb/s) is fitted with UTP and STP connectors. It seems to
  98.   have a Madge B154 plus glue logic serializer. I have also found a
  99.   really ancient version of this with slightly different glue. It
  100.   comes with the revision 0 (140-025-01) ASIC.
  101.   
  102.   Horizon Ultra (155Mb/s) is fitted with either a Pulse Medialink
  103.   output (UTP) or an HP HFBR 5205 output (SONET). It has either
  104.   Madge's SAMBA framer or a SUNI-lite device (early versions). It
  105.   comes with the revision 1 (140-027-01) ASIC.
  106.   
  107.   2. Detection
  108.   
  109.   All Horizon-based cards present with the same PCI Vendor and Device
  110.   IDs. The standard Linux 2.2 PCI API is used to locate any cards and
  111.   to enable bus-mastering (with appropriate latency).
  112.   
  113.   ATM_LAYER_STATUS in the control register distinguishes between the
  114.   two possible physical layers (25 and 155). It is not clear whether
  115.   the 155 cards can also operate at 25Mbps. We rely on the fact that a
  116.   card operates at 155 if and only if it has the newer Horizon Ultra
  117.   ASIC.
  118.   
  119.   For 155 cards the two possible framers are probed for and then set
  120.   up for loop-timing.
  121.   
  122.   3. Initialisation
  123.   
  124.   The card is reset and then put into a known state. The physical
  125.   layer is configured for normal operation at the appropriate speed;
  126.   in the case of the 155 cards, the framer is initialised with
  127.   line-based timing; the internal RAM is zeroed and the allocation of
  128.   buffers for RX and TX is made; the Burnt In Address is read and
  129.   copied to the ATM ESI; various policy settings for RX (VPI bits,
  130.   unknown VCs, oam cells) are made. Ideally all policy items should be
  131.   configurable at module load (if not actually on-demand), however,
  132.   only the vpi vs vci bit allocation can be specified at insmod.
  133.   
  134.   4. Shutdown
  135.   
  136.   This is in response to module_cleaup. No VCs are in use and the card
  137.   should be idle; it is reset.
  138.   
  139.   II Driver software (as it should be)
  140.   
  141.   0. Traffic Parameters
  142.   
  143.   The traffic classes (not an enumeration) are currently: ATM_NONE (no
  144.   traffic), ATM_UBR, ATM_CBR, ATM_VBR and ATM_ABR, ATM_ANYCLASS
  145.   (compatible with everything). Together with (perhaps only some of)
  146.   the following items they make up the traffic specification.
  147.   
  148.   struct atm_trafprm {
  149.     unsigned char traffic_class; traffic class (ATM_UBR, ...)
  150.     int           max_pcr;       maximum PCR in cells per second
  151.     int           pcr;           desired PCR in cells per second
  152.     int           min_pcr;       minimum PCR in cells per second
  153.     int           max_cdv;       maximum CDV in microseconds
  154.     int           max_sdu;       maximum SDU in bytes
  155.   };
  156.   
  157.   Note that these denote bandwidth available not bandwidth used; the
  158.   possibilities according to ATMF are:
  159.   
  160.   Real Time (cdv and max CDT given)
  161.   
  162.   CBR(pcr)             pcr bandwidth always available
  163.   rtVBR(pcr,scr,mbs)   scr bandwidth always available, upto pcr at mbs too
  164.   
  165.   Non Real Time
  166.   
  167.   nrtVBR(pcr,scr,mbs)  scr bandwidth always available, upto pcr at mbs too
  168.   UBR()
  169.   ABR(mcr,pcr)         mcr bandwidth always available, upto pcr (depending) too
  170.   
  171.   mbs is max burst size (bucket)
  172.   pcr and scr have associated cdvt values
  173.   mcr is like scr but has no cdtv
  174.   cdtv may differ at each hop
  175.   
  176.   Some of the above items are qos items (as opposed to traffic
  177.   parameters). We have nothing to do with qos. All except ABR can have
  178.   their traffic parameters converted to GCRA parameters. The GCRA may
  179.   be implemented as a (real-number) leaky bucket. The GCRA can be used
  180.   in complicated ways by switches and in simpler ways by end-stations.
  181.   It can be used both to filter incoming cells and shape out-going
  182.   cells.
  183.   
  184.   ATM Linux actually supports:
  185.   
  186.   ATM_NONE() (no traffic in this direction)
  187.   ATM_UBR(max_frame_size)
  188.   ATM_CBR(max/min_pcr, max_cdv, max_frame_size)
  189.   
  190.   0 or ATM_MAX_PCR are used to indicate maximum available PCR
  191.   
  192.   A traffic specification consists of the AAL type and separate
  193.   traffic specifications for either direction. In ATM Linux it is:
  194.   
  195.   struct atm_qos {
  196.   struct atm_trafprm txtp;
  197.   struct atm_trafprm rxtp;
  198.   unsigned char aal;
  199.   };
  200.   
  201.   AAL types are:
  202.   
  203.   ATM_NO_AAL    AAL not specified
  204.   ATM_AAL0      "raw" ATM cells
  205.   ATM_AAL1      AAL1 (CBR)
  206.   ATM_AAL2      AAL2 (VBR)
  207.   ATM_AAL34     AAL3/4 (data)
  208.   ATM_AAL5      AAL5 (data)
  209.   ATM_SAAL      signaling AAL
  210.   
  211.   The Horizon has support for AAL frame types: 0, 3/4 and 5. However,
  212.   it does not implement AAL 3/4 SAR and it has a different notion of
  213.   "raw cell" to ATM Linux's (48 bytes vs. 52 bytes) so neither are
  214.   supported by this driver.
  215.   
  216.   The Horizon has limited support for ABR (including UBR), VBR and
  217.   CBR. Each TX channel has a bucket (containing up to 31 cell units)
  218.   and two timers (PCR and SCR) associated with it that can be used to
  219.   govern cell emissions and host notification (in the case of ABR this
  220.   is presumably so that RM cells may be emitted at appropriate times).
  221.   The timers may either be disabled or may be set to any of 240 values
  222.   (determined by the clock crystal, a fixed (?) per-device divider, a
  223.   configurable divider and a configurable timer preload value).
  224.   
  225.   At the moment only UBR and CBR are supported by the driver. VBR will
  226.   be supported as soon as ATM for Linux supports it. ABR support is
  227.   very unlikely as RM cell handling is completely up to the driver.
  228.   
  229.   1. TX (TX channel setup and TX transfer)
  230.   
  231.   The TX half of the driver owns the TX Horizon registers. The TX
  232.   component in the IRQ handler is the BM completion handler. This can
  233.   only be entered when tx_busy is true (enforced by hardware). The
  234.   other TX component can only be entered when tx_busy is false
  235.   (enforced by driver). So TX is single-threaded.
  236.   
  237.   Apart from a minor optimisation to not re-select the last channel,
  238.   the TX send component works as follows:
  239.   
  240.   Atomic test and set tx_busy until we succeed; we should implement
  241.   some sort of timeout so that tx_busy will never be stuck at true.
  242.   
  243.   If no TX channel is set up for this VC we wait for an idle one (if
  244.   necessary) and set it up.
  245.   
  246.   At this point we have a TX channel ready for use. We wait for enough
  247.   buffers to become available then start a TX transmit (set the TX
  248.   descriptor, schedule transfer, exit).
  249.   
  250.   The IRQ component handles TX completion (stats, free buffer, tx_busy
  251.   unset, exit). We also re-schedule further transfers for the same
  252.   frame if needed.
  253.   
  254.   TX setup in more detail:
  255.   
  256.   TX open is a nop, the relevant information is held in the hrz_vcc
  257.   (vcc->dev_data) structure and is "cached" on the card.
  258.   
  259.   TX close gets the TX lock and clears the channel from the "cache".
  260.   
  261.   2. RX (Data Available and RX transfer)
  262.   
  263.   The RX half of the driver owns the RX registers. There are two RX
  264.   components in the IRQ handler: the data available handler deals with
  265.   fresh data that has arrived on the card, the BM completion handler
  266.   is very similar to the TX completion handler. The data available
  267.   handler grabs the rx_lock and it is only released once the data has
  268.   been discarded or completely transferred to the host. The BM
  269.   completion handler only runs when the lock is held; the data
  270.   available handler is locked out over the same period.
  271.   
  272.   Data available on the card triggers an interrupt. If the data is not
  273.   suitable for our existing RX channels or we cannot allocate a buffer
  274.   it is flushed. Otherwise an RX receive is scheduled. Multiple RX
  275.   transfers may be scheduled for the same frame.
  276.   
  277.   RX setup in more detail:
  278.   
  279.   RX open...
  280.   RX close...
  281.   
  282.   III Hardware Bugs
  283.   
  284.   0. Byte vs Word addressing of adapter RAM.
  285.   
  286.   A design feature; see the .h file (especially the memory map).
  287.   
  288.   1. Bus Master Data Transfers (original Horizon only, fixed in Ultra)
  289.   
  290.   The host must not start a transmit direction transfer at a
  291.   non-four-byte boundary in host memory. Instead the host should
  292.   perform a byte, or a two byte, or one byte followed by two byte
  293.   transfer in order to start the rest of the transfer on a four byte
  294.   boundary. RX is OK.
  295.   
  296.   Simultaneous transmit and receive direction bus master transfers are
  297.   not allowed.
  298.   
  299.   The simplest solution to these two is to always do PIO (never DMA)
  300.   in the TX direction on the original Horizon. More complicated
  301.   solutions are likely to hurt my brain.
  302.   
  303.   2. Loss of buffer on close VC
  304.   
  305.   When a VC is being closed, the buffer associated with it is not
  306.   returned to the pool. The host must store the reference to this
  307.   buffer and when opening a new VC then give it to that new VC.
  308.   
  309.   The host intervention currently consists of stacking such a buffer
  310.   pointer at VC close and checking the stack at VC open.
  311.   
  312.   3. Failure to close a VC
  313.   
  314.   If a VC is currently receiving a frame then closing the VC may fail
  315.   and the frame continues to be received.
  316.   
  317.   The solution is to make sure any received frames are flushed when
  318.   ready. This is currently done just before the solution to 2.
  319.   
  320.   4. PCI bus (original Horizon only, fixed in Ultra)
  321.   
  322.   Reading from the data port prior to initialisation will hang the PCI
  323.   bus. Just don't do that then! We don't.
  324.   
  325.   IV To Do List
  326.   
  327.   . Timer code may be broken.
  328.   
  329.   . Allow users to specify buffer allocation split for TX and RX.
  330.   
  331.   . Deal once and for all with buggy VC close.
  332.   
  333.   . Handle interrupted and/or non-blocking operations.
  334.   
  335.   . Change some macros to functions and move from .h to .c.
  336.   
  337.   . Try to limit the number of TX frames each VC may have queued, in
  338.     order to reduce the chances of TX buffer exhaustion.
  339.   
  340.   . Implement VBR (bucket and timers not understood) and ABR (need to
  341.     do RM cells manually); also no Linux support for either.
  342.   
  343.   . Implement QoS changes on open VCs (involves extracting parts of VC open
  344.     and close into separate functions and using them to make changes).
  345.   
  346. */
  347. /********** globals **********/
  348. static hrz_dev * hrz_devs = NULL;
  349. static struct timer_list housekeeping;
  350. static unsigned short debug = 0;
  351. static unsigned short vpi_bits = 0;
  352. static unsigned short max_tx_size = 9000;
  353. static unsigned short max_rx_size = 9000;
  354. static unsigned char pci_lat = 0;
  355. /********** access functions **********/
  356. /* Read / Write Horizon registers */
  357. static inline void wr_regl (const hrz_dev * dev, unsigned char reg, u32 data) {
  358.   outl (cpu_to_le32 (data), dev->iobase + reg);
  359. }
  360. static inline u32 rd_regl (const hrz_dev * dev, unsigned char reg) {
  361.   return le32_to_cpu (inl (dev->iobase + reg));
  362. }
  363. static inline void wr_regw (const hrz_dev * dev, unsigned char reg, u16 data) {
  364.   outw (cpu_to_le16 (data), dev->iobase + reg);
  365. }
  366. static inline u16 rd_regw (const hrz_dev * dev, unsigned char reg) {
  367.   return le16_to_cpu (inw (dev->iobase + reg));
  368. }
  369. static inline void wrs_regb (const hrz_dev * dev, unsigned char reg, void * addr, u32 len) {
  370.   outsb (dev->iobase + reg, addr, len);
  371. }
  372. static inline void rds_regb (const hrz_dev * dev, unsigned char reg, void * addr, u32 len) {
  373.   insb (dev->iobase + reg, addr, len);
  374. }
  375. /* Read / Write to a given address in Horizon buffer memory.
  376.    Interrupts must be disabled between the address register and data
  377.    port accesses as these must form an atomic operation. */
  378. static inline void wr_mem (const hrz_dev * dev, HDW * addr, u32 data) {
  379.   // wr_regl (dev, MEM_WR_ADDR_REG_OFF, (u32) addr);
  380.   wr_regl (dev, MEM_WR_ADDR_REG_OFF, (addr - (HDW *) 0) * sizeof(HDW));
  381.   wr_regl (dev, MEMORY_PORT_OFF, data);
  382. }
  383. static inline u32 rd_mem (const hrz_dev * dev, HDW * addr) {
  384.   // wr_regl (dev, MEM_RD_ADDR_REG_OFF, (u32) addr);
  385.   wr_regl (dev, MEM_RD_ADDR_REG_OFF, (addr - (HDW *) 0) * sizeof(HDW));
  386.   return rd_regl (dev, MEMORY_PORT_OFF);
  387. }
  388. static inline void wr_framer (const hrz_dev * dev, u32 addr, u32 data) {
  389.   wr_regl (dev, MEM_WR_ADDR_REG_OFF, (u32) addr | 0x80000000);
  390.   wr_regl (dev, MEMORY_PORT_OFF, data);
  391. }
  392. static inline u32 rd_framer (const hrz_dev * dev, u32 addr) {
  393.   wr_regl (dev, MEM_RD_ADDR_REG_OFF, (u32) addr | 0x80000000);
  394.   return rd_regl (dev, MEMORY_PORT_OFF);
  395. }
  396. /********** specialised access functions **********/
  397. /* RX */
  398. static inline void FLUSH_RX_CHANNEL (hrz_dev * dev, u16 channel) {
  399.   wr_regw (dev, RX_CHANNEL_PORT_OFF, FLUSH_CHANNEL | channel);
  400.   return;
  401. }
  402. static inline void WAIT_FLUSH_RX_COMPLETE (hrz_dev * dev) {
  403.   while (rd_regw (dev, RX_CHANNEL_PORT_OFF) & FLUSH_CHANNEL)
  404.     ;
  405.   return;
  406. }
  407. static inline void SELECT_RX_CHANNEL (hrz_dev * dev, u16 channel) {
  408.   wr_regw (dev, RX_CHANNEL_PORT_OFF, channel);
  409.   return;
  410. }
  411. static inline void WAIT_UPDATE_COMPLETE (hrz_dev * dev) {
  412.   while (rd_regw (dev, RX_CHANNEL_PORT_OFF) & RX_CHANNEL_UPDATE_IN_PROGRESS)
  413.     ;
  414.   return;
  415. }
  416. /* TX */
  417. static inline void SELECT_TX_CHANNEL (hrz_dev * dev, u16 tx_channel) {
  418.   wr_regl (dev, TX_CHANNEL_PORT_OFF, tx_channel);
  419.   return;
  420. }
  421. /* Update or query one configuration parameter of a particular channel. */
  422. static inline void update_tx_channel_config (hrz_dev * dev, short chan, u8 mode, u16 value) {
  423.   wr_regw (dev, TX_CHANNEL_CONFIG_COMMAND_OFF,
  424.    chan * TX_CHANNEL_CONFIG_MULT | mode);
  425.     wr_regw (dev, TX_CHANNEL_CONFIG_DATA_OFF, value);
  426.     return;
  427. }
  428. static inline u16 query_tx_channel_config (hrz_dev * dev, short chan, u8 mode) {
  429.   wr_regw (dev, TX_CHANNEL_CONFIG_COMMAND_OFF,
  430.    chan * TX_CHANNEL_CONFIG_MULT | mode);
  431.     return rd_regw (dev, TX_CHANNEL_CONFIG_DATA_OFF);
  432. }
  433. /********** dump functions **********/
  434. static inline void dump_skb (char * prefix, unsigned int vc, struct sk_buff * skb) {
  435. #ifdef DEBUG_HORIZON
  436.   unsigned int i;
  437.   unsigned char * data = skb->data;
  438.   PRINTDB (DBG_DATA, "%s(%u) ", prefix, vc);
  439.   for (i=0; i<skb->len && i < 256;i++)
  440.     PRINTDM (DBG_DATA, "%02x ", data[i]);
  441.   PRINTDE (DBG_DATA,"");
  442. #else
  443.   (void) prefix;
  444.   (void) vc;
  445.   (void) skb;
  446. #endif
  447.   return;
  448. }
  449. static inline void dump_regs (hrz_dev * dev) {
  450. #ifdef DEBUG_HORIZON
  451.   PRINTD (DBG_REGS, "CONTROL 0: %#x", rd_regl (dev, CONTROL_0_REG));
  452.   PRINTD (DBG_REGS, "RX CONFIG: %#x", rd_regw (dev, RX_CONFIG_OFF));
  453.   PRINTD (DBG_REGS, "TX CONFIG: %#x", rd_regw (dev, TX_CONFIG_OFF));
  454.   PRINTD (DBG_REGS, "TX STATUS: %#x", rd_regw (dev, TX_STATUS_OFF));
  455.   PRINTD (DBG_REGS, "IRQ ENBLE: %#x", rd_regl (dev, INT_ENABLE_REG_OFF));
  456.   PRINTD (DBG_REGS, "IRQ SORCE: %#x", rd_regl (dev, INT_SOURCE_REG_OFF));
  457. #else
  458.   (void) dev;
  459. #endif
  460.   return;
  461. }
  462. static inline void dump_framer (hrz_dev * dev) {
  463. #ifdef DEBUG_HORIZON
  464.   unsigned int i;
  465.   PRINTDB (DBG_REGS, "framer registers:");
  466.   for (i = 0; i < 0x10; ++i)
  467.     PRINTDM (DBG_REGS, " %02x", rd_framer (dev, i));
  468.   PRINTDE (DBG_REGS,"");
  469. #else
  470.   (void) dev;
  471. #endif
  472.   return;
  473. }
  474. /********** VPI/VCI <-> (RX) channel conversions **********/
  475. /* RX channels are 10 bit integers, these fns are quite paranoid */
  476. static inline int channel_to_vpivci (const u16 channel, short * vpi, int * vci) {
  477.   unsigned short vci_bits = 10 - vpi_bits;
  478.   if ((channel & RX_CHANNEL_MASK) == channel) {
  479.     *vci = channel & ((~0)<<vci_bits);
  480.     *vpi = channel >> vci_bits;
  481.     return channel ? 0 : -EINVAL;
  482.   }
  483.   return -EINVAL;
  484. }
  485. static inline int vpivci_to_channel (u16 * channel, const short vpi, const int vci) {
  486.   unsigned short vci_bits = 10 - vpi_bits;
  487.   if (0 <= vpi && vpi < 1<<vpi_bits && 0 <= vci && vci < 1<<vci_bits) {
  488.     *channel = vpi<<vci_bits | vci;
  489.     return *channel ? 0 : -EINVAL;
  490.   }
  491.   return -EINVAL;
  492. }
  493. /********** decode RX queue entries **********/
  494. static inline u16 rx_q_entry_to_length (u32 x) {
  495.   return x & RX_Q_ENTRY_LENGTH_MASK;
  496. }
  497. static inline u16 rx_q_entry_to_rx_channel (u32 x) {
  498.   return (x>>RX_Q_ENTRY_CHANNEL_SHIFT) & RX_CHANNEL_MASK;
  499. }
  500. /* Cell Transmit Rate Values
  501.  *
  502.  * the cell transmit rate (cells per sec) can be set to a variety of
  503.  * different values by specifying two parameters: a timer preload from
  504.  * 1 to 16 (stored as 0 to 15) and a clock divider (2 to the power of
  505.  * an exponent from 0 to 14; the special value 15 disables the timer).
  506.  *
  507.  * cellrate = baserate / (preload * 2^divider)
  508.  *
  509.  * The maximum cell rate that can be specified is therefore just the
  510.  * base rate. Halving the preload is equivalent to adding 1 to the
  511.  * divider and so values 1 to 8 of the preload are redundant except
  512.  * in the case of a maximal divider (14).
  513.  *
  514.  * Given a desired cell rate, an algorithm to determine the preload
  515.  * and divider is:
  516.  * 
  517.  * a) x = baserate / cellrate, want p * 2^d = x (as far as possible)
  518.  * b) if x > 16 * 2^14 then set p = 16, d = 14 (min rate), done
  519.  *    if x <= 16 then set p = x, d = 0 (high rates), done
  520.  * c) now have 16 < x <= 2^18, or 1 < x/16 <= 2^14 and we want to
  521.  *    know n such that 2^(n-1) < x/16 <= 2^n, so slide a bit until
  522.  *    we find the range (n will be between 1 and 14), set d = n
  523.  * d) Also have 8 < x/2^n <= 16, so set p nearest x/2^n
  524.  *
  525.  * The algorithm used below is a minor variant of the above.
  526.  *
  527.  * The base rate is derived from the oscillator frequency (Hz) using a
  528.  * fixed divider:
  529.  *
  530.  * baserate = freq / 32 in the case of some Unknown Card
  531.  * baserate = freq / 8  in the case of the Horizon        25
  532.  * baserate = freq / 8  in the case of the Horizon Ultra 155
  533.  *
  534.  * The Horizon cards have oscillators and base rates as follows:
  535.  *
  536.  * Card               Oscillator  Base Rate
  537.  * Unknown Card       33 MHz      1.03125 MHz (33 MHz = PCI freq)
  538.  * Horizon        25  32 MHz      4       MHz
  539.  * Horizon Ultra 155  40 MHz      5       MHz
  540.  *
  541.  * The following defines give the base rates in Hz. These were
  542.  * previously a factor of 100 larger, no doubt someone was using
  543.  * cps*100.
  544.  */
  545. #define BR_UKN 1031250l
  546. #define BR_HRZ 4000000l
  547. #define BR_ULT 5000000l
  548. // d is an exponent
  549. #define CR_MIND 0
  550. #define CR_MAXD 14
  551. // p ranges from 1 to a power of 2
  552. #define CR_MAXPEXP 4
  553. static int make_rate (const hrz_dev * dev, u32 c, rounding r,
  554.       u16 * bits, unsigned int * actual) {
  555.   
  556.   // note: rounding the rate down means rounding 'p' up
  557.   
  558.   const unsigned long br = test_bit (ultra, (hrz_flags *) &dev->flags) ?
  559.     BR_ULT : BR_HRZ;
  560.   
  561.   u32 div = CR_MIND;
  562.   u32 pre;
  563.   
  564.   // local fn to build the timer bits
  565.   int set_cr (void) {
  566.     // paranoia
  567.     if (div > CR_MAXD || (!pre) || pre > 1<<CR_MAXPEXP) {
  568.       PRINTD (DBG_QOS, "set_cr internal failure: d=%u p=%u",
  569.       div, pre);
  570.       return -EINVAL;
  571.     } else {
  572.       if (bits)
  573. *bits = (div<<CLOCK_SELECT_SHIFT) | (pre-1);
  574.       if (actual) {
  575. *actual = (br + (pre<<div) - 1) / (pre<<div);
  576. PRINTD (DBG_QOS, "actual rate: %u", *actual);
  577.       }
  578.       return 0;
  579.     }
  580.   }
  581.   
  582.   // br_exp and br_man are used to avoid overflowing (c*maxp*2^d) in
  583.   // the tests below. We could think harder about exact possibilities
  584.   // of failure...
  585.   
  586.   unsigned long br_man = br;
  587.   unsigned int br_exp = 0;
  588.   
  589.   PRINTD (DBG_QOS|DBG_FLOW, "make_rate b=%lu, c=%u, %s", br, c,
  590.   (r == round_up) ? "up" : (r == round_down) ? "down" : "nearest");
  591.   
  592.   // avoid div by zero
  593.   if (!c) {
  594.     PRINTD (DBG_QOS|DBG_ERR, "zero rate is not allowed!");
  595.     return -EINVAL;
  596.   }
  597.   
  598.   while (br_exp < CR_MAXPEXP + CR_MIND && (br_man % 2 == 0)) {
  599.     br_man = br_man >> 1;
  600.     ++br_exp;
  601.   }
  602.   // (br >>br_exp) <<br_exp == br and
  603.   // br_exp <= CR_MAXPEXP+CR_MIND
  604.   
  605.   if (br_man <= (c << (CR_MAXPEXP+CR_MIND-br_exp))) {
  606.     // Equivalent to: B <= (c << (MAXPEXP+MIND))
  607.     // take care of rounding
  608.     switch (r) {
  609.       case round_down:
  610. pre = (br+(c<<div)-1)/(c<<div);
  611. // but p must be non-zero
  612. if (!pre)
  613.   pre = 1;
  614. break;
  615.       case round_nearest:
  616. pre = (br+(c<<div)/2)/(c<<div);
  617. // but p must be non-zero
  618. if (!pre)
  619.   pre = 1;
  620. break;
  621.       case round_up:
  622. pre = br/(c<<div);
  623. // but p must be non-zero
  624. if (!pre)
  625.   return -EINVAL;
  626. break;
  627.     }
  628.     PRINTD (DBG_QOS, "A: p=%u, d=%u", pre, div);
  629.     return set_cr ();
  630.   }
  631.   
  632.   // at this point we have
  633.   // d == MIND and (c << (MAXPEXP+MIND)) < B
  634.   while (div < CR_MAXD) {
  635.     div++;
  636.     if (br_man <= (c << (CR_MAXPEXP+div-br_exp))) {
  637.       // Equivalent to: B <= (c << (MAXPEXP+d))
  638.       // c << (MAXPEXP+d-1) < B <= c << (MAXPEXP+d)
  639.       // 1 << (MAXPEXP-1) < B/2^d/c <= 1 << MAXPEXP
  640.       // MAXP/2 < B/c2^d <= MAXP
  641.       // take care of rounding
  642.       switch (r) {
  643. case round_down:
  644.   pre = (br+(c<<div)-1)/(c<<div);
  645.   break;
  646. case round_nearest:
  647.   pre = (br+(c<<div)/2)/(c<<div);
  648.   break;
  649. case round_up:
  650.   pre = br/(c<<div);
  651.   break;
  652.       }
  653.       PRINTD (DBG_QOS, "B: p=%u, d=%u", pre, div);
  654.       return set_cr ();
  655.     }
  656.   }
  657.   // at this point we have
  658.   // d == MAXD and (c << (MAXPEXP+MAXD)) < B
  659.   // but we cannot go any higher
  660.   // take care of rounding
  661.   switch (r) {
  662.     case round_down:
  663.       return -EINVAL;
  664.       break;
  665.     case round_nearest:
  666.       break;
  667.     case round_up:
  668.       break;
  669.   }
  670.   pre = 1 << CR_MAXPEXP;
  671.   PRINTD (DBG_QOS, "C: p=%u, d=%u", pre, div);
  672.   return set_cr ();
  673. }
  674. static int make_rate_with_tolerance (const hrz_dev * dev, u32 c, rounding r, unsigned int tol,
  675.      u16 * bit_pattern, unsigned int * actual) {
  676.   unsigned int my_actual;
  677.   
  678.   PRINTD (DBG_QOS|DBG_FLOW, "make_rate_with_tolerance c=%u, %s, tol=%u",
  679.   c, (r == round_up) ? "up" : (r == round_down) ? "down" : "nearest", tol);
  680.   
  681.   if (!actual)
  682.     // actual rate is not returned
  683.     actual = &my_actual;
  684.   
  685.   if (make_rate (dev, c, round_nearest, bit_pattern, actual))
  686.     // should never happen as round_nearest always succeeds
  687.     return -1;
  688.   
  689.   if (c - tol <= *actual && *actual <= c + tol)
  690.     // within tolerance
  691.     return 0;
  692.   else
  693.     // intolerant, try rounding instead
  694.     return make_rate (dev, c, r, bit_pattern, actual);
  695. }
  696. /********** Listen on a VC **********/
  697. static int hrz_open_rx (hrz_dev * dev, u16 channel) {
  698.   // is there any guarantee that we don't get two simulataneous
  699.   // identical calls of this function from different processes? yes
  700.   // rate_lock
  701.   unsigned long flags;
  702.   u32 channel_type; // u16?
  703.   
  704.   u16 buf_ptr = RX_CHANNEL_IDLE;
  705.   
  706.   rx_ch_desc * rx_desc = &memmap->rx_descs[channel];
  707.   
  708.   PRINTD (DBG_FLOW, "hrz_open_rx %x", channel);
  709.   
  710.   spin_lock_irqsave (&dev->mem_lock, flags);
  711.   channel_type = rd_mem (dev, &rx_desc->wr_buf_type) & BUFFER_PTR_MASK;
  712.   spin_unlock_irqrestore (&dev->mem_lock, flags);
  713.   
  714.   // very serious error, should never occur
  715.   if (channel_type != RX_CHANNEL_DISABLED) {
  716.     PRINTD (DBG_ERR|DBG_VCC, "RX channel for VC already open");
  717.     return -EBUSY; // clean up?
  718.   }
  719.   
  720.   // Give back spare buffer
  721.   if (dev->noof_spare_buffers) {
  722.     buf_ptr = dev->spare_buffers[--dev->noof_spare_buffers];
  723.     PRINTD (DBG_VCC, "using a spare buffer: %u", buf_ptr);
  724.     // should never occur
  725.     if (buf_ptr == RX_CHANNEL_DISABLED || buf_ptr == RX_CHANNEL_IDLE) {
  726.       // but easy to recover from
  727.       PRINTD (DBG_ERR|DBG_VCC, "bad spare buffer pointer, using IDLE");
  728.       buf_ptr = RX_CHANNEL_IDLE;
  729.     }
  730.   } else {
  731.     PRINTD (DBG_VCC, "using IDLE buffer pointer");
  732.   }
  733.   
  734.   // Channel is currently disabled so change its status to idle
  735.   
  736.   // do we really need to save the flags again?
  737.   spin_lock_irqsave (&dev->mem_lock, flags);
  738.   
  739.   wr_mem (dev, &rx_desc->wr_buf_type,
  740.   buf_ptr | CHANNEL_TYPE_AAL5 | FIRST_CELL_OF_AAL5_FRAME);
  741.   if (buf_ptr != RX_CHANNEL_IDLE)
  742.     wr_mem (dev, &rx_desc->rd_buf_type, buf_ptr);
  743.   
  744.   spin_unlock_irqrestore (&dev->mem_lock, flags);
  745.   
  746.   // rxer->rate = make_rate (qos->peak_cells);
  747.   
  748.   PRINTD (DBG_FLOW, "hrz_open_rx ok");
  749.   
  750.   return 0;
  751. }
  752. #if 0
  753. /********** change vc rate for a given vc **********/
  754. static void hrz_change_vc_qos (ATM_RXER * rxer, MAAL_QOS * qos) {
  755.   rxer->rate = make_rate (qos->peak_cells);
  756. }
  757. #endif
  758. /********** free an skb (as per ATM device driver documentation) **********/
  759. static inline void hrz_kfree_skb (struct sk_buff * skb) {
  760.   if (ATM_SKB(skb)->vcc->pop) {
  761.     ATM_SKB(skb)->vcc->pop (ATM_SKB(skb)->vcc, skb);
  762.   } else {
  763.     dev_kfree_skb_any (skb);
  764.   }
  765. }
  766. /********** cancel listen on a VC **********/
  767. static void hrz_close_rx (hrz_dev * dev, u16 vc) {
  768.   unsigned long flags;
  769.   
  770.   u32 value;
  771.   
  772.   u32 r1, r2;
  773.   
  774.   rx_ch_desc * rx_desc = &memmap->rx_descs[vc];
  775.   
  776.   int was_idle = 0;
  777.   
  778.   spin_lock_irqsave (&dev->mem_lock, flags);
  779.   value = rd_mem (dev, &rx_desc->wr_buf_type) & BUFFER_PTR_MASK;
  780.   spin_unlock_irqrestore (&dev->mem_lock, flags);
  781.   
  782.   if (value == RX_CHANNEL_DISABLED) {
  783.     // I suppose this could happen once we deal with _NONE traffic properly
  784.     PRINTD (DBG_VCC, "closing VC: RX channel %u already disabled", vc);
  785.     return;
  786.   }
  787.   if (value == RX_CHANNEL_IDLE)
  788.     was_idle = 1;
  789.   
  790.   spin_lock_irqsave (&dev->mem_lock, flags);
  791.   
  792.   for (;;) {
  793.     wr_mem (dev, &rx_desc->wr_buf_type, RX_CHANNEL_DISABLED);
  794.     
  795.     if ((rd_mem (dev, &rx_desc->wr_buf_type) & BUFFER_PTR_MASK) == RX_CHANNEL_DISABLED)
  796.       break;
  797.     
  798.     was_idle = 0;
  799.   }
  800.   
  801.   if (was_idle) {
  802.     spin_unlock_irqrestore (&dev->mem_lock, flags);
  803.     return;
  804.   }
  805.   
  806.   WAIT_FLUSH_RX_COMPLETE(dev);
  807.   
  808.   // XXX Is this all really necessary? We can rely on the rx_data_av
  809.   // handler to discard frames that remain queued for delivery. If the
  810.   // worry is that immediately reopening the channel (perhaps by a
  811.   // different process) may cause some data to be mis-delivered then
  812.   // there may still be a simpler solution (such as busy-waiting on
  813.   // rx_busy once the channel is disabled or before a new one is
  814.   // opened - does this leave any holes?). Arguably setting up and
  815.   // tearing down the TX and RX halves of each virtual circuit could
  816.   // most safely be done within ?x_busy protected regions.
  817.   
  818.   // OK, current changes are that Simon's marker is disabled and we DO
  819.   // look for NULL rxer elsewhere. The code here seems flush frames
  820.   // and then remember the last dead cell belonging to the channel
  821.   // just disabled - the cell gets relinked at the next vc_open.
  822.   // However, when all VCs are closed or only a few opened there are a
  823.   // handful of buffers that are unusable.
  824.   
  825.   // Does anyone feel like documenting spare_buffers properly?
  826.   // Does anyone feel like fixing this in a nicer way?
  827.   
  828.   // Flush any data which is left in the channel
  829.   for (;;) {
  830.     // Change the rx channel port to something different to the RX
  831.     // channel we are trying to close to force Horizon to flush the rx
  832.     // channel read and write pointers.
  833.     
  834.     u16 other = vc^(RX_CHANS/2);
  835.     
  836.     SELECT_RX_CHANNEL (dev, other);
  837.     WAIT_UPDATE_COMPLETE (dev);
  838.     
  839.     r1 = rd_mem (dev, &rx_desc->rd_buf_type);
  840.     
  841.     // Select this RX channel. Flush doesn't seem to work unless we
  842.     // select an RX channel before hand
  843.     
  844.     SELECT_RX_CHANNEL (dev, vc);
  845.     WAIT_UPDATE_COMPLETE (dev);
  846.     
  847.     // Attempt to flush a frame on this RX channel
  848.     
  849.     FLUSH_RX_CHANNEL (dev, vc);
  850.     WAIT_FLUSH_RX_COMPLETE (dev);
  851.     
  852.     // Force Horizon to flush rx channel read and write pointers as before
  853.     
  854.     SELECT_RX_CHANNEL (dev, other);
  855.     WAIT_UPDATE_COMPLETE (dev);
  856.     
  857.     r2 = rd_mem (dev, &rx_desc->rd_buf_type);
  858.     
  859.     PRINTD (DBG_VCC|DBG_RX, "r1 = %u, r2 = %u", r1, r2);
  860.     
  861.     if (r1 == r2) {
  862.       dev->spare_buffers[dev->noof_spare_buffers++] = (u16)r1;
  863.       break;
  864.     }
  865.   }
  866.   
  867. #if 0
  868.   {
  869.     rx_q_entry * wr_ptr = &memmap->rx_q_entries[rd_regw (dev, RX_QUEUE_WR_PTR_OFF)];
  870.     rx_q_entry * rd_ptr = dev->rx_q_entry;
  871.     
  872.     PRINTD (DBG_VCC|DBG_RX, "rd_ptr = %u, wr_ptr = %u", rd_ptr, wr_ptr);
  873.     
  874.     while (rd_ptr != wr_ptr) {
  875.       u32 x = rd_mem (dev, (HDW *) rd_ptr);
  876.       
  877.       if (vc == rx_q_entry_to_rx_channel (x)) {
  878. x |= SIMONS_DODGEY_MARKER;
  879. PRINTD (DBG_RX|DBG_VCC|DBG_WARN, "marking a frame as dodgey");
  880. wr_mem (dev, (HDW *) rd_ptr, x);
  881.       }
  882.       
  883.       if (rd_ptr == dev->rx_q_wrap)
  884. rd_ptr = dev->rx_q_reset;
  885.       else
  886. rd_ptr++;
  887.     }
  888.   }
  889. #endif
  890.   
  891.   spin_unlock_irqrestore (&dev->mem_lock, flags);
  892.   
  893.   return;
  894. }
  895. /********** schedule RX transfers **********/
  896. // Note on tail recursion: a GCC developer said that it is not likely
  897. // to be fixed soon, so do not define TAILRECUSRIONWORKS unless you
  898. // are sure it does as you may otherwise overflow the kernel stack.
  899. // giving this fn a return value would help GCC, alledgedly
  900. static void rx_schedule (hrz_dev * dev, int irq) {
  901.   unsigned int rx_bytes;
  902.   
  903.   int pio_instead = 0;
  904. #ifndef TAILRECURSIONWORKS
  905.   pio_instead = 1;
  906.   while (pio_instead) {
  907. #endif
  908.     // bytes waiting for RX transfer
  909.     rx_bytes = dev->rx_bytes;
  910.     
  911. #if 0
  912.     spin_count = 0;
  913.     while (rd_regl (dev, MASTER_RX_COUNT_REG_OFF)) {
  914.       PRINTD (DBG_RX|DBG_WARN, "RX error: other PCI Bus Master RX still in progress!");
  915.       if (++spin_count > 10) {
  916. PRINTD (DBG_RX|DBG_ERR, "spun out waiting PCI Bus Master RX completion");
  917. wr_regl (dev, MASTER_RX_COUNT_REG_OFF, 0);
  918. clear_bit (rx_busy, &dev->flags);
  919. hrz_kfree_skb (dev->rx_skb);
  920. return;
  921.       }
  922.     }
  923. #endif
  924.     
  925.     // this code follows the TX code but (at the moment) there is only
  926.     // one region - the skb itself. I don't know if this will change,
  927.     // but it doesn't hurt to have the code here, disabled.
  928.     
  929.     if (rx_bytes) {
  930.       // start next transfer within same region
  931.       if (rx_bytes <= MAX_PIO_COUNT) {
  932. PRINTD (DBG_RX|DBG_BUS, "(pio)");
  933. pio_instead = 1;
  934.       }
  935.       if (rx_bytes <= MAX_TRANSFER_COUNT) {
  936. PRINTD (DBG_RX|DBG_BUS, "(simple or last multi)");
  937. dev->rx_bytes = 0;
  938.       } else {
  939. PRINTD (DBG_RX|DBG_BUS, "(continuing multi)");
  940. dev->rx_bytes = rx_bytes - MAX_TRANSFER_COUNT;
  941. rx_bytes = MAX_TRANSFER_COUNT;
  942.       }
  943.     } else {
  944.       // rx_bytes == 0 -- we're between regions
  945.       // regions remaining to transfer
  946. #if 0
  947.       unsigned int rx_regions = dev->rx_regions;
  948. #else
  949.       unsigned int rx_regions = 0;
  950. #endif
  951.       
  952.       if (rx_regions) {
  953. #if 0
  954. // start a new region
  955. dev->rx_addr = dev->rx_iovec->iov_base;
  956. rx_bytes = dev->rx_iovec->iov_len;
  957. ++dev->rx_iovec;
  958. dev->rx_regions = rx_regions - 1;
  959. if (rx_bytes <= MAX_PIO_COUNT) {
  960.   PRINTD (DBG_RX|DBG_BUS, "(pio)");
  961.   pio_instead = 1;
  962. }
  963. if (rx_bytes <= MAX_TRANSFER_COUNT) {
  964.   PRINTD (DBG_RX|DBG_BUS, "(full region)");
  965.   dev->rx_bytes = 0;
  966. } else {
  967.   PRINTD (DBG_RX|DBG_BUS, "(start multi region)");
  968.   dev->rx_bytes = rx_bytes - MAX_TRANSFER_COUNT;
  969.   rx_bytes = MAX_TRANSFER_COUNT;
  970. }
  971. #endif
  972.       } else {
  973. // rx_regions == 0
  974. // that's all folks - end of frame
  975. struct sk_buff * skb = dev->rx_skb;
  976. // dev->rx_iovec = 0;
  977. FLUSH_RX_CHANNEL (dev, dev->rx_channel);
  978. dump_skb ("<<<", dev->rx_channel, skb);
  979. PRINTD (DBG_RX|DBG_SKB, "push %p %u", skb->data, skb->len);
  980. {
  981.   struct atm_vcc * vcc = ATM_SKB(skb)->vcc;
  982.   // VC layer stats
  983.   atomic_inc(&vcc->stats->rx);
  984.   skb->stamp = xtime;
  985.   // end of our responsability
  986.   vcc->push (vcc, skb);
  987. }
  988.       }
  989.     }
  990.     
  991.     // note: writing RX_COUNT clears any interrupt condition
  992.     if (rx_bytes) {
  993.       if (pio_instead) {
  994. if (irq)
  995.   wr_regl (dev, MASTER_RX_COUNT_REG_OFF, 0);
  996. rds_regb (dev, DATA_PORT_OFF, dev->rx_addr, rx_bytes);
  997.       } else {
  998. wr_regl (dev, MASTER_RX_ADDR_REG_OFF, virt_to_bus (dev->rx_addr));
  999. wr_regl (dev, MASTER_RX_COUNT_REG_OFF, rx_bytes);
  1000.       }
  1001.       dev->rx_addr += rx_bytes;
  1002.     } else {
  1003.       if (irq)
  1004. wr_regl (dev, MASTER_RX_COUNT_REG_OFF, 0);
  1005.       // allow another RX thread to start
  1006.       YELLOW_LED_ON(dev);
  1007.       clear_bit (rx_busy, &dev->flags);
  1008.       PRINTD (DBG_RX, "cleared rx_busy for dev %p", dev);
  1009.     }
  1010.     
  1011. #ifdef TAILRECURSIONWORKS
  1012.     // and we all bless optimised tail calls
  1013.     if (pio_instead)
  1014.       return rx_schedule (dev, 0);
  1015.     return;
  1016. #else
  1017.     // grrrrrrr!
  1018.     irq = 0;
  1019.   }
  1020.   return;
  1021. #endif
  1022. }
  1023. /********** handle RX bus master complete events **********/
  1024. static inline void rx_bus_master_complete_handler (hrz_dev * dev) {
  1025.   if (test_bit (rx_busy, &dev->flags)) {
  1026.     rx_schedule (dev, 1);
  1027.   } else {
  1028.     PRINTD (DBG_RX|DBG_ERR, "unexpected RX bus master completion");
  1029.     // clear interrupt condition on adapter
  1030.     wr_regl (dev, MASTER_RX_COUNT_REG_OFF, 0);
  1031.   }
  1032.   return;
  1033. }
  1034. /********** (queue to) become the next TX thread **********/
  1035. static inline int tx_hold (hrz_dev * dev) {
  1036.   while (test_and_set_bit (tx_busy, &dev->flags)) {
  1037.     PRINTD (DBG_TX, "sleeping at tx lock %p %u", dev, dev->flags);
  1038.     interruptible_sleep_on (&dev->tx_queue);
  1039.     PRINTD (DBG_TX, "woken at tx lock %p %u", dev, dev->flags);
  1040.     if (signal_pending (current))
  1041.       return -1;
  1042.   }
  1043.   PRINTD (DBG_TX, "set tx_busy for dev %p", dev);
  1044.   return 0;
  1045. }
  1046. /********** allow another TX thread to start **********/
  1047. static inline void tx_release (hrz_dev * dev) {
  1048.   clear_bit (tx_busy, &dev->flags);
  1049.   PRINTD (DBG_TX, "cleared tx_busy for dev %p", dev);
  1050.   wake_up_interruptible (&dev->tx_queue);
  1051. }
  1052. /********** schedule TX transfers **********/
  1053. static void tx_schedule (hrz_dev * const dev, int irq) {
  1054.   unsigned int tx_bytes;
  1055.   
  1056.   int append_desc = 0;
  1057.   
  1058.   int pio_instead = 0;
  1059. #ifndef TAILRECURSIONWORKS
  1060.   pio_instead = 1;
  1061.   while (pio_instead) {
  1062. #endif
  1063.     // bytes in current region waiting for TX transfer
  1064.     tx_bytes = dev->tx_bytes;
  1065.     
  1066. #if 0
  1067.     spin_count = 0;
  1068.     while (rd_regl (dev, MASTER_TX_COUNT_REG_OFF)) {
  1069.       PRINTD (DBG_TX|DBG_WARN, "TX error: other PCI Bus Master TX still in progress!");
  1070.       if (++spin_count > 10) {
  1071. PRINTD (DBG_TX|DBG_ERR, "spun out waiting PCI Bus Master TX completion");
  1072. wr_regl (dev, MASTER_TX_COUNT_REG_OFF, 0);
  1073. tx_release (dev);
  1074. hrz_kfree_skb (dev->tx_skb);
  1075. return;
  1076.       }
  1077.     }
  1078. #endif
  1079.     
  1080.     if (tx_bytes) {
  1081.       // start next transfer within same region
  1082.       if (!test_bit (ultra, &dev->flags) || tx_bytes <= MAX_PIO_COUNT) {
  1083. PRINTD (DBG_TX|DBG_BUS, "(pio)");
  1084. pio_instead = 1;
  1085.       }
  1086.       if (tx_bytes <= MAX_TRANSFER_COUNT) {
  1087. PRINTD (DBG_TX|DBG_BUS, "(simple or last multi)");
  1088. if (!dev->tx_iovec) {
  1089.   // end of last region
  1090.   append_desc = 1;
  1091. }
  1092. dev->tx_bytes = 0;
  1093.       } else {
  1094. PRINTD (DBG_TX|DBG_BUS, "(continuing multi)");
  1095. dev->tx_bytes = tx_bytes - MAX_TRANSFER_COUNT;
  1096. tx_bytes = MAX_TRANSFER_COUNT;
  1097.       }
  1098.     } else {
  1099.       // tx_bytes == 0 -- we're between regions
  1100.       // regions remaining to transfer
  1101.       unsigned int tx_regions = dev->tx_regions;
  1102.       
  1103.       if (tx_regions) {
  1104. // start a new region
  1105. dev->tx_addr = dev->tx_iovec->iov_base;
  1106. tx_bytes = dev->tx_iovec->iov_len;
  1107. ++dev->tx_iovec;
  1108. dev->tx_regions = tx_regions - 1;
  1109. if (!test_bit (ultra, &dev->flags) || tx_bytes <= MAX_PIO_COUNT) {
  1110.   PRINTD (DBG_TX|DBG_BUS, "(pio)");
  1111.   pio_instead = 1;
  1112. }
  1113. if (tx_bytes <= MAX_TRANSFER_COUNT) {
  1114.   PRINTD (DBG_TX|DBG_BUS, "(full region)");
  1115.   dev->tx_bytes = 0;
  1116. } else {
  1117.   PRINTD (DBG_TX|DBG_BUS, "(start multi region)");
  1118.   dev->tx_bytes = tx_bytes - MAX_TRANSFER_COUNT;
  1119.   tx_bytes = MAX_TRANSFER_COUNT;
  1120. }
  1121.       } else {
  1122. // tx_regions == 0
  1123. // that's all folks - end of frame
  1124. struct sk_buff * skb = dev->tx_skb;
  1125. dev->tx_iovec = 0;
  1126. // VC layer stats
  1127. atomic_inc(&ATM_SKB(skb)->vcc->stats->tx);
  1128. // free the skb
  1129. hrz_kfree_skb (skb);
  1130.       }
  1131.     }
  1132.     
  1133.     // note: writing TX_COUNT clears any interrupt condition
  1134.     if (tx_bytes) {
  1135.       if (pio_instead) {
  1136. if (irq)
  1137.   wr_regl (dev, MASTER_TX_COUNT_REG_OFF, 0);
  1138. wrs_regb (dev, DATA_PORT_OFF, dev->tx_addr, tx_bytes);
  1139. if (append_desc)
  1140.   wr_regl (dev, TX_DESCRIPTOR_PORT_OFF, cpu_to_be32 (dev->tx_skb->len));
  1141.       } else {
  1142. wr_regl (dev, MASTER_TX_ADDR_REG_OFF, virt_to_bus (dev->tx_addr));
  1143. if (append_desc)
  1144.   wr_regl (dev, TX_DESCRIPTOR_REG_OFF, cpu_to_be32 (dev->tx_skb->len));
  1145. wr_regl (dev, MASTER_TX_COUNT_REG_OFF,
  1146.  append_desc
  1147.  ? tx_bytes | MASTER_TX_AUTO_APPEND_DESC
  1148.  : tx_bytes);
  1149.       }
  1150.       dev->tx_addr += tx_bytes;
  1151.     } else {
  1152.       if (irq)
  1153. wr_regl (dev, MASTER_TX_COUNT_REG_OFF, 0);
  1154.       YELLOW_LED_ON(dev);
  1155.       tx_release (dev);
  1156.     }
  1157.     
  1158. #ifdef TAILRECURSIONWORKS
  1159.     // and we all bless optimised tail calls
  1160.     if (pio_instead)
  1161.       return tx_schedule (dev, 0);
  1162.     return;
  1163. #else
  1164.     // grrrrrrr!
  1165.     irq = 0;
  1166.   }
  1167.   return;
  1168. #endif
  1169. }
  1170. /********** handle TX bus master complete events **********/
  1171. static inline void tx_bus_master_complete_handler (hrz_dev * dev) {
  1172.   if (test_bit (tx_busy, &dev->flags)) {
  1173.     tx_schedule (dev, 1);
  1174.   } else {
  1175.     PRINTD (DBG_TX|DBG_ERR, "unexpected TX bus master completion");
  1176.     // clear interrupt condition on adapter
  1177.     wr_regl (dev, MASTER_TX_COUNT_REG_OFF, 0);
  1178.   }
  1179.   return;
  1180. }
  1181. /********** move RX Q pointer to next item in circular buffer **********/
  1182. // called only from IRQ sub-handler
  1183. static inline u32 rx_queue_entry_next (hrz_dev * dev) {
  1184.   u32 rx_queue_entry;
  1185.   spin_lock (&dev->mem_lock);
  1186.   rx_queue_entry = rd_mem (dev, &dev->rx_q_entry->entry);
  1187.   if (dev->rx_q_entry == dev->rx_q_wrap)
  1188.     dev->rx_q_entry = dev->rx_q_reset;
  1189.   else
  1190.     dev->rx_q_entry++;
  1191.   wr_regw (dev, RX_QUEUE_RD_PTR_OFF, dev->rx_q_entry - dev->rx_q_reset);
  1192.   spin_unlock (&dev->mem_lock);
  1193.   return rx_queue_entry;
  1194. }
  1195. /********** handle RX disabled by device **********/
  1196. static inline void rx_disabled_handler (hrz_dev * dev) {
  1197.   wr_regw (dev, RX_CONFIG_OFF, rd_regw (dev, RX_CONFIG_OFF) | RX_ENABLE);
  1198.   // count me please
  1199.   PRINTK (KERN_WARNING, "RX was disabled!");
  1200. }
  1201. /********** handle RX data received by device **********/
  1202. // called from IRQ handler
  1203. static inline void rx_data_av_handler (hrz_dev * dev) {
  1204.   u32 rx_queue_entry;
  1205.   u32 rx_queue_entry_flags;
  1206.   u16 rx_len;
  1207.   u16 rx_channel;
  1208.   
  1209.   PRINTD (DBG_FLOW, "hrz_data_av_handler");
  1210.   
  1211.   // try to grab rx lock (not possible during RX bus mastering)
  1212.   if (test_and_set_bit (rx_busy, &dev->flags)) {
  1213.     PRINTD (DBG_RX, "locked out of rx lock");
  1214.     return;
  1215.   }
  1216.   PRINTD (DBG_RX, "set rx_busy for dev %p", dev);
  1217.   // lock is cleared if we fail now, o/w after bus master completion
  1218.   
  1219.   YELLOW_LED_OFF(dev);
  1220.   
  1221.   rx_queue_entry = rx_queue_entry_next (dev);
  1222.   
  1223.   rx_len = rx_q_entry_to_length (rx_queue_entry);
  1224.   rx_channel = rx_q_entry_to_rx_channel (rx_queue_entry);
  1225.   
  1226.   WAIT_FLUSH_RX_COMPLETE (dev);
  1227.   
  1228.   SELECT_RX_CHANNEL (dev, rx_channel);
  1229.   
  1230.   PRINTD (DBG_RX, "rx_queue_entry is: %#x", rx_queue_entry);
  1231.   rx_queue_entry_flags = rx_queue_entry & (RX_CRC_32_OK|RX_COMPLETE_FRAME|SIMONS_DODGEY_MARKER);
  1232.   
  1233.   if (!rx_len) {
  1234.     // (at least) bus-mastering breaks if we try to handle a
  1235.     // zero-length frame, besides AAL5 does not support them
  1236.     PRINTK (KERN_ERR, "zero-length frame!");
  1237.     rx_queue_entry_flags &= ~RX_COMPLETE_FRAME;
  1238.   }
  1239.   
  1240.   if (rx_queue_entry_flags & SIMONS_DODGEY_MARKER) {
  1241.     PRINTD (DBG_RX|DBG_ERR, "Simon's marker detected!");
  1242.   }
  1243.   if (rx_queue_entry_flags == (RX_CRC_32_OK | RX_COMPLETE_FRAME)) {
  1244.     struct atm_vcc * atm_vcc;
  1245.     
  1246.     PRINTD (DBG_RX, "got a frame on rx_channel %x len %u", rx_channel, rx_len);
  1247.     
  1248.     atm_vcc = dev->rxer[rx_channel];
  1249.     // if no vcc is assigned to this channel, we should drop the frame
  1250.     // (is this what SIMONS etc. was trying to achieve?)
  1251.     
  1252.     if (atm_vcc) {
  1253.       
  1254.       if (atm_vcc->qos.rxtp.traffic_class != ATM_NONE) {
  1255. if (rx_len <= atm_vcc->qos.rxtp.max_sdu) {
  1256.     
  1257.   struct sk_buff * skb = atm_alloc_charge (atm_vcc, rx_len, GFP_ATOMIC);
  1258.   if (skb) {
  1259.     // remember this so we can push it later
  1260.     dev->rx_skb = skb;
  1261.     // remember this so we can flush it later
  1262.     dev->rx_channel = rx_channel;
  1263.     
  1264.     // prepare socket buffer
  1265.     skb_put (skb, rx_len);
  1266.     ATM_SKB(skb)->vcc = atm_vcc;
  1267.     
  1268.     // simple transfer
  1269.     // dev->rx_regions = 0;
  1270.     // dev->rx_iovec = 0;
  1271.     dev->rx_bytes = rx_len;
  1272.     dev->rx_addr = skb->data;
  1273.     PRINTD (DBG_RX, "RX start simple transfer (addr %p, len %d)",
  1274.     skb->data, rx_len);
  1275.     
  1276.     // do the business
  1277.     rx_schedule (dev, 0);
  1278.     return;
  1279.     
  1280.   } else {
  1281.     PRINTD (DBG_SKB|DBG_WARN, "failed to get skb");
  1282.   }
  1283.   
  1284. } else {
  1285.   PRINTK (KERN_INFO, "frame received on TX-only VC %x", rx_channel);
  1286.   // do we count this?
  1287. }
  1288.       } else {
  1289. PRINTK (KERN_WARNING, "dropped over-size frame");
  1290. // do we count this?
  1291.       }
  1292.       
  1293.     } else {
  1294.       PRINTD (DBG_WARN|DBG_VCC|DBG_RX, "no VCC for this frame (VC closed)");
  1295.       // do we count this?
  1296.     }
  1297.     
  1298.   } else {
  1299.     // Wait update complete ? SPONG
  1300.   }
  1301.   
  1302.   // RX was aborted
  1303.   YELLOW_LED_ON(dev);
  1304.   
  1305.   FLUSH_RX_CHANNEL (dev,rx_channel);
  1306.   clear_bit (rx_busy, &dev->flags);
  1307.   
  1308.   return;
  1309. }
  1310. /********** interrupt handler **********/
  1311. static void interrupt_handler (int irq, void * dev_id, struct pt_regs * pt_regs) {
  1312.   hrz_dev * dev = hrz_devs;
  1313.   u32 int_source;
  1314.   unsigned int irq_ok;
  1315.   (void) pt_regs;
  1316.   
  1317.   PRINTD (DBG_FLOW, "interrupt_handler: %p", dev_id);
  1318.   
  1319.   if (!dev_id) {
  1320.     PRINTD (DBG_IRQ|DBG_ERR, "irq with NULL dev_id: %d", irq);
  1321.     return;
  1322.   }
  1323.   // Did one of our cards generate the interrupt?
  1324.   while (dev) {
  1325.     if (dev == dev_id)
  1326.       break;
  1327.     dev = dev->prev;
  1328.   }
  1329.   if (!dev) {
  1330.     PRINTD (DBG_IRQ, "irq not for me: %d", irq);
  1331.     return;
  1332.   }
  1333.   if (irq != dev->irq) {
  1334.     PRINTD (DBG_IRQ|DBG_ERR, "irq mismatch: %d", irq);
  1335.     return;
  1336.   }
  1337.   
  1338.   // definitely for us
  1339.   irq_ok = 0;
  1340.   while ((int_source = rd_regl (dev, INT_SOURCE_REG_OFF)
  1341.   & INTERESTING_INTERRUPTS)) {
  1342.     // In the interests of fairness, the (inline) handlers below are
  1343.     // called in sequence and without immediate return to the head of
  1344.     // the while loop. This is only of issue for slow hosts (or when
  1345.     // debugging messages are on). Really slow hosts may find a fast
  1346.     // sender keeps them permanently in the IRQ handler. :(
  1347.     
  1348.     // (only an issue for slow hosts) RX completion goes before
  1349.     // rx_data_av as the former implies rx_busy and so the latter
  1350.     // would just abort. If it reschedules another transfer
  1351.     // (continuing the same frame) then it will not clear rx_busy.
  1352.     
  1353.     // (only an issue for slow hosts) TX completion goes before RX
  1354.     // data available as it is a much shorter routine - there is the
  1355.     // chance that any further transfers it schedules will be complete
  1356.     // by the time of the return to the head of the while loop
  1357.     
  1358.     if (int_source & RX_BUS_MASTER_COMPLETE) {
  1359.       ++irq_ok;
  1360.       PRINTD (DBG_IRQ|DBG_BUS|DBG_RX, "rx_bus_master_complete asserted");
  1361.       rx_bus_master_complete_handler (dev);
  1362.     }
  1363.     if (int_source & TX_BUS_MASTER_COMPLETE) {
  1364.       ++irq_ok;
  1365.       PRINTD (DBG_IRQ|DBG_BUS|DBG_TX, "tx_bus_master_complete asserted");
  1366.       tx_bus_master_complete_handler (dev);
  1367.     }
  1368.     if (int_source & RX_DATA_AV) {
  1369.       ++irq_ok;
  1370.       PRINTD (DBG_IRQ|DBG_RX, "rx_data_av asserted");
  1371.       rx_data_av_handler (dev);
  1372.     }
  1373.   }
  1374.   if (irq_ok) {
  1375.     PRINTD (DBG_IRQ, "work done: %u", irq_ok);
  1376.   } else {
  1377.     PRINTD (DBG_IRQ|DBG_WARN, "spurious interrupt source: %#x", int_source);
  1378.   }
  1379.   
  1380.   PRINTD (DBG_IRQ|DBG_FLOW, "interrupt_handler done: %p", dev_id);
  1381. }
  1382. /********** housekeeping **********/
  1383. static void set_timer (struct timer_list * timer, unsigned int delay) {
  1384.   timer->expires = jiffies + delay;
  1385.   add_timer (timer);
  1386.   return;
  1387. }
  1388. static void do_housekeeping (unsigned long arg) {
  1389.   // just stats at the moment
  1390.   hrz_dev * dev = hrz_devs;
  1391.   (void) arg;
  1392.   // data is set to zero at module unload
  1393.   if (housekeeping.data) {
  1394.     while (dev) {
  1395.       // collect device-specific (not driver/atm-linux) stats here
  1396.       dev->tx_cell_count += rd_regw (dev, TX_CELL_COUNT_OFF);
  1397.       dev->rx_cell_count += rd_regw (dev, RX_CELL_COUNT_OFF);
  1398.       dev->hec_error_count += rd_regw (dev, HEC_ERROR_COUNT_OFF);
  1399.       dev->unassigned_cell_count += rd_regw (dev, UNASSIGNED_CELL_COUNT_OFF);
  1400.       dev = dev->prev;
  1401.     }
  1402.     set_timer (&housekeeping, HZ/10);
  1403.   }
  1404.   return;
  1405. }
  1406. /********** find an idle channel for TX and set it up **********/
  1407. // called with tx_busy set
  1408. static inline short setup_idle_tx_channel (hrz_dev * dev, hrz_vcc * vcc) {
  1409.   unsigned short idle_channels;
  1410.   short tx_channel = -1;
  1411.   unsigned int spin_count;
  1412.   PRINTD (DBG_FLOW|DBG_TX, "setup_idle_tx_channel %p", dev);
  1413.   
  1414.   // better would be to fail immediately, the caller can then decide whether
  1415.   // to wait or drop (depending on whether this is UBR etc.)
  1416.   spin_count = 0;
  1417.   while (!(idle_channels = rd_regw (dev, TX_STATUS_OFF) & IDLE_CHANNELS_MASK)) {
  1418.     PRINTD (DBG_TX|DBG_WARN, "waiting for idle TX channel");
  1419.     // delay a bit here
  1420.     if (++spin_count > 100) {
  1421.       PRINTD (DBG_TX|DBG_ERR, "spun out waiting for idle TX channel");
  1422.       return -EBUSY;
  1423.     }
  1424.   }
  1425.   
  1426.   // got an idle channel
  1427.   {
  1428.     // tx_idle ensures we look for idle channels in RR order
  1429.     int chan = dev->tx_idle;
  1430.     
  1431.     int keep_going = 1;
  1432.     while (keep_going) {
  1433.       if (idle_channels & (1<<chan)) {
  1434. tx_channel = chan;
  1435. keep_going = 0;
  1436.       }
  1437.       ++chan;
  1438.       if (chan == TX_CHANS)
  1439. chan = 0;
  1440.     }
  1441.     
  1442.     dev->tx_idle = chan;
  1443.   }
  1444.   
  1445.   // set up the channel we found
  1446.   {
  1447.     // Initialise the cell header in the transmit channel descriptor
  1448.     // a.k.a. prepare the channel and remember that we have done so.
  1449.     
  1450.     tx_ch_desc * tx_desc = &memmap->tx_descs[tx_channel];
  1451.     u16 rd_ptr;
  1452.     u16 wr_ptr;
  1453.     u16 channel = vcc->channel;
  1454.     
  1455.     unsigned long flags;
  1456.     spin_lock_irqsave (&dev->mem_lock, flags);
  1457.     
  1458.     // Update the transmit channel record.
  1459.     dev->tx_channel_record[tx_channel] = channel;
  1460.     
  1461.     // xBR channel
  1462.     update_tx_channel_config (dev, tx_channel, RATE_TYPE_ACCESS,
  1463.       vcc->tx_xbr_bits);
  1464.     
  1465.     // Update the PCR counter preload value etc.
  1466.     update_tx_channel_config (dev, tx_channel, PCR_TIMER_ACCESS,
  1467.       vcc->tx_pcr_bits);
  1468. #if 0
  1469.     if (vcc->tx_xbr_bits == VBR_RATE_TYPE) {
  1470.       // SCR timer
  1471.       update_tx_channel_config (dev, tx_channel, SCR_TIMER_ACCESS,
  1472. vcc->tx_scr_bits);
  1473.       
  1474.       // Bucket size...
  1475.       update_tx_channel_config (dev, tx_channel, BUCKET_CAPACITY_ACCESS,
  1476. vcc->tx_bucket_bits);
  1477.       
  1478.       // ... and fullness
  1479.       update_tx_channel_config (dev, tx_channel, BUCKET_FULLNESS_ACCESS,
  1480. vcc->tx_bucket_bits);
  1481.     }
  1482. #endif
  1483.     // Initialise the read and write buffer pointers
  1484.     rd_ptr = rd_mem (dev, &tx_desc->rd_buf_type) & BUFFER_PTR_MASK;
  1485.     wr_ptr = rd_mem (dev, &tx_desc->wr_buf_type) & BUFFER_PTR_MASK;
  1486.     
  1487.     // idle TX channels should have identical pointers
  1488.     if (rd_ptr != wr_ptr) {
  1489.       PRINTD (DBG_TX|DBG_ERR, "TX buffer pointers are broken!");
  1490.       // spin_unlock... return -E...
  1491.       // I wonder if gcc would get rid of one of the pointer aliases
  1492.     }
  1493.     PRINTD (DBG_TX, "TX buffer pointers are: rd %x, wr %x.",
  1494.     rd_ptr, wr_ptr);
  1495.     
  1496.     switch (vcc->aal) {
  1497.       case aal0:
  1498. PRINTD (DBG_QOS|DBG_TX, "tx_channel: aal0");
  1499. rd_ptr |= CHANNEL_TYPE_RAW_CELLS;
  1500. wr_ptr |= CHANNEL_TYPE_RAW_CELLS;
  1501. break;
  1502.       case aal34:
  1503. PRINTD (DBG_QOS|DBG_TX, "tx_channel: aal34");
  1504. rd_ptr |= CHANNEL_TYPE_AAL3_4;
  1505. wr_ptr |= CHANNEL_TYPE_AAL3_4;
  1506. break;
  1507.       case aal5:
  1508. rd_ptr |= CHANNEL_TYPE_AAL5;
  1509. wr_ptr |= CHANNEL_TYPE_AAL5;
  1510. // Initialise the CRC
  1511. wr_mem (dev, &tx_desc->partial_crc, INITIAL_CRC);
  1512. break;
  1513.     }
  1514.     
  1515.     wr_mem (dev, &tx_desc->rd_buf_type, rd_ptr);
  1516.     wr_mem (dev, &tx_desc->wr_buf_type, wr_ptr);
  1517.     
  1518.     // Write the Cell Header
  1519.     // Payload Type, CLP and GFC would go here if non-zero
  1520.     wr_mem (dev, &tx_desc->cell_header, channel);
  1521.     
  1522.     spin_unlock_irqrestore (&dev->mem_lock, flags);
  1523.   }
  1524.   
  1525.   return tx_channel;
  1526. }
  1527. /********** send a frame **********/
  1528. static int hrz_send (struct atm_vcc * atm_vcc, struct sk_buff * skb) {
  1529.   unsigned int spin_count;
  1530.   int free_buffers;
  1531.   hrz_dev * dev = HRZ_DEV(atm_vcc->dev);
  1532.   hrz_vcc * vcc = HRZ_VCC(atm_vcc);
  1533.   u16 channel = vcc->channel;
  1534.   
  1535.   u32 buffers_required;
  1536.   
  1537.   /* signed for error return */
  1538.   short tx_channel;
  1539.   
  1540.   PRINTD (DBG_FLOW|DBG_TX, "hrz_send vc %x data %p len %u",
  1541.   channel, skb->data, skb->len);
  1542.   
  1543.   dump_skb (">>>", channel, skb);
  1544.   
  1545.   if (atm_vcc->qos.txtp.traffic_class == ATM_NONE) {
  1546.     PRINTK (KERN_ERR, "attempt to send on RX-only VC %x", channel);
  1547.     hrz_kfree_skb (skb);
  1548.     return -EIO;
  1549.   }
  1550.   
  1551.   // don't understand this
  1552.   ATM_SKB(skb)->vcc = atm_vcc;
  1553.   
  1554.   if (skb->len > atm_vcc->qos.txtp.max_sdu) {
  1555.     PRINTK (KERN_ERR, "sk_buff length greater than agreed max_sdu, dropping...");
  1556.     hrz_kfree_skb (skb);
  1557.     return -EIO;
  1558.   }
  1559.   
  1560.   if (!channel) {
  1561.     PRINTD (DBG_ERR|DBG_TX, "attempt to transmit on zero (rx_)channel");
  1562.     hrz_kfree_skb (skb);
  1563.     return -EIO;
  1564.   }
  1565.   
  1566. #if 0
  1567.   {
  1568.     // where would be a better place for this? housekeeping?
  1569.     u16 status;
  1570.     pci_read_config_word (dev->pci_dev, PCI_STATUS, &status);
  1571.     if (status & PCI_STATUS_REC_MASTER_ABORT) {
  1572.       PRINTD (DBG_BUS|DBG_ERR, "Clearing PCI Master Abort (and cleaning up)");
  1573.       status &= ~PCI_STATUS_REC_MASTER_ABORT;
  1574.       pci_write_config_word (dev->pci_dev, PCI_STATUS, status);
  1575.       if (test_bit (tx_busy, &dev->flags)) {
  1576. hrz_kfree_skb (dev->tx_skb);
  1577. tx_release (dev);
  1578.       }
  1579.     }
  1580.   }
  1581. #endif
  1582.   
  1583. #ifdef DEBUG_HORIZON
  1584.   /* wey-hey! */
  1585.   if (channel == 1023) {
  1586.     unsigned int i;
  1587.     unsigned short d = 0;
  1588.     char * s = skb->data;
  1589.     if (*s++ == 'D') {
  1590.       for (i = 0; i < 4; ++i) {
  1591. d = (d<<4) | ((*s <= '9') ? (*s - '0') : (*s - 'a' + 10));
  1592. ++s;
  1593.       }
  1594.       PRINTK (KERN_INFO, "debug bitmap is now %hx", debug = d);
  1595.     }
  1596.   }
  1597. #endif
  1598.   
  1599.   // wait until TX is free and grab lock
  1600.   if (tx_hold (dev)) {
  1601.     hrz_kfree_skb (skb);
  1602.     return -ERESTARTSYS;
  1603.   }
  1604.  
  1605.   // Wait for enough space to be available in transmit buffer memory.
  1606.   
  1607.   // should be number of cells needed + 2 (according to hardware docs)
  1608.   // = ((framelen+8)+47) / 48 + 2
  1609.   // = (framelen+7) / 48 + 3, hmm... faster to put addition inside XXX
  1610.   buffers_required = (skb->len+(ATM_AAL5_TRAILER-1)) / ATM_CELL_PAYLOAD + 3;
  1611.   
  1612.   // replace with timer and sleep, add dev->tx_buffers_queue (max 1 entry)
  1613.   spin_count = 0;
  1614.   while ((free_buffers = rd_regw (dev, TX_FREE_BUFFER_COUNT_OFF)) < buffers_required) {
  1615.     PRINTD (DBG_TX, "waiting for free TX buffers, got %d of %d",
  1616.     free_buffers, buffers_required);
  1617.     // what is the appropriate delay? implement a timeout? (depending on line speed?)
  1618.     // mdelay (1);
  1619.     // what happens if we kill (current_pid, SIGKILL) ?
  1620.     schedule();
  1621.     if (++spin_count > 1000) {
  1622.       PRINTD (DBG_TX|DBG_ERR, "spun out waiting for tx buffers, got %d of %d",
  1623.       free_buffers, buffers_required);
  1624.       tx_release (dev);
  1625.       hrz_kfree_skb (skb);
  1626.       return -ERESTARTSYS;
  1627.     }
  1628.   }
  1629.   
  1630.   // Select a channel to transmit the frame on.
  1631.   if (channel == dev->last_vc) {
  1632.     PRINTD (DBG_TX, "last vc hack: hit");
  1633.     tx_channel = dev->tx_last;
  1634.   } else {
  1635.     PRINTD (DBG_TX, "last vc hack: miss");
  1636.     // Are we currently transmitting this VC on one of the channels?
  1637.     for (tx_channel = 0; tx_channel < TX_CHANS; ++tx_channel)
  1638.       if (dev->tx_channel_record[tx_channel] == channel) {
  1639. PRINTD (DBG_TX, "vc already on channel: hit");
  1640. break;
  1641.       }
  1642.     if (tx_channel == TX_CHANS) { 
  1643.       PRINTD (DBG_TX, "vc already on channel: miss");
  1644.       // Find and set up an idle channel.
  1645.       tx_channel = setup_idle_tx_channel (dev, vcc);
  1646.       if (tx_channel < 0) {
  1647. PRINTD (DBG_TX|DBG_ERR, "failed to get channel");
  1648. tx_release (dev);
  1649. return tx_channel;
  1650.       }
  1651.     }
  1652.     
  1653.     PRINTD (DBG_TX, "got channel");
  1654.     SELECT_TX_CHANNEL(dev, tx_channel);
  1655.     
  1656.     dev->last_vc = channel;
  1657.     dev->tx_last = tx_channel;
  1658.   }
  1659.   
  1660.   PRINTD (DBG_TX, "using channel %u", tx_channel);
  1661.   
  1662.   YELLOW_LED_OFF(dev);
  1663.   
  1664.   // TX start transfer
  1665.   
  1666.   {
  1667.     unsigned int tx_len = skb->len;
  1668.     unsigned int tx_iovcnt = ATM_SKB(skb)->iovcnt;
  1669.     // remember this so we can free it later
  1670.     dev->tx_skb = skb;
  1671.     
  1672.     if (tx_iovcnt) {
  1673.       // scatter gather transfer
  1674.       dev->tx_regions = tx_iovcnt;
  1675.       dev->tx_iovec = (struct iovec *) skb->data;
  1676.       dev->tx_bytes = 0;
  1677.       PRINTD (DBG_TX|DBG_BUS, "TX start scatter-gather transfer (iovec %p, len %d)",
  1678.       skb->data, tx_len);
  1679.     } else {
  1680.       // simple transfer
  1681.       dev->tx_regions = 0;
  1682.       dev->tx_iovec = 0;
  1683.       dev->tx_bytes = tx_len;
  1684.       dev->tx_addr = skb->data;
  1685.       PRINTD (DBG_TX|DBG_BUS, "TX start simple transfer (addr %p, len %d)",
  1686.       skb->data, tx_len);
  1687.     }
  1688.     
  1689.     // and do the business
  1690.     tx_schedule (dev, 0);
  1691.     
  1692.   }
  1693.   
  1694.   return 0;
  1695. }
  1696. /********** reset a card **********/
  1697. static void __init hrz_reset (const hrz_dev * dev) {
  1698.   u32 control_0_reg = rd_regl (dev, CONTROL_0_REG);
  1699.   
  1700.   // why not set RESET_HORIZON to one and wait for the card to
  1701.   // reassert that bit as zero? Like so:
  1702.   control_0_reg = control_0_reg & RESET_HORIZON;
  1703.   wr_regl (dev, CONTROL_0_REG, control_0_reg);
  1704.   while (control_0_reg & RESET_HORIZON)
  1705.     control_0_reg = rd_regl (dev, CONTROL_0_REG);
  1706.   
  1707.   // old reset code retained:
  1708.   wr_regl (dev, CONTROL_0_REG, control_0_reg |
  1709.    RESET_ATM | RESET_RX | RESET_TX | RESET_HOST);
  1710.   // just guessing here
  1711.   udelay (1000);
  1712.   
  1713.   wr_regl (dev, CONTROL_0_REG, control_0_reg);
  1714. }
  1715. /********** read the burnt in address **********/
  1716. static u16 __init read_bia (const hrz_dev * dev, u16 addr) {
  1717.   
  1718.   u32 ctrl = rd_regl (dev, CONTROL_0_REG);
  1719.   
  1720.   void WRITE_IT_WAIT (void) {
  1721.     wr_regl (dev, CONTROL_0_REG, ctrl);
  1722.     udelay (5);
  1723.   }
  1724.   
  1725.   void CLOCK_IT (void) {
  1726.     // DI must be valid around rising SK edge
  1727.     ctrl &= ~SEEPROM_SK;
  1728.     WRITE_IT_WAIT();
  1729.     ctrl |= SEEPROM_SK;
  1730.     WRITE_IT_WAIT();
  1731.   }
  1732.   
  1733.   const unsigned int addr_bits = 6;
  1734.   const unsigned int data_bits = 16;
  1735.   
  1736.   unsigned int i;
  1737.   
  1738.   u16 res;
  1739.   
  1740.   ctrl &= ~(SEEPROM_CS | SEEPROM_SK | SEEPROM_DI);
  1741.   WRITE_IT_WAIT();
  1742.   
  1743.   // wake Serial EEPROM and send 110 (READ) command
  1744.   ctrl |=  (SEEPROM_CS | SEEPROM_DI);
  1745.   CLOCK_IT();
  1746.   
  1747.   ctrl |= SEEPROM_DI;
  1748.   CLOCK_IT();
  1749.   
  1750.   ctrl &= ~SEEPROM_DI;
  1751.   CLOCK_IT();
  1752.   
  1753.   for (i=0; i<addr_bits; i++) {
  1754.     if (addr & (1 << (addr_bits-1)))
  1755.       ctrl |= SEEPROM_DI;
  1756.     else
  1757.       ctrl &= ~SEEPROM_DI;
  1758.     
  1759.     CLOCK_IT();
  1760.     
  1761.     addr = addr << 1;
  1762.   }
  1763.   
  1764.   // we could check that we have DO = 0 here
  1765.   ctrl &= ~SEEPROM_DI;
  1766.   
  1767.   res = 0;
  1768.   for (i=0;i<data_bits;i++) {
  1769.     res = res >> 1;
  1770.     
  1771.     CLOCK_IT();
  1772.     
  1773.     if (rd_regl (dev, CONTROL_0_REG) & SEEPROM_DO)
  1774.       res |= (1 << (data_bits-1));
  1775.   }
  1776.   
  1777.   ctrl &= ~(SEEPROM_SK | SEEPROM_CS);
  1778.   WRITE_IT_WAIT();
  1779.   
  1780.   return res;
  1781. }
  1782. /********** initialise a card **********/
  1783. static int __init hrz_init (hrz_dev * dev) {
  1784.   int onefivefive;
  1785.   
  1786.   u16 chan;
  1787.   
  1788.   int buff_count;
  1789.   
  1790.   HDW * mem;
  1791.   
  1792.   cell_buf * tx_desc;
  1793.   cell_buf * rx_desc;
  1794.   
  1795.   u32 ctrl;
  1796.   
  1797.   ctrl = rd_regl (dev, CONTROL_0_REG);
  1798.   PRINTD (DBG_INFO, "ctrl0reg is %#x", ctrl);
  1799.   onefivefive = ctrl & ATM_LAYER_STATUS;
  1800.   
  1801.   if (onefivefive)
  1802.     printk (DEV_LABEL ": Horizon Ultra (at 155.52 MBps)");
  1803.   else
  1804.     printk (DEV_LABEL ": Horizon (at 25 MBps)");
  1805.   
  1806.   printk (":");
  1807.   // Reset the card to get everything in a known state
  1808.   
  1809.   printk (" reset");
  1810.   hrz_reset (dev);
  1811.   
  1812.   // Clear all the buffer memory
  1813.   
  1814.   printk (" clearing memory");
  1815.   
  1816.   for (mem = (HDW *) memmap; mem < (HDW *) (memmap + 1); ++mem)
  1817.     wr_mem (dev, mem, 0);
  1818.   
  1819.   printk (" tx channels");
  1820.   
  1821.   // All transmit eight channels are set up as AAL5 ABR channels with
  1822.   // a 16us cell spacing. Why?
  1823.   
  1824.   // Channel 0 gets the free buffer at 100h, channel 1 gets the free
  1825.   // buffer at 110h etc.
  1826.   
  1827.   for (chan = 0; chan < TX_CHANS; ++chan) {
  1828.     tx_ch_desc * tx_desc = &memmap->tx_descs[chan];
  1829.     cell_buf * buf = &memmap->inittxbufs[chan];
  1830.     
  1831.     // initialise the read and write buffer pointers
  1832.     wr_mem (dev, &tx_desc->rd_buf_type, BUF_PTR(buf));
  1833.     wr_mem (dev, &tx_desc->wr_buf_type, BUF_PTR(buf));
  1834.     
  1835.     // set the status of the initial buffers to empty
  1836.     wr_mem (dev, &buf->next, BUFF_STATUS_EMPTY);
  1837.   }
  1838.   
  1839.   // Use space bufn3 at the moment for tx buffers
  1840.   
  1841.   printk (" tx buffers");
  1842.   
  1843.   tx_desc = memmap->bufn3;
  1844.   
  1845.   wr_mem (dev, &memmap->txfreebufstart.next, BUF_PTR(tx_desc) | BUFF_STATUS_EMPTY);
  1846.   
  1847.   for (buff_count = 0; buff_count < BUFN3_SIZE-1; buff_count++) {
  1848.     wr_mem (dev, &tx_desc->next, BUF_PTR(tx_desc+1) | BUFF_STATUS_EMPTY);
  1849.     tx_desc++;
  1850.   }
  1851.   
  1852.   wr_mem (dev, &tx_desc->next, BUF_PTR(&memmap->txfreebufend) | BUFF_STATUS_EMPTY);
  1853.   
  1854.   // Initialise the transmit free buffer count
  1855.   wr_regw (dev, TX_FREE_BUFFER_COUNT_OFF, BUFN3_SIZE);
  1856.   
  1857.   printk (" rx channels");
  1858.   
  1859.   // Initialise all of the receive channels to be AAL5 disabled with
  1860.   // an interrupt threshold of 0
  1861.   
  1862.   for (chan = 0; chan < RX_CHANS; ++chan) {
  1863.     rx_ch_desc * rx_desc = &memmap->rx_descs[chan];
  1864.     
  1865.     wr_mem (dev, &rx_desc->wr_buf_type, CHANNEL_TYPE_AAL5 | RX_CHANNEL_DISABLED);
  1866.   }
  1867.   
  1868.   printk (" rx buffers");
  1869.   
  1870.   // Use space bufn4 at the moment for rx buffers
  1871.   
  1872.   rx_desc = memmap->bufn4;
  1873.   
  1874.   wr_mem (dev, &memmap->rxfreebufstart.next, BUF_PTR(rx_desc) | BUFF_STATUS_EMPTY);
  1875.   
  1876.   for (buff_count = 0; buff_count < BUFN4_SIZE-1; buff_count++) {
  1877.     wr_mem (dev, &rx_desc->next, BUF_PTR(rx_desc+1) | BUFF_STATUS_EMPTY);
  1878.     
  1879.     rx_desc++;
  1880.   }
  1881.   
  1882.   wr_mem (dev, &rx_desc->next, BUF_PTR(&memmap->rxfreebufend) | BUFF_STATUS_EMPTY);
  1883.   
  1884.   // Initialise the receive free buffer count
  1885.   wr_regw (dev, RX_FREE_BUFFER_COUNT_OFF, BUFN4_SIZE);
  1886.   
  1887.   // Initialize Horizons registers
  1888.   
  1889.   // TX config
  1890.   wr_regw (dev, TX_CONFIG_OFF,
  1891.    ABR_ROUND_ROBIN | TX_NORMAL_OPERATION | DRVR_DRVRBAR_ENABLE);
  1892.   
  1893.   // RX config. Use 10-x VC bits, x VP bits, non user cells in channel 0.
  1894.   wr_regw (dev, RX_CONFIG_OFF,
  1895.    DISCARD_UNUSED_VPI_VCI_BITS_SET | NON_USER_CELLS_IN_ONE_CHANNEL | vpi_bits);
  1896.   
  1897.   // RX line config
  1898.   wr_regw (dev, RX_LINE_CONFIG_OFF,
  1899.    LOCK_DETECT_ENABLE | FREQUENCY_DETECT_ENABLE | GXTALOUT_SELECT_DIV4);
  1900.   
  1901.   // Set the max AAL5 cell count to be just enough to contain the
  1902.   // largest AAL5 frame that the user wants to receive
  1903.   wr_regw (dev, MAX_AAL5_CELL_COUNT_OFF,
  1904.    (max_rx_size + ATM_AAL5_TRAILER + ATM_CELL_PAYLOAD - 1) / ATM_CELL_PAYLOAD);
  1905.   
  1906.   // Enable receive
  1907.   wr_regw (dev, RX_CONFIG_OFF, rd_regw (dev, RX_CONFIG_OFF) | RX_ENABLE);
  1908.   
  1909.   printk (" control");
  1910.   
  1911.   // Drive the OE of the LEDs then turn the green LED on
  1912.   ctrl |= GREEN_LED_OE | YELLOW_LED_OE | GREEN_LED | YELLOW_LED;
  1913.   wr_regl (dev, CONTROL_0_REG, ctrl);
  1914.   
  1915.   // Test for a 155-capable card
  1916.   
  1917.   if (onefivefive) {
  1918.     // Select 155 mode... make this a choice (or: how do we detect
  1919.     // external line speed and switch?)
  1920.     ctrl |= ATM_LAYER_SELECT;
  1921.     wr_regl (dev, CONTROL_0_REG, ctrl);
  1922.     
  1923.     // test SUNI-lite vs SAMBA
  1924.     
  1925.     // Register 0x00 in the SUNI will have some of bits 3-7 set, and
  1926.     // they will always be zero for the SAMBA.  Ha!  Bloody hardware
  1927.     // engineers.  It'll never work.
  1928.     
  1929.     if (rd_framer (dev, 0) & 0x00f0) {
  1930.       // SUNI
  1931.       printk (" SUNI");
  1932.       
  1933.       // Reset, just in case
  1934.       wr_framer (dev, 0x00, 0x0080);
  1935.       wr_framer (dev, 0x00, 0x0000);
  1936.       
  1937.       // Configure transmit FIFO
  1938.       wr_framer (dev, 0x63, rd_framer (dev, 0x63) | 0x0002);
  1939.       
  1940.       // Set line timed mode
  1941.       wr_framer (dev, 0x05, rd_framer (dev, 0x05) | 0x0001);
  1942.     } else {
  1943.       // SAMBA
  1944.       printk (" SAMBA");
  1945.       
  1946.       // Reset, just in case
  1947.       wr_framer (dev, 0, rd_framer (dev, 0) | 0x0001);
  1948.       wr_framer (dev, 0, rd_framer (dev, 0) &~ 0x0001);
  1949.       
  1950.       // Turn off diagnostic loopback and enable line-timed mode
  1951.       wr_framer (dev, 0, 0x0002);
  1952.       
  1953.       // Turn on transmit outputs
  1954.       wr_framer (dev, 2, 0x0B80);
  1955.     }
  1956.   } else {
  1957.     // Select 25 mode
  1958.     ctrl &= ~ATM_LAYER_SELECT;
  1959.     
  1960.     // Madge B154 setup
  1961.     // none required?
  1962.   }
  1963.   
  1964.   printk (" LEDs");
  1965.   
  1966.   GREEN_LED_ON(dev);
  1967.   YELLOW_LED_ON(dev);
  1968.   
  1969.   printk (" ESI=");
  1970.   
  1971.   {
  1972.     u16 b = 0;
  1973.     int i;
  1974.     u8 * esi = dev->atm_dev->esi;
  1975.     
  1976.     // in the card I have, EEPROM
  1977.     // addresses 0, 1, 2 contain 0
  1978.     // addresess 5, 6 etc. contain ffff
  1979.     // NB: Madge prefix is 00 00 f6 (which is 00 00 6f in Ethernet bit order)
  1980.     // the read_bia routine gets the BIA in Ethernet bit order
  1981.     
  1982.     for (i=0; i < ESI_LEN; ++i) {
  1983.       if (i % 2 == 0)
  1984. b = read_bia (dev, i/2 + 2);
  1985.       else
  1986. b = b >> 8;
  1987.       esi[i] = b & 0xFF;
  1988.       printk ("%02x", esi[i]);
  1989.     }
  1990.   }
  1991.   
  1992.   // Enable RX_Q and ?X_COMPLETE interrupts only
  1993.   wr_regl (dev, INT_ENABLE_REG_OFF, INTERESTING_INTERRUPTS);
  1994.   printk (" IRQ on");
  1995.   
  1996.   printk (".n");
  1997.   
  1998.   return onefivefive;
  1999. }
  2000. /********** check max_sdu **********/
  2001. static int check_max_sdu (hrz_aal aal, struct atm_trafprm * tp, unsigned int max_frame_size) {
  2002.   PRINTD (DBG_FLOW|DBG_QOS, "check_max_sdu");
  2003.   
  2004.   switch (aal) {
  2005.     case aal0:
  2006.       if (!(tp->max_sdu)) {
  2007. PRINTD (DBG_QOS, "defaulting max_sdu");
  2008. tp->max_sdu = ATM_AAL0_SDU;
  2009.       } else if (tp->max_sdu != ATM_AAL0_SDU) {
  2010. PRINTD (DBG_QOS|DBG_ERR, "rejecting max_sdu");
  2011. return -EINVAL;
  2012.       }
  2013.       break;
  2014.     case aal34:
  2015.       if (tp->max_sdu == 0 || tp->max_sdu > ATM_MAX_AAL34_PDU) {
  2016. PRINTD (DBG_QOS, "%sing max_sdu", tp->max_sdu ? "capp" : "default");
  2017. tp->max_sdu = ATM_MAX_AAL34_PDU;
  2018.       }
  2019.       break;
  2020.     case aal5:
  2021.       if (tp->max_sdu == 0 || tp->max_sdu > max_frame_size) {
  2022. PRINTD (DBG_QOS, "%sing max_sdu", tp->max_sdu ? "capp" : "default");
  2023. tp->max_sdu = max_frame_size;
  2024.       }
  2025.       break;
  2026.   }
  2027.   return 0;
  2028. }
  2029. /********** check pcr **********/
  2030. // something like this should be part of ATM Linux
  2031. static int atm_pcr_check (struct atm_trafprm * tp, unsigned int pcr) {
  2032.   // we are assuming non-UBR, and non-special values of pcr
  2033.   if (tp->min_pcr == ATM_MAX_PCR)
  2034.     PRINTD (DBG_QOS, "luser gave min_pcr = ATM_MAX_PCR");
  2035.   else if (tp->min_pcr < 0)
  2036.     PRINTD (DBG_QOS, "luser gave negative min_pcr");
  2037.   else if (tp->min_pcr && tp->min_pcr > pcr)
  2038.     PRINTD (DBG_QOS, "pcr less than min_pcr");
  2039.   else
  2040.     // !! max_pcr = UNSPEC (0) is equivalent to max_pcr = MAX (-1)
  2041.     // easier to #define ATM_MAX_PCR 0 and have all rates unsigned?
  2042.     // [this would get rid of next two conditionals]
  2043.     if ((0) && tp->max_pcr == ATM_MAX_PCR)
  2044.       PRINTD (DBG_QOS, "luser gave max_pcr = ATM_MAX_PCR");
  2045.     else if ((tp->max_pcr != ATM_MAX_PCR) && tp->max_pcr < 0)
  2046.       PRINTD (DBG_QOS, "luser gave negative max_pcr");
  2047.     else if (tp->max_pcr && tp->max_pcr != ATM_MAX_PCR && tp->max_pcr < pcr)
  2048.       PRINTD (DBG_QOS, "pcr greater than max_pcr");
  2049.     else {
  2050.       // each limit unspecified or not violated
  2051.       PRINTD (DBG_QOS, "xBR(pcr) OK");
  2052.       return 0;
  2053.     }
  2054.   PRINTD (DBG_QOS, "pcr=%u, tp: min_pcr=%d, pcr=%d, max_pcr=%d",
  2055.   pcr, tp->min_pcr, tp->pcr, tp->max_pcr);
  2056.   return -EINVAL;
  2057. }
  2058. /********** open VC **********/
  2059. static int hrz_open (struct atm_vcc * atm_vcc, short vpi, int vci) {
  2060.   int error;
  2061.   u16 channel;
  2062.   
  2063.   struct atm_qos * qos;
  2064.   struct atm_trafprm * txtp;
  2065.   struct atm_trafprm * rxtp;
  2066.   
  2067.   hrz_dev * dev = HRZ_DEV(atm_vcc->dev);
  2068.   hrz_vcc vcc;
  2069.   hrz_vcc * vccp; // allocated late
  2070.   PRINTD (DBG_FLOW|DBG_VCC, "hrz_open %x %x", vpi, vci);
  2071.   
  2072. #ifdef ATM_VPI_UNSPEC
  2073.   // UNSPEC is deprecated, remove this code eventually
  2074.   if (vpi == ATM_VPI_UNSPEC || vci == ATM_VCI_UNSPEC) {
  2075.     PRINTK (KERN_WARNING, "rejecting open with unspecified VPI/VCI (deprecated)");
  2076.     return -EINVAL;
  2077.   }
  2078. #endif
  2079.   
  2080.   // deal with possibly wildcarded VCs
  2081.   error = atm_find_ci (atm_vcc, &vpi, &vci);
  2082.   if (error) {
  2083.     PRINTD (DBG_WARN|DBG_VCC, "atm_find_ci failed!");
  2084.     return error;
  2085.   }
  2086.   PRINTD (DBG_VCC, "atm_find_ci gives %x %x", vpi, vci);
  2087.   
  2088.   error = vpivci_to_channel (&channel, vpi, vci);
  2089.   if (error) {
  2090.     PRINTD (DBG_WARN|DBG_VCC, "VPI/VCI out of range: %hd/%d", vpi, vci);
  2091.     return error;
  2092.   }
  2093.   
  2094.   vcc.channel = channel;
  2095.   // max speed for the moment
  2096.   vcc.tx_rate = 0x0;
  2097.   
  2098.   qos = &atm_vcc->qos;
  2099.   
  2100.   // check AAL and remember it
  2101.   switch (qos->aal) {
  2102.     case ATM_AAL0:
  2103.       // we would if it were 48 bytes and not 52!
  2104.       PRINTD (DBG_QOS|DBG_VCC, "AAL0");
  2105.       vcc.aal = aal0;
  2106.       break;
  2107.     case ATM_AAL34:
  2108.       // we would if I knew how do the SAR!
  2109.       PRINTD (DBG_QOS|DBG_VCC, "AAL3/4");
  2110.       vcc.aal = aal34;
  2111.       break;
  2112.     case ATM_AAL5:
  2113.       PRINTD (DBG_QOS|DBG_VCC, "AAL5");
  2114.       vcc.aal = aal5;
  2115.       break;
  2116.     default:
  2117.       PRINTD (DBG_QOS|DBG_VCC, "Bad AAL!");
  2118.       return -EINVAL;
  2119.       break;
  2120.   }
  2121.   
  2122.   // TX traffic parameters
  2123.   
  2124.   // there are two, interrelated problems here: 1. the reservation of
  2125.   // PCR is not a binary choice, we are given bounds and/or a
  2126.   // desirable value; 2. the device is only capable of certain values,
  2127.   // most of which are not integers. It is almost certainly acceptable
  2128.   // to be off by a maximum of 1 to 10 cps.
  2129.   
  2130.   // Pragmatic choice: always store an integral PCR as that which has
  2131.   // been allocated, even if we allocate a little (or a lot) less,
  2132.   // after rounding. The actual allocation depends on what we can
  2133.   // manage with our rate selection algorithm. The rate selection
  2134.   // algorithm is given an integral PCR and a tolerance and told
  2135.   // whether it should round the value up or down if the tolerance is
  2136.   // exceeded; it returns: a) the actual rate selected (rounded up to
  2137.   // the nearest integer), b) a bit pattern to feed to the timer
  2138.   // register, and c) a failure value if no applicable rate exists.
  2139.   
  2140.   // Part of the job is done by atm_pcr_goal which gives us a PCR
  2141.   // specification which says: EITHER grab the maximum available PCR
  2142.   // (and perhaps a lower bound which we musn't pass), OR grab this
  2143.   // amount, rounding down if you have to (and perhaps a lower bound
  2144.   // which we musn't pass) OR grab this amount, rounding up if you
  2145.   // have to (and perhaps an upper bound which we musn't pass). If any
  2146.   // bounds ARE passed we fail. Note that rounding is only rounding to
  2147.   // match device limitations, we do not round down to satisfy
  2148.   // bandwidth availability even if this would not violate any given
  2149.   // lower bound.
  2150.   
  2151.   // Note: telephony = 64kb/s = 48 byte cell payload @ 500/3 cells/s
  2152.   // (say) so this is not even a binary fixpoint cell rate (but this
  2153.   // device can do it). To avoid this sort of hassle we use a
  2154.   // tolerance parameter (currently fixed at 10 cps).
  2155.   
  2156.   PRINTD (DBG_QOS, "TX:");
  2157.   
  2158.   txtp = &qos->txtp;
  2159.   
  2160.   // set up defaults for no traffic
  2161.   vcc.tx_rate = 0;
  2162.   // who knows what would actually happen if you try and send on this?
  2163.   vcc.tx_xbr_bits = IDLE_RATE_TYPE;
  2164.   vcc.tx_pcr_bits = CLOCK_DISABLE;
  2165. #if 0
  2166.   vcc.tx_scr_bits = CLOCK_DISABLE;
  2167.   vcc.tx_bucket_bits = 0;
  2168. #endif
  2169.   
  2170.   if (txtp->traffic_class != ATM_NONE) {
  2171.     error = check_max_sdu (vcc.aal, txtp, max_tx_size);
  2172.     if (error) {
  2173.       PRINTD (DBG_QOS, "TX max_sdu check failed");
  2174.       return error;
  2175.     }
  2176.     
  2177.     switch (txtp->traffic_class) {
  2178.       case ATM_UBR: {
  2179. // we take "the PCR" as a rate-cap
  2180. // not reserved
  2181. vcc.tx_rate = 0;
  2182. make_rate (dev, 1<<30, round_nearest, &vcc.tx_pcr_bits, 0);
  2183. vcc.tx_xbr_bits = ABR_RATE_TYPE;
  2184. break;
  2185.       }
  2186. #if 0
  2187.       case ATM_ABR: {
  2188. // reserve min, allow up to max
  2189. vcc.tx_rate = 0; // ?
  2190. make_rate (dev, 1<<30, round_nearest, &vcc.tx_pcr_bits, 0);
  2191. vcc.tx_xbr_bits = ABR_RATE_TYPE;
  2192. break;
  2193.       }
  2194. #endif
  2195.       case ATM_CBR: {
  2196. int pcr = atm_pcr_goal (txtp);
  2197. rounding r;
  2198. if (!pcr) {
  2199.   // down vs. up, remaining bandwidth vs. unlimited bandwidth!!
  2200.   // should really have: once someone gets unlimited bandwidth
  2201.   // that no more non-UBR channels can be opened until the
  2202.   // unlimited one closes?? For the moment, round_down means
  2203.   // greedy people actually get something and not nothing
  2204.   r = round_down;
  2205.   // slight race (no locking) here so we may get -EAGAIN
  2206.   // later; the greedy bastards would deserve it :)
  2207.   PRINTD (DBG_QOS, "snatching all remaining TX bandwidth");
  2208.   pcr = dev->tx_avail;
  2209. } else if (pcr < 0) {
  2210.   r = round_down;
  2211.   pcr = -pcr;
  2212. } else {
  2213.   r = round_up;
  2214. }
  2215. error = make_rate_with_tolerance (dev, pcr, r, 10,
  2216.   &vcc.tx_pcr_bits, &vcc.tx_rate);
  2217. if (error) {
  2218.   PRINTD (DBG_QOS, "could not make rate from TX PCR");
  2219.   return error;
  2220. }
  2221. // not really clear what further checking is needed
  2222. error = atm_pcr_check (txtp, vcc.tx_rate);
  2223. if (error) {
  2224.   PRINTD (DBG_QOS, "TX PCR failed consistency check");
  2225.   return error;
  2226. }
  2227. vcc.tx_xbr_bits = CBR_RATE_TYPE;
  2228. break;
  2229.       }
  2230. #if 0
  2231.       case ATM_VBR: {
  2232. int pcr = atm_pcr_goal (txtp);
  2233. // int scr = atm_scr_goal (txtp);
  2234. int scr = pcr/2; // just for fun
  2235. unsigned int mbs = 60; // just for fun
  2236. rounding pr;
  2237. rounding sr;
  2238. unsigned int bucket;
  2239. if (!pcr) {
  2240.   pr = round_nearest;
  2241.   pcr = 1<<30;
  2242. } else if (pcr < 0) {
  2243.   pr = round_down;
  2244.   pcr = -pcr;
  2245. } else {
  2246.   pr = round_up;
  2247. }
  2248. error = make_rate_with_tolerance (dev, pcr, pr, 10,
  2249.   &vcc.tx_pcr_bits, 0);
  2250. if (!scr) {
  2251.   // see comments for PCR with CBR above
  2252.   sr = round_down;
  2253.   // slight race (no locking) here so we may get -EAGAIN
  2254.   // later; the greedy bastards would deserve it :)
  2255.   PRINTD (DBG_QOS, "snatching all remaining TX bandwidth");
  2256.   scr = dev->tx_avail;
  2257. } else if (scr < 0) {
  2258.   sr = round_down;
  2259.   scr = -scr;
  2260. } else {
  2261.   sr = round_up;
  2262. }
  2263. error = make_rate_with_tolerance (dev, scr, sr, 10,
  2264.   &vcc.tx_scr_bits, &vcc.tx_rate);
  2265. if (error) {
  2266.   PRINTD (DBG_QOS, "could not make rate from TX SCR");
  2267.   return error;
  2268. }
  2269. // not really clear what further checking is needed
  2270. // error = atm_scr_check (txtp, vcc.tx_rate);
  2271. if (error) {
  2272.   PRINTD (DBG_QOS, "TX SCR failed consistency check");
  2273.   return error;
  2274. }
  2275. // bucket calculations (from a piece of paper...) cell bucket
  2276. // capacity must be largest integer smaller than m(p-s)/p + 1
  2277. // where m = max burst size, p = pcr, s = scr
  2278. bucket = mbs*(pcr-scr)/pcr;
  2279. if (bucket*pcr != mbs*(pcr-scr))
  2280.   bucket += 1;
  2281. if (bucket > BUCKET_MAX_SIZE) {
  2282.   PRINTD (DBG_QOS, "shrinking bucket from %u to %u",
  2283.   bucket, BUCKET_MAX_SIZE);
  2284.   bucket = BUCKET_MAX_SIZE;
  2285. }
  2286. vcc.tx_xbr_bits = VBR_RATE_TYPE;
  2287. vcc.tx_bucket_bits = bucket;
  2288. break;
  2289.       }
  2290. #endif
  2291.       default: {
  2292. PRINTD (DBG_QOS, "unsupported TX traffic class");
  2293. return -EINVAL;
  2294. break;
  2295.       }
  2296.     }
  2297.   }
  2298.   
  2299.   // RX traffic parameters
  2300.   
  2301.   PRINTD (DBG_QOS, "RX:");
  2302.   
  2303.   rxtp = &qos->rxtp;
  2304.   
  2305.   // set up defaults for no traffic
  2306.   vcc.rx_rate = 0;
  2307.   
  2308.   if (rxtp->traffic_class != ATM_NONE) {
  2309.     error = check_max_sdu (vcc.aal, rxtp, max_rx_size);
  2310.     if (error) {
  2311.       PRINTD (DBG_QOS, "RX max_sdu check failed");
  2312.       return error;
  2313.     }
  2314.     switch (rxtp->traffic_class) {
  2315.       case ATM_UBR: {
  2316. // not reserved
  2317. break;
  2318.       }
  2319. #if 0
  2320.       case ATM_ABR: {
  2321. // reserve min
  2322. vcc.rx_rate = 0; // ?
  2323. break;
  2324.       }
  2325. #endif
  2326.       case ATM_CBR: {
  2327. int pcr = atm_pcr_goal (rxtp);
  2328. if (!pcr) {
  2329.   // slight race (no locking) here so we may get -EAGAIN
  2330.   // later; the greedy bastards would deserve it :)
  2331.   PRINTD (DBG_QOS, "snatching all remaining RX bandwidth");
  2332.   pcr = dev->rx_avail;
  2333. } else if (pcr < 0) {
  2334.   pcr = -pcr;
  2335. }
  2336. vcc.rx_rate = pcr;
  2337. // not really clear what further checking is needed
  2338. error = atm_pcr_check (rxtp, vcc.rx_rate);
  2339. if (error) {
  2340.   PRINTD (DBG_QOS, "RX PCR failed consistency check");
  2341.   return error;
  2342. }
  2343. break;
  2344.       }
  2345. #if 0
  2346.       case ATM_VBR: {
  2347. // int scr = atm_scr_goal (rxtp);
  2348. int scr = 1<<16; // just for fun
  2349. if (!scr) {
  2350.   // slight race (no locking) here so we may get -EAGAIN
  2351.   // later; the greedy bastards would deserve it :)
  2352.   PRINTD (DBG_QOS, "snatching all remaining RX bandwidth");
  2353.   scr = dev->rx_avail;
  2354. } else if (scr < 0) {
  2355.   scr = -scr;
  2356. }
  2357. vcc.rx_rate = scr;
  2358. // not really clear what further checking is needed
  2359. // error = atm_scr_check (rxtp, vcc.rx_rate);
  2360. if (error) {
  2361.   PRINTD (DBG_QOS, "RX SCR failed consistency check");
  2362.   return error;
  2363. }
  2364. break;
  2365.       }
  2366. #endif
  2367.       default: {
  2368. PRINTD (DBG_QOS, "unsupported RX traffic class");
  2369. return -EINVAL;
  2370. break;
  2371.       }
  2372.     }
  2373.   }
  2374.   
  2375.   
  2376.   // late abort useful for diagnostics
  2377.   if (vcc.aal != aal5) {
  2378.     PRINTD (DBG_QOS, "AAL not supported");
  2379.     return -EINVAL;
  2380.   }
  2381.   
  2382.   // get space for our vcc stuff and copy parameters into it
  2383.   vccp = kmalloc (sizeof(hrz_vcc), GFP_KERNEL);
  2384.   if (!vccp) {
  2385.     PRINTK (KERN_ERR, "out of memory!");
  2386.     return -ENOMEM;
  2387.   }
  2388.   *vccp = vcc;
  2389.   
  2390.   // clear error and grab cell rate resource lock
  2391.   error = 0;
  2392.   spin_lock (&dev->rate_lock);
  2393.   
  2394.   if (vcc.tx_rate > dev->tx_avail) {
  2395.     PRINTD (DBG_QOS, "not enough TX PCR left");
  2396.     error = -EAGAIN;
  2397.   }
  2398.   
  2399.   if (vcc.rx_rate > dev->rx_avail) {
  2400.     PRINTD (DBG_QOS, "not enough RX PCR left");
  2401.     error = -EAGAIN;
  2402.   }
  2403.   
  2404.   if (!error) {
  2405.     // really consume cell rates
  2406.     dev->tx_avail -= vcc.tx_rate;
  2407.     dev->rx_avail -= vcc.rx_rate;
  2408.     PRINTD (DBG_QOS|DBG_VCC, "reserving %u TX PCR and %u RX PCR",
  2409.     vcc.tx_rate, vcc.rx_rate);
  2410.   }
  2411.   
  2412.   // release lock and exit on error
  2413.   spin_unlock (&dev->rate_lock);
  2414.   if (error) {
  2415.     PRINTD (DBG_QOS|DBG_VCC, "insufficient cell rate resources");
  2416.     kfree (vccp);
  2417.     return error;
  2418.   }
  2419.   
  2420.   // this is "immediately before allocating the connection identifier
  2421.   // in hardware" - so long as the next call does not fail :)
  2422.   set_bit(ATM_VF_ADDR,&atm_vcc->flags);
  2423.   
  2424.   // any errors here are very serious and should never occur
  2425.   
  2426.   if (rxtp->traffic_class != ATM_NONE) {
  2427.     if (dev->rxer[channel]) {
  2428.       PRINTD (DBG_ERR|DBG_VCC, "VC already open for RX");
  2429.       error = -EBUSY;
  2430.     }
  2431.     if (!error)
  2432.       error = hrz_open_rx (dev, channel);
  2433.     if (error) {
  2434.       kfree (vccp);
  2435.       return error;
  2436.     }
  2437.     // this link allows RX frames through
  2438.     dev->rxer[channel] = atm_vcc;
  2439.   }
  2440.   
  2441.   // success, set elements of atm_vcc
  2442.   atm_vcc->vpi = vpi;
  2443.   atm_vcc->vci = vci;
  2444.   atm_vcc->dev_data = (void *) vccp;
  2445.   
  2446.   // indicate readiness
  2447.   set_bit(ATM_VF_READY,&atm_vcc->flags);
  2448.   
  2449.   return 0;
  2450. }
  2451. /********** close VC **********/
  2452. static void hrz_close (struct atm_vcc * atm_vcc) {
  2453.   hrz_dev * dev = HRZ_DEV(atm_vcc->dev);
  2454.   hrz_vcc * vcc = HRZ_VCC(atm_vcc);
  2455.   u16 channel = vcc->channel;
  2456.   PRINTD (DBG_VCC|DBG_FLOW, "hrz_close");
  2457.   
  2458.   // indicate unreadiness
  2459.   clear_bit(ATM_VF_READY,&atm_vcc->flags);
  2460.   if (atm_vcc->qos.txtp.traffic_class != ATM_NONE) {
  2461.     unsigned int i;
  2462.     
  2463.     // let any TX on this channel that has started complete
  2464.     // no restart, just keep trying
  2465.     while (tx_hold (dev))
  2466.       ;
  2467.     // remove record of any tx_channel having been setup for this channel
  2468.     for (i = 0; i < TX_CHANS; ++i)
  2469.       if (dev->tx_channel_record[i] == channel) {
  2470. dev->tx_channel_record[i] = -1;
  2471. break;
  2472.       }
  2473.     if (dev->last_vc == channel)
  2474.       dev->tx_last = -1;
  2475.     tx_release (dev);
  2476.   }
  2477.   if (atm_vcc->qos.rxtp.traffic_class != ATM_NONE) {
  2478.     // disable RXing - it tries quite hard
  2479.     hrz_close_rx (dev, channel);
  2480.     // forget the vcc - no more skbs will be pushed
  2481.     if (atm_vcc != dev->rxer[channel])
  2482.       PRINTK (KERN_ERR, "%s atm_vcc=%p rxer[channel]=%p",
  2483.       "arghhh! we're going to die!",
  2484.       atm_vcc, dev->rxer[channel]);
  2485.     dev->rxer[channel] = 0;
  2486.   }
  2487.   
  2488.   // atomically release our rate reservation
  2489.   spin_lock (&dev->rate_lock);
  2490.   PRINTD (DBG_QOS|DBG_VCC, "releasing %u TX PCR and %u RX PCR",
  2491.   vcc->tx_rate, vcc->rx_rate);
  2492.   dev->tx_avail += vcc->tx_rate;
  2493.   dev->rx_avail += vcc->rx_rate;
  2494.   spin_unlock (&dev->rate_lock);
  2495.   
  2496.   // free our structure
  2497.   kfree (vcc);
  2498.   // say the VPI/VCI is free again
  2499.   clear_bit(ATM_VF_ADDR,&atm_vcc->flags);
  2500. }
  2501. #if 0
  2502. static int hrz_getsockopt (struct atm_vcc * atm_vcc, int level, int optname,
  2503.    void *optval, int optlen) {
  2504.   hrz_dev * dev = HRZ_DEV(atm_vcc->dev);
  2505.   PRINTD (DBG_FLOW|DBG_VCC, "hrz_getsockopt");
  2506.   switch (level) {
  2507.     case SOL_SOCKET:
  2508.       switch (optname) {
  2509. // case SO_BCTXOPT:
  2510. //   break;
  2511. // case SO_BCRXOPT:
  2512. //   break;
  2513. default:
  2514.   return -ENOPROTOOPT;
  2515.   break;
  2516.       };
  2517.       break;
  2518.   }
  2519.   return -EINVAL;
  2520. }
  2521. static int hrz_setsockopt (struct atm_vcc * atm_vcc, int level, int optname,
  2522.    void *optval, int optlen) {
  2523.   hrz_dev * dev = HRZ_DEV(atm_vcc->dev);
  2524.   PRINTD (DBG_FLOW|DBG_VCC, "hrz_setsockopt");
  2525.   switch (level) {
  2526.     case SOL_SOCKET:
  2527.       switch (optname) {
  2528. // case SO_BCTXOPT:
  2529. //   break;
  2530. // case SO_BCRXOPT:
  2531. //   break;
  2532. default:
  2533.   return -ENOPROTOOPT;
  2534.   break;
  2535.       };
  2536.       break;
  2537.   }
  2538.   return -EINVAL;
  2539. }
  2540. #endif
  2541. static int hrz_sg_send (struct atm_vcc * atm_vcc,
  2542. unsigned long start,
  2543. unsigned long size) {
  2544.   if (atm_vcc->qos.aal == ATM_AAL5) {
  2545.     PRINTD (DBG_FLOW|DBG_VCC, "hrz_sg_send: yes");
  2546.     return 1;
  2547.   } else {
  2548.     PRINTD (DBG_FLOW|DBG_VCC, "hrz_sg_send: no");
  2549.     return 0;
  2550.   }
  2551. }
  2552. #if 0
  2553. static int hrz_ioctl (struct atm_dev * atm_dev, unsigned int cmd, void *arg) {
  2554.   hrz_dev * dev = HRZ_DEV(atm_dev);
  2555.   PRINTD (DBG_FLOW, "hrz_ioctl");
  2556.   return -1;
  2557. }
  2558. unsigned char hrz_phy_get (struct atm_dev * atm_dev, unsigned long addr) {
  2559.   hrz_dev * dev = HRZ_DEV(atm_dev);
  2560.   PRINTD (DBG_FLOW, "hrz_phy_get");
  2561.   return 0;
  2562. }
  2563. static void hrz_phy_put (struct atm_dev * atm_dev, unsigned char value,
  2564.  unsigned long addr) {
  2565.   hrz_dev * dev = HRZ_DEV(atm_dev);
  2566.   PRINTD (DBG_FLOW, "hrz_phy_put");
  2567. }
  2568. static int hrz_change_qos (struct atm_vcc * atm_vcc, struct atm_qos *qos, int flgs) {
  2569.   hrz_dev * dev = HRZ_DEV(vcc->dev);
  2570.   PRINTD (DBG_FLOW, "hrz_change_qos");
  2571.   return -1;
  2572. }
  2573. #endif
  2574. /********** proc file contents **********/
  2575. static int hrz_proc_read (struct atm_dev * atm_dev, loff_t * pos, char * page) {
  2576.   hrz_dev * dev = HRZ_DEV(atm_dev);
  2577.   int left = *pos;
  2578.   PRINTD (DBG_FLOW, "hrz_proc_read");
  2579.   
  2580.   /* more diagnostics here? */
  2581.   
  2582. #if 0
  2583.   if (!left--) {
  2584.     unsigned int count = sprintf (page, "vbr buckets:");
  2585.     unsigned int i;
  2586.     for (i = 0; i < TX_CHANS; ++i)
  2587.       count += sprintf (page, " %u/%u",
  2588. query_tx_channel_config (dev, i, BUCKET_FULLNESS_ACCESS),
  2589. query_tx_channel_config (dev, i, BUCKET_CAPACITY_ACCESS));
  2590.     count += sprintf (page+count, ".n");
  2591.     return count;
  2592.   }
  2593. #endif
  2594.   
  2595.   if (!left--)
  2596.     return sprintf (page,
  2597.     "cells: TX %lu, RX %lu, HEC errors %lu, unassigned %lu.n",
  2598.     dev->tx_cell_count, dev->rx_cell_count,
  2599.     dev->hec_error_count, dev->unassigned_cell_count);
  2600.   
  2601.   if (!left--)
  2602.     return sprintf (page,
  2603.     "free cell buffers: TX %hu, RX %hu+%hu.n",
  2604.     rd_regw (dev, TX_FREE_BUFFER_COUNT_OFF),
  2605.     rd_regw (dev, RX_FREE_BUFFER_COUNT_OFF),
  2606.     dev->noof_spare_buffers);
  2607.   
  2608.   if (!left--)
  2609.     return sprintf (page,
  2610.     "cps remaining: TX %u, RX %un",
  2611.     dev->tx_avail, dev->rx_avail);
  2612.   
  2613.   return 0;
  2614. }
  2615. static const struct atmdev_ops hrz_ops = {
  2616.   open: hrz_open,
  2617.   close: hrz_close,
  2618.   send: hrz_send,
  2619.   sg_send: hrz_sg_send,
  2620.   proc_read: hrz_proc_read,
  2621.   owner: THIS_MODULE,
  2622. };
  2623. static int __init hrz_probe (void) {
  2624.   struct pci_dev * pci_dev;
  2625.   int devs;
  2626.   
  2627.   PRINTD (DBG_FLOW, "hrz_probe");
  2628.   
  2629.   devs = 0;
  2630.   pci_dev = NULL;
  2631.   while ((pci_dev = pci_find_device
  2632.   (PCI_VENDOR_ID_MADGE, PCI_DEVICE_ID_MADGE_HORIZON, pci_dev)
  2633.   )) {
  2634.     hrz_dev * dev;
  2635.     
  2636.     // adapter slot free, read resources from PCI configuration space
  2637.     u32 iobase = pci_resource_start (pci_dev, 0);
  2638.     u32 * membase = bus_to_virt (pci_resource_start (pci_dev, 1));
  2639.     u8 irq = pci_dev->irq;
  2640.     
  2641.     // check IO region
  2642.     if (check_region (iobase, HRZ_IO_EXTENT)) {
  2643.       PRINTD (DBG_WARN, "IO range already in use");
  2644.       continue;
  2645.     }
  2646.     if (pci_enable_device (pci_dev))
  2647.       continue;
  2648.     dev = kmalloc (sizeof(hrz_dev), GFP_KERNEL);
  2649.     if (!dev) {
  2650.       // perhaps we should be nice: deregister all adapters and abort?
  2651.       PRINTD (DBG_ERR, "out of memory");
  2652.       continue;
  2653.     }
  2654.     
  2655.     memset (dev, 0, sizeof(hrz_dev));
  2656.     
  2657.     // grab IRQ and install handler - move this someplace more sensible
  2658.     if (request_irq (irq,
  2659.      interrupt_handler,
  2660.      SA_SHIRQ, /* irqflags guess */
  2661.      DEV_LABEL, /* name guess */
  2662.      dev)) {
  2663.       PRINTD (DBG_WARN, "request IRQ failed!");
  2664.       // free_irq is at "endif"
  2665.     } else {
  2666.       
  2667.       PRINTD (DBG_INFO, "found Madge ATM adapter (hrz) at: IO %x, IRQ %u, MEM %p",
  2668.       iobase, irq, membase);
  2669.       
  2670.       dev->atm_dev = atm_dev_register (DEV_LABEL, &hrz_ops, -1, NULL);
  2671.       if (!(dev->atm_dev)) {
  2672. PRINTD (DBG_ERR, "failed to register Madge ATM adapter");
  2673.       } else {
  2674. unsigned char lat;
  2675. PRINTD (DBG_INFO, "registered Madge ATM adapter (no. %d) (%p) at %p",
  2676. dev->atm_dev->number, dev, dev->atm_dev);
  2677. dev->atm_dev->dev_data = (void *) dev;
  2678. dev->pci_dev = pci_dev; 
  2679. /* XXX DEV_LABEL is a guess */
  2680. request_region (iobase, HRZ_IO_EXTENT, DEV_LABEL);
  2681. // enable bus master accesses
  2682. pci_set_master (pci_dev);
  2683. // frobnicate latency (upwards, usually)
  2684. pci_read_config_byte (pci_dev, PCI_LATENCY_TIMER, &lat);
  2685. if (pci_lat) {
  2686.   PRINTD (DBG_INFO, "%s PCI latency timer from %hu to %hu",
  2687.   "changing", lat, pci_lat);
  2688.   pci_write_config_byte (pci_dev, PCI_LATENCY_TIMER, pci_lat);
  2689. } else if (lat < MIN_PCI_LATENCY) {
  2690.   PRINTK (KERN_INFO, "%s PCI latency timer from %hu to %hu",
  2691.   "increasing", lat, MIN_PCI_LATENCY);
  2692.   pci_write_config_byte (pci_dev, PCI_LATENCY_TIMER, MIN_PCI_LATENCY);
  2693. }
  2694. dev->iobase = iobase;
  2695. dev->irq = irq; 
  2696. dev->membase = membase; 
  2697. dev->rx_q_entry = dev->rx_q_reset = &memmap->rx_q_entries[0];
  2698. dev->rx_q_wrap  = &memmap->rx_q_entries[RX_CHANS-1];
  2699. // these next three are performance hacks
  2700. dev->last_vc = -1;
  2701. dev->tx_last = -1;
  2702. dev->tx_idle = 0;
  2703. dev->tx_regions = 0;
  2704. dev->tx_bytes = 0;
  2705. dev->tx_skb = 0;
  2706. dev->tx_iovec = 0;
  2707. dev->tx_cell_count = 0;
  2708. dev->rx_cell_count = 0;
  2709. dev->hec_error_count = 0;
  2710. dev->unassigned_cell_count = 0;
  2711. dev->noof_spare_buffers = 0;
  2712. {
  2713.   unsigned int i;
  2714.   for (i = 0; i < TX_CHANS; ++i)
  2715.     dev->tx_channel_record[i] = -1;
  2716. }
  2717. dev->flags = 0;
  2718. // Allocate cell rates and remember ASIC version
  2719. // Fibre: ATM_OC3_PCR = 1555200000/8/270*260/53 - 29/53
  2720. // Copper: (WRONG) we want 6 into the above, close to 25Mb/s
  2721. // Copper: (plagarise!) 25600000/8/270*260/53 - n/53
  2722. if (hrz_init (dev)) {
  2723.   // to be really pedantic, this should be ATM_OC3c_PCR
  2724.   dev->tx_avail = ATM_OC3_PCR;
  2725.   dev->rx_avail = ATM_OC3_PCR;
  2726.   set_bit (ultra, &dev->flags); // NOT "|= ultra" !
  2727. } else {
  2728.   dev->tx_avail = ((25600000/8)*26)/(27*53);
  2729.   dev->rx_avail = ((25600000/8)*26)/(27*53);
  2730.   PRINTD (DBG_WARN, "Buggy ASIC: no TX bus-mastering.");
  2731. }
  2732. // rate changes spinlock
  2733. spin_lock_init (&dev->rate_lock);
  2734. // on-board memory access spinlock; we want atomic reads and
  2735. // writes to adapter memory (handles IRQ and SMP)
  2736. spin_lock_init (&dev->mem_lock);
  2737. #if LINUX_VERSION_CODE >= 0x20303
  2738. init_waitqueue_head (&dev->tx_queue);
  2739. #else
  2740. dev->tx_queue = 0;
  2741. #endif
  2742. // vpi in 0..4, vci in 6..10
  2743. dev->atm_dev->ci_range.vpi_bits = vpi_bits;
  2744. dev->atm_dev->ci_range.vci_bits = 10-vpi_bits;
  2745. // update count and linked list
  2746. ++devs;
  2747. dev->prev = hrz_devs;
  2748. hrz_devs = dev;
  2749. // success
  2750. continue;
  2751. /* not currently reached */
  2752. atm_dev_deregister (dev->atm_dev);
  2753.       } /* atm_dev_register */
  2754.       free_irq (irq, dev);
  2755.     } /* request_irq */
  2756.     kfree (dev);
  2757.   } /* kmalloc and while */
  2758.   return devs;
  2759. }
  2760. static void __init hrz_check_args (void) {
  2761. #ifdef DEBUG_HORIZON
  2762.   PRINTK (KERN_NOTICE, "debug bitmap is %hx", debug &= DBG_MASK);
  2763. #else
  2764.   if (debug)
  2765.     PRINTK (KERN_NOTICE, "no debug support in this image");
  2766. #endif
  2767.   
  2768.   if (vpi_bits > HRZ_MAX_VPI)
  2769.     PRINTK (KERN_ERR, "vpi_bits has been limited to %hu",
  2770.     vpi_bits = HRZ_MAX_VPI);
  2771.   
  2772.   if (max_tx_size > TX_AAL5_LIMIT)
  2773.     PRINTK (KERN_NOTICE, "max_tx_size has been limited to %hu",
  2774.     max_tx_size = TX_AAL5_LIMIT);
  2775.   
  2776.   if (max_rx_size > RX_AAL5_LIMIT)
  2777.     PRINTK (KERN_NOTICE, "max_rx_size has been limited to %hu",
  2778.     max_rx_size = RX_AAL5_LIMIT);
  2779.   
  2780.   return;
  2781. }
  2782. #ifdef MODULE
  2783. EXPORT_NO_SYMBOLS;
  2784. MODULE_AUTHOR(maintainer_string);
  2785. MODULE_DESCRIPTION(description_string);
  2786. MODULE_LICENSE("GPL");
  2787. MODULE_PARM(debug, "h");
  2788. MODULE_PARM(vpi_bits, "h");
  2789. MODULE_PARM(max_tx_size, "h");
  2790. MODULE_PARM(max_rx_size, "h");
  2791. MODULE_PARM(pci_lat, "b");
  2792. MODULE_PARM_DESC(debug, "debug bitmap, see .h file");
  2793. MODULE_PARM_DESC(vpi_bits, "number of bits (0..4) to allocate to VPIs");
  2794. MODULE_PARM_DESC(max_tx_size, "maximum size of TX AAL5 frames");
  2795. MODULE_PARM_DESC(max_rx_size, "maximum size of RX AAL5 frames");
  2796. MODULE_PARM_DESC(pci_lat, "PCI latency in bus cycles");
  2797. /********** module entry **********/
  2798. int init_module (void) {
  2799.   int devs;
  2800.   
  2801.   // sanity check - cast is needed since printk does not support %Zu
  2802.   if (sizeof(struct MEMMAP) != 128*1024/4) {
  2803.     PRINTK (KERN_ERR, "Fix struct MEMMAP (is %lu fakewords).",
  2804.     (unsigned long) sizeof(struct MEMMAP));
  2805.     return -ENOMEM;
  2806.   }
  2807.   
  2808.   show_version();
  2809.   
  2810.   // check arguments
  2811.   hrz_check_args();
  2812.   
  2813.   // get the juice
  2814.   devs = hrz_probe();
  2815.   
  2816.   if (devs) {
  2817.     init_timer (&housekeeping);
  2818.     housekeeping.function = do_housekeeping;
  2819.     // paranoia
  2820.     housekeeping.data = 1;
  2821.     set_timer (&housekeeping, 0);
  2822.   } else {
  2823.     PRINTK (KERN_ERR, "no (usable) adapters found");
  2824.   }
  2825.   
  2826.   return devs ? 0 : -ENODEV;
  2827. }
  2828. /********** module exit **********/
  2829. void cleanup_module (void) {
  2830.   hrz_dev * dev;
  2831.   PRINTD (DBG_FLOW, "cleanup_module");
  2832.   
  2833.   // paranoia
  2834.   housekeeping.data = 0;
  2835.   del_timer (&housekeeping);
  2836.   
  2837.   while (hrz_devs) {
  2838.     dev = hrz_devs;
  2839.     hrz_devs = dev->prev;
  2840.     
  2841.     PRINTD (DBG_INFO, "closing %p (atm_dev = %p)", dev, dev->atm_dev);
  2842.     hrz_reset (dev);
  2843.     atm_dev_deregister (dev->atm_dev);
  2844.     free_irq (dev->irq, dev);
  2845.     release_region (dev->iobase, HRZ_IO_EXTENT);
  2846.     kfree (dev);
  2847.   }
  2848.   
  2849.   return;
  2850. }
  2851. #else
  2852. /********** monolithic entry **********/
  2853. int __init hrz_detect (void) {
  2854.   int devs;
  2855.   
  2856.   // sanity check - cast is needed since printk does not support %Zu
  2857.   if (sizeof(struct MEMMAP) != 128*1024/4) {
  2858.     PRINTK (KERN_ERR, "Fix struct MEMMAP (is %lu fakewords).",
  2859.     (unsigned long) sizeof(struct MEMMAP));
  2860.     return 0;
  2861.   }
  2862.   
  2863.   show_version();
  2864.   
  2865.   // what about command line arguments?
  2866.   // check arguments
  2867.   hrz_check_args();
  2868.   
  2869.   // get the juice
  2870.   devs = hrz_probe();
  2871.   
  2872.   if (devs) {
  2873.     init_timer (&housekeeping);
  2874.     housekeeping.function = do_housekeeping;
  2875.     // paranoia
  2876.     housekeeping.data = 1;
  2877.     set_timer (&housekeeping, 0);
  2878.   } else {
  2879.     PRINTK (KERN_ERR, "no (usable) adapters found");
  2880.   }
  2881.   return devs;
  2882. }
  2883. #endif