defxx.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:105k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * File Name:
  3.  *   defxx.c
  4.  *
  5.  * Copyright Information:
  6.  *   Copyright Digital Equipment Corporation 1996.
  7.  *
  8.  *   This software may be used and distributed according to the terms of
  9.  *   the GNU General Public License, incorporated herein by reference.
  10.  *
  11.  * Abstract:
  12.  *   A Linux device driver supporting the Digital Equipment Corporation
  13.  *   FDDI EISA and PCI controller families.  Supported adapters include:
  14.  *
  15.  * DEC FDDIcontroller/EISA (DEFEA)
  16.  * DEC FDDIcontroller/PCI  (DEFPA)
  17.  *
  18.  * Maintainers:
  19.  *   LVS Lawrence V. Stefani
  20.  *
  21.  * Contact:
  22.  *  The author may be reached at:
  23.  *
  24.  * Inet: stefani@lkg.dec.com
  25.  * (NOTE! this address no longer works -jgarzik)
  26.  *
  27.  * Mail: Digital Equipment Corporation
  28.  *   550 King Street
  29.  *   M/S: LKG1-3/M07
  30.  *   Littleton, MA  01460
  31.  *
  32.  * Credits:
  33.  *   I'd like to thank Patricia Cross for helping me get started with
  34.  *   Linux, David Davies for a lot of help upgrading and configuring
  35.  *   my development system and for answering many OS and driver
  36.  *   development questions, and Alan Cox for recommendations and
  37.  *   integration help on getting FDDI support into Linux.  LVS
  38.  *
  39.  * Driver Architecture:
  40.  *   The driver architecture is largely based on previous driver work
  41.  *   for other operating systems.  The upper edge interface and
  42.  *   functions were largely taken from existing Linux device drivers
  43.  *   such as David Davies' DE4X5.C driver and Donald Becker's TULIP.C
  44.  *   driver.
  45.  *
  46.  *   Adapter Probe -
  47.  * The driver scans for supported EISA adapters by reading the
  48.  * SLOT ID register for each EISA slot and making a match
  49.  * against the expected value.
  50.  *
  51.  *   Bus-Specific Initialization -
  52.  * This driver currently supports both EISA and PCI controller
  53.  * families.  While the custom DMA chip and FDDI logic is similar
  54.  * or identical, the bus logic is very different.  After
  55.  * initialization, the only bus-specific differences is in how the
  56.  * driver enables and disables interrupts.  Other than that, the
  57.  * run-time critical code behaves the same on both families.
  58.  * It's important to note that both adapter families are configured
  59.  * to I/O map, rather than memory map, the adapter registers.
  60.  *
  61.  *   Driver Open/Close -
  62.  * In the driver open routine, the driver ISR (interrupt service
  63.  * routine) is registered and the adapter is brought to an
  64.  * operational state.  In the driver close routine, the opposite
  65.  * occurs; the driver ISR is deregistered and the adapter is
  66.  * brought to a safe, but closed state.  Users may use consecutive
  67.  * commands to bring the adapter up and down as in the following
  68.  * example:
  69.  * ifconfig fddi0 up
  70.  * ifconfig fddi0 down
  71.  * ifconfig fddi0 up
  72.  *
  73.  *   Driver Shutdown -
  74.  * Apparently, there is no shutdown or halt routine support under
  75.  * Linux.  This routine would be called during "reboot" or
  76.  * "shutdown" to allow the driver to place the adapter in a safe
  77.  * state before a warm reboot occurs.  To be really safe, the user
  78.  * should close the adapter before shutdown (eg. ifconfig fddi0 down)
  79.  * to ensure that the adapter DMA engine is taken off-line.  However,
  80.  * the current driver code anticipates this problem and always issues
  81.  * a soft reset of the adapter at the beginning of driver initialization.
  82.  * A future driver enhancement in this area may occur in 2.1.X where
  83.  * Alan indicated that a shutdown handler may be implemented.
  84.  *
  85.  *   Interrupt Service Routine -
  86.  * The driver supports shared interrupts, so the ISR is registered for
  87.  * each board with the appropriate flag and the pointer to that board's
  88.  * device structure.  This provides the context during interrupt
  89.  * processing to support shared interrupts and multiple boards.
  90.  *
  91.  * Interrupt enabling/disabling can occur at many levels.  At the host
  92.  * end, you can disable system interrupts, or disable interrupts at the
  93.  * PIC (on Intel systems).  Across the bus, both EISA and PCI adapters
  94.  * have a bus-logic chip interrupt enable/disable as well as a DMA
  95.  * controller interrupt enable/disable.
  96.  *
  97.  * The driver currently enables and disables adapter interrupts at the
  98.  * bus-logic chip and assumes that Linux will take care of clearing or
  99.  * acknowledging any host-based interrupt chips.
  100.  *
  101.  *   Control Functions -
  102.  * Control functions are those used to support functions such as adding
  103.  * or deleting multicast addresses, enabling or disabling packet
  104.  * reception filters, or other custom/proprietary commands.  Presently,
  105.  * the driver supports the "get statistics", "set multicast list", and
  106.  * "set mac address" functions defined by Linux.  A list of possible
  107.  * enhancements include:
  108.  *
  109.  * - Custom ioctl interface for executing port interface commands
  110.  * - Custom ioctl interface for adding unicast addresses to
  111.  *   adapter CAM (to support bridge functions).
  112.  * - Custom ioctl interface for supporting firmware upgrades.
  113.  *
  114.  *   Hardware (port interface) Support Routines -
  115.  * The driver function names that start with "dfx_hw_" represent
  116.  * low-level port interface routines that are called frequently.  They
  117.  * include issuing a DMA or port control command to the adapter,
  118.  * resetting the adapter, or reading the adapter state.  Since the
  119.  * driver initialization and run-time code must make calls into the
  120.  * port interface, these routines were written to be as generic and
  121.  * usable as possible.
  122.  *
  123.  *   Receive Path -
  124.  * The adapter DMA engine supports a 256 entry receive descriptor block
  125.  * of which up to 255 entries can be used at any given time.  The
  126.  * architecture is a standard producer, consumer, completion model in
  127.  * which the driver "produces" receive buffers to the adapter, the
  128.  * adapter "consumes" the receive buffers by DMAing incoming packet data,
  129.  * and the driver "completes" the receive buffers by servicing the
  130.  * incoming packet, then "produces" a new buffer and starts the cycle
  131.  * again.  Receive buffers can be fragmented in up to 16 fragments
  132.  * (descriptor entries).  For simplicity, this driver posts
  133.  * single-fragment receive buffers of 4608 bytes, then allocates a
  134.  * sk_buff, copies the data, then reposts the buffer.  To reduce CPU
  135.  * utilization, a better approach would be to pass up the receive
  136.  * buffer (no extra copy) then allocate and post a replacement buffer.
  137.  * This is a performance enhancement that should be looked into at
  138.  * some point.
  139.  *
  140.  *   Transmit Path -
  141.  * Like the receive path, the adapter DMA engine supports a 256 entry
  142.  * transmit descriptor block of which up to 255 entries can be used at
  143.  * any given time.  Transmit buffers can be fragmented in up to 255
  144.  * fragments (descriptor entries).  This driver always posts one
  145.  * fragment per transmit packet request.
  146.  *
  147.  * The fragment contains the entire packet from FC to end of data.
  148.  * Before posting the buffer to the adapter, the driver sets a three-byte
  149.  * packet request header (PRH) which is required by the Motorola MAC chip
  150.  * used on the adapters.  The PRH tells the MAC the type of token to
  151.  * receive/send, whether or not to generate and append the CRC, whether
  152.  * synchronous or asynchronous framing is used, etc.  Since the PRH
  153.  * definition is not necessarily consistent across all FDDI chipsets,
  154.  * the driver, rather than the common FDDI packet handler routines,
  155.  * sets these bytes.
  156.  *
  157.  * To reduce the amount of descriptor fetches needed per transmit request,
  158.  * the driver takes advantage of the fact that there are at least three
  159.  * bytes available before the skb->data field on the outgoing transmit
  160.  * request.  This is guaranteed by having fddi_setup() in net_init.c set
  161.  * dev->hard_header_len to 24 bytes.  21 bytes accounts for the largest
  162.  * header in an 802.2 SNAP frame.  The other 3 bytes are the extra "pad"
  163.  * bytes which we'll use to store the PRH.
  164.  *
  165.  * There's a subtle advantage to adding these pad bytes to the
  166.  * hard_header_len, it ensures that the data portion of the packet for
  167.  * an 802.2 SNAP frame is longword aligned.  Other FDDI driver
  168.  * implementations may not need the extra padding and can start copying
  169.  * or DMAing directly from the FC byte which starts at skb->data.  Should
  170.  * another driver implementation need ADDITIONAL padding, the net_init.c
  171.  * module should be updated and dev->hard_header_len should be increased.
  172.  * NOTE: To maintain the alignment on the data portion of the packet,
  173.  * dev->hard_header_len should always be evenly divisible by 4 and at
  174.  * least 24 bytes in size.
  175.  *
  176.  * Modification History:
  177.  * Date Name Description
  178.  * 16-Aug-96 LVS Created.
  179.  * 20-Aug-96 LVS Updated dfx_probe so that version information
  180.  * string is only displayed if 1 or more cards are
  181.  * found.  Changed dfx_rcv_queue_process to copy
  182.  * 3 NULL bytes before FC to ensure that data is
  183.  * longword aligned in receive buffer.
  184.  * 09-Sep-96 LVS Updated dfx_ctl_set_multicast_list to enable
  185.  * LLC group promiscuous mode if multicast list
  186.  * is too large.  LLC individual/group promiscuous
  187.  * mode is now disabled if IFF_PROMISC flag not set.
  188.  * dfx_xmt_queue_pkt no longer checks for NULL skb
  189.  * on Alan Cox recommendation.  Added node address
  190.  * override support.
  191.  * 12-Sep-96 LVS Reset current address to factory address during
  192.  * device open.  Updated transmit path to post a
  193.  * single fragment which includes PRH->end of data.
  194.  * Mar 2000 AC Did various cleanups for 2.3.x
  195.  * Jun 2000 jgarzik PCI and resource alloc cleanups
  196.  * Jul 2000 tjeerd Much cleanup and some bug fixes
  197.  * Sep 2000 tjeerd Fix leak on unload, cosmetic code cleanup
  198.  * Feb 2001 Skb allocation fixes
  199.  * Feb 2001 davej PCI enable cleanups.
  200.  */
  201. /* Include files */
  202. #include <linux/module.h>
  203. #include <linux/kernel.h>
  204. #include <linux/sched.h>
  205. #include <linux/string.h>
  206. #include <linux/ptrace.h>
  207. #include <linux/errno.h>
  208. #include <linux/ioport.h>
  209. #include <linux/slab.h>
  210. #include <linux/interrupt.h>
  211. #include <linux/pci.h>
  212. #include <linux/delay.h>
  213. #include <linux/init.h>
  214. #include <linux/netdevice.h>
  215. #include <asm/byteorder.h>
  216. #include <asm/bitops.h>
  217. #include <asm/io.h>
  218. #include <linux/fddidevice.h>
  219. #include <linux/skbuff.h>
  220. #include "defxx.h"
  221. /* Version information string - should be updated prior to each new release!!! */
  222. static char version[] __devinitdata =
  223. "defxx.c:v1.05e 2001/02/03  Lawrence V. Stefani and othersn";
  224. #define DYNAMIC_BUFFERS 1
  225. #define SKBUFF_RX_COPYBREAK 200
  226. /*
  227.  * NEW_SKB_SIZE = PI_RCV_DATA_K_SIZE_MAX+128 to allow 128 byte
  228.  * alignment for compatibility with old EISA boards.
  229.  */
  230. #define NEW_SKB_SIZE (PI_RCV_DATA_K_SIZE_MAX+128)
  231. /* Define module-wide (static) routines */
  232. static void dfx_bus_init(struct net_device *dev);
  233. static void dfx_bus_config_check(DFX_board_t *bp);
  234. static int dfx_driver_init(struct net_device *dev);
  235. static int dfx_adap_init(DFX_board_t *bp, int get_buffers);
  236. static int dfx_open(struct net_device *dev);
  237. static int dfx_close(struct net_device *dev);
  238. static void dfx_int_pr_halt_id(DFX_board_t *bp);
  239. static void dfx_int_type_0_process(DFX_board_t *bp);
  240. static void dfx_int_common(struct net_device *dev);
  241. static void dfx_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  242. static struct net_device_stats *dfx_ctl_get_stats(struct net_device *dev);
  243. static void dfx_ctl_set_multicast_list(struct net_device *dev);
  244. static int dfx_ctl_set_mac_address(struct net_device *dev, void *addr);
  245. static int dfx_ctl_update_cam(DFX_board_t *bp);
  246. static int dfx_ctl_update_filters(DFX_board_t *bp);
  247. static int dfx_hw_dma_cmd_req(DFX_board_t *bp);
  248. static int dfx_hw_port_ctrl_req(DFX_board_t *bp, PI_UINT32 command, PI_UINT32 data_a, PI_UINT32 data_b, PI_UINT32 *host_data);
  249. static void dfx_hw_adap_reset(DFX_board_t *bp, PI_UINT32 type);
  250. static int dfx_hw_adap_state_rd(DFX_board_t *bp);
  251. static int dfx_hw_dma_uninit(DFX_board_t *bp, PI_UINT32 type);
  252. static int dfx_rcv_init(DFX_board_t *bp, int get_buffers);
  253. static void dfx_rcv_queue_process(DFX_board_t *bp);
  254. static void dfx_rcv_flush(DFX_board_t *bp);
  255. static int dfx_xmt_queue_pkt(struct sk_buff *skb, struct net_device *dev);
  256. static int dfx_xmt_done(DFX_board_t *bp);
  257. static void dfx_xmt_flush(DFX_board_t *bp);
  258. /* Define module-wide (static) variables */
  259. static struct net_device *root_dfx_eisa_dev;
  260. /*
  261.  * =======================
  262.  * = dfx_port_write_byte =
  263.  * = dfx_port_read_byte  =
  264.  * = dfx_port_write_long =
  265.  * = dfx_port_read_long  =
  266.  * =======================
  267.  *   
  268.  * Overview:
  269.  *   Routines for reading and writing values from/to adapter
  270.  *  
  271.  * Returns:
  272.  *   None
  273.  *       
  274.  * Arguments:
  275.  *   bp     - pointer to board information
  276.  *   offset - register offset from base I/O address
  277.  *   data   - for dfx_port_write_byte and dfx_port_write_long, this
  278.  *   is a value to write.
  279.  *   for dfx_port_read_byte and dfx_port_read_byte, this
  280.  *   is a pointer to store the read value.
  281.  *
  282.  * Functional Description:
  283.  *   These routines perform the correct operation to read or write
  284.  *   the adapter register.
  285.  *   
  286.  *   EISA port block base addresses are based on the slot number in which the
  287.  *   controller is installed.  For example, if the EISA controller is installed
  288.  *   in slot 4, the port block base address is 0x4000.  If the controller is
  289.  *   installed in slot 2, the port block base address is 0x2000, and so on.
  290.  *   This port block can be used to access PDQ, ESIC, and DEFEA on-board
  291.  *   registers using the register offsets defined in DEFXX.H.
  292.  *
  293.  *   PCI port block base addresses are assigned by the PCI BIOS or system
  294.  *  firmware.  There is one 128 byte port block which can be accessed.  It
  295.  *   allows for I/O mapping of both PDQ and PFI registers using the register
  296.  *   offsets defined in DEFXX.H.
  297.  *
  298.  * Return Codes:
  299.  *   None
  300.  *
  301.  * Assumptions:
  302.  *   bp->base_addr is a valid base I/O address for this adapter.
  303.  *   offset is a valid register offset for this adapter.
  304.  *
  305.  * Side Effects:
  306.  *   Rather than produce macros for these functions, these routines
  307.  *   are defined using "inline" to ensure that the compiler will
  308.  *   generate inline code and not waste a procedure call and return.
  309.  *   This provides all the benefits of macros, but with the
  310.  *   advantage of strict data type checking.
  311.  */
  312. static inline void dfx_port_write_byte(
  313. DFX_board_t *bp,
  314. int offset,
  315. u8 data
  316. )
  317. {
  318. u16 port = bp->base_addr + offset;
  319. outb(data, port);
  320. }
  321. static inline void dfx_port_read_byte(
  322. DFX_board_t *bp,
  323. int offset,
  324. u8 *data
  325. )
  326. {
  327. u16 port = bp->base_addr + offset;
  328. *data = inb(port);
  329. }
  330. static inline void dfx_port_write_long(
  331. DFX_board_t *bp,
  332. int offset,
  333. u32 data
  334. )
  335. {
  336. u16 port = bp->base_addr + offset;
  337. outl(data, port);
  338. }
  339. static inline void dfx_port_read_long(
  340. DFX_board_t *bp,
  341. int offset,
  342. u32 *data
  343. )
  344. {
  345. u16 port = bp->base_addr + offset;
  346. *data = inl(port);
  347. }
  348. /*
  349.  * =============
  350.  * = dfx_init_one_pci_or_eisa =
  351.  * =============
  352.  *   
  353.  * Overview:
  354.  *   Initializes a supported FDDI EISA or PCI controller
  355.  *  
  356.  * Returns:
  357.  *   Condition code
  358.  *       
  359.  * Arguments:
  360.  *   pdev - pointer to pci device information (NULL for EISA)
  361.  *   ioaddr - pointer to port (NULL for PCI)
  362.  *
  363.  * Functional Description:
  364.  *
  365.  * Return Codes:
  366.  *   0  - This device (fddi0, fddi1, etc) configured successfully
  367.  *   -EBUSY      - Failed to get resources, or dfx_driver_init failed.
  368.  *
  369.  * Assumptions:
  370.  *   It compiles so it should work :-( (PCI cards do :-)
  371.  *
  372.  * Side Effects:
  373.  *   Device structures for FDDI adapters (fddi0, fddi1, etc) are
  374.  *   initialized and the board resources are read and stored in
  375.  *   the device structure.
  376.  */
  377. static int __devinit dfx_init_one_pci_or_eisa(struct pci_dev *pdev, long ioaddr)
  378. {
  379. struct net_device *dev;
  380. DFX_board_t   *bp; /* board pointer */
  381. int err;
  382. #ifndef MODULE
  383. static int version_disp;
  384. if (!version_disp) /* display version info if adapter is found */
  385. {
  386. version_disp = 1; /* set display flag to TRUE so that */
  387. printk(version); /* we only display this string ONCE */
  388. }
  389. #endif
  390. /*
  391.  * init_fddidev() allocates a device structure with private data, clears the device structure and private data,
  392.  * and  calls fddi_setup() and register_netdev(). Not much left to do for us here.
  393.  */
  394. dev = init_fddidev(NULL, sizeof(*bp));
  395. if (!dev) {
  396. printk (KERN_ERR "defxx: unable to allocate fddidev, abortingn");
  397. return -ENOMEM;
  398. }
  399. /* Enable PCI device. */
  400. if (pdev != NULL) {
  401. err = pci_enable_device (pdev);
  402. if (err) goto err_out;
  403. ioaddr = pci_resource_start (pdev, 1);
  404. }
  405. SET_MODULE_OWNER(dev);
  406. bp = dev->priv;
  407. if (!request_region (ioaddr, pdev ? PFI_K_CSR_IO_LEN : PI_ESIC_K_CSR_IO_LEN, dev->name)) {
  408. printk (KERN_ERR "%s: Cannot reserve I/O resource 0x%x @ 0x%lx, abortingn",
  409. dev->name, PFI_K_CSR_IO_LEN, ioaddr);
  410. err = -EBUSY;
  411. goto err_out;
  412. }
  413. /* Initialize new device structure */
  414. dev->base_addr = ioaddr; /* save port (I/O) base address */
  415. dev->get_stats = dfx_ctl_get_stats;
  416. dev->open = dfx_open;
  417. dev->stop = dfx_close;
  418. dev->hard_start_xmit = dfx_xmt_queue_pkt;
  419. dev->set_multicast_list = dfx_ctl_set_multicast_list;
  420. dev->set_mac_address = dfx_ctl_set_mac_address;
  421. if (pdev == NULL) {
  422. /* EISA board */
  423. bp->bus_type = DFX_BUS_TYPE_EISA;
  424. bp->next = root_dfx_eisa_dev;
  425. root_dfx_eisa_dev = dev;
  426. } else {
  427. /* PCI board */
  428. bp->bus_type = DFX_BUS_TYPE_PCI;
  429. bp->pci_dev = pdev;
  430. pci_set_drvdata (pdev, dev);
  431. pci_set_master (pdev);
  432. }
  433. if (dfx_driver_init(dev) != DFX_K_SUCCESS) {
  434. err = -ENODEV;
  435. goto err_out_region;
  436. }
  437. return 0;
  438. err_out_region:
  439. release_region(ioaddr, pdev ? PFI_K_CSR_IO_LEN : PI_ESIC_K_CSR_IO_LEN);
  440. err_out:
  441. unregister_netdev(dev);
  442. kfree(dev);
  443. return err;
  444. }
  445. static int __devinit dfx_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
  446. {
  447. return dfx_init_one_pci_or_eisa(pdev, 0);
  448. }
  449. static int __init dfx_eisa_init(void)
  450. {
  451. int rc = -NODEV;
  452. int i; /* used in for loops */
  453. u16 port; /* temporary I/O (port) address */
  454. u32 slot_id; /* EISA hardware (slot) ID read from adapter */
  455. DBG_printk("In dfx_eisa_init...n");
  456. /* Scan for FDDI EISA controllers */
  457. for (i=0; i < DFX_MAX_EISA_SLOTS; i++) /* only scan for up to 16 EISA slots */
  458. {
  459. port = (i << 12) + PI_ESIC_K_SLOT_ID; /* port = I/O address for reading slot ID */
  460. slot_id = inl(port); /* read EISA HW (slot) ID */
  461. if ((slot_id & 0xF0FFFFFF) == DEFEA_PRODUCT_ID)
  462. {
  463. port = (i << 12); /* recalc base addr */
  464. if (dfx_init_one_pci_or_eisa(NULL, port) == 0) rc = 0;
  465. }
  466. }
  467. return rc;
  468. }
  469. /*
  470.  * ================
  471.  * = dfx_bus_init =
  472.  * ================
  473.  *   
  474.  * Overview:
  475.  *   Initializes EISA and PCI controller bus-specific logic.
  476.  *  
  477.  * Returns:
  478.  *   None
  479.  *       
  480.  * Arguments:
  481.  *   dev - pointer to device information
  482.  *
  483.  * Functional Description:
  484.  *   Determine and save adapter IRQ in device table,
  485.  *   then perform bus-specific logic initialization.
  486.  *
  487.  * Return Codes:
  488.  *   None
  489.  *
  490.  * Assumptions:
  491.  *   dev->base_addr has already been set with the proper
  492.  *  base I/O address for this device.
  493.  *
  494.  * Side Effects:
  495.  *   Interrupts are enabled at the adapter bus-specific logic.
  496.  *   Note:  Interrupts at the DMA engine (PDQ chip) are not
  497.  *   enabled yet.
  498.  */
  499. static void __devinit dfx_bus_init(struct net_device *dev)
  500. {
  501. DFX_board_t *bp = dev->priv;
  502. u8 val; /* used for I/O read/writes */
  503. DBG_printk("In dfx_bus_init...n");
  504. /*
  505.  * Initialize base I/O address field in bp structure
  506.  *
  507.  * Note: bp->base_addr is the same as dev->base_addr.
  508.  *  It's useful because often we'll need to read
  509.  *  or write registers where we already have the
  510.  *  bp pointer instead of the dev pointer.  Having
  511.  *  the base address in the bp structure will
  512.  *  save a pointer dereference.
  513.  *
  514.  *  IMPORTANT!! This field must be defined before
  515.  *  any of the dfx_port_* inline functions are
  516.  *  called.
  517.  */
  518. bp->base_addr = dev->base_addr;
  519. /* And a pointer back to the net_device struct */
  520. bp->dev = dev;
  521. /* Initialize adapter based on bus type */
  522. if (bp->bus_type == DFX_BUS_TYPE_EISA)
  523. {
  524. /* Get the interrupt level from the ESIC chip */
  525. dfx_port_read_byte(bp, PI_ESIC_K_IO_CONFIG_STAT_0, &val);
  526. switch ((val & PI_CONFIG_STAT_0_M_IRQ) >> PI_CONFIG_STAT_0_V_IRQ)
  527. {
  528. case PI_CONFIG_STAT_0_IRQ_K_9:
  529. dev->irq = 9;
  530. break;
  531. case PI_CONFIG_STAT_0_IRQ_K_10:
  532. dev->irq = 10;
  533. break;
  534. case PI_CONFIG_STAT_0_IRQ_K_11:
  535. dev->irq = 11;
  536. break;
  537. case PI_CONFIG_STAT_0_IRQ_K_15:
  538. dev->irq = 15;
  539. break;
  540. }
  541. /* Enable access to I/O on the board by writing 0x03 to Function Control Register */
  542. dfx_port_write_byte(bp, PI_ESIC_K_FUNCTION_CNTRL, PI_ESIC_K_FUNCTION_CNTRL_IO_ENB);
  543. /* Set the I/O decode range of the board */
  544. val = ((dev->base_addr >> 12) << PI_IO_CMP_V_SLOT);
  545. dfx_port_write_byte(bp, PI_ESIC_K_IO_CMP_0_1, val);
  546. dfx_port_write_byte(bp, PI_ESIC_K_IO_CMP_1_1, val);
  547. /* Enable access to rest of module (including PDQ and packet memory) */
  548. dfx_port_write_byte(bp, PI_ESIC_K_SLOT_CNTRL, PI_SLOT_CNTRL_M_ENB);
  549. /*
  550.  * Map PDQ registers into I/O space.  This is done by clearing a bit
  551.  * in Burst Holdoff register.
  552.  */
  553. dfx_port_read_byte(bp, PI_ESIC_K_BURST_HOLDOFF, &val);
  554. dfx_port_write_byte(bp, PI_ESIC_K_BURST_HOLDOFF, (val & ~PI_BURST_HOLDOFF_M_MEM_MAP));
  555. /* Enable interrupts at EISA bus interface chip (ESIC) */
  556. dfx_port_read_byte(bp, PI_ESIC_K_IO_CONFIG_STAT_0, &val);
  557. dfx_port_write_byte(bp, PI_ESIC_K_IO_CONFIG_STAT_0, (val | PI_CONFIG_STAT_0_M_INT_ENB));
  558. }
  559. else
  560. {
  561. struct pci_dev *pdev = bp->pci_dev;
  562. /* Get the interrupt level from the PCI Configuration Table */
  563. dev->irq = pdev->irq;
  564. /* Check Latency Timer and set if less than minimal */
  565. pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &val);
  566. if (val < PFI_K_LAT_TIMER_MIN) /* if less than min, override with default */
  567. {
  568. val = PFI_K_LAT_TIMER_DEF;
  569. pci_write_config_byte(pdev, PCI_LATENCY_TIMER, val);
  570. }
  571. /* Enable interrupts at PCI bus interface chip (PFI) */
  572. dfx_port_write_long(bp, PFI_K_REG_MODE_CTRL, (PFI_MODE_M_PDQ_INT_ENB | PFI_MODE_M_DMA_ENB));
  573. }
  574. }
  575. /*
  576.  * ========================
  577.  * = dfx_bus_config_check =
  578.  * ========================
  579.  *   
  580.  * Overview:
  581.  *   Checks the configuration (burst size, full-duplex, etc.)  If any parameters
  582.  *   are illegal, then this routine will set new defaults.
  583.  *  
  584.  * Returns:
  585.  *   None
  586.  *       
  587.  * Arguments:
  588.  *   bp - pointer to board information
  589.  *
  590.  * Functional Description:
  591.  *   For Revision 1 FDDI EISA, Revision 2 or later FDDI EISA with rev E or later
  592.  *   PDQ, and all FDDI PCI controllers, all values are legal.
  593.  *
  594.  * Return Codes:
  595.  *   None
  596.  *
  597.  * Assumptions:
  598.  *   dfx_adap_init has NOT been called yet so burst size and other items have
  599.  *   not been set.
  600.  *
  601.  * Side Effects:
  602.  *   None
  603.  */
  604. static void __devinit dfx_bus_config_check(DFX_board_t *bp)
  605. {
  606. int status; /* return code from adapter port control call */
  607. u32 slot_id; /* EISA-bus hardware id (DEC3001, DEC3002,...) */
  608. u32 host_data; /* LW data returned from port control call */
  609. DBG_printk("In dfx_bus_config_check...n");
  610. /* Configuration check only valid for EISA adapter */
  611. if (bp->bus_type == DFX_BUS_TYPE_EISA)
  612. {
  613. dfx_port_read_long(bp, PI_ESIC_K_SLOT_ID, &slot_id);
  614. /*
  615.  * First check if revision 2 EISA controller.  Rev. 1 cards used
  616.  * PDQ revision B, so no workaround needed in this case.  Rev. 3
  617.  * cards used PDQ revision E, so no workaround needed in this
  618.  * case, either.  Only Rev. 2 cards used either Rev. D or E
  619.  * chips, so we must verify the chip revision on Rev. 2 cards.
  620.  */
  621. if (slot_id == DEFEA_PROD_ID_2)
  622. {
  623. /*
  624.  * Revision 2 FDDI EISA controller found, so let's check PDQ
  625.  * revision of adapter.
  626.  */
  627. status = dfx_hw_port_ctrl_req(bp,
  628. PI_PCTRL_M_SUB_CMD,
  629. PI_SUB_CMD_K_PDQ_REV_GET,
  630. 0,
  631. &host_data);
  632. if ((status != DFX_K_SUCCESS) || (host_data == 2))
  633. {
  634. /*
  635.  * Either we couldn't determine the PDQ revision, or
  636.  * we determined that it is at revision D.  In either case,
  637.  * we need to implement the workaround.
  638.  */
  639. /* Ensure that the burst size is set to 8 longwords or less */
  640. switch (bp->burst_size)
  641. {
  642. case PI_PDATA_B_DMA_BURST_SIZE_32:
  643. case PI_PDATA_B_DMA_BURST_SIZE_16:
  644. bp->burst_size = PI_PDATA_B_DMA_BURST_SIZE_8;
  645. break;
  646. default:
  647. break;
  648. }
  649. /* Ensure that full-duplex mode is not enabled */
  650. bp->full_duplex_enb = PI_SNMP_K_FALSE;
  651. }
  652. }
  653. }
  654. }
  655. /*
  656.  * ===================
  657.  * = dfx_driver_init =
  658.  * ===================
  659.  *   
  660.  * Overview:
  661.  *   Initializes remaining adapter board structure information
  662.  *   and makes sure adapter is in a safe state prior to dfx_open().
  663.  *  
  664.  * Returns:
  665.  *   Condition code
  666.  *       
  667.  * Arguments:
  668.  *   dev - pointer to device information
  669.  *
  670.  * Functional Description:
  671.  *   This function allocates additional resources such as the host memory
  672.  *   blocks needed by the adapter (eg. descriptor and consumer blocks).
  673.  *  Remaining bus initialization steps are also completed.  The adapter
  674.  *   is also reset so that it is in the DMA_UNAVAILABLE state.  The OS
  675.  *   must call dfx_open() to open the adapter and bring it on-line.
  676.  *
  677.  * Return Codes:
  678.  *   DFX_K_SUCCESS - initialization succeeded
  679.  *   DFX_K_FAILURE - initialization failed - could not allocate memory
  680.  * or read adapter MAC address
  681.  *
  682.  * Assumptions:
  683.  *   Memory allocated from kmalloc() call is physically contiguous, locked
  684.  *   memory whose physical address equals its virtual address.
  685.  *
  686.  * Side Effects:
  687.  *   Adapter is reset and should be in DMA_UNAVAILABLE state before
  688.  *   returning from this routine.
  689.  */
  690. static int __devinit dfx_driver_init(struct net_device *dev)
  691. {
  692. DFX_board_t *bp = dev->priv;
  693. int alloc_size; /* total buffer size needed */
  694. char *top_v, *curr_v; /* virtual addrs into memory block */
  695. u32 top_p, curr_p; /* physical addrs into memory block */
  696. u32 data; /* host data register value */
  697. DBG_printk("In dfx_driver_init...n");
  698. /* Initialize bus-specific hardware registers */
  699. dfx_bus_init(dev);
  700. /*
  701.  * Initialize default values for configurable parameters
  702.  *
  703.  * Note: All of these parameters are ones that a user may
  704.  *       want to customize.  It'd be nice to break these
  705.  *  out into Space.c or someplace else that's more
  706.  *  accessible/understandable than this file.
  707.  */
  708. bp->full_duplex_enb = PI_SNMP_K_FALSE;
  709. bp->req_ttrt = 8 * 12500; /* 8ms in 80 nanosec units */
  710. bp->burst_size = PI_PDATA_B_DMA_BURST_SIZE_DEF;
  711. bp->rcv_bufs_to_post = RCV_BUFS_DEF;
  712. /*
  713.  * Ensure that HW configuration is OK
  714.  *
  715.  * Note: Depending on the hardware revision, we may need to modify
  716.  *       some of the configurable parameters to workaround hardware
  717.  *       limitations.  We'll perform this configuration check AFTER
  718.  *       setting the parameters to their default values.
  719.  */
  720. dfx_bus_config_check(bp);
  721. /* Disable PDQ interrupts first */
  722. dfx_port_write_long(bp, PI_PDQ_K_REG_HOST_INT_ENB, PI_HOST_INT_K_DISABLE_ALL_INTS);
  723. /* Place adapter in DMA_UNAVAILABLE state by resetting adapter */
  724. (void) dfx_hw_dma_uninit(bp, PI_PDATA_A_RESET_M_SKIP_ST);
  725. /*  Read the factory MAC address from the adapter then save it */
  726. if (dfx_hw_port_ctrl_req(bp,
  727. PI_PCTRL_M_MLA,
  728. PI_PDATA_A_MLA_K_LO,
  729. 0,
  730. &data) != DFX_K_SUCCESS)
  731. {
  732. printk("%s: Could not read adapter factory MAC address!n", dev->name);
  733. return(DFX_K_FAILURE);
  734. }
  735. memcpy(&bp->factory_mac_addr[0], &data, sizeof(u32));
  736. if (dfx_hw_port_ctrl_req(bp,
  737. PI_PCTRL_M_MLA,
  738. PI_PDATA_A_MLA_K_HI,
  739. 0,
  740. &data) != DFX_K_SUCCESS)
  741. {
  742. printk("%s: Could not read adapter factory MAC address!n", dev->name);
  743. return(DFX_K_FAILURE);
  744. }
  745. memcpy(&bp->factory_mac_addr[4], &data, sizeof(u16));
  746. /*
  747.  * Set current address to factory address
  748.  *
  749.  * Note: Node address override support is handled through
  750.  *       dfx_ctl_set_mac_address.
  751.  */
  752. memcpy(dev->dev_addr, bp->factory_mac_addr, FDDI_K_ALEN);
  753. if (bp->bus_type == DFX_BUS_TYPE_EISA)
  754. printk("%s: DEFEA at I/O addr = 0x%lX, IRQ = %d, Hardware addr = %02X-%02X-%02X-%02X-%02X-%02Xn",
  755. dev->name,
  756. dev->base_addr,
  757. dev->irq,
  758. dev->dev_addr[0],
  759. dev->dev_addr[1],
  760. dev->dev_addr[2],
  761. dev->dev_addr[3],
  762. dev->dev_addr[4],
  763. dev->dev_addr[5]);
  764. else
  765. printk("%s: DEFPA at I/O addr = 0x%lX, IRQ = %d, Hardware addr = %02X-%02X-%02X-%02X-%02X-%02Xn",
  766. dev->name,
  767. dev->base_addr,
  768. dev->irq,
  769. dev->dev_addr[0],
  770. dev->dev_addr[1],
  771. dev->dev_addr[2],
  772. dev->dev_addr[3],
  773. dev->dev_addr[4],
  774. dev->dev_addr[5]);
  775. /*
  776.  * Get memory for descriptor block, consumer block, and other buffers
  777.  * that need to be DMA read or written to by the adapter.
  778.  */
  779. alloc_size = sizeof(PI_DESCR_BLOCK) +
  780. PI_CMD_REQ_K_SIZE_MAX +
  781. PI_CMD_RSP_K_SIZE_MAX +
  782. #ifndef DYNAMIC_BUFFERS
  783. (bp->rcv_bufs_to_post * PI_RCV_DATA_K_SIZE_MAX) +
  784. #endif
  785. sizeof(PI_CONSUMER_BLOCK) +
  786. (PI_ALIGN_K_DESC_BLK - 1);
  787. bp->kmalloced = top_v = (char *) kmalloc(alloc_size, GFP_KERNEL);
  788. if (top_v == NULL)
  789. {
  790. printk("%s: Could not allocate memory for host buffers and structures!n", dev->name);
  791. return(DFX_K_FAILURE);
  792. }
  793. memset(top_v, 0, alloc_size); /* zero out memory before continuing */
  794. top_p = virt_to_bus(top_v); /* get physical address of buffer */
  795. /*
  796.  *  To guarantee the 8K alignment required for the descriptor block, 8K - 1
  797.  *  plus the amount of memory needed was allocated.  The physical address
  798.  * is now 8K aligned.  By carving up the memory in a specific order,
  799.  *  we'll guarantee the alignment requirements for all other structures.
  800.  *
  801.  *  Note: If the assumptions change regarding the non-paged, non-cached,
  802.  *   physically contiguous nature of the memory block or the address
  803.  *   alignments, then we'll need to implement a different algorithm
  804.  *   for allocating the needed memory.
  805.  */
  806. curr_p = (u32) (ALIGN(top_p, PI_ALIGN_K_DESC_BLK));
  807. curr_v = top_v + (curr_p - top_p);
  808. /* Reserve space for descriptor block */
  809. bp->descr_block_virt = (PI_DESCR_BLOCK *) curr_v;
  810. bp->descr_block_phys = curr_p;
  811. curr_v += sizeof(PI_DESCR_BLOCK);
  812. curr_p += sizeof(PI_DESCR_BLOCK);
  813. /* Reserve space for command request buffer */
  814. bp->cmd_req_virt = (PI_DMA_CMD_REQ *) curr_v;
  815. bp->cmd_req_phys = curr_p;
  816. curr_v += PI_CMD_REQ_K_SIZE_MAX;
  817. curr_p += PI_CMD_REQ_K_SIZE_MAX;
  818. /* Reserve space for command response buffer */
  819. bp->cmd_rsp_virt = (PI_DMA_CMD_RSP *) curr_v;
  820. bp->cmd_rsp_phys = curr_p;
  821. curr_v += PI_CMD_RSP_K_SIZE_MAX;
  822. curr_p += PI_CMD_RSP_K_SIZE_MAX;
  823. /* Reserve space for the LLC host receive queue buffers */
  824. bp->rcv_block_virt = curr_v;
  825. bp->rcv_block_phys = curr_p;
  826. #ifndef DYNAMIC_BUFFERS
  827. curr_v += (bp->rcv_bufs_to_post * PI_RCV_DATA_K_SIZE_MAX);
  828. curr_p += (bp->rcv_bufs_to_post * PI_RCV_DATA_K_SIZE_MAX);
  829. #endif
  830. /* Reserve space for the consumer block */
  831. bp->cons_block_virt = (PI_CONSUMER_BLOCK *) curr_v;
  832. bp->cons_block_phys = curr_p;
  833. /* Display virtual and physical addresses if debug driver */
  834. DBG_printk("%s: Descriptor block virt = %0lX, phys = %0Xn", dev->name, (long)bp->descr_block_virt, bp->descr_block_phys);
  835. DBG_printk("%s: Command Request buffer virt = %0lX, phys = %0Xn", dev->name, (long)bp->cmd_req_virt, bp->cmd_req_phys);
  836. DBG_printk("%s: Command Response buffer virt = %0lX, phys = %0Xn", dev->name, (long)bp->cmd_rsp_virt, bp->cmd_rsp_phys);
  837. DBG_printk("%s: Receive buffer block virt = %0lX, phys = %0Xn", dev->name, (long)bp->rcv_block_virt, bp->rcv_block_phys);
  838. DBG_printk("%s: Consumer block virt = %0lX, phys = %0Xn", dev->name, (long)bp->cons_block_virt, bp->cons_block_phys);
  839. return(DFX_K_SUCCESS);
  840. }
  841. /*
  842.  * =================
  843.  * = dfx_adap_init =
  844.  * =================
  845.  *   
  846.  * Overview:
  847.  *   Brings the adapter to the link avail/link unavailable state.
  848.  *  
  849.  * Returns:
  850.  *   Condition code
  851.  *       
  852.  * Arguments:
  853.  *   bp - pointer to board information
  854.  *   get_buffers - non-zero if buffers to be allocated
  855.  *
  856.  * Functional Description:
  857.  *   Issues the low-level firmware/hardware calls necessary to bring
  858.  *   the adapter up, or to properly reset and restore adapter during
  859.  *   run-time.
  860.  *
  861.  * Return Codes:
  862.  *   DFX_K_SUCCESS - Adapter brought up successfully
  863.  *   DFX_K_FAILURE - Adapter initialization failed
  864.  *
  865.  * Assumptions:
  866.  *   bp->reset_type should be set to a valid reset type value before
  867.  *   calling this routine.
  868.  *
  869.  * Side Effects:
  870.  *   Adapter should be in LINK_AVAILABLE or LINK_UNAVAILABLE state
  871.  *   upon a successful return of this routine.
  872.  */
  873. static int dfx_adap_init(DFX_board_t *bp, int get_buffers)
  874. {
  875. DBG_printk("In dfx_adap_init...n");
  876. /* Disable PDQ interrupts first */
  877. dfx_port_write_long(bp, PI_PDQ_K_REG_HOST_INT_ENB, PI_HOST_INT_K_DISABLE_ALL_INTS);
  878. /* Place adapter in DMA_UNAVAILABLE state by resetting adapter */
  879. if (dfx_hw_dma_uninit(bp, bp->reset_type) != DFX_K_SUCCESS)
  880. {
  881. printk("%s: Could not uninitialize/reset adapter!n", bp->dev->name);
  882. return(DFX_K_FAILURE);
  883. }
  884. /*
  885.  * When the PDQ is reset, some false Type 0 interrupts may be pending,
  886.  * so we'll acknowledge all Type 0 interrupts now before continuing.
  887.  */
  888. dfx_port_write_long(bp, PI_PDQ_K_REG_TYPE_0_STATUS, PI_HOST_INT_K_ACK_ALL_TYPE_0);
  889. /*
  890.  * Clear Type 1 and Type 2 registers before going to DMA_AVAILABLE state
  891.  *
  892.  * Note: We only need to clear host copies of these registers.  The PDQ reset
  893.  *       takes care of the on-board register values.
  894.  */
  895. bp->cmd_req_reg.lword = 0;
  896. bp->cmd_rsp_reg.lword = 0;
  897. bp->rcv_xmt_reg.lword = 0;
  898. /* Clear consumer block before going to DMA_AVAILABLE state */
  899. memset(bp->cons_block_virt, 0, sizeof(PI_CONSUMER_BLOCK));
  900. /* Initialize the DMA Burst Size */
  901. if (dfx_hw_port_ctrl_req(bp,
  902. PI_PCTRL_M_SUB_CMD,
  903. PI_SUB_CMD_K_BURST_SIZE_SET,
  904. bp->burst_size,
  905. NULL) != DFX_K_SUCCESS)
  906. {
  907. printk("%s: Could not set adapter burst size!n", bp->dev->name);
  908. return(DFX_K_FAILURE);
  909. }
  910. /*
  911.  * Set base address of Consumer Block
  912.  *
  913.  * Assumption: 32-bit physical address of consumer block is 64 byte
  914.  *    aligned.  That is, bits 0-5 of the address must be zero.
  915.  */
  916. if (dfx_hw_port_ctrl_req(bp,
  917. PI_PCTRL_M_CONS_BLOCK,
  918. bp->cons_block_phys,
  919. 0,
  920. NULL) != DFX_K_SUCCESS)
  921. {
  922. printk("%s: Could not set consumer block address!n", bp->dev->name);
  923. return(DFX_K_FAILURE);
  924. }
  925. /*
  926.  * Set base address of Descriptor Block and bring adapter to DMA_AVAILABLE state
  927.  *
  928.  * Note: We also set the literal and data swapping requirements in this
  929.  *      command.  Since this driver presently runs on Intel platforms
  930.  *  which are Little Endian, we'll tell the adapter to byte swap
  931.  *  data only.  This code will need to change when we support
  932.  *  Big Endian systems (eg. PowerPC).
  933.  *
  934.  * Assumption: 32-bit physical address of descriptor block is 8Kbyte
  935.  *             aligned.  That is, bits 0-12 of the address must be zero.
  936.  */
  937. if (dfx_hw_port_ctrl_req(bp,
  938. PI_PCTRL_M_INIT,
  939. (u32) (bp->descr_block_phys | PI_PDATA_A_INIT_M_BSWAP_DATA),
  940. 0,
  941. NULL) != DFX_K_SUCCESS)
  942. {
  943. printk("%s: Could not set descriptor block address!n", bp->dev->name);
  944. return(DFX_K_FAILURE);
  945. }
  946. /* Set transmit flush timeout value */
  947. bp->cmd_req_virt->cmd_type = PI_CMD_K_CHARS_SET;
  948. bp->cmd_req_virt->char_set.item[0].item_code = PI_ITEM_K_FLUSH_TIME;
  949. bp->cmd_req_virt->char_set.item[0].value = 3; /* 3 seconds */
  950. bp->cmd_req_virt->char_set.item[0].item_index = 0;
  951. bp->cmd_req_virt->char_set.item[1].item_code = PI_ITEM_K_EOL;
  952. if (dfx_hw_dma_cmd_req(bp) != DFX_K_SUCCESS)
  953. {
  954. printk("%s: DMA command request failed!n", bp->dev->name);
  955. return(DFX_K_FAILURE);
  956. }
  957. /* Set the initial values for eFDXEnable and MACTReq MIB objects */
  958. bp->cmd_req_virt->cmd_type = PI_CMD_K_SNMP_SET;
  959. bp->cmd_req_virt->snmp_set.item[0].item_code = PI_ITEM_K_FDX_ENB_DIS;
  960. bp->cmd_req_virt->snmp_set.item[0].value = bp->full_duplex_enb;
  961. bp->cmd_req_virt->snmp_set.item[0].item_index = 0;
  962. bp->cmd_req_virt->snmp_set.item[1].item_code = PI_ITEM_K_MAC_T_REQ;
  963. bp->cmd_req_virt->snmp_set.item[1].value = bp->req_ttrt;
  964. bp->cmd_req_virt->snmp_set.item[1].item_index = 0;
  965. bp->cmd_req_virt->snmp_set.item[2].item_code = PI_ITEM_K_EOL;
  966. if (dfx_hw_dma_cmd_req(bp) != DFX_K_SUCCESS)
  967. {
  968. printk("%s: DMA command request failed!n", bp->dev->name);
  969. return(DFX_K_FAILURE);
  970. }
  971. /* Initialize adapter CAM */
  972. if (dfx_ctl_update_cam(bp) != DFX_K_SUCCESS)
  973. {
  974. printk("%s: Adapter CAM update failed!n", bp->dev->name);
  975. return(DFX_K_FAILURE);
  976. }
  977. /* Initialize adapter filters */
  978. if (dfx_ctl_update_filters(bp) != DFX_K_SUCCESS)
  979. {
  980. printk("%s: Adapter filters update failed!n", bp->dev->name);
  981. return(DFX_K_FAILURE);
  982. }
  983. /*
  984.  * Remove any existing dynamic buffers (i.e. if the adapter is being
  985.  * reinitialized)
  986.  */
  987. if (get_buffers)
  988. dfx_rcv_flush(bp);
  989. /* Initialize receive descriptor block and produce buffers */
  990. if (dfx_rcv_init(bp, get_buffers))
  991.         {
  992. printk("%s: Receive buffer allocation failedn", bp->dev->name);
  993. if (get_buffers)
  994. dfx_rcv_flush(bp);
  995. return(DFX_K_FAILURE);
  996. }
  997. /* Issue START command and bring adapter to LINK_(UN)AVAILABLE state */
  998. bp->cmd_req_virt->cmd_type = PI_CMD_K_START;
  999. if (dfx_hw_dma_cmd_req(bp) != DFX_K_SUCCESS)
  1000. {
  1001. printk("%s: Start command failedn", bp->dev->name);
  1002. if (get_buffers)
  1003. dfx_rcv_flush(bp);
  1004. return(DFX_K_FAILURE);
  1005. }
  1006. /* Initialization succeeded, reenable PDQ interrupts */
  1007. dfx_port_write_long(bp, PI_PDQ_K_REG_HOST_INT_ENB, PI_HOST_INT_K_ENABLE_DEF_INTS);
  1008. return(DFX_K_SUCCESS);
  1009. }
  1010. /*
  1011.  * ============
  1012.  * = dfx_open =
  1013.  * ============
  1014.  *   
  1015.  * Overview:
  1016.  *   Opens the adapter
  1017.  *  
  1018.  * Returns:
  1019.  *   Condition code
  1020.  *       
  1021.  * Arguments:
  1022.  *   dev - pointer to device information
  1023.  *
  1024.  * Functional Description:
  1025.  *   This function brings the adapter to an operational state.
  1026.  *
  1027.  * Return Codes:
  1028.  *   0  - Adapter was successfully opened
  1029.  *   -EAGAIN - Could not register IRQ or adapter initialization failed
  1030.  *
  1031.  * Assumptions:
  1032.  *   This routine should only be called for a device that was
  1033.  *   initialized successfully.
  1034.  *
  1035.  * Side Effects:
  1036.  *   Adapter should be in LINK_AVAILABLE or LINK_UNAVAILABLE state
  1037.  *   if the open is successful.
  1038.  */
  1039. static int dfx_open(struct net_device *dev)
  1040. {
  1041. int ret;
  1042. DFX_board_t *bp = dev->priv;
  1043. DBG_printk("In dfx_open...n");
  1044. /* Register IRQ - support shared interrupts by passing device ptr */
  1045. ret = request_irq(dev->irq, (void *)dfx_interrupt, SA_SHIRQ, dev->name, dev);
  1046. if (ret) {
  1047. printk(KERN_ERR "%s: Requested IRQ %d is busyn", dev->name, dev->irq);
  1048. return ret;
  1049. }
  1050. /*
  1051.  * Set current address to factory MAC address
  1052.  *
  1053.  * Note: We've already done this step in dfx_driver_init.
  1054.  *       However, it's possible that a user has set a node
  1055.  *  address override, then closed and reopened the
  1056.  *  adapter.  Unless we reset the device address field
  1057.  *  now, we'll continue to use the existing modified
  1058.  *  address.
  1059.  */
  1060. memcpy(dev->dev_addr, bp->factory_mac_addr, FDDI_K_ALEN);
  1061. /* Clear local unicast/multicast address tables and counts */
  1062. memset(bp->uc_table, 0, sizeof(bp->uc_table));
  1063. memset(bp->mc_table, 0, sizeof(bp->mc_table));
  1064. bp->uc_count = 0;
  1065. bp->mc_count = 0;
  1066. /* Disable promiscuous filter settings */
  1067. bp->ind_group_prom = PI_FSTATE_K_BLOCK;
  1068. bp->group_prom = PI_FSTATE_K_BLOCK;
  1069. spin_lock_init(&bp->lock);
  1070. /* Reset and initialize adapter */
  1071. bp->reset_type = PI_PDATA_A_RESET_M_SKIP_ST; /* skip self-test */
  1072. if (dfx_adap_init(bp, 1) != DFX_K_SUCCESS)
  1073. {
  1074. printk(KERN_ERR "%s: Adapter open failed!n", dev->name);
  1075. free_irq(dev->irq, dev);
  1076. return -EAGAIN;
  1077. }
  1078. /* Set device structure info */
  1079. netif_start_queue(dev);
  1080. return(0);
  1081. }
  1082. /*
  1083.  * =============
  1084.  * = dfx_close =
  1085.  * =============
  1086.  *   
  1087.  * Overview:
  1088.  *   Closes the device/module.
  1089.  *  
  1090.  * Returns:
  1091.  *   Condition code
  1092.  *       
  1093.  * Arguments:
  1094.  *   dev - pointer to device information
  1095.  *
  1096.  * Functional Description:
  1097.  *   This routine closes the adapter and brings it to a safe state.
  1098.  *   The interrupt service routine is deregistered with the OS.
  1099.  *   The adapter can be opened again with another call to dfx_open().
  1100.  *
  1101.  * Return Codes:
  1102.  *   Always return 0.
  1103.  *
  1104.  * Assumptions:
  1105.  *   No further requests for this adapter are made after this routine is
  1106.  *   called.  dfx_open() can be called to reset and reinitialize the
  1107.  *   adapter.
  1108.  *
  1109.  * Side Effects:
  1110.  *   Adapter should be in DMA_UNAVAILABLE state upon completion of this
  1111.  *   routine.
  1112.  */
  1113. static int dfx_close(struct net_device *dev)
  1114. {
  1115. DFX_board_t *bp = dev->priv;
  1116. DBG_printk("In dfx_close...n");
  1117. /* Disable PDQ interrupts first */
  1118. dfx_port_write_long(bp, PI_PDQ_K_REG_HOST_INT_ENB, PI_HOST_INT_K_DISABLE_ALL_INTS);
  1119. /* Place adapter in DMA_UNAVAILABLE state by resetting adapter */
  1120. (void) dfx_hw_dma_uninit(bp, PI_PDATA_A_RESET_M_SKIP_ST);
  1121. /*
  1122.  * Flush any pending transmit buffers
  1123.  *
  1124.  * Note: It's important that we flush the transmit buffers
  1125.  *  BEFORE we clear our copy of the Type 2 register.
  1126.  *  Otherwise, we'll have no idea how many buffers
  1127.  *  we need to free.
  1128.  */
  1129. dfx_xmt_flush(bp);
  1130. /*
  1131.  * Clear Type 1 and Type 2 registers after adapter reset
  1132.  *
  1133.  * Note: Even though we're closing the adapter, it's
  1134.  *       possible that an interrupt will occur after
  1135.  *  dfx_close is called.  Without some assurance to
  1136.  *  the contrary we want to make sure that we don't
  1137.  *  process receive and transmit LLC frames and update
  1138.  *  the Type 2 register with bad information.
  1139.  */
  1140. bp->cmd_req_reg.lword = 0;
  1141. bp->cmd_rsp_reg.lword = 0;
  1142. bp->rcv_xmt_reg.lword = 0;
  1143. /* Clear consumer block for the same reason given above */
  1144. memset(bp->cons_block_virt, 0, sizeof(PI_CONSUMER_BLOCK));
  1145. /* Release all dynamically allocate skb in the receive ring. */
  1146. dfx_rcv_flush(bp);
  1147. /* Clear device structure flags */
  1148. netif_stop_queue(dev);
  1149. /* Deregister (free) IRQ */
  1150. free_irq(dev->irq, dev);
  1151. return(0);
  1152. }
  1153. /*
  1154.  * ======================
  1155.  * = dfx_int_pr_halt_id =
  1156.  * ======================
  1157.  *   
  1158.  * Overview:
  1159.  *   Displays halt id's in string form.
  1160.  *  
  1161.  * Returns:
  1162.  *   None
  1163.  *       
  1164.  * Arguments:
  1165.  *   bp - pointer to board information
  1166.  *
  1167.  * Functional Description:
  1168.  *   Determine current halt id and display appropriate string.
  1169.  *
  1170.  * Return Codes:
  1171.  *   None
  1172.  *
  1173.  * Assumptions:
  1174.  *   None
  1175.  *
  1176.  * Side Effects:
  1177.  *   None
  1178.  */
  1179. static void dfx_int_pr_halt_id(DFX_board_t *bp)
  1180. {
  1181. PI_UINT32 port_status; /* PDQ port status register value */
  1182. PI_UINT32 halt_id; /* PDQ port status halt ID */
  1183. /* Read the latest port status */
  1184. dfx_port_read_long(bp, PI_PDQ_K_REG_PORT_STATUS, &port_status);
  1185. /* Display halt state transition information */
  1186. halt_id = (port_status & PI_PSTATUS_M_HALT_ID) >> PI_PSTATUS_V_HALT_ID;
  1187. switch (halt_id)
  1188. {
  1189. case PI_HALT_ID_K_SELFTEST_TIMEOUT:
  1190. printk("%s: Halt ID: Selftest Timeoutn", bp->dev->name);
  1191. break;
  1192. case PI_HALT_ID_K_PARITY_ERROR:
  1193. printk("%s: Halt ID: Host Bus Parity Errorn", bp->dev->name);
  1194. break;
  1195. case PI_HALT_ID_K_HOST_DIR_HALT:
  1196. printk("%s: Halt ID: Host-Directed Haltn", bp->dev->name);
  1197. break;
  1198. case PI_HALT_ID_K_SW_FAULT:
  1199. printk("%s: Halt ID: Adapter Software Faultn", bp->dev->name);
  1200. break;
  1201. case PI_HALT_ID_K_HW_FAULT:
  1202. printk("%s: Halt ID: Adapter Hardware Faultn", bp->dev->name);
  1203. break;
  1204. case PI_HALT_ID_K_PC_TRACE:
  1205. printk("%s: Halt ID: FDDI Network PC Trace Path Testn", bp->dev->name);
  1206. break;
  1207. case PI_HALT_ID_K_DMA_ERROR:
  1208. printk("%s: Halt ID: Adapter DMA Errorn", bp->dev->name);
  1209. break;
  1210. case PI_HALT_ID_K_IMAGE_CRC_ERROR:
  1211. printk("%s: Halt ID: Firmware Image CRC Errorn", bp->dev->name);
  1212. break;
  1213. case PI_HALT_ID_K_BUS_EXCEPTION:
  1214. printk("%s: Halt ID: 68000 Bus Exceptionn", bp->dev->name);
  1215. break;
  1216. default:
  1217. printk("%s: Halt ID: Unknown (code = %X)n", bp->dev->name, halt_id);
  1218. break;
  1219. }
  1220. }
  1221. /*
  1222.  * ==========================
  1223.  * = dfx_int_type_0_process =
  1224.  * ==========================
  1225.  *   
  1226.  * Overview:
  1227.  *   Processes Type 0 interrupts.
  1228.  *  
  1229.  * Returns:
  1230.  *   None
  1231.  *       
  1232.  * Arguments:
  1233.  *   bp - pointer to board information
  1234.  *
  1235.  * Functional Description:
  1236.  *   Processes all enabled Type 0 interrupts.  If the reason for the interrupt
  1237.  *   is a serious fault on the adapter, then an error message is displayed
  1238.  *   and the adapter is reset.
  1239.  *
  1240.  *   One tricky potential timing window is the rapid succession of "link avail"
  1241.  *   "link unavail" state change interrupts.  The acknowledgement of the Type 0
  1242.  *   interrupt must be done before reading the state from the Port Status
  1243.  *   register.  This is true because a state change could occur after reading
  1244.  *   the data, but before acknowledging the interrupt.  If this state change
  1245.  *   does happen, it would be lost because the driver is using the old state,
  1246.  *   and it will never know about the new state because it subsequently
  1247.  *   acknowledges the state change interrupt.
  1248.  *
  1249.  *          INCORRECT                                      CORRECT
  1250.  *      read type 0 int reasons                   read type 0 int reasons
  1251.  *      read adapter state                        ack type 0 interrupts
  1252.  *      ack type 0 interrupts                     read adapter state
  1253.  *      ... process interrupt ...                 ... process interrupt ...
  1254.  *
  1255.  * Return Codes:
  1256.  *   None
  1257.  *
  1258.  * Assumptions:
  1259.  *   None
  1260.  *
  1261.  * Side Effects:
  1262.  *   An adapter reset may occur if the adapter has any Type 0 error interrupts
  1263.  *   or if the port status indicates that the adapter is halted.  The driver
  1264.  *   is responsible for reinitializing the adapter with the current CAM
  1265.  *   contents and adapter filter settings.
  1266.  */
  1267. static void dfx_int_type_0_process(DFX_board_t *bp)
  1268. {
  1269. PI_UINT32 type_0_status; /* Host Interrupt Type 0 register */
  1270. PI_UINT32 state; /* current adap state (from port status) */
  1271. /*
  1272.  * Read host interrupt Type 0 register to determine which Type 0
  1273.  * interrupts are pending.  Immediately write it back out to clear
  1274.  * those interrupts.
  1275.  */
  1276. dfx_port_read_long(bp, PI_PDQ_K_REG_TYPE_0_STATUS, &type_0_status);
  1277. dfx_port_write_long(bp, PI_PDQ_K_REG_TYPE_0_STATUS, type_0_status);
  1278. /* Check for Type 0 error interrupts */
  1279. if (type_0_status & (PI_TYPE_0_STAT_M_NXM |
  1280. PI_TYPE_0_STAT_M_PM_PAR_ERR |
  1281. PI_TYPE_0_STAT_M_BUS_PAR_ERR))
  1282. {
  1283. /* Check for Non-Existent Memory error */
  1284. if (type_0_status & PI_TYPE_0_STAT_M_NXM)
  1285. printk("%s: Non-Existent Memory Access Errorn", bp->dev->name);
  1286. /* Check for Packet Memory Parity error */
  1287. if (type_0_status & PI_TYPE_0_STAT_M_PM_PAR_ERR)
  1288. printk("%s: Packet Memory Parity Errorn", bp->dev->name);
  1289. /* Check for Host Bus Parity error */
  1290. if (type_0_status & PI_TYPE_0_STAT_M_BUS_PAR_ERR)
  1291. printk("%s: Host Bus Parity Errorn", bp->dev->name);
  1292. /* Reset adapter and bring it back on-line */
  1293. bp->link_available = PI_K_FALSE; /* link is no longer available */
  1294. bp->reset_type = 0; /* rerun on-board diagnostics */
  1295. printk("%s: Resetting adapter...n", bp->dev->name);
  1296. if (dfx_adap_init(bp, 0) != DFX_K_SUCCESS)
  1297. {
  1298. printk("%s: Adapter reset failed!  Disabling adapter interrupts.n", bp->dev->name);
  1299. dfx_port_write_long(bp, PI_PDQ_K_REG_HOST_INT_ENB, PI_HOST_INT_K_DISABLE_ALL_INTS);
  1300. return;
  1301. }
  1302. printk("%s: Adapter reset successful!n", bp->dev->name);
  1303. return;
  1304. }
  1305. /* Check for transmit flush interrupt */
  1306. if (type_0_status & PI_TYPE_0_STAT_M_XMT_FLUSH)
  1307. {
  1308. /* Flush any pending xmt's and acknowledge the flush interrupt */
  1309. bp->link_available = PI_K_FALSE; /* link is no longer available */
  1310. dfx_xmt_flush(bp); /* flush any outstanding packets */
  1311. (void) dfx_hw_port_ctrl_req(bp,
  1312. PI_PCTRL_M_XMT_DATA_FLUSH_DONE,
  1313. 0,
  1314. 0,
  1315. NULL);
  1316. }
  1317. /* Check for adapter state change */
  1318. if (type_0_status & PI_TYPE_0_STAT_M_STATE_CHANGE)
  1319. {                     
  1320. /* Get latest adapter state */
  1321. state = dfx_hw_adap_state_rd(bp); /* get adapter state */
  1322. if (state == PI_STATE_K_HALTED)
  1323. {
  1324. /*
  1325.  * Adapter has transitioned to HALTED state, try to reset
  1326.  * adapter to bring it back on-line.  If reset fails,
  1327.  * leave the adapter in the broken state.
  1328.  */
  1329. printk("%s: Controller has transitioned to HALTED state!n", bp->dev->name);
  1330. dfx_int_pr_halt_id(bp); /* display halt id as string */
  1331. /* Reset adapter and bring it back on-line */
  1332. bp->link_available = PI_K_FALSE; /* link is no longer available */
  1333. bp->reset_type = 0; /* rerun on-board diagnostics */
  1334. printk("%s: Resetting adapter...n", bp->dev->name);
  1335. if (dfx_adap_init(bp, 0) != DFX_K_SUCCESS)
  1336. {
  1337. printk("%s: Adapter reset failed!  Disabling adapter interrupts.n", bp->dev->name);
  1338. dfx_port_write_long(bp, PI_PDQ_K_REG_HOST_INT_ENB, PI_HOST_INT_K_DISABLE_ALL_INTS);
  1339. return;
  1340. }
  1341. printk("%s: Adapter reset successful!n", bp->dev->name);
  1342. }
  1343. else if (state == PI_STATE_K_LINK_AVAIL)
  1344. {
  1345. bp->link_available = PI_K_TRUE; /* set link available flag */
  1346. }
  1347. }
  1348. }
  1349. /*
  1350.  * ==================
  1351.  * = dfx_int_common =
  1352.  * ==================
  1353.  *   
  1354.  * Overview:
  1355.  *   Interrupt service routine (ISR)
  1356.  *  
  1357.  * Returns:
  1358.  *   None
  1359.  *       
  1360.  * Arguments:
  1361.  *   bp - pointer to board information
  1362.  *
  1363.  * Functional Description:
  1364.  *   This is the ISR which processes incoming adapter interrupts.
  1365.  *
  1366.  * Return Codes:
  1367.  *   None
  1368.  *
  1369.  * Assumptions:
  1370.  *   This routine assumes PDQ interrupts have not been disabled.
  1371.  *   When interrupts are disabled at the PDQ, the Port Status register
  1372.  *   is automatically cleared.  This routine uses the Port Status
  1373.  *   register value to determine whether a Type 0 interrupt occurred,
  1374.  *   so it's important that adapter interrupts are not normally
  1375.  *   enabled/disabled at the PDQ.
  1376.  *
  1377.  *   It's vital that this routine is NOT reentered for the
  1378.  *   same board and that the OS is not in another section of
  1379.  *   code (eg. dfx_xmt_queue_pkt) for the same board on a
  1380.  *   different thread.
  1381.  *
  1382.  * Side Effects:
  1383.  *   Pending interrupts are serviced.  Depending on the type of
  1384.  *   interrupt, acknowledging and clearing the interrupt at the
  1385.  *   PDQ involves writing a register to clear the interrupt bit
  1386.  *   or updating completion indices.
  1387.  */
  1388. static void dfx_int_common(struct net_device *dev)
  1389. {
  1390. DFX_board_t  *bp = dev->priv;
  1391. PI_UINT32 port_status; /* Port Status register */
  1392. /* Process xmt interrupts - frequent case, so always call this routine */
  1393. if(dfx_xmt_done(bp)) /* free consumed xmt packets */
  1394. netif_wake_queue(dev);
  1395. /* Process rcv interrupts - frequent case, so always call this routine */
  1396. dfx_rcv_queue_process(bp); /* service received LLC frames */
  1397. /*
  1398.  * Transmit and receive producer and completion indices are updated on the
  1399.  * adapter by writing to the Type 2 Producer register.  Since the frequent
  1400.  * case is that we'll be processing either LLC transmit or receive buffers,
  1401.  * we'll optimize I/O writes by doing a single register write here.
  1402.  */
  1403. dfx_port_write_long(bp, PI_PDQ_K_REG_TYPE_2_PROD, bp->rcv_xmt_reg.lword);
  1404. /* Read PDQ Port Status register to find out which interrupts need processing */
  1405. dfx_port_read_long(bp, PI_PDQ_K_REG_PORT_STATUS, &port_status);
  1406. /* Process Type 0 interrupts (if any) - infrequent, so only call when needed */
  1407. if (port_status & PI_PSTATUS_M_TYPE_0_PENDING)
  1408. dfx_int_type_0_process(bp); /* process Type 0 interrupts */
  1409. }
  1410. /*
  1411.  * =================
  1412.  * = dfx_interrupt =
  1413.  * =================
  1414.  *   
  1415.  * Overview:
  1416.  *   Interrupt processing routine
  1417.  *  
  1418.  * Returns:
  1419.  *   None
  1420.  *       
  1421.  * Arguments:
  1422.  *   irq - interrupt vector
  1423.  *   dev_id - pointer to device information
  1424.  *  regs - pointer to registers structure
  1425.  *
  1426.  * Functional Description:
  1427.  *   This routine calls the interrupt processing routine for this adapter.  It
  1428.  *   disables and reenables adapter interrupts, as appropriate.  We can support
  1429.  *   shared interrupts since the incoming dev_id pointer provides our device
  1430.  *   structure context.
  1431.  *
  1432.  * Return Codes:
  1433.  *   None
  1434.  *
  1435.  * Assumptions:
  1436.  *   The interrupt acknowledgement at the hardware level (eg. ACKing the PIC
  1437.  *   on Intel-based systems) is done by the operating system outside this
  1438.  *   routine.
  1439.  *
  1440.  *  System interrupts are enabled through this call.
  1441.  *
  1442.  * Side Effects:
  1443.  *   Interrupts are disabled, then reenabled at the adapter.
  1444.  */
  1445. static void dfx_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  1446. {
  1447. struct net_device *dev = dev_id;
  1448. DFX_board_t *bp; /* private board structure pointer */
  1449. u8 tmp; /* used for disabling/enabling ints */
  1450. /* Get board pointer only if device structure is valid */
  1451. bp = dev->priv;
  1452. spin_lock(&bp->lock);
  1453. /* See if we're already servicing an interrupt */
  1454. /* Service adapter interrupts */
  1455. if (bp->bus_type == DFX_BUS_TYPE_PCI)
  1456. {
  1457. /* Disable PDQ-PFI interrupts at PFI */
  1458. dfx_port_write_long(bp, PFI_K_REG_MODE_CTRL, PFI_MODE_M_DMA_ENB);
  1459. /* Call interrupt service routine for this adapter */
  1460. dfx_int_common(dev);
  1461. /* Clear PDQ interrupt status bit and reenable interrupts */
  1462. dfx_port_write_long(bp, PFI_K_REG_STATUS, PFI_STATUS_M_PDQ_INT);
  1463. dfx_port_write_long(bp, PFI_K_REG_MODE_CTRL,
  1464. (PFI_MODE_M_PDQ_INT_ENB + PFI_MODE_M_DMA_ENB));
  1465. }
  1466. else
  1467. {
  1468. /* Disable interrupts at the ESIC */
  1469. dfx_port_read_byte(bp, PI_ESIC_K_IO_CONFIG_STAT_0, &tmp);
  1470. tmp &= ~PI_CONFIG_STAT_0_M_INT_ENB;
  1471. dfx_port_write_byte(bp, PI_ESIC_K_IO_CONFIG_STAT_0, tmp);
  1472. /* Call interrupt service routine for this adapter */
  1473. dfx_int_common(dev);
  1474. /* Reenable interrupts at the ESIC */
  1475. dfx_port_read_byte(bp, PI_ESIC_K_IO_CONFIG_STAT_0, &tmp);
  1476. tmp |= PI_CONFIG_STAT_0_M_INT_ENB;
  1477. dfx_port_write_byte(bp, PI_ESIC_K_IO_CONFIG_STAT_0, tmp);
  1478. }
  1479. spin_unlock(&bp->lock);
  1480. }
  1481. /*
  1482.  * =====================
  1483.  * = dfx_ctl_get_stats =
  1484.  * =====================
  1485.  *   
  1486.  * Overview:
  1487.  *   Get statistics for FDDI adapter
  1488.  *  
  1489.  * Returns:
  1490.  *   Pointer to FDDI statistics structure
  1491.  *       
  1492.  * Arguments:
  1493.  *   dev - pointer to device information
  1494.  *
  1495.  * Functional Description:
  1496.  *   Gets current MIB objects from adapter, then
  1497.  *   returns FDDI statistics structure as defined
  1498.  *   in if_fddi.h.
  1499.  *
  1500.  *   Note: Since the FDDI statistics structure is
  1501.  *   still new and the device structure doesn't
  1502.  *   have an FDDI-specific get statistics handler,
  1503.  *   we'll return the FDDI statistics structure as
  1504.  *   a pointer to an Ethernet statistics structure.
  1505.  *   That way, at least the first part of the statistics
  1506.  *   structure can be decoded properly, and it allows
  1507.  *   "smart" applications to perform a second cast to
  1508.  *   decode the FDDI-specific statistics.
  1509.  *
  1510.  *   We'll have to pay attention to this routine as the
  1511.  *   device structure becomes more mature and LAN media
  1512.  *   independent.
  1513.  *
  1514.  * Return Codes:
  1515.  *   None
  1516.  *
  1517.  * Assumptions:
  1518.  *   None
  1519.  *
  1520.  * Side Effects:
  1521.  *   None
  1522.  */
  1523. static struct net_device_stats *dfx_ctl_get_stats(struct net_device *dev)
  1524. {
  1525. DFX_board_t *bp = dev->priv;
  1526. /* Fill the bp->stats structure with driver-maintained counters */
  1527. bp->stats.rx_packets = bp->rcv_total_frames;
  1528. bp->stats.tx_packets = bp->xmt_total_frames;
  1529. bp->stats.rx_bytes = bp->rcv_total_bytes;
  1530. bp->stats.tx_bytes = bp->xmt_total_bytes;
  1531. bp->stats.rx_errors = (u32)(bp->rcv_crc_errors + bp->rcv_frame_status_errors + bp->rcv_length_errors);
  1532. bp->stats.tx_errors = bp->xmt_length_errors;
  1533. bp->stats.rx_dropped = bp->rcv_discards;
  1534. bp->stats.tx_dropped = bp->xmt_discards;
  1535. bp->stats.multicast = bp->rcv_multicast_frames;
  1536. bp->stats.transmit_collision = 0; /* always zero (0) for FDDI */
  1537. /* Get FDDI SMT MIB objects */
  1538. bp->cmd_req_virt->cmd_type = PI_CMD_K_SMT_MIB_GET;
  1539. if (dfx_hw_dma_cmd_req(bp) != DFX_K_SUCCESS)
  1540. return((struct net_device_stats *) &bp->stats);
  1541. /* Fill the bp->stats structure with the SMT MIB object values */
  1542. memcpy(bp->stats.smt_station_id, &bp->cmd_rsp_virt->smt_mib_get.smt_station_id, sizeof(bp->cmd_rsp_virt->smt_mib_get.smt_station_id));
  1543. bp->stats.smt_op_version_id = bp->cmd_rsp_virt->smt_mib_get.smt_op_version_id;
  1544. bp->stats.smt_hi_version_id = bp->cmd_rsp_virt->smt_mib_get.smt_hi_version_id;
  1545. bp->stats.smt_lo_version_id = bp->cmd_rsp_virt->smt_mib_get.smt_lo_version_id;
  1546. memcpy(bp->stats.smt_user_data, &bp->cmd_rsp_virt->smt_mib_get.smt_user_data, sizeof(bp->cmd_rsp_virt->smt_mib_get.smt_user_data));
  1547. bp->stats.smt_mib_version_id = bp->cmd_rsp_virt->smt_mib_get.smt_mib_version_id;
  1548. bp->stats.smt_mac_cts = bp->cmd_rsp_virt->smt_mib_get.smt_mac_ct;
  1549. bp->stats.smt_non_master_cts = bp->cmd_rsp_virt->smt_mib_get.smt_non_master_ct;
  1550. bp->stats.smt_master_cts = bp->cmd_rsp_virt->smt_mib_get.smt_master_ct;
  1551. bp->stats.smt_available_paths = bp->cmd_rsp_virt->smt_mib_get.smt_available_paths;
  1552. bp->stats.smt_config_capabilities = bp->cmd_rsp_virt->smt_mib_get.smt_config_capabilities;
  1553. bp->stats.smt_config_policy = bp->cmd_rsp_virt->smt_mib_get.smt_config_policy;
  1554. bp->stats.smt_connection_policy = bp->cmd_rsp_virt->smt_mib_get.smt_connection_policy;
  1555. bp->stats.smt_t_notify = bp->cmd_rsp_virt->smt_mib_get.smt_t_notify;
  1556. bp->stats.smt_stat_rpt_policy = bp->cmd_rsp_virt->smt_mib_get.smt_stat_rpt_policy;
  1557. bp->stats.smt_trace_max_expiration = bp->cmd_rsp_virt->smt_mib_get.smt_trace_max_expiration;
  1558. bp->stats.smt_bypass_present = bp->cmd_rsp_virt->smt_mib_get.smt_bypass_present;
  1559. bp->stats.smt_ecm_state = bp->cmd_rsp_virt->smt_mib_get.smt_ecm_state;
  1560. bp->stats.smt_cf_state = bp->cmd_rsp_virt->smt_mib_get.smt_cf_state;
  1561. bp->stats.smt_remote_disconnect_flag = bp->cmd_rsp_virt->smt_mib_get.smt_remote_disconnect_flag;
  1562. bp->stats.smt_station_status = bp->cmd_rsp_virt->smt_mib_get.smt_station_status;
  1563. bp->stats.smt_peer_wrap_flag = bp->cmd_rsp_virt->smt_mib_get.smt_peer_wrap_flag;
  1564. bp->stats.smt_time_stamp = bp->cmd_rsp_virt->smt_mib_get.smt_msg_time_stamp.ls;
  1565. bp->stats.smt_transition_time_stamp = bp->cmd_rsp_virt->smt_mib_get.smt_transition_time_stamp.ls;
  1566. bp->stats.mac_frame_status_functions = bp->cmd_rsp_virt->smt_mib_get.mac_frame_status_functions;
  1567. bp->stats.mac_t_max_capability = bp->cmd_rsp_virt->smt_mib_get.mac_t_max_capability;
  1568. bp->stats.mac_tvx_capability = bp->cmd_rsp_virt->smt_mib_get.mac_tvx_capability;
  1569. bp->stats.mac_available_paths = bp->cmd_rsp_virt->smt_mib_get.mac_available_paths;
  1570. bp->stats.mac_current_path = bp->cmd_rsp_virt->smt_mib_get.mac_current_path;
  1571. memcpy(bp->stats.mac_upstream_nbr, &bp->cmd_rsp_virt->smt_mib_get.mac_upstream_nbr, FDDI_K_ALEN);
  1572. memcpy(bp->stats.mac_downstream_nbr, &bp->cmd_rsp_virt->smt_mib_get.mac_downstream_nbr, FDDI_K_ALEN);
  1573. memcpy(bp->stats.mac_old_upstream_nbr, &bp->cmd_rsp_virt->smt_mib_get.mac_old_upstream_nbr, FDDI_K_ALEN);
  1574. memcpy(bp->stats.mac_old_downstream_nbr, &bp->cmd_rsp_virt->smt_mib_get.mac_old_downstream_nbr, FDDI_K_ALEN);
  1575. bp->stats.mac_dup_address_test = bp->cmd_rsp_virt->smt_mib_get.mac_dup_address_test;
  1576. bp->stats.mac_requested_paths = bp->cmd_rsp_virt->smt_mib_get.mac_requested_paths;
  1577. bp->stats.mac_downstream_port_type = bp->cmd_rsp_virt->smt_mib_get.mac_downstream_port_type;
  1578. memcpy(bp->stats.mac_smt_address, &bp->cmd_rsp_virt->smt_mib_get.mac_smt_address, FDDI_K_ALEN);
  1579. bp->stats.mac_t_req = bp->cmd_rsp_virt->smt_mib_get.mac_t_req;
  1580. bp->stats.mac_t_neg = bp->cmd_rsp_virt->smt_mib_get.mac_t_neg;
  1581. bp->stats.mac_t_max = bp->cmd_rsp_virt->smt_mib_get.mac_t_max;
  1582. bp->stats.mac_tvx_value = bp->cmd_rsp_virt->smt_mib_get.mac_tvx_value;
  1583. bp->stats.mac_frame_error_threshold = bp->cmd_rsp_virt->smt_mib_get.mac_frame_error_threshold;
  1584. bp->stats.mac_frame_error_ratio = bp->cmd_rsp_virt->smt_mib_get.mac_frame_error_ratio;
  1585. bp->stats.mac_rmt_state = bp->cmd_rsp_virt->smt_mib_get.mac_rmt_state;
  1586. bp->stats.mac_da_flag = bp->cmd_rsp_virt->smt_mib_get.mac_da_flag;
  1587. bp->stats.mac_una_da_flag = bp->cmd_rsp_virt->smt_mib_get.mac_unda_flag;
  1588. bp->stats.mac_frame_error_flag = bp->cmd_rsp_virt->smt_mib_get.mac_frame_error_flag;
  1589. bp->stats.mac_ma_unitdata_available = bp->cmd_rsp_virt->smt_mib_get.mac_ma_unitdata_available;
  1590. bp->stats.mac_hardware_present = bp->cmd_rsp_virt->smt_mib_get.mac_hardware_present;
  1591. bp->stats.mac_ma_unitdata_enable = bp->cmd_rsp_virt->smt_mib_get.mac_ma_unitdata_enable;
  1592. bp->stats.path_tvx_lower_bound = bp->cmd_rsp_virt->smt_mib_get.path_tvx_lower_bound;
  1593. bp->stats.path_t_max_lower_bound = bp->cmd_rsp_virt->smt_mib_get.path_t_max_lower_bound;
  1594. bp->stats.path_max_t_req = bp->cmd_rsp_virt->smt_mib_get.path_max_t_req;
  1595. memcpy(bp->stats.path_configuration, &bp->cmd_rsp_virt->smt_mib_get.path_configuration, sizeof(bp->cmd_rsp_virt->smt_mib_get.path_configuration));
  1596. bp->stats.port_my_type[0] = bp->cmd_rsp_virt->smt_mib_get.port_my_type[0];
  1597. bp->stats.port_my_type[1] = bp->cmd_rsp_virt->smt_mib_get.port_my_type[1];
  1598. bp->stats.port_neighbor_type[0] = bp->cmd_rsp_virt->smt_mib_get.port_neighbor_type[0];
  1599. bp->stats.port_neighbor_type[1] = bp->cmd_rsp_virt->smt_mib_get.port_neighbor_type[1];
  1600. bp->stats.port_connection_policies[0] = bp->cmd_rsp_virt->smt_mib_get.port_connection_policies[0];
  1601. bp->stats.port_connection_policies[1] = bp->cmd_rsp_virt->smt_mib_get.port_connection_policies[1];
  1602. bp->stats.port_mac_indicated[0] = bp->cmd_rsp_virt->smt_mib_get.port_mac_indicated[0];
  1603. bp->stats.port_mac_indicated[1] = bp->cmd_rsp_virt->smt_mib_get.port_mac_indicated[1];
  1604. bp->stats.port_current_path[0] = bp->cmd_rsp_virt->smt_mib_get.port_current_path[0];
  1605. bp->stats.port_current_path[1] = bp->cmd_rsp_virt->smt_mib_get.port_current_path[1];
  1606. memcpy(&bp->stats.port_requested_paths[0*3], &bp->cmd_rsp_virt->smt_mib_get.port_requested_paths[0], 3);
  1607. memcpy(&bp->stats.port_requested_paths[1*3], &bp->cmd_rsp_virt->smt_mib_get.port_requested_paths[1], 3);
  1608. bp->stats.port_mac_placement[0] = bp->cmd_rsp_virt->smt_mib_get.port_mac_placement[0];
  1609. bp->stats.port_mac_placement[1] = bp->cmd_rsp_virt->smt_mib_get.port_mac_placement[1];
  1610. bp->stats.port_available_paths[0] = bp->cmd_rsp_virt->smt_mib_get.port_available_paths[0];
  1611. bp->stats.port_available_paths[1] = bp->cmd_rsp_virt->smt_mib_get.port_available_paths[1];
  1612. bp->stats.port_pmd_class[0] = bp->cmd_rsp_virt->smt_mib_get.port_pmd_class[0];
  1613. bp->stats.port_pmd_class[1] = bp->cmd_rsp_virt->smt_mib_get.port_pmd_class[1];
  1614. bp->stats.port_connection_capabilities[0] = bp->cmd_rsp_virt->smt_mib_get.port_connection_capabilities[0];
  1615. bp->stats.port_connection_capabilities[1] = bp->cmd_rsp_virt->smt_mib_get.port_connection_capabilities[1];
  1616. bp->stats.port_bs_flag[0] = bp->cmd_rsp_virt->smt_mib_get.port_bs_flag[0];
  1617. bp->stats.port_bs_flag[1] = bp->cmd_rsp_virt->smt_mib_get.port_bs_flag[1];
  1618. bp->stats.port_ler_estimate[0] = bp->cmd_rsp_virt->smt_mib_get.port_ler_estimate[0];
  1619. bp->stats.port_ler_estimate[1] = bp->cmd_rsp_virt->smt_mib_get.port_ler_estimate[1];
  1620. bp->stats.port_ler_cutoff[0] = bp->cmd_rsp_virt->smt_mib_get.port_ler_cutoff[0];
  1621. bp->stats.port_ler_cutoff[1] = bp->cmd_rsp_virt->smt_mib_get.port_ler_cutoff[1];
  1622. bp->stats.port_ler_alarm[0] = bp->cmd_rsp_virt->smt_mib_get.port_ler_alarm[0];
  1623. bp->stats.port_ler_alarm[1] = bp->cmd_rsp_virt->smt_mib_get.port_ler_alarm[1];
  1624. bp->stats.port_connect_state[0] = bp->cmd_rsp_virt->smt_mib_get.port_connect_state[0];
  1625. bp->stats.port_connect_state[1] = bp->cmd_rsp_virt->smt_mib_get.port_connect_state[1];
  1626. bp->stats.port_pcm_state[0] = bp->cmd_rsp_virt->smt_mib_get.port_pcm_state[0];
  1627. bp->stats.port_pcm_state[1] = bp->cmd_rsp_virt->smt_mib_get.port_pcm_state[1];
  1628. bp->stats.port_pc_withhold[0] = bp->cmd_rsp_virt->smt_mib_get.port_pc_withhold[0];
  1629. bp->stats.port_pc_withhold[1] = bp->cmd_rsp_virt->smt_mib_get.port_pc_withhold[1];
  1630. bp->stats.port_ler_flag[0] = bp->cmd_rsp_virt->smt_mib_get.port_ler_flag[0];
  1631. bp->stats.port_ler_flag[1] = bp->cmd_rsp_virt->smt_mib_get.port_ler_flag[1];
  1632. bp->stats.port_hardware_present[0] = bp->cmd_rsp_virt->smt_mib_get.port_hardware_present[0];
  1633. bp->stats.port_hardware_present[1] = bp->cmd_rsp_virt->smt_mib_get.port_hardware_present[1];
  1634. /* Get FDDI counters */
  1635. bp->cmd_req_virt->cmd_type = PI_CMD_K_CNTRS_GET;
  1636. if (dfx_hw_dma_cmd_req(bp) != DFX_K_SUCCESS)
  1637. return((struct net_device_stats *) &bp->stats);
  1638. /* Fill the bp->stats structure with the FDDI counter values */
  1639. bp->stats.mac_frame_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.frame_cnt.ls;
  1640. bp->stats.mac_copied_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.copied_cnt.ls;
  1641. bp->stats.mac_transmit_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.transmit_cnt.ls;
  1642. bp->stats.mac_error_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.error_cnt.ls;
  1643. bp->stats.mac_lost_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.lost_cnt.ls;
  1644. bp->stats.port_lct_fail_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.lct_rejects[0].ls;
  1645. bp->stats.port_lct_fail_cts[1] = bp->cmd_rsp_virt->cntrs_get.cntrs.lct_rejects[1].ls;
  1646. bp->stats.port_lem_reject_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.lem_rejects[0].ls;
  1647. bp->stats.port_lem_reject_cts[1] = bp->cmd_rsp_virt->cntrs_get.cntrs.lem_rejects[1].ls;
  1648. bp->stats.port_lem_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.link_errors[0].ls;
  1649. bp->stats.port_lem_cts[1] = bp->cmd_rsp_virt->cntrs_get.cntrs.link_errors[1].ls;
  1650. return((struct net_device_stats *) &bp->stats);
  1651. }
  1652. /*
  1653.  * ==============================
  1654.  * = dfx_ctl_set_multicast_list =
  1655.  * ==============================
  1656.  *   
  1657.  * Overview:
  1658.  *   Enable/Disable LLC frame promiscuous mode reception
  1659.  *   on the adapter and/or update multicast address table.
  1660.  *  
  1661.  * Returns:
  1662.  *   None
  1663.  *       
  1664.  * Arguments:
  1665.  *   dev - pointer to device information
  1666.  *
  1667.  * Functional Description:
  1668.  *   This routine follows a fairly simple algorithm for setting the
  1669.  *   adapter filters and CAM:
  1670.  *
  1671.  * if IFF_PROMISC flag is set
  1672.  * enable LLC individual/group promiscuous mode
  1673.  * else
  1674.  * disable LLC individual/group promiscuous mode
  1675.  * if number of incoming multicast addresses >
  1676.  * (CAM max size - number of unicast addresses in CAM)
  1677.  * enable LLC group promiscuous mode
  1678.  * set driver-maintained multicast address count to zero
  1679.  * else
  1680.  * disable LLC group promiscuous mode
  1681.  * set driver-maintained multicast address count to incoming count
  1682.  * update adapter CAM
  1683.  * update adapter filters
  1684.  *
  1685.  * Return Codes:
  1686.  *   None
  1687.  *
  1688.  * Assumptions:
  1689.  *   Multicast addresses are presented in canonical (LSB) format.
  1690.  *
  1691.  * Side Effects:
  1692.  *   On-board adapter CAM and filters are updated.
  1693.  */
  1694. static void dfx_ctl_set_multicast_list(struct net_device *dev)
  1695. {
  1696. DFX_board_t *bp = dev->priv;
  1697. int i; /* used as index in for loop */
  1698. struct dev_mc_list *dmi; /* ptr to multicast addr entry */
  1699. /* Enable LLC frame promiscuous mode, if necessary */
  1700. if (dev->flags & IFF_PROMISC)
  1701. bp->ind_group_prom = PI_FSTATE_K_PASS; /* Enable LLC ind/group prom mode */
  1702. /* Else, update multicast address table */
  1703. else
  1704. {
  1705. bp->ind_group_prom = PI_FSTATE_K_BLOCK; /* Disable LLC ind/group prom mode */
  1706. /*
  1707.  * Check whether incoming multicast address count exceeds table size
  1708.  *
  1709.  * Note: The adapters utilize an on-board 64 entry CAM for
  1710.  *       supporting perfect filtering of multicast packets
  1711.  *  and bridge functions when adding unicast addresses.
  1712.  *  There is no hash function available.  To support
  1713.  *  additional multicast addresses, the all multicast
  1714.  *  filter (LLC group promiscuous mode) must be enabled.
  1715.  *
  1716.  *  The firmware reserves two CAM entries for SMT-related
  1717.  *  multicast addresses, which leaves 62 entries available.
  1718.  *  The following code ensures that we're not being asked
  1719.  *  to add more than 62 addresses to the CAM.  If we are,
  1720.  *  the driver will enable the all multicast filter.
  1721.  *  Should the number of multicast addresses drop below
  1722.  *  the high water mark, the filter will be disabled and
  1723.  *  perfect filtering will be used.
  1724.  */
  1725. if (dev->mc_count > (PI_CMD_ADDR_FILTER_K_SIZE - bp->uc_count))
  1726. {
  1727. bp->group_prom = PI_FSTATE_K_PASS; /* Enable LLC group prom mode */
  1728. bp->mc_count = 0; /* Don't add mc addrs to CAM */
  1729. }
  1730. else
  1731. {
  1732. bp->group_prom = PI_FSTATE_K_BLOCK; /* Disable LLC group prom mode */
  1733. bp->mc_count = dev->mc_count; /* Add mc addrs to CAM */
  1734. }
  1735. /* Copy addresses to multicast address table, then update adapter CAM */
  1736. dmi = dev->mc_list; /* point to first multicast addr */
  1737. for (i=0; i < bp->mc_count; i++)
  1738. {
  1739. memcpy(&bp->mc_table[i*FDDI_K_ALEN], dmi->dmi_addr, FDDI_K_ALEN);
  1740. dmi = dmi->next; /* point to next multicast addr */
  1741. }
  1742. if (dfx_ctl_update_cam(bp) != DFX_K_SUCCESS)
  1743. {
  1744. DBG_printk("%s: Could not update multicast address table!n", dev->name);
  1745. }
  1746. else
  1747. {
  1748. DBG_printk("%s: Multicast address table updated!  Added %d addresses.n", dev->name, bp->mc_count);
  1749. }
  1750. }
  1751. /* Update adapter filters */
  1752. if (dfx_ctl_update_filters(bp) != DFX_K_SUCCESS)
  1753. {
  1754. DBG_printk("%s: Could not update adapter filters!n", dev->name);
  1755. }
  1756. else
  1757. {
  1758. DBG_printk("%s: Adapter filters updated!n", dev->name);
  1759. }
  1760. }
  1761. /*
  1762.  * ===========================
  1763.  * = dfx_ctl_set_mac_address =
  1764.  * ===========================
  1765.  *   
  1766.  * Overview:
  1767.  *   Add node address override (unicast address) to adapter
  1768.  *   CAM and update dev_addr field in device table.
  1769.  *  
  1770.  * Returns:
  1771.  *   None
  1772.  *       
  1773.  * Arguments:
  1774.  *   dev  - pointer to device information
  1775.  *   addr - pointer to sockaddr structure containing unicast address to add
  1776.  *
  1777.  * Functional Description:
  1778.  *   The adapter supports node address overrides by adding one or more
  1779.  *   unicast addresses to the adapter CAM.  This is similar to adding
  1780.  *   multicast addresses.  In this routine we'll update the driver and
  1781.  *   device structures with the new address, then update the adapter CAM
  1782.  *   to ensure that the adapter will copy and strip frames destined and
  1783.  *   sourced by that address.
  1784.  *
  1785.  * Return Codes:
  1786.  *   Always returns zero.
  1787.  *
  1788.  * Assumptions:
  1789.  *   The address pointed to by addr->sa_data is a valid unicast
  1790.  *   address and is presented in canonical (LSB) format.
  1791.  *
  1792.  * Side Effects:
  1793.  *   On-board adapter CAM is updated.  On-board adapter filters
  1794.  *   may be updated.
  1795.  */
  1796. static int dfx_ctl_set_mac_address(struct net_device *dev, void *addr)
  1797. {
  1798. DFX_board_t *bp = dev->priv;
  1799. struct sockaddr *p_sockaddr = (struct sockaddr *)addr;
  1800. /* Copy unicast address to driver-maintained structs and update count */
  1801. memcpy(dev->dev_addr, p_sockaddr->sa_data, FDDI_K_ALEN); /* update device struct */
  1802. memcpy(&bp->uc_table[0], p_sockaddr->sa_data, FDDI_K_ALEN); /* update driver struct */
  1803. bp->uc_count = 1;
  1804. /*
  1805.  * Verify we're not exceeding the CAM size by adding unicast address
  1806.  *
  1807.  * Note: It's possible that before entering this routine we've
  1808.  *       already filled the CAM with 62 multicast addresses.
  1809.  *  Since we need to place the node address override into
  1810.  *  the CAM, we have to check to see that we're not
  1811.  *  exceeding the CAM size.  If we are, we have to enable
  1812.  *  the LLC group (multicast) promiscuous mode filter as
  1813.  *  in dfx_ctl_set_multicast_list.
  1814.  */
  1815. if ((bp->uc_count + bp->mc_count) > PI_CMD_ADDR_FILTER_K_SIZE)
  1816. {
  1817. bp->group_prom = PI_FSTATE_K_PASS; /* Enable LLC group prom mode */
  1818. bp->mc_count = 0; /* Don't add mc addrs to CAM */
  1819. /* Update adapter filters */
  1820. if (dfx_ctl_update_filters(bp) != DFX_K_SUCCESS)
  1821. {
  1822. DBG_printk("%s: Could not update adapter filters!n", dev->name);
  1823. }
  1824. else
  1825. {
  1826. DBG_printk("%s: Adapter filters updated!n", dev->name);
  1827. }
  1828. }
  1829. /* Update adapter CAM with new unicast address */
  1830. if (dfx_ctl_update_cam(bp) != DFX_K_SUCCESS)
  1831. {
  1832. DBG_printk("%s: Could not set new MAC address!n", dev->name);
  1833. }
  1834. else
  1835. {
  1836. DBG_printk("%s: Adapter CAM updated with new MAC addressn", dev->name);
  1837. }
  1838. return(0); /* always return zero */
  1839. }
  1840. /*
  1841.  * ======================
  1842.  * = dfx_ctl_update_cam =
  1843.  * ======================
  1844.  *
  1845.  * Overview:
  1846.  *   Procedure to update adapter CAM (Content Addressable Memory)
  1847.  *   with desired unicast and multicast address entries.
  1848.  *
  1849.  * Returns:
  1850.  *   Condition code
  1851.  *
  1852.  * Arguments:
  1853.  *   bp - pointer to board information
  1854.  *
  1855.  * Functional Description:
  1856.  *   Updates adapter CAM with current contents of board structure
  1857.  *   unicast and multicast address tables.  Since there are only 62
  1858.  *   free entries in CAM, this routine ensures that the command
  1859.  *   request buffer is not overrun.
  1860.  *
  1861.  * Return Codes:
  1862.  *   DFX_K_SUCCESS - Request succeeded
  1863.  *   DFX_K_FAILURE - Request failed
  1864.  *
  1865.  * Assumptions:
  1866.  *   All addresses being added (unicast and multicast) are in canonical
  1867.  *   order.
  1868.  *
  1869.  * Side Effects:
  1870.  *   On-board adapter CAM is updated.
  1871.  */
  1872. static int dfx_ctl_update_cam(DFX_board_t *bp)
  1873. {
  1874. int i; /* used as index */
  1875. PI_LAN_ADDR *p_addr; /* pointer to CAM entry */
  1876. /*
  1877.  * Fill in command request information
  1878.  *
  1879.  * Note: Even though both the unicast and multicast address
  1880.  *       table entries are stored as contiguous 6 byte entries,
  1881.  *  the firmware address filter set command expects each
  1882.  *  entry to be two longwords (8 bytes total).  We must be
  1883.  *  careful to only copy the six bytes of each unicast and
  1884.  *  multicast table entry into each command entry.  This
  1885.  *  is also why we must first clear the entire command
  1886.  *  request buffer.
  1887.  */
  1888. memset(bp->cmd_req_virt, 0, PI_CMD_REQ_K_SIZE_MAX); /* first clear buffer */
  1889. bp->cmd_req_virt->cmd_type = PI_CMD_K_ADDR_FILTER_SET;
  1890. p_addr = &bp->cmd_req_virt->addr_filter_set.entry[0];
  1891. /* Now add unicast addresses to command request buffer, if any */
  1892. for (i=0; i < (int)bp->uc_count; i++)
  1893. {
  1894. if (i < PI_CMD_ADDR_FILTER_K_SIZE)
  1895. {
  1896. memcpy(p_addr, &bp->uc_table[i*FDDI_K_ALEN], FDDI_K_ALEN);
  1897. p_addr++; /* point to next command entry */
  1898. }
  1899. }
  1900. /* Now add multicast addresses to command request buffer, if any */
  1901. for (i=0; i < (int)bp->mc_count; i++)
  1902. {
  1903. if ((i + bp->uc_count) < PI_CMD_ADDR_FILTER_K_SIZE)
  1904. {
  1905. memcpy(p_addr, &bp->mc_table[i*FDDI_K_ALEN], FDDI_K_ALEN);
  1906. p_addr++; /* point to next command entry */
  1907. }
  1908. }
  1909. /* Issue command to update adapter CAM, then return */
  1910. if (dfx_hw_dma_cmd_req(bp) != DFX_K_SUCCESS)
  1911. return(DFX_K_FAILURE);
  1912. return(DFX_K_SUCCESS);
  1913. }
  1914. /*
  1915.  * ==========================
  1916.  * = dfx_ctl_update_filters =
  1917.  * ==========================
  1918.  *
  1919.  * Overview:
  1920.  *   Procedure to update adapter filters with desired
  1921.  *   filter settings.
  1922.  *  
  1923.  * Returns:
  1924.  *   Condition code
  1925.  *       
  1926.  * Arguments:
  1927.  *   bp - pointer to board information
  1928.  *
  1929.  * Functional Description:
  1930.  *   Enables or disables filter using current filter settings.
  1931.  *
  1932.  * Return Codes:
  1933.  *   DFX_K_SUCCESS - Request succeeded.
  1934.  *   DFX_K_FAILURE - Request failed.
  1935.  *
  1936.  * Assumptions:
  1937.  *   We must always pass up packets destined to the broadcast
  1938.  *   address (FF-FF-FF-FF-FF-FF), so we'll always keep the
  1939.  *   broadcast filter enabled.
  1940.  *
  1941.  * Side Effects:
  1942.  *   On-board adapter filters are updated.
  1943.  */
  1944. static int dfx_ctl_update_filters(DFX_board_t *bp)
  1945. {
  1946. int i = 0; /* used as index */
  1947. /* Fill in command request information */
  1948. bp->cmd_req_virt->cmd_type = PI_CMD_K_FILTERS_SET;
  1949. /* Initialize Broadcast filter - * ALWAYS ENABLED * */
  1950. bp->cmd_req_virt->filter_set.item[i].item_code = PI_ITEM_K_BROADCAST;
  1951. bp->cmd_req_virt->filter_set.item[i++].value = PI_FSTATE_K_PASS;
  1952. /* Initialize LLC Individual/Group Promiscuous filter */
  1953. bp->cmd_req_virt->filter_set.item[i].item_code = PI_ITEM_K_IND_GROUP_PROM;
  1954. bp->cmd_req_virt->filter_set.item[i++].value = bp->ind_group_prom;
  1955. /* Initialize LLC Group Promiscuous filter */
  1956. bp->cmd_req_virt->filter_set.item[i].item_code = PI_ITEM_K_GROUP_PROM;
  1957. bp->cmd_req_virt->filter_set.item[i++].value = bp->group_prom;
  1958. /* Terminate the item code list */
  1959. bp->cmd_req_virt->filter_set.item[i].item_code = PI_ITEM_K_EOL;
  1960. /* Issue command to update adapter filters, then return */
  1961. if (dfx_hw_dma_cmd_req(bp) != DFX_K_SUCCESS)
  1962. return(DFX_K_FAILURE);
  1963. return(DFX_K_SUCCESS);
  1964. }
  1965. /*
  1966.  * ======================
  1967.  * = dfx_hw_dma_cmd_req =
  1968.  * ======================
  1969.  *   
  1970.  * Overview:
  1971.  *   Sends PDQ DMA command to adapter firmware
  1972.  *  
  1973.  * Returns:
  1974.  *   Condition code
  1975.  *       
  1976.  * Arguments:
  1977.  *   bp - pointer to board information
  1978.  *
  1979.  * Functional Description:
  1980.  *   The command request and response buffers are posted to the adapter in the manner
  1981.  *   described in the PDQ Port Specification:
  1982.  *
  1983.  * 1. Command Response Buffer is posted to adapter.
  1984.  * 2. Command Request Buffer is posted to adapter.
  1985.  * 3. Command Request consumer index is polled until it indicates that request
  1986.  *         buffer has been DMA'd to adapter.
  1987.  * 4. Command Response consumer index is polled until it indicates that response
  1988.  *         buffer has been DMA'd from adapter.
  1989.  *
  1990.  *   This ordering ensures that a response buffer is already available for the firmware
  1991.  *   to use once it's done processing the request buffer.
  1992.  *
  1993.  * Return Codes:
  1994.  *   DFX_K_SUCCESS   - DMA command succeeded
  1995.  *   DFX_K_OUTSTATE   - Adapter is NOT in proper state
  1996.  *   DFX_K_HW_TIMEOUT - DMA command timed out
  1997.  *
  1998.  * Assumptions:
  1999.  *   Command request buffer has already been filled with desired DMA command.
  2000.  *
  2001.  * Side Effects:
  2002.  *   None
  2003.  */
  2004. static int dfx_hw_dma_cmd_req(DFX_board_t *bp)
  2005. {
  2006. int status; /* adapter status */
  2007. int timeout_cnt; /* used in for loops */
  2008. /* Make sure the adapter is in a state that we can issue the DMA command in */
  2009. status = dfx_hw_adap_state_rd(bp);
  2010. if ((status == PI_STATE_K_RESET) ||
  2011. (status == PI_STATE_K_HALTED) ||
  2012. (status == PI_STATE_K_DMA_UNAVAIL) ||
  2013. (status == PI_STATE_K_UPGRADE))
  2014. return(DFX_K_OUTSTATE);
  2015. /* Put response buffer on the command response queue */
  2016. bp->descr_block_virt->cmd_rsp[bp->cmd_rsp_reg.index.prod].long_0 = (u32) (PI_RCV_DESCR_M_SOP |
  2017. ((PI_CMD_RSP_K_SIZE_MAX / PI_ALIGN_K_CMD_RSP_BUFF) << PI_RCV_DESCR_V_SEG_LEN));
  2018. bp->descr_block_virt->cmd_rsp[bp->cmd_rsp_reg.index.prod].long_1 = bp->cmd_rsp_phys;
  2019. /* Bump (and wrap) the producer index and write out to register */
  2020. bp->cmd_rsp_reg.index.prod += 1;
  2021. bp->cmd_rsp_reg.index.prod &= PI_CMD_RSP_K_NUM_ENTRIES-1;
  2022. dfx_port_write_long(bp, PI_PDQ_K_REG_CMD_RSP_PROD, bp->cmd_rsp_reg.lword);
  2023. /* Put request buffer on the command request queue */
  2024. bp->descr_block_virt->cmd_req[bp->cmd_req_reg.index.prod].long_0 = (u32) (PI_XMT_DESCR_M_SOP |
  2025. PI_XMT_DESCR_M_EOP | (PI_CMD_REQ_K_SIZE_MAX << PI_XMT_DESCR_V_SEG_LEN));
  2026. bp->descr_block_virt->cmd_req[bp->cmd_req_reg.index.prod].long_1 = bp->cmd_req_phys;
  2027. /* Bump (and wrap) the producer index and write out to register */
  2028. bp->cmd_req_reg.index.prod += 1;
  2029. bp->cmd_req_reg.index.prod &= PI_CMD_REQ_K_NUM_ENTRIES-1;
  2030. dfx_port_write_long(bp, PI_PDQ_K_REG_CMD_REQ_PROD, bp->cmd_req_reg.lword);
  2031. /*
  2032.  * Here we wait for the command request consumer index to be equal
  2033.  * to the producer, indicating that the adapter has DMAed the request.
  2034.  */
  2035. for (timeout_cnt = 20000; timeout_cnt > 0; timeout_cnt--)
  2036. {
  2037. if (bp->cmd_req_reg.index.prod == (u8)(bp->cons_block_virt->cmd_req))
  2038. break;
  2039. udelay(100); /* wait for 100 microseconds */
  2040. }
  2041. if (timeout_cnt == 0) 
  2042. return(DFX_K_HW_TIMEOUT);
  2043. /* Bump (and wrap) the completion index and write out to register */
  2044. bp->cmd_req_reg.index.comp += 1;
  2045. bp->cmd_req_reg.index.comp &= PI_CMD_REQ_K_NUM_ENTRIES-1;
  2046. dfx_port_write_long(bp, PI_PDQ_K_REG_CMD_REQ_PROD, bp->cmd_req_reg.lword);
  2047. /*
  2048.  * Here we wait for the command response consumer index to be equal
  2049.  * to the producer, indicating that the adapter has DMAed the response.
  2050.  */
  2051. for (timeout_cnt = 20000; timeout_cnt > 0; timeout_cnt--)
  2052. {
  2053. if (bp->cmd_rsp_reg.index.prod == (u8)(bp->cons_block_virt->cmd_rsp))
  2054. break;
  2055. udelay(100); /* wait for 100 microseconds */
  2056. }
  2057. if (timeout_cnt == 0) 
  2058. return(DFX_K_HW_TIMEOUT);
  2059. /* Bump (and wrap) the completion index and write out to register */
  2060. bp->cmd_rsp_reg.index.comp += 1;
  2061. bp->cmd_rsp_reg.index.comp &= PI_CMD_RSP_K_NUM_ENTRIES-1;
  2062. dfx_port_write_long(bp, PI_PDQ_K_REG_CMD_RSP_PROD, bp->cmd_rsp_reg.lword);
  2063. return(DFX_K_SUCCESS);
  2064. }
  2065. /*
  2066.  * ========================
  2067.  * = dfx_hw_port_ctrl_req =
  2068.  * ========================
  2069.  *   
  2070.  * Overview:
  2071.  *   Sends PDQ port control command to adapter firmware
  2072.  *  
  2073.  * Returns:
  2074.  *   Host data register value in host_data if ptr is not NULL
  2075.  *       
  2076.  * Arguments:
  2077.  *   bp - pointer to board information
  2078.  *  command - port control command
  2079.  *  data_a - port data A register value
  2080.  *  data_b - port data B register value
  2081.  *  host_data - ptr to host data register value
  2082.  *
  2083.  * Functional Description:
  2084.  *   Send generic port control command to adapter by writing
  2085.  *   to various PDQ port registers, then polling for completion.
  2086.  *
  2087.  * Return Codes:
  2088.  *   DFX_K_SUCCESS   - port control command succeeded
  2089.  *   DFX_K_HW_TIMEOUT - port control command timed out
  2090.  *
  2091.  * Assumptions:
  2092.  *   None
  2093.  *
  2094.  * Side Effects:
  2095.  *   None
  2096.  */
  2097. static int dfx_hw_port_ctrl_req(
  2098. DFX_board_t *bp,
  2099. PI_UINT32 command,
  2100. PI_UINT32 data_a,
  2101. PI_UINT32 data_b,
  2102. PI_UINT32 *host_data
  2103. )
  2104. {
  2105. PI_UINT32 port_cmd; /* Port Control command register value */
  2106. int timeout_cnt; /* used in for loops */
  2107. /* Set Command Error bit in command longword */
  2108. port_cmd = (PI_UINT32) (command | PI_PCTRL_M_CMD_ERROR);
  2109. /* Issue port command to the adapter */
  2110. dfx_port_write_long(bp, PI_PDQ_K_REG_PORT_DATA_A, data_a);
  2111. dfx_port_write_long(bp, PI_PDQ_K_REG_PORT_DATA_B, data_b);
  2112. dfx_port_write_long(bp, PI_PDQ_K_REG_PORT_CTRL, port_cmd);
  2113. /* Now wait for command to complete */
  2114. if (command == PI_PCTRL_M_BLAST_FLASH)
  2115. timeout_cnt = 600000; /* set command timeout count to 60 seconds */
  2116. else
  2117. timeout_cnt = 20000; /* set command timeout count to 2 seconds */
  2118. for (; timeout_cnt > 0; timeout_cnt--)
  2119. {
  2120. dfx_port_read_long(bp, PI_PDQ_K_REG_PORT_CTRL, &port_cmd);
  2121. if (!(port_cmd & PI_PCTRL_M_CMD_ERROR))
  2122. break;
  2123. udelay(100); /* wait for 100 microseconds */
  2124. }
  2125. if (timeout_cnt == 0) 
  2126. return(DFX_K_HW_TIMEOUT);
  2127. /*
  2128.  * If the address of host_data is non-zero, assume caller has supplied a  
  2129.  * non NULL pointer, and return the contents of the HOST_DATA register in 
  2130.  * it.
  2131.  */
  2132. if (host_data != NULL)
  2133. dfx_port_read_long(bp, PI_PDQ_K_REG_HOST_DATA, host_data);
  2134. return(DFX_K_SUCCESS);
  2135. }
  2136. /*
  2137.  * =====================
  2138.  * = dfx_hw_adap_reset =
  2139.  * =====================
  2140.  *   
  2141.  * Overview:
  2142.  *   Resets adapter
  2143.  *  
  2144.  * Returns:
  2145.  *   None
  2146.  *       
  2147.  * Arguments:
  2148.  *   bp   - pointer to board information
  2149.  *   type - type of reset to perform
  2150.  *
  2151.  * Functional Description:
  2152.  *   Issue soft reset to adapter by writing to PDQ Port Reset
  2153.  *   register.  Use incoming reset type to tell adapter what
  2154.  *   kind of reset operation to perform.
  2155.  *
  2156.  * Return Codes:
  2157.  *   None
  2158.  *
  2159.  * Assumptions:
  2160.  *   This routine merely issues a soft reset to the adapter.
  2161.  *   It is expected that after this routine returns, the caller
  2162.  *   will appropriately poll the Port Status register for the
  2163.  *   adapter to enter the proper state.
  2164.  *
  2165.  * Side Effects:
  2166.  *   Internal adapter registers are cleared.
  2167.  */
  2168. static void dfx_hw_adap_reset(
  2169. DFX_board_t *bp,
  2170. PI_UINT32 type
  2171. )
  2172. {
  2173. /* Set Reset type and assert reset */
  2174. dfx_port_write_long(bp, PI_PDQ_K_REG_PORT_DATA_A, type); /* tell adapter type of reset */
  2175. dfx_port_write_long(bp, PI_PDQ_K_REG_PORT_RESET, PI_RESET_M_ASSERT_RESET);
  2176. /* Wait for at least 1 Microsecond according to the spec. We wait 20 just to be safe */
  2177. udelay(20);
  2178. /* Deassert reset */
  2179. dfx_port_write_long(bp, PI_PDQ_K_REG_PORT_RESET, 0);
  2180. }
  2181. /*
  2182.  * ========================
  2183.  * = dfx_hw_adap_state_rd =
  2184.  * ========================
  2185.  *   
  2186.  * Overview:
  2187.  *   Returns current adapter state
  2188.  *  
  2189.  * Returns:
  2190.  *   Adapter state per PDQ Port Specification
  2191.  *       
  2192.  * Arguments:
  2193.  *   bp - pointer to board information
  2194.  *
  2195.  * Functional Description:
  2196.  *   Reads PDQ Port Status register and returns adapter state.
  2197.  *
  2198.  * Return Codes:
  2199.  *   None
  2200.  *
  2201.  * Assumptions:
  2202.  *   None
  2203.  *
  2204.  * Side Effects:
  2205.  *   None
  2206.  */
  2207. static int dfx_hw_adap_state_rd(DFX_board_t *bp)
  2208. {
  2209. PI_UINT32 port_status; /* Port Status register value */
  2210. dfx_port_read_long(bp, PI_PDQ_K_REG_PORT_STATUS, &port_status);
  2211. return((port_status & PI_PSTATUS_M_STATE) >> PI_PSTATUS_V_STATE);
  2212. }
  2213. /*
  2214.  * =====================
  2215.  * = dfx_hw_dma_uninit =
  2216.  * =====================
  2217.  *   
  2218.  * Overview:
  2219.  *   Brings adapter to DMA_UNAVAILABLE state
  2220.  *  
  2221.  * Returns:
  2222.  *   Condition code
  2223.  *       
  2224.  * Arguments:
  2225.  *   bp   - pointer to board information
  2226.  *   type - type of reset to perform
  2227.  *
  2228.  * Functional Description:
  2229.  *   Bring adapter to DMA_UNAVAILABLE state by performing the following:
  2230.  * 1. Set reset type bit in Port Data A Register then reset adapter.
  2231.  * 2. Check that adapter is in DMA_UNAVAILABLE state.
  2232.  *
  2233.  * Return Codes:
  2234.  *   DFX_K_SUCCESS   - adapter is in DMA_UNAVAILABLE state
  2235.  *   DFX_K_HW_TIMEOUT - adapter did not reset properly
  2236.  *
  2237.  * Assumptions:
  2238.  *   None
  2239.  *
  2240.  * Side Effects:
  2241.  *   Internal adapter registers are cleared.
  2242.  */
  2243. static int dfx_hw_dma_uninit(DFX_board_t *bp, PI_UINT32 type)
  2244. {
  2245. int timeout_cnt; /* used in for loops */
  2246. /* Set reset type bit and reset adapter */
  2247. dfx_hw_adap_reset(bp, type);
  2248. /* Now wait for adapter to enter DMA_UNAVAILABLE state */
  2249. for (timeout_cnt = 100000; timeout_cnt > 0; timeout_cnt--)
  2250. {
  2251. if (dfx_hw_adap_state_rd(bp) == PI_STATE_K_DMA_UNAVAIL)
  2252. break;
  2253. udelay(100); /* wait for 100 microseconds */
  2254. }
  2255. if (timeout_cnt == 0) 
  2256. return(DFX_K_HW_TIMEOUT);
  2257. return(DFX_K_SUCCESS);
  2258. }
  2259. /*
  2260.  * Align an sk_buff to a boundary power of 2
  2261.  *
  2262.  */
  2263.  
  2264. static void my_skb_align(struct sk_buff *skb, int n)
  2265. {
  2266. u32 x=(u32)skb->data; /* We only want the low bits .. */
  2267. u32 v;
  2268. v=(x+n-1)&~(n-1); /* Where we want to be */
  2269. skb_reserve(skb, v-x);
  2270. }
  2271. /*
  2272.  * ================
  2273.  * = dfx_rcv_init =
  2274.  * ================
  2275.  *   
  2276.  * Overview:
  2277.  *   Produces buffers to adapter LLC Host receive descriptor block
  2278.  *  
  2279.  * Returns:
  2280.  *   None
  2281.  *       
  2282.  * Arguments:
  2283.  *   bp - pointer to board information
  2284.  *   get_buffers - non-zero if buffers to be allocated
  2285.  *
  2286.  * Functional Description:
  2287.  *   This routine can be called during dfx_adap_init() or during an adapter
  2288.  *  reset.  It initializes the descriptor block and produces all allocated
  2289.  *   LLC Host queue receive buffers.
  2290.  *
  2291.  * Return Codes:
  2292.  *   Return 0 on success or -ENOMEM if buffer allocation failed (when using
  2293.  *   dynamic buffer allocation). If the buffer allocation failed, the
  2294.  *   already allocated buffers will not be released and the caller should do
  2295.  *   this.
  2296.  *
  2297.  * Assumptions:
  2298.  *   The PDQ has been reset and the adapter and driver maintained Type 2
  2299.  *   register indices are cleared.
  2300.  *
  2301.  * Side Effects:
  2302.  *   Receive buffers are posted to the adapter LLC queue and the adapter
  2303.  *   is notified.
  2304.  */
  2305. static int dfx_rcv_init(DFX_board_t *bp, int get_buffers)
  2306. {
  2307. int i, j; /* used in for loop */
  2308. /*
  2309.  *  Since each receive buffer is a single fragment of same length, initialize
  2310.  *  first longword in each receive descriptor for entire LLC Host descriptor
  2311.  *  block.  Also initialize second longword in each receive descriptor with
  2312.  *  physical address of receive buffer.  We'll always allocate receive
  2313.  *  buffers in powers of 2 so that we can easily fill the 256 entry descriptor
  2314.  *  block and produce new receive buffers by simply updating the receive
  2315.  *  producer index.
  2316.  *
  2317.  *  Assumptions:
  2318.  * To support all shipping versions of PDQ, the receive buffer size
  2319.  * must be mod 128 in length and the physical address must be 128 byte
  2320.  * aligned.  In other words, bits 0-6 of the length and address must
  2321.  * be zero for the following descriptor field entries to be correct on
  2322.  * all PDQ-based boards.  We guaranteed both requirements during
  2323.  * driver initialization when we allocated memory for the receive buffers.
  2324.  */
  2325. if (get_buffers) {
  2326. #ifdef DYNAMIC_BUFFERS
  2327. for (i = 0; i < (int)(bp->rcv_bufs_to_post); i++)
  2328. for (j = 0; (i + j) < (int)PI_RCV_DATA_K_NUM_ENTRIES; j += bp->rcv_bufs_to_post)
  2329. {
  2330. struct sk_buff *newskb = __dev_alloc_skb(NEW_SKB_SIZE, GFP_NOIO);
  2331. if (!newskb)
  2332. return -ENOMEM;
  2333. bp->descr_block_virt->rcv_data[i+j].long_0 = (u32) (PI_RCV_DESCR_M_SOP |
  2334. ((PI_RCV_DATA_K_SIZE_MAX / PI_ALIGN_K_RCV_DATA_BUFF) << PI_RCV_DESCR_V_SEG_LEN));
  2335. /*
  2336.  * align to 128 bytes for compatibility with
  2337.  * the old EISA boards.
  2338.  */
  2339.  
  2340. my_skb_align(newskb, 128);
  2341. bp->descr_block_virt->rcv_data[i+j].long_1 = virt_to_bus(newskb->data);
  2342. /*
  2343.  * p_rcv_buff_va is only used inside the
  2344.  * kernel so we put the skb pointer here.
  2345.  */
  2346. bp->p_rcv_buff_va[i+j] = (char *) newskb;
  2347. }
  2348. #else
  2349. for (i=0; i < (int)(bp->rcv_bufs_to_post); i++)
  2350. for (j=0; (i + j) < (int)PI_RCV_DATA_K_NUM_ENTRIES; j += bp->rcv_bufs_to_post)
  2351. {
  2352. bp->descr_block_virt->rcv_data[i+j].long_0 = (u32) (PI_RCV_DESCR_M_SOP |
  2353. ((PI_RCV_DATA_K_SIZE_MAX / PI_ALIGN_K_RCV_DATA_BUFF) << PI_RCV_DESCR_V_SEG_LEN));
  2354. bp->descr_block_virt->rcv_data[i+j].long_1 = (u32) (bp->rcv_block_phys + (i * PI_RCV_DATA_K_SIZE_MAX));
  2355. bp->p_rcv_buff_va[i+j] = (char *) (bp->rcv_block_virt + (i * PI_RCV_DATA_K_SIZE_MAX));
  2356. }
  2357. #endif
  2358. }
  2359. /* Update receive producer and Type 2 register */
  2360. bp->rcv_xmt_reg.index.rcv_prod = bp->rcv_bufs_to_post;
  2361. dfx_port_write_long(bp, PI_PDQ_K_REG_TYPE_2_PROD, bp->rcv_xmt_reg.lword);
  2362. return 0;
  2363. }
  2364. /*
  2365.  * =========================
  2366.  * = dfx_rcv_queue_process =
  2367.  * =========================
  2368.  *   
  2369.  * Overview:
  2370.  *   Process received LLC frames.
  2371.  *  
  2372.  * Returns:
  2373.  *   None
  2374.  *       
  2375.  * Arguments:
  2376.  *   bp - pointer to board information
  2377.  *
  2378.  * Functional Description:
  2379.  *   Received LLC frames are processed until there are no more consumed frames.
  2380.  *   Once all frames are processed, the receive buffers are returned to the
  2381.  *   adapter.  Note that this algorithm fixes the length of time that can be spent
  2382.  *   in this routine, because there are a fixed number of receive buffers to
  2383.  *   process and buffers are not produced until this routine exits and returns
  2384.  *   to the ISR.
  2385.  *
  2386.  * Return Codes:
  2387.  *   None
  2388.  *
  2389.  * Assumptions:
  2390.  *   None
  2391.  *
  2392.  * Side Effects:
  2393.  *   None
  2394.  */
  2395. static void dfx_rcv_queue_process(
  2396. DFX_board_t *bp
  2397. )
  2398. {
  2399. PI_TYPE_2_CONSUMER *p_type_2_cons; /* ptr to rcv/xmt consumer block register */
  2400. char *p_buff; /* ptr to start of packet receive buffer (FMC descriptor) */
  2401. u32 descr, pkt_len; /* FMC descriptor field and packet length */
  2402. struct sk_buff *skb; /* pointer to a sk_buff to hold incoming packet data */
  2403. /* Service all consumed LLC receive frames */
  2404. p_type_2_cons = (PI_TYPE_2_CONSUMER *)(&bp->cons_block_virt->xmt_rcv_data);
  2405. while (bp->rcv_xmt_reg.index.rcv_comp != p_type_2_cons->index.rcv_cons)
  2406. {
  2407. /* Process any errors */
  2408. int entry;
  2409. entry = bp->rcv_xmt_reg.index.rcv_comp;
  2410. #ifdef DYNAMIC_BUFFERS
  2411. p_buff = (char *) (((struct sk_buff *)bp->p_rcv_buff_va[entry])->data);
  2412. #else
  2413. p_buff = (char *) bp->p_rcv_buff_va[entry];
  2414. #endif
  2415. memcpy(&descr, p_buff + RCV_BUFF_K_DESCR, sizeof(u32));
  2416. if (descr & PI_FMC_DESCR_M_RCC_FLUSH)
  2417. {
  2418. if (descr & PI_FMC_DESCR_M_RCC_CRC)
  2419. bp->rcv_crc_errors++;
  2420. else
  2421. bp->rcv_frame_status_errors++;
  2422. }
  2423. else
  2424. {
  2425. int rx_in_place = 0;
  2426. /* The frame was received without errors - verify packet length */
  2427. pkt_len = (u32)((descr & PI_FMC_DESCR_M_LEN) >> PI_FMC_DESCR_V_LEN);
  2428. pkt_len -= 4; /* subtract 4 byte CRC */
  2429. if (!IN_RANGE(pkt_len, FDDI_K_LLC_ZLEN, FDDI_K_LLC_LEN))
  2430. bp->rcv_length_errors++;
  2431. else{
  2432. #ifdef DYNAMIC_BUFFERS
  2433. if (pkt_len > SKBUFF_RX_COPYBREAK) {
  2434. struct sk_buff *newskb;
  2435. newskb = dev_alloc_skb(NEW_SKB_SIZE);
  2436. if (newskb){
  2437. rx_in_place = 1;
  2438. my_skb_align(newskb, 128);
  2439. skb = (struct sk_buff *)bp->p_rcv_buff_va[entry];
  2440. skb_reserve(skb, RCV_BUFF_K_PADDING);
  2441. bp->p_rcv_buff_va[entry] = (char *)newskb;
  2442. bp->descr_block_virt->rcv_data[entry].long_1 = virt_to_bus(newskb->data);
  2443. } else
  2444. skb = NULL;
  2445. } else
  2446. #endif
  2447. skb = dev_alloc_skb(pkt_len+3); /* alloc new buffer to pass up, add room for PRH */
  2448. if (skb == NULL)
  2449. {
  2450. printk("%s: Could not allocate receive buffer.  Dropping packet.n", bp->dev->name);
  2451. bp->rcv_discards++;
  2452. break;
  2453. }
  2454. else {
  2455. #ifndef DYNAMIC_BUFFERS
  2456. if (! rx_in_place)
  2457. #endif
  2458. {
  2459. /* Receive buffer allocated, pass receive packet up */
  2460. memcpy(skb->data, p_buff + RCV_BUFF_K_PADDING, pkt_len+3);
  2461. }
  2462. skb_reserve(skb,3); /* adjust data field so that it points to FC byte */
  2463. skb_put(skb, pkt_len); /* pass up packet length, NOT including CRC */
  2464. skb->dev = bp->dev; /* pass up device pointer */
  2465. skb->protocol = fddi_type_trans(skb, bp->dev);
  2466. bp->rcv_total_bytes += skb->len;
  2467. netif_rx(skb);
  2468. /* Update the rcv counters */
  2469. bp->dev->last_rx = jiffies;
  2470. bp->rcv_total_frames++;
  2471. if (*(p_buff + RCV_BUFF_K_DA) & 0x01)
  2472. bp->rcv_multicast_frames++;
  2473. }
  2474. }
  2475. }
  2476. /*
  2477.  * Advance the producer (for recycling) and advance the completion
  2478.  * (for servicing received frames).  Note that it is okay to
  2479.  * advance the producer without checking that it passes the
  2480.  * completion index because they are both advanced at the same
  2481.  * rate.
  2482.  */
  2483. bp->rcv_xmt_reg.index.rcv_prod += 1;
  2484. bp->rcv_xmt_reg.index.rcv_comp += 1;
  2485. }
  2486. }
  2487. /*
  2488.  * =====================
  2489.  * = dfx_xmt_queue_pkt =
  2490.  * =====================
  2491.  *   
  2492.  * Overview:
  2493.  *   Queues packets for transmission
  2494.  *  
  2495.  * Returns:
  2496.  *   Condition code
  2497.  *       
  2498.  * Arguments:
  2499.  *   skb - pointer to sk_buff to queue for transmission
  2500.  *   dev - pointer to device information
  2501.  *
  2502.  * Functional Description:
  2503.  *   Here we assume that an incoming skb transmit request
  2504.  *   is contained in a single physically contiguous buffer
  2505.  *   in which the virtual address of the start of packet
  2506.  *   (skb->data) can be converted to a physical address
  2507.  *   by using virt_to_bus().
  2508.  *
  2509.  *   Since the adapter architecture requires a three byte
  2510.  *   packet request header to prepend the start of packet,
  2511.  *   we'll write the three byte field immediately prior to
  2512.  *   the FC byte.  This assumption is valid because we've
  2513.  *   ensured that dev->hard_header_len includes three pad
  2514.  *   bytes.  By posting a single fragment to the adapter,
  2515.  *   we'll reduce the number of descriptor fetches and
  2516.  *   bus traffic needed to send the request.
  2517.  *
  2518.  *   Also, we can't free the skb until after it's been DMA'd
  2519.  *   out by the adapter, so we'll queue it in the driver and
  2520.  *   return it in dfx_xmt_done.
  2521.  *
  2522.  * Return Codes:
  2523.  *   0 - driver queued packet, link is unavailable, or skbuff was bad
  2524.  *  1 - caller should requeue the sk_buff for later transmission
  2525.  *
  2526.  * Assumptions:
  2527.  *  First and foremost, we assume the incoming skb pointer
  2528.  *   is NOT NULL and is pointing to a valid sk_buff structure.
  2529.  *
  2530.  *   The outgoing packet is complete, starting with the
  2531.  *   frame control byte including the last byte of data,
  2532.  *   but NOT including the 4 byte CRC.  We'll let the
  2533.  *   adapter hardware generate and append the CRC.
  2534.  *
  2535.  *   The entire packet is stored in one physically
  2536.  *   contiguous buffer which is not cached and whose
  2537.  *   32-bit physical address can be determined.
  2538.  *
  2539.  *   It's vital that this routine is NOT reentered for the
  2540.  *   same board and that the OS is not in another section of
  2541.  *   code (eg. dfx_int_common) for the same board on a
  2542.  *   different thread.
  2543.  *
  2544.  * Side Effects:
  2545.  *   None
  2546.  */
  2547. static int dfx_xmt_queue_pkt(
  2548. struct sk_buff *skb,
  2549. struct net_device *dev
  2550. )
  2551. {
  2552. DFX_board_t *bp = dev->priv;
  2553. u8 prod; /* local transmit producer index */
  2554. PI_XMT_DESCR *p_xmt_descr; /* ptr to transmit descriptor block entry */
  2555. XMT_DRIVER_DESCR *p_xmt_drv_descr; /* ptr to transmit driver descriptor */
  2556. unsigned long flags;
  2557. netif_stop_queue(dev);
  2558. /*
  2559.  * Verify that incoming transmit request is OK
  2560.  *
  2561.  * Note: The packet size check is consistent with other
  2562.  *  Linux device drivers, although the correct packet
  2563.  *  size should be verified before calling the
  2564.  *  transmit routine.
  2565.  */
  2566. if (!IN_RANGE(skb->len, FDDI_K_LLC_ZLEN, FDDI_K_LLC_LEN))
  2567. {
  2568. printk("%s: Invalid packet length - %u bytesn", 
  2569. dev->name, skb->len);
  2570. bp->xmt_length_errors++; /* bump error counter */
  2571. netif_wake_queue(dev);
  2572. dev_kfree_skb(skb);
  2573. return(0); /* return "success" */
  2574. }
  2575. /*
  2576.  * See if adapter link is available, if not, free buffer
  2577.  *
  2578.  * Note: If the link isn't available, free buffer and return 0
  2579.  *  rather than tell the upper layer to requeue the packet.
  2580.  *  The methodology here is that by the time the link
  2581.  *  becomes available, the packet to be sent will be
  2582.  *  fairly stale.  By simply dropping the packet, the
  2583.  *  higher layer protocols will eventually time out
  2584.  *  waiting for response packets which it won't receive.
  2585.  */
  2586. if (bp->link_available == PI_K_FALSE)
  2587. {
  2588. if (dfx_hw_adap_state_rd(bp) == PI_STATE_K_LINK_AVAIL) /* is link really available? */
  2589. bp->link_available = PI_K_TRUE; /* if so, set flag and continue */
  2590. else
  2591. {
  2592. bp->xmt_discards++; /* bump error counter */
  2593. dev_kfree_skb(skb); /* free sk_buff now */
  2594. netif_wake_queue(dev);
  2595. return(0); /* return "success" */
  2596. }
  2597. }
  2598. spin_lock_irqsave(&bp->lock, flags);
  2599. /* Get the current producer and the next free xmt data descriptor */
  2600. prod = bp->rcv_xmt_reg.index.xmt_prod;
  2601. p_xmt_descr = &(bp->descr_block_virt->xmt_data[prod]);
  2602. /*
  2603.  * Get pointer to auxiliary queue entry to contain information
  2604.  * for this packet.
  2605.  *
  2606.  * Note: The current xmt producer index will become the
  2607.  *  current xmt completion index when we complete this
  2608.  *  packet later on.  So, we'll get the pointer to the
  2609.  *  next auxiliary queue entry now before we bump the
  2610.  *  producer index.
  2611.  */
  2612. p_xmt_drv_descr = &(bp->xmt_drv_descr_blk[prod++]); /* also bump producer index */
  2613. /* Write the three PRH bytes immediately before the FC byte */
  2614. skb_push(skb,3);
  2615. skb->data[0] = DFX_PRH0_BYTE; /* these byte values are defined */
  2616. skb->data[1] = DFX_PRH1_BYTE; /* in the Motorola FDDI MAC chip */
  2617. skb->data[2] = DFX_PRH2_BYTE; /* specification */
  2618. /*
  2619.  * Write the descriptor with buffer info and bump producer
  2620.  *
  2621.  * Note: Since we need to start DMA from the packet request
  2622.  *  header, we'll add 3 bytes to the DMA buffer length,
  2623.  *  and we'll determine the physical address of the
  2624.  *  buffer from the PRH, not skb->data.
  2625.  *
  2626.  * Assumptions:
  2627.  *  1. Packet starts with the frame control (FC) byte
  2628.  *     at skb->data.
  2629.  *  2. The 4-byte CRC is not appended to the buffer or
  2630.  * included in the length.
  2631.  *  3. Packet length (skb->len) is from FC to end of
  2632.  * data, inclusive.
  2633.  *  4. The packet length does not exceed the maximum
  2634.  * FDDI LLC frame length of 4491 bytes.
  2635.  *  5. The entire packet is contained in a physically
  2636.  * contiguous, non-cached, locked memory space
  2637.  * comprised of a single buffer pointed to by
  2638.  * skb->data.
  2639.  *  6. The physical address of the start of packet
  2640.  * can be determined from the virtual address
  2641.  * by using virt_to_bus() and is only 32-bits
  2642.  * wide.
  2643.  */
  2644. p_xmt_descr->long_0 = (u32) (PI_XMT_DESCR_M_SOP | PI_XMT_DESCR_M_EOP | ((skb->len) << PI_XMT_DESCR_V_SEG_LEN));
  2645. p_xmt_descr->long_1 = (u32) virt_to_bus(skb->data);
  2646. /*
  2647.  * Verify that descriptor is actually available
  2648.  *
  2649.  * Note: If descriptor isn't available, return 1 which tells
  2650.  *  the upper layer to requeue the packet for later
  2651.  *  transmission.
  2652.  *
  2653.  *       We need to ensure that the producer never reaches the
  2654.  *  completion, except to indicate that the queue is empty.
  2655.  */
  2656. if (prod == bp->rcv_xmt_reg.index.xmt_comp)
  2657. {
  2658. skb_pull(skb,3);
  2659. spin_unlock_irqrestore(&bp->lock, flags);
  2660. return(1); /* requeue packet for later */
  2661. }
  2662. /*
  2663.  * Save info for this packet for xmt done indication routine
  2664.  *
  2665.  * Normally, we'd save the producer index in the p_xmt_drv_descr
  2666.  * structure so that we'd have it handy when we complete this
  2667.  * packet later (in dfx_xmt_done).  However, since the current
  2668.  * transmit architecture guarantees a single fragment for the
  2669.  * entire packet, we can simply bump the completion index by
  2670.  * one (1) for each completed packet.
  2671.  *
  2672.  * Note: If this assumption changes and we're presented with
  2673.  *  an inconsistent number of transmit fragments for packet
  2674.  *  data, we'll need to modify this code to save the current
  2675.  *  transmit producer index.
  2676.  */
  2677. p_xmt_drv_descr->p_skb = skb;
  2678. /* Update Type 2 register */
  2679. bp->rcv_xmt_reg.index.xmt_prod = prod;
  2680. dfx_port_write_long(bp, PI_PDQ_K_REG_TYPE_2_PROD, bp->rcv_xmt_reg.lword);
  2681. spin_unlock_irqrestore(&bp->lock, flags);
  2682. netif_wake_queue(dev);
  2683. return(0); /* packet queued to adapter */
  2684. }
  2685. /*
  2686.  * ================
  2687.  * = dfx_xmt_done =
  2688.  * ================
  2689.  *   
  2690.  * Overview:
  2691.  *   Processes all frames that have been transmitted.
  2692.  *  
  2693.  * Returns:
  2694.  *   None
  2695.  *       
  2696.  * Arguments:
  2697.  *   bp - pointer to board information
  2698.  *
  2699.  * Functional Description:
  2700.  *   For all consumed transmit descriptors that have not
  2701.  *   yet been completed, we'll free the skb we were holding
  2702.  *   onto using dev_kfree_skb and bump the appropriate
  2703.  *   counters.
  2704.  *
  2705.  * Return Codes:
  2706.  *   None
  2707.  *
  2708.  * Assumptions:
  2709.  *   The Type 2 register is not updated in this routine.  It is
  2710.  *   assumed that it will be updated in the ISR when dfx_xmt_done
  2711.  *   returns.
  2712.  *
  2713.  * Side Effects:
  2714.  *   None
  2715.  */
  2716. static int dfx_xmt_done(DFX_board_t *bp)
  2717. {
  2718. XMT_DRIVER_DESCR *p_xmt_drv_descr; /* ptr to transmit driver descriptor */
  2719. PI_TYPE_2_CONSUMER *p_type_2_cons; /* ptr to rcv/xmt consumer block register */
  2720. int  freed = 0; /* buffers freed */
  2721. /* Service all consumed transmit frames */
  2722. p_type_2_cons = (PI_TYPE_2_CONSUMER *)(&bp->cons_block_virt->xmt_rcv_data);
  2723. while (bp->rcv_xmt_reg.index.xmt_comp != p_type_2_cons->index.xmt_cons)
  2724. {
  2725. /* Get pointer to the transmit driver descriptor block information */
  2726. p_xmt_drv_descr = &(bp->xmt_drv_descr_blk[bp->rcv_xmt_reg.index.xmt_comp]);
  2727. /* Increment transmit counters */
  2728. bp->xmt_total_frames++;
  2729. bp->xmt_total_bytes += p_xmt_drv_descr->p_skb->len;
  2730. /* Return skb to operating system */
  2731. dev_kfree_skb_irq(p_xmt_drv_descr->p_skb);
  2732. /*
  2733.  * Move to start of next packet by updating completion index
  2734.  *
  2735.  * Here we assume that a transmit packet request is always
  2736.  * serviced by posting one fragment.  We can therefore
  2737.  * simplify the completion code by incrementing the
  2738.  * completion index by one.  This code will need to be
  2739.  * modified if this assumption changes.  See comments
  2740.  * in dfx_xmt_queue_pkt for more details.
  2741.  */
  2742. bp->rcv_xmt_reg.index.xmt_comp += 1;
  2743. freed++;
  2744. }
  2745. return freed;
  2746. }
  2747. /*
  2748.  * =================
  2749.  * = dfx_rcv_flush =
  2750.  * =================
  2751.  *   
  2752.  * Overview:
  2753.  *   Remove all skb's in the receive ring.
  2754.  *  
  2755.  * Returns:
  2756.  *   None
  2757.  *       
  2758.  * Arguments:
  2759.  *   bp - pointer to board information
  2760.  *
  2761.  * Functional Description:
  2762.  *   Free's all the dynamically allocated skb's that are
  2763.  *   currently attached to the device receive ring. This
  2764.  *   function is typically only used when the device is
  2765.  *   initialized or reinitialized.
  2766.  *
  2767.  * Return Codes:
  2768.  *   None
  2769.  *
  2770.  * Side Effects:
  2771.  *   None
  2772.  */
  2773. #ifdef DYNAMIC_BUFFERS
  2774. static void dfx_rcv_flush( DFX_board_t *bp )
  2775. {
  2776. int i, j;
  2777. for (i = 0; i < (int)(bp->rcv_bufs_to_post); i++)
  2778. for (j = 0; (i + j) < (int)PI_RCV_DATA_K_NUM_ENTRIES; j += bp->rcv_bufs_to_post)
  2779. {
  2780. struct sk_buff *skb;
  2781. skb = (struct sk_buff *)bp->p_rcv_buff_va[i+j];
  2782. if (skb)
  2783. dev_kfree_skb(skb);
  2784. bp->p_rcv_buff_va[i+j] = NULL;
  2785. }
  2786. }
  2787. #else
  2788. static inline void dfx_rcv_flush( DFX_board_t *bp )
  2789. {
  2790. }
  2791. #endif /* DYNAMIC_BUFFERS */
  2792. /*
  2793.  * =================
  2794.  * = dfx_xmt_flush =
  2795.  * =================
  2796.  *   
  2797.  * Overview:
  2798.  *   Processes all frames whether they've been transmitted
  2799.  *   or not.
  2800.  *  
  2801.  * Returns:
  2802.  *   None
  2803.  *       
  2804.  * Arguments:
  2805.  *   bp - pointer to board information
  2806.  *
  2807.  * Functional Description:
  2808.  *   For all produced transmit descriptors that have not
  2809.  *   yet been completed, we'll free the skb we were holding
  2810.  *   onto using dev_kfree_skb and bump the appropriate
  2811.  *   counters.  Of course, it's possible that some of
  2812.  *   these transmit requests actually did go out, but we
  2813.  *   won't make that distinction here.  Finally, we'll
  2814.  *   update the consumer index to match the producer.
  2815.  *
  2816.  * Return Codes:
  2817.  *   None
  2818.  *
  2819.  * Assumptions:
  2820.  *   This routine does NOT update the Type 2 register.  It
  2821.  *   is assumed that this routine is being called during a
  2822.  *   transmit flush interrupt, or a shutdown or close routine.
  2823.  *
  2824.  * Side Effects:
  2825.  *   None
  2826.  */
  2827. static void dfx_xmt_flush( DFX_board_t *bp )
  2828. {
  2829. u32 prod_cons; /* rcv/xmt consumer block longword */
  2830. XMT_DRIVER_DESCR *p_xmt_drv_descr; /* ptr to transmit driver descriptor */
  2831. /* Flush all outstanding transmit frames */
  2832. while (bp->rcv_xmt_reg.index.xmt_comp != bp->rcv_xmt_reg.index.xmt_prod)
  2833. {
  2834. /* Get pointer to the transmit driver descriptor block information */
  2835. p_xmt_drv_descr = &(bp->xmt_drv_descr_blk[bp->rcv_xmt_reg.index.xmt_comp]);
  2836. /* Return skb to operating system */
  2837. dev_kfree_skb(p_xmt_drv_descr->p_skb);
  2838. /* Increment transmit error counter */
  2839. bp->xmt_discards++;
  2840. /*
  2841.  * Move to start of next packet by updating completion index
  2842.  *
  2843.  * Here we assume that a transmit packet request is always
  2844.  * serviced by posting one fragment.  We can therefore
  2845.  * simplify the completion code by incrementing the
  2846.  * completion index by one.  This code will need to be
  2847.  * modified if this assumption changes.  See comments
  2848.  * in dfx_xmt_queue_pkt for more details.
  2849.  */
  2850. bp->rcv_xmt_reg.index.xmt_comp += 1;
  2851. }
  2852. /* Update the transmit consumer index in the consumer block */
  2853. prod_cons = (u32)(bp->cons_block_virt->xmt_rcv_data & ~PI_CONS_M_XMT_INDEX);
  2854. prod_cons |= (u32)(bp->rcv_xmt_reg.index.xmt_prod << PI_CONS_V_XMT_INDEX);
  2855. bp->cons_block_virt->xmt_rcv_data = prod_cons;
  2856. }
  2857. static void __devexit dfx_remove_one_pci_or_eisa(struct pci_dev *pdev, struct net_device *dev)
  2858. {
  2859. DFX_board_t   *bp = dev->priv;
  2860. unregister_netdev(dev);
  2861. release_region(dev->base_addr,  pdev ? PFI_K_CSR_IO_LEN : PI_ESIC_K_CSR_IO_LEN );
  2862. if (bp->kmalloced) kfree(bp->kmalloced);
  2863. kfree(dev);
  2864. }
  2865. static void __devexit dfx_remove_one (struct pci_dev *pdev)
  2866. {
  2867. struct net_device *dev = pci_get_drvdata(pdev);
  2868. dfx_remove_one_pci_or_eisa(pdev, dev);
  2869. pci_set_drvdata(pdev, NULL);
  2870. }
  2871. static struct pci_device_id dfx_pci_tbl[] __devinitdata = {
  2872. { PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_FDDI, PCI_ANY_ID, PCI_ANY_ID, },
  2873. { 0, }
  2874. };
  2875. MODULE_DEVICE_TABLE(pci, dfx_pci_tbl);
  2876. static struct pci_driver dfx_driver = {
  2877. name: "defxx",
  2878. probe: dfx_init_one,
  2879. remove: __devexit_p(dfx_remove_one),
  2880. id_table: dfx_pci_tbl,
  2881. };
  2882. static int dfx_have_pci;
  2883. static int dfx_have_eisa;
  2884. static void __exit dfx_eisa_cleanup(void)
  2885. {
  2886. struct net_device *dev = root_dfx_eisa_dev;
  2887. while (dev)
  2888. {
  2889. struct net_device *tmp;
  2890. DFX_board_t *bp;
  2891. bp = (DFX_board_t*)dev->priv;
  2892. tmp = bp->next;
  2893. dfx_remove_one_pci_or_eisa(NULL, dev);
  2894. dev = tmp;
  2895. }
  2896. }
  2897. static int __init dfx_init(void)
  2898. {
  2899. int rc_pci, rc_eisa;
  2900. /* when a module, this is printed whether or not devices are found in probe */
  2901. #ifdef MODULE
  2902. printk(version);
  2903. #endif
  2904. rc_pci = pci_module_init(&dfx_driver);
  2905. if (rc_pci >= 0) dfx_have_pci = 1;
  2906. rc_eisa = dfx_eisa_init();
  2907. if (rc_eisa >= 0) dfx_have_eisa = 1;
  2908. return ((rc_eisa < 0) ? 0 : rc_eisa)  + ((rc_pci < 0) ? 0 : rc_pci); 
  2909. }
  2910. static void __exit dfx_cleanup(void)
  2911. {
  2912. if (dfx_have_pci)
  2913. pci_unregister_driver(&dfx_driver);
  2914. if (dfx_have_eisa)
  2915. dfx_eisa_cleanup();
  2916. }
  2917. module_init(dfx_init);
  2918. module_exit(dfx_cleanup);
  2919. MODULE_LICENSE("GPL");
  2920. /*
  2921.  * Local variables:
  2922.  * kernel-compile-command: "gcc -D__KERNEL__ -I/root/linux/include -Wall -Wstrict-prototypes -O2 -pipe -fomit-frame-pointer -fno-strength-reduce -m486 -malign-loops=2 -malign-jumps=2 -malign-functions=2 -c defxx.c"
  2923.  * End:
  2924.  */