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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*  de4x5.c: A DIGITAL DC21x4x DECchip and DE425/DE434/DE435/DE450/DE500
  2.              ethernet driver for Linux.
  3.     Copyright 1994, 1995 Digital Equipment Corporation.
  4.     Testing resources for this driver have been made available
  5.     in part by NASA Ames Research Center (mjacob@nas.nasa.gov).
  6.     The author may be reached at davies@maniac.ultranet.com.
  7.     This program is free software; you can redistribute  it and/or modify it
  8.     under  the terms of  the GNU General  Public License as published by the
  9.     Free Software Foundation;  either version 2 of the  License, or (at your
  10.     option) any later version.
  11.     THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR   IMPLIED
  12.     WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  13.     MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  14.     NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT,  INDIRECT,
  15.     INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  16.     NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  17.     USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  18.     ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  19.     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  20.     THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  21.     You should have received a copy of the  GNU General Public License along
  22.     with this program; if not, write  to the Free Software Foundation, Inc.,
  23.     675 Mass Ave, Cambridge, MA 02139, USA.
  24.     Originally,   this  driver  was    written  for the  Digital   Equipment
  25.     Corporation series of EtherWORKS ethernet cards:
  26.         DE425 TP/COAX EISA
  27. DE434 TP PCI
  28. DE435 TP/COAX/AUI PCI
  29. DE450 TP/COAX/AUI PCI
  30. DE500 10/100 PCI Fasternet
  31.     but it  will  now attempt  to  support all  cards which   conform to the
  32.     Digital Semiconductor   SROM   Specification.    The  driver   currently
  33.     recognises the following chips:
  34.         DC21040  (no SROM) 
  35. DC21041[A]  
  36. DC21140[A] 
  37. DC21142 
  38. DC21143 
  39.     So far the driver is known to work with the following cards:
  40.         KINGSTON
  41. Linksys
  42. ZNYX342
  43. SMC8432
  44. SMC9332 (w/new SROM)
  45. ZNYX31[45]
  46. ZNYX346 10/100 4 port (can act as a 10/100 bridge!) 
  47.     The driver has been tested on a relatively busy network using the DE425,
  48.     DE434, DE435 and DE500 cards and benchmarked with 'ttcp': it transferred
  49.     16M of data to a DECstation 5000/200 as follows:
  50.                 TCP           UDP
  51.              TX     RX     TX     RX
  52.     DE425   1030k  997k   1170k  1128k
  53.     DE434   1063k  995k   1170k  1125k
  54.     DE435   1063k  995k   1170k  1125k
  55.     DE500   1063k  998k   1170k  1125k  in 10Mb/s mode
  56.     All  values are typical (in   kBytes/sec) from a  sample  of 4 for  each
  57.     measurement. Their error is +/-20k on a quiet (private) network and also
  58.     depend on what load the CPU has.
  59.     =========================================================================
  60.     This driver  has been written substantially  from  scratch, although its
  61.     inheritance of style and stack interface from 'ewrk3.c' and in turn from
  62.     Donald Becker's 'lance.c' should be obvious. With the module autoload of
  63.     every  usable DECchip board,  I  pinched Donald's 'next_module' field to
  64.     link my modules together.
  65.     Upto 15 EISA cards can be supported under this driver, limited primarily
  66.     by the available IRQ lines.  I have  checked different configurations of
  67.     multiple depca, EtherWORKS 3 cards and de4x5 cards and  have not found a
  68.     problem yet (provided you have at least depca.c v0.38) ...
  69.     PCI support has been added  to allow the driver  to work with the DE434,
  70.     DE435, DE450 and DE500 cards. The I/O accesses are a bit of a kludge due
  71.     to the differences in the EISA and PCI CSR address offsets from the base
  72.     address.
  73.     The ability to load this  driver as a loadable  module has been included
  74.     and used extensively  during the driver development  (to save those long
  75.     reboot sequences).  Loadable module support  under PCI and EISA has been
  76.     achieved by letting the driver autoprobe as if it were compiled into the
  77.     kernel. Do make sure  you're not sharing  interrupts with anything  that
  78.     cannot accommodate  interrupt  sharing!
  79.     To utilise this ability, you have to do 8 things:
  80.     0) have a copy of the loadable modules code installed on your system.
  81.     1) copy de4x5.c from the  /linux/drivers/net directory to your favourite
  82.     temporary directory.
  83.     2) for fixed  autoprobes (not  recommended),  edit the source code  near
  84.     line 5594 to reflect the I/O address  you're using, or assign these when
  85.     loading by:
  86.                    insmod de4x5 io=0xghh           where g = bus number
  87.                                         hh = device number   
  88.        NB: autoprobing for modules is now supported by default. You may just
  89.            use:
  90.                    insmod de4x5
  91.            to load all available boards. For a specific board, still use
  92.    the 'io=?' above.
  93.     3) compile  de4x5.c, but include -DMODULE in  the command line to ensure
  94.     that the correct bits are compiled (see end of source code).
  95.     4) if you are wanting to add a new  card, goto 5. Otherwise, recompile a
  96.     kernel with the de4x5 configuration turned off and reboot.
  97.     5) insmod de4x5 [io=0xghh]
  98.     6) run the net startup bits for your new eth?? interface(s) manually 
  99.     (usually /etc/rc.inet[12] at boot time). 
  100.     7) enjoy!
  101.     To unload a module, turn off the associated interface(s) 
  102.     'ifconfig eth?? down' then 'rmmod de4x5'.
  103.     Automedia detection is included so that in  principal you can disconnect
  104.     from, e.g.  TP, reconnect  to BNC  and  things will still work  (after a
  105.     pause whilst the   driver figures out   where its media went).  My tests
  106.     using ping showed that it appears to work....
  107.     By  default,  the driver will  now   autodetect any  DECchip based card.
  108.     Should you have a need to restrict the driver to DIGITAL only cards, you
  109.     can compile with a  DEC_ONLY define, or if  loading as a module, use the
  110.     'dec_only=1'  parameter. 
  111.     I've changed the timing routines to  use the kernel timer and scheduling
  112.     functions  so that the  hangs  and other assorted problems that occurred
  113.     while autosensing the  media  should be gone.  A  bonus  for the DC21040
  114.     auto  media sense algorithm is  that it can now  use one that is more in
  115.     line with the  rest (the DC21040  chip doesn't  have a hardware  timer).
  116.     The downside is the 1 'jiffies' (10ms) resolution.
  117.     IEEE 802.3u MII interface code has  been added in anticipation that some
  118.     products may use it in the future.
  119.     The SMC9332 card  has a non-compliant SROM  which needs fixing -  I have
  120.     patched this  driver to detect it  because the SROM format used complies
  121.     to a previous DEC-STD format.
  122.     I have removed the buffer copies needed for receive on Intels.  I cannot
  123.     remove them for   Alphas since  the  Tulip hardware   only does longword
  124.     aligned  DMA transfers  and  the  Alphas get   alignment traps with  non
  125.     longword aligned data copies (which makes them really slow). No comment.
  126.     I  have added SROM decoding  routines to make this  driver work with any
  127.     card that  supports the Digital  Semiconductor SROM spec. This will help
  128.     all  cards running the dc2114x  series chips in particular.  Cards using
  129.     the dc2104x  chips should run correctly with  the basic  driver.  I'm in
  130.     debt to <mjacob@feral.com> for the  testing and feedback that helped get
  131.     this feature working.  So far we have  tested KINGSTON, SMC8432, SMC9332
  132.     (with the latest SROM complying  with the SROM spec  V3: their first was
  133.     broken), ZNYX342  and  LinkSys. ZYNX314 (dual  21041  MAC) and  ZNYX 315
  134.     (quad 21041 MAC)  cards also  appear  to work despite their  incorrectly
  135.     wired IRQs.
  136.     I have added a temporary fix for interrupt problems when some SCSI cards
  137.     share the same interrupt as the DECchip based  cards. The problem occurs
  138.     because  the SCSI card wants to  grab the interrupt  as a fast interrupt
  139.     (runs the   service routine with interrupts turned   off) vs.  this card
  140.     which really needs to run the service routine with interrupts turned on.
  141.     This driver will  now   add the interrupt service   routine  as  a  fast
  142.     interrupt if it   is bounced from the   slow interrupt.  THIS IS NOT   A
  143.     RECOMMENDED WAY TO RUN THE DRIVER  and has been done  for a limited time
  144.     until  people   sort  out their  compatibility    issues and the  kernel
  145.     interrupt  service code  is  fixed.   YOU  SHOULD SEPARATE OUT  THE FAST
  146.     INTERRUPT CARDS FROM THE SLOW INTERRUPT CARDS to ensure that they do not
  147.     run on the same interrupt. PCMCIA/CardBus is another can of worms...
  148.     Finally, I think  I have really  fixed  the module  loading problem with
  149.     more than one DECchip based  card.  As a  side effect, I don't mess with
  150.     the  device structure any  more which means that  if more than 1 card in
  151.     2.0.x is    installed (4  in   2.1.x),  the  user   will have   to  edit
  152.     linux/drivers/net/Space.c  to make room for  them. Hence, module loading
  153.     is  the preferred way to use   this driver, since  it  doesn't have this
  154.     limitation.
  155.     Where SROM media  detection is used and  full duplex is specified in the
  156.     SROM,  the feature is  ignored unless  lp->params.fdx  is set at compile
  157.     time  OR during  a   module load  (insmod  de4x5   args='eth??:fdx' [see
  158.     below]).  This is because there  is no way  to automatically detect full
  159.     duplex   links  except through   autonegotiation.    When I  include the
  160.     autonegotiation feature in  the SROM autoconf  code, this detection will
  161.     occur automatically for that case.
  162.     Command  line arguments are  now  allowed, similar  to passing arguments
  163.     through LILO. This will allow a per adapter board  set up of full duplex
  164.     and media. The only lexical constraints  are: the board name (dev->name)
  165.     appears in the list before its  parameters.  The list of parameters ends
  166.     either at the end of the parameter list or with another board name.  The
  167.     following parameters are allowed:
  168.             fdx        for full duplex
  169.     autosense  to set the media/speed; with the following 
  170.                sub-parameters:
  171.        TP, TP_NW, BNC, AUI, BNC_AUI, 100Mb, 10Mb, AUTO
  172.     Case sensitivity is important  for  the sub-parameters. They *must*   be
  173.     upper case. Examples:
  174.         insmod de4x5 args='eth1:fdx autosense=BNC eth0:autosense=100Mb'.
  175.     For a compiled in driver, at or above line 548, place e.g.
  176. #define DE4X5_PARM "eth0:fdx autosense=AUI eth2:autosense=TP"
  177.     Yes,  I know full duplex isn't  permissible on BNC  or AUI; they're just
  178.     examples. By default, full duplex is turned off and  AUTO is the default
  179.     autosense setting.  In reality, I expect only  the full duplex option to
  180.     be used. Note the use of single quotes in the two examples above and the
  181.     lack of commas to separate items. ALSO, you must get the requested media
  182.     correct in relation to what the adapter SROM says it has. There's no way
  183.     to  determine this in  advance other than by  trial and error and common
  184.     sense, e.g. call a BNC connectored port 'BNC', not '10Mb'.
  185.     Changed the bus probing.  EISA used to be  done first,  followed by PCI.
  186.     Most people probably don't even know  what a de425 is today and the EISA
  187.     probe has messed  up some SCSI cards  in the past,  so now PCI is always
  188.     probed  first  followed by  EISA if  a) the architecture allows EISA and
  189.     either  b) there have been no PCI cards detected or  c) an EISA probe is
  190.     forced by  the user.  To force  a probe  include  "force_eisa"  in  your
  191.     insmod "args" line;  for built-in kernels either change the driver to do
  192.     this  automatically  or include  #define DE4X5_FORCE_EISA  on or  before
  193.     line 1040 in the driver.
  194.     TO DO: 
  195.     ------
  196.     Revision History
  197.     ----------------
  198.     Version   Date        Description
  199.   
  200.       0.1     17-Nov-94   Initial writing. ALPHA code release.
  201.       0.2     13-Jan-95   Added PCI support for DE435's.
  202.       0.21    19-Jan-95   Added auto media detection.
  203.       0.22    10-Feb-95   Fix interrupt handler call <chris@cosy.sbg.ac.at>.
  204.                           Fix recognition bug reported by <bkm@star.rl.ac.uk>.
  205.   Add request/release_region code.
  206.   Add loadable modules support for PCI.
  207.   Clean up loadable modules support.
  208.       0.23    28-Feb-95   Added DC21041 and DC21140 support. 
  209.                           Fix missed frame counter value and initialisation.
  210.   Fixed EISA probe.
  211.       0.24    11-Apr-95   Change delay routine to use <linux/udelay>.
  212.                           Change TX_BUFFS_AVAIL macro.
  213.   Change media autodetection to allow manual setting.
  214.   Completed DE500 (DC21140) support.
  215.       0.241   18-Apr-95   Interim release without DE500 Autosense Algorithm.
  216.       0.242   10-May-95   Minor changes.
  217.       0.30    12-Jun-95   Timer fix for DC21140.
  218.                           Portability changes.
  219.   Add ALPHA changes from <jestabro@ant.tay1.dec.com>.
  220.   Add DE500 semi automatic autosense.
  221.   Add Link Fail interrupt TP failure detection.
  222.   Add timer based link change detection.
  223.   Plugged a memory leak in de4x5_queue_pkt().
  224.       0.31    13-Jun-95   Fixed PCI stuff for 1.3.1.
  225.       0.32    26-Jun-95   Added verify_area() calls in de4x5_ioctl() from a
  226.                           suggestion by <heiko@colossus.escape.de>.
  227.       0.33     8-Aug-95   Add shared interrupt support (not released yet).
  228.       0.331   21-Aug-95   Fix de4x5_open() with fast CPUs.
  229.                           Fix de4x5_interrupt().
  230.                           Fix dc21140_autoconf() mess.
  231.   No shared interrupt support.
  232.       0.332   11-Sep-95   Added MII management interface routines.
  233.       0.40     5-Mar-96   Fix setup frame timeout <maartenb@hpkuipc.cern.ch>.
  234.                           Add kernel timer code (h/w is too flaky).
  235.   Add MII based PHY autosense.
  236.   Add new multicasting code.
  237.   Add new autosense algorithms for media/mode 
  238.   selection using kernel scheduling/timing.
  239.   Re-formatted.
  240.   Made changes suggested by <jeff@router.patch.net>:
  241.     Change driver to detect all DECchip based cards
  242.     with DEC_ONLY restriction a special case.
  243.     Changed driver to autoprobe as a module. No irq
  244.     checking is done now - assume BIOS is good!
  245.   Added SMC9332 detection <manabe@Roy.dsl.tutics.ac.jp>
  246.       0.41    21-Mar-96   Don't check for get_hw_addr checksum unless DEC card
  247.                           only <niles@axp745gsfc.nasa.gov>
  248.   Fix for multiple PCI cards reported by <jos@xos.nl>
  249.   Duh, put the SA_SHIRQ flag into request_interrupt().
  250.   Fix SMC ethernet address in enet_det[].
  251.   Print chip name instead of "UNKNOWN" during boot.
  252.       0.42    26-Apr-96   Fix MII write TA bit error.
  253.                           Fix bug in dc21040 and dc21041 autosense code.
  254.   Remove buffer copies on receive for Intels.
  255.   Change sk_buff handling during media disconnects to
  256.    eliminate DUP packets.
  257.   Add dynamic TX thresholding.
  258.   Change all chips to use perfect multicast filtering.
  259.   Fix alloc_device() bug <jari@markkus2.fimr.fi>
  260.       0.43   21-Jun-96    Fix unconnected media TX retry bug.
  261.                           Add Accton to the list of broken cards.
  262.   Fix TX under-run bug for non DC21140 chips.
  263.   Fix boot command probe bug in alloc_device() as
  264.    reported by <koen.gadeyne@barco.com> and 
  265.    <orava@nether.tky.hut.fi>.
  266.   Add cache locks to prevent a race condition as
  267.    reported by <csd@microplex.com> and 
  268.    <baba@beckman.uiuc.edu>.
  269.   Upgraded alloc_device() code.
  270.       0.431  28-Jun-96    Fix potential bug in queue_pkt() from discussion
  271.                           with <csd@microplex.com>
  272.       0.44   13-Aug-96    Fix RX overflow bug in 2114[023] chips.
  273.                           Fix EISA probe bugs reported by <os2@kpi.kharkov.ua>
  274.   and <michael@compurex.com>.
  275.       0.441   9-Sep-96    Change dc21041_autoconf() to probe quiet BNC media
  276.                            with a loopback packet.
  277.       0.442   9-Sep-96    Include AUI in dc21041 media printout. Bug reported
  278.                            by <bhat@mundook.cs.mu.OZ.AU>
  279.       0.45    8-Dec-96    Include endian functions for PPC use, from work 
  280.                            by <cort@cs.nmt.edu> and <g.thomas@opengroup.org>.
  281.       0.451  28-Dec-96    Added fix to allow autoprobe for modules after
  282.                            suggestion from <mjacob@feral.com>.
  283.       0.5    30-Jan-97    Added SROM decoding functions.
  284.                           Updated debug flags.
  285.   Fix sleep/wakeup calls for PCI cards, bug reported
  286.    by <cross@gweep.lkg.dec.com>.
  287.   Added multi-MAC, one SROM feature from discussion
  288.    with <mjacob@feral.com>.
  289.   Added full module autoprobe capability.
  290.   Added attempt to use an SMC9332 with broken SROM.
  291.   Added fix for ZYNX multi-mac cards that didn't
  292.    get their IRQs wired correctly.
  293.       0.51   13-Feb-97    Added endian fixes for the SROM accesses from
  294.    <paubert@iram.es>
  295.   Fix init_connection() to remove extra device reset.
  296.   Fix MAC/PHY reset ordering in dc21140m_autoconf().
  297.   Fix initialisation problem with lp->timeout in
  298.    typeX_infoblock() from <paubert@iram.es>.
  299.   Fix MII PHY reset problem from work done by
  300.    <paubert@iram.es>.
  301.       0.52   26-Apr-97    Some changes may not credit the right people -
  302.                            a disk crash meant I lost some mail.
  303.   Change RX interrupt routine to drop rather than 
  304.    defer packets to avoid hang reported by 
  305.    <g.thomas@opengroup.org>.
  306.   Fix srom_exec() to return for COMPACT and type 1
  307.    infoblocks.
  308.   Added DC21142 and DC21143 functions.
  309.   Added byte counters from <phil@tazenda.demon.co.uk>
  310.   Added SA_INTERRUPT temporary fix from 
  311.    <mjacob@feral.com>.
  312.       0.53   12-Nov-97    Fix the *_probe() to include 'eth??' name during
  313.                            module load: bug reported by
  314.    <Piete.Brooks@cl.cam.ac.uk>
  315.   Fix multi-MAC, one SROM, to work with 2114x chips:
  316.    bug reported by <cmetz@inner.net>.
  317.   Make above search independent of BIOS device scan
  318.    direction.
  319.   Completed DC2114[23] autosense functions.
  320.       0.531  21-Dec-97    Fix DE500-XA 100Mb/s bug reported by 
  321.                            <robin@intercore.com
  322.   Fix type1_infoblock() bug introduced in 0.53, from
  323.    problem reports by 
  324.    <parmee@postecss.ncrfran.france.ncr.com> and
  325.    <jo@ice.dillingen.baynet.de>.
  326.   Added argument list to set up each board from either
  327.    a module's command line or a compiled in #define.
  328.   Added generic MII PHY functionality to deal with
  329.    newer PHY chips.
  330.   Fix the mess in 2.1.67.
  331.       0.532   5-Jan-98    Fix bug in mii_get_phy() reported by 
  332.                            <redhat@cococo.net>.
  333.                           Fix bug in pci_probe() for 64 bit systems reported
  334.    by <belliott@accessone.com>.
  335.       0.533   9-Jan-98    Fix more 64 bit bugs reported by <jal@cs.brown.edu>.
  336.       0.534  24-Jan-98    Fix last (?) endian bug from <geert@linux-m68k.org>
  337.       0.535  21-Feb-98    Fix Ethernet Address PROM reset bug for DC21040.
  338.       0.536  21-Mar-98    Change pci_probe() to use the pci_dev structure.
  339.   **Incompatible with 2.0.x from here.**
  340.       0.540   5-Jul-98    Atomicize assertion of dev->interrupt for SMP
  341.                            from <lma@varesearch.com>
  342.   Add TP, AUI and BNC cases to 21140m_autoconf() for
  343.    case where a 21140 under SROM control uses, e.g. AUI
  344.    from problem report by <delchini@lpnp09.in2p3.fr>
  345.   Add MII parallel detection to 2114x_autoconf() for
  346.    case where no autonegotiation partner exists from
  347.    problem report by <mlapsley@ndirect.co.uk>.
  348.   Add ability to force connection type directly even
  349.    when using SROM control from problem report by
  350.    <earl@exis.net>.
  351.   Updated the PCI interface to conform with the latest
  352.    version. I hope nothing is broken...
  353.              Add TX done interrupt modification from suggestion
  354.    by <Austin.Donnelly@cl.cam.ac.uk>.
  355.   Fix is_anc_capable() bug reported by 
  356.    <Austin.Donnelly@cl.cam.ac.uk>.
  357.   Fix type[13]_infoblock() bug: during MII search, PHY
  358.    lp->rst not run because lp->ibn not initialised -
  359.    from report & fix by <paubert@iram.es>.
  360.   Fix probe bug with EISA & PCI cards present from
  361.                            report by <eirik@netcom.com>.
  362.       0.541  24-Aug-98    Fix compiler problems associated with i386-string
  363.                            ops from multiple bug reports and temporary fix
  364.    from <paubert@iram.es>.
  365.   Fix pci_probe() to correctly emulate the old
  366.    pcibios_find_class() function.
  367.   Add an_exception() for old ZYNX346 and fix compile
  368.    warning on PPC & SPARC, from <ecd@skynet.be>.
  369.   Fix lastPCI to correctly work with compiled in
  370.    kernels and modules from bug report by 
  371.    <Zlatko.Calusic@CARNet.hr> et al.
  372.       0.542  15-Sep-98    Fix dc2114x_autoconf() to stop multiple messages
  373.                            when media is unconnected.
  374.   Change dev->interrupt to lp->interrupt to ensure
  375.    alignment for Alpha's and avoid their unaligned
  376.    access traps. This flag is merely for log messages:
  377.    should do something more definitive though...
  378.       0.543  30-Dec-98    Add SMP spin locking.
  379.       0.544   8-May-99    Fix for buggy SROM in Motorola embedded boards using
  380.                            a 21143 by <mmporter@home.com>.
  381.   Change PCI/EISA bus probing order.
  382.       0.545  28-Nov-99    Further Moto SROM bug fix from 
  383.                            <mporter@eng.mcd.mot.com>
  384.                           Remove double checking for DEBUG_RX in de4x5_dbg_rx()
  385.    from report by <geert@linux-m68k.org>
  386.       0.546  22-Feb-01    Fixes Alpha XP1000 oops.  The srom_search function
  387.                            was causing a page fault when initializing the
  388.                            variable 'pb', on a non de4x5 PCI device, in this
  389.                            case a PCI bridge (DEC chip 21152). The value of
  390.                            'pb' is now only initialized if a de4x5 chip is
  391.                            present. 
  392.                            <france@handhelds.org>  
  393.       0.547  08-Nov-01    Use library crc32 functions by <Matt_Domsch@dell.com>
  394.     =========================================================================
  395. */
  396. static const char *version = "de4x5.c:V0.546 2001/02/22 davies@maniac.ultranet.comn";
  397. #include <linux/config.h>
  398. #include <linux/module.h>
  399. #include <linux/kernel.h>
  400. #include <linux/sched.h>
  401. #include <linux/string.h>
  402. #include <linux/interrupt.h>
  403. #include <linux/ptrace.h>
  404. #include <linux/errno.h>
  405. #include <linux/ioport.h>
  406. #include <linux/slab.h>
  407. #include <linux/pci.h>
  408. #include <linux/delay.h>
  409. #include <linux/init.h>
  410. #include <linux/version.h>
  411. #include <linux/spinlock.h>
  412. #include <linux/crc32.h>
  413. #include <asm/bitops.h>
  414. #include <asm/io.h>
  415. #include <asm/dma.h>
  416. #include <asm/byteorder.h>
  417. #include <asm/unaligned.h>
  418. #include <asm/uaccess.h>
  419. #ifdef CONFIG_PPC
  420. #include <asm/machdep.h>
  421. #endif /* CONFIG_PPC */
  422. #include <linux/netdevice.h>
  423. #include <linux/etherdevice.h>
  424. #include <linux/skbuff.h>
  425. #include <linux/time.h>
  426. #include <linux/types.h>
  427. #include <linux/unistd.h>
  428. #include <linux/ctype.h>
  429. #include "de4x5.h"
  430. #define c_char const char
  431. #define TWIDDLE(a) (u_short)le16_to_cpu(get_unaligned((u_short *)(a)))
  432. /*
  433. ** MII Information
  434. */
  435. struct phy_table {
  436.     int reset;              /* Hard reset required?                         */
  437.     int id;                 /* IEEE OUI                                     */
  438.     int ta;                 /* One cycle TA time - 802.3u is confusing here */
  439.     struct {                /* Non autonegotiation (parallel) speed det.    */
  440. int reg;
  441. int mask;
  442. int value;
  443.     } spd;
  444. };
  445. struct mii_phy {
  446.     int reset;              /* Hard reset required?                      */
  447.     int id;                 /* IEEE OUI                                  */
  448.     int ta;                 /* One cycle TA time                         */
  449.     struct {                /* Non autonegotiation (parallel) speed det. */
  450. int reg;
  451. int mask;
  452. int value;
  453.     } spd;
  454.     int addr;               /* MII address for the PHY                   */
  455.     u_char  *gep;           /* Start of GEP sequence block in SROM       */
  456.     u_char  *rst;           /* Start of reset sequence in SROM           */
  457.     u_int mc;               /* Media Capabilities                        */
  458.     u_int ana;              /* NWay Advertisement                        */
  459.     u_int fdx;              /* Full DupleX capabilites for each media    */
  460.     u_int ttm;              /* Transmit Threshold Mode for each media    */
  461.     u_int mci;              /* 21142 MII Connector Interrupt info        */
  462. };
  463. #define DE4X5_MAX_PHY 8     /* Allow upto 8 attached PHY devices per board */
  464. struct sia_phy {
  465.     u_char mc;              /* Media Code                                */
  466.     u_char ext;             /* csr13-15 valid when set                   */
  467.     int csr13;              /* SIA Connectivity Register                 */
  468.     int csr14;              /* SIA TX/RX Register                        */
  469.     int csr15;              /* SIA General Register                      */
  470.     int gepc;               /* SIA GEP Control Information               */
  471.     int gep;                /* SIA GEP Data                              */
  472. };
  473. /*
  474. ** Define the know universe of PHY devices that can be
  475. ** recognised by this driver.
  476. */
  477. static struct phy_table phy_info[] = {
  478.     {0, NATIONAL_TX, 1, {0x19, 0x40, 0x00}},       /* National TX      */
  479.     {1, BROADCOM_T4, 1, {0x10, 0x02, 0x02}},       /* Broadcom T4      */
  480.     {0, SEEQ_T4    , 1, {0x12, 0x10, 0x10}},       /* SEEQ T4          */
  481.     {0, CYPRESS_T4 , 1, {0x05, 0x20, 0x20}},       /* Cypress T4       */
  482.     {0, 0x7810     , 1, {0x14, 0x0800, 0x0800}}    /* Level One LTX970 */
  483. };
  484. /*
  485. ** These GENERIC values assumes that the PHY devices follow 802.3u and
  486. ** allow parallel detection to set the link partner ability register.
  487. ** Detection of 100Base-TX [H/F Duplex] and 100Base-T4 is supported.
  488. */
  489. #define GENERIC_REG   0x05      /* Autoneg. Link Partner Advertisement Reg. */
  490. #define GENERIC_MASK  MII_ANLPA_100M /* All 100Mb/s Technologies            */
  491. #define GENERIC_VALUE MII_ANLPA_100M /* 100B-TX, 100B-TX FDX, 100B-T4       */
  492. /*
  493. ** Define special SROM detection cases
  494. */
  495. static c_char enet_det[][ETH_ALEN] = {
  496.     {0x00, 0x00, 0xc0, 0x00, 0x00, 0x00},
  497.     {0x00, 0x00, 0xe8, 0x00, 0x00, 0x00}
  498. };
  499. #define SMC    1
  500. #define ACCTON 2
  501. /*
  502. ** SROM Repair definitions. If a broken SROM is detected a card may
  503. ** use this information to help figure out what to do. This is a
  504. ** "stab in the dark" and so far for SMC9332's only.
  505. */
  506. static c_char srom_repair_info[][100] = {
  507.     {0x00,0x1e,0x00,0x00,0x00,0x08,             /* SMC9332 */
  508.      0x1f,0x01,0x8f,0x01,0x00,0x01,0x00,0x02,
  509.      0x01,0x00,0x00,0x78,0xe0,0x01,0x00,0x50,
  510.      0x00,0x18,}
  511. };
  512. #ifdef DE4X5_DEBUG
  513. static int de4x5_debug = DE4X5_DEBUG;
  514. #else
  515. /*static int de4x5_debug = (DEBUG_MII | DEBUG_SROM | DEBUG_PCICFG | DEBUG_MEDIA | DEBUG_VERSION);*/
  516. static int de4x5_debug = (DEBUG_MEDIA | DEBUG_VERSION);
  517. #endif
  518. /*
  519. ** Allow per adapter set up. For modules this is simply a command line
  520. ** parameter, e.g.: 
  521. ** insmod de4x5 args='eth1:fdx autosense=BNC eth0:autosense=100Mb'.
  522. **
  523. ** For a compiled in driver, place e.g.
  524. **     #define DE4X5_PARM "eth0:fdx autosense=AUI eth2:autosense=TP"
  525. ** here
  526. */
  527. #ifdef DE4X5_PARM
  528. static char *args = DE4X5_PARM;
  529. #else
  530. static char *args;
  531. #endif
  532. struct parameters {
  533.     int fdx;
  534.     int autosense;
  535. };
  536. #define DE4X5_AUTOSENSE_MS 250      /* msec autosense tick (DE500) */
  537. #define DE4X5_NDA 0xffe0            /* No Device (I/O) Address */
  538. /*
  539. ** Ethernet PROM defines
  540. */
  541. #define PROBE_LENGTH    32
  542. #define ETH_PROM_SIG    0xAA5500FFUL
  543. /*
  544. ** Ethernet Info
  545. */
  546. #define PKT_BUF_SZ 1536            /* Buffer size for each Tx/Rx buffer */
  547. #define IEEE802_3_SZ    1518            /* Packet + CRC */
  548. #define MAX_PKT_SZ    1514            /* Maximum ethernet packet length */
  549. #define MAX_DAT_SZ    1500            /* Maximum ethernet data length */
  550. #define MIN_DAT_SZ    1               /* Minimum ethernet data length */
  551. #define PKT_HDR_LEN     14              /* Addresses and data length info */
  552. #define FAKE_FRAME_LEN  (MAX_PKT_SZ + 1)
  553. #define QUEUE_PKT_TIMEOUT (3*HZ)        /* 3 second timeout */
  554. /*
  555. ** EISA bus defines
  556. */
  557. #define DE4X5_EISA_IO_PORTS   0x0c00    /* I/O port base address, slot 0 */
  558. #define DE4X5_EISA_TOTAL_SIZE 0x100     /* I/O address extent */
  559. #define MAX_EISA_SLOTS 16
  560. #define EISA_SLOT_INC 0x1000
  561. #define EISA_ALLOWED_IRQ_LIST  {5, 9, 10, 11}
  562. #define DE4X5_SIGNATURE {"DE425","DE434","DE435","DE450","DE500"}
  563. #define DE4X5_NAME_LENGTH 8
  564. /*
  565. ** Ethernet PROM defines for DC21040
  566. */
  567. #define PROBE_LENGTH    32
  568. #define ETH_PROM_SIG    0xAA5500FFUL
  569. /*
  570. ** PCI Bus defines
  571. */
  572. #define PCI_MAX_BUS_NUM      8
  573. #define DE4X5_PCI_TOTAL_SIZE 0x80       /* I/O address extent */
  574. #define DE4X5_CLASS_CODE     0x00020000 /* Network controller, Ethernet */
  575. #define NO_MORE_PCI          -2         /* PCI bus search all done */
  576. /*
  577. ** Memory Alignment. Each descriptor is 4 longwords long. To force a
  578. ** particular alignment on the TX descriptor, adjust DESC_SKIP_LEN and
  579. ** DESC_ALIGN. ALIGN aligns the start address of the private memory area
  580. ** and hence the RX descriptor ring's first entry. 
  581. */
  582. #define DE4X5_ALIGN4      ((u_long)4 - 1)     /* 1 longword align */
  583. #define DE4X5_ALIGN8      ((u_long)8 - 1)     /* 2 longword align */
  584. #define DE4X5_ALIGN16     ((u_long)16 - 1)    /* 4 longword align */
  585. #define DE4X5_ALIGN32     ((u_long)32 - 1)    /* 8 longword align */
  586. #define DE4X5_ALIGN64     ((u_long)64 - 1)    /* 16 longword align */
  587. #define DE4X5_ALIGN128    ((u_long)128 - 1)   /* 32 longword align */
  588. #define DE4X5_ALIGN         DE4X5_ALIGN32           /* Keep the DC21040 happy... */
  589. #define DE4X5_CACHE_ALIGN   CAL_16LONG
  590. #define DESC_SKIP_LEN DSL_0             /* Must agree with DESC_ALIGN */
  591. /*#define DESC_ALIGN    u32 dummy[4];  / * Must agree with DESC_SKIP_LEN */
  592. #define DESC_ALIGN
  593. #ifndef DEC_ONLY                        /* See README.de4x5 for using this */
  594. static int dec_only;
  595. #else
  596. static int dec_only = 1;
  597. #endif
  598. /*
  599. ** DE4X5 IRQ ENABLE/DISABLE
  600. */
  601. #define ENABLE_IRQs { 
  602.     imr |= lp->irq_en;
  603.     outl(imr, DE4X5_IMR);               /* Enable the IRQs */
  604. }
  605. #define DISABLE_IRQs {
  606.     imr = inl(DE4X5_IMR);
  607.     imr &= ~lp->irq_en;
  608.     outl(imr, DE4X5_IMR);               /* Disable the IRQs */
  609. }
  610. #define UNMASK_IRQs {
  611.     imr |= lp->irq_mask;
  612.     outl(imr, DE4X5_IMR);               /* Unmask the IRQs */
  613. }
  614. #define MASK_IRQs {
  615.     imr = inl(DE4X5_IMR);
  616.     imr &= ~lp->irq_mask;
  617.     outl(imr, DE4X5_IMR);               /* Mask the IRQs */
  618. }
  619. /*
  620. ** DE4X5 START/STOP
  621. */
  622. #define START_DE4X5 {
  623.     omr = inl(DE4X5_OMR);
  624.     omr |= OMR_ST | OMR_SR;
  625.     outl(omr, DE4X5_OMR);               /* Enable the TX and/or RX */
  626. }
  627. #define STOP_DE4X5 {
  628.     omr = inl(DE4X5_OMR);
  629.     omr &= ~(OMR_ST|OMR_SR);
  630.     outl(omr, DE4X5_OMR);               /* Disable the TX and/or RX */ 
  631. }
  632. /*
  633. ** DE4X5 SIA RESET
  634. */
  635. #define RESET_SIA outl(0, DE4X5_SICR);  /* Reset SIA connectivity regs */
  636. /*
  637. ** DE500 AUTOSENSE TIMER INTERVAL (MILLISECS)
  638. */
  639. #define DE4X5_AUTOSENSE_MS  250
  640. /*
  641. ** SROM Structure
  642. */
  643. struct de4x5_srom {
  644.     char sub_vendor_id[2];
  645.     char sub_system_id[2];
  646.     char reserved[12];
  647.     char id_block_crc;
  648.     char reserved2;
  649.     char version;
  650.     char num_controllers;
  651.     char ieee_addr[6];
  652.     char info[100];
  653.     short chksum;
  654. };
  655. #define SUB_VENDOR_ID 0x500a
  656. /*
  657. ** DE4X5 Descriptors. Make sure that all the RX buffers are contiguous
  658. ** and have sizes of both a power of 2 and a multiple of 4.
  659. ** A size of 256 bytes for each buffer could be chosen because over 90% of
  660. ** all packets in our network are <256 bytes long and 64 longword alignment
  661. ** is possible. 1536 showed better 'ttcp' performance. Take your pick. 32 TX
  662. ** descriptors are needed for machines with an ALPHA CPU.
  663. */
  664. #define NUM_RX_DESC 8                   /* Number of RX descriptors   */
  665. #define NUM_TX_DESC 32                  /* Number of TX descriptors   */
  666. #define RX_BUFF_SZ  1536                /* Power of 2 for kmalloc and */
  667.                                         /* Multiple of 4 for DC21040  */
  668.                                         /* Allows 512 byte alignment  */
  669. struct de4x5_desc {
  670.     volatile s32 status;
  671.     u32 des1;
  672.     u32 buf;
  673.     u32 next;
  674.     DESC_ALIGN
  675. };
  676. /*
  677. ** The DE4X5 private structure
  678. */
  679. #define DE4X5_PKT_STAT_SZ 16
  680. #define DE4X5_PKT_BIN_SZ  128            /* Should be >=100 unless you
  681.                                             increase DE4X5_PKT_STAT_SZ */
  682. struct pkt_stats {
  683. u_int bins[DE4X5_PKT_STAT_SZ];      /* Private stats counters       */
  684. u_int unicast;
  685. u_int multicast;
  686. u_int broadcast;
  687. u_int excessive_collisions;
  688. u_int tx_underruns;
  689. u_int excessive_underruns;
  690. u_int rx_runt_frames;
  691. u_int rx_collision;
  692. u_int rx_dribble;
  693. u_int rx_overflow;
  694. };
  695. struct de4x5_private {
  696.     char adapter_name[80];                  /* Adapter name                 */
  697.     u_long interrupt;                       /* Aligned ISR flag             */
  698.     struct de4x5_desc *rx_ring;     /* RX descriptor ring           */
  699.     struct de4x5_desc *tx_ring;     /* TX descriptor ring           */
  700.     struct sk_buff *tx_skb[NUM_TX_DESC];    /* TX skb for freeing when sent */
  701.     struct sk_buff *rx_skb[NUM_RX_DESC];    /* RX skb's                     */
  702.     int rx_new, rx_old;                     /* RX descriptor ring pointers  */
  703.     int tx_new, tx_old;                     /* TX descriptor ring pointers  */
  704.     char setup_frame[SETUP_FRAME_LEN];      /* Holds MCA and PA info.       */
  705.     char frame[64];                         /* Min sized packet for loopback*/
  706.     spinlock_t lock;                        /* Adapter specific spinlock    */
  707.     struct net_device_stats stats;          /* Public stats                 */
  708.     struct pkt_stats pktStats;             /* Private stats counters     */
  709.     char rxRingSize;
  710.     char txRingSize;
  711.     int  bus;                               /* EISA or PCI                  */
  712.     int  bus_num;                           /* PCI Bus number               */
  713.     int  device;                            /* Device number on PCI bus     */
  714.     int  state;                             /* Adapter OPENED or CLOSED     */
  715.     int  chipset;                           /* DC21040, DC21041 or DC21140  */
  716.     s32  irq_mask;                          /* Interrupt Mask (Enable) bits */
  717.     s32  irq_en;                            /* Summary interrupt bits       */
  718.     int  media;                             /* Media (eg TP), mode (eg 100B)*/
  719.     int  c_media;                           /* Remember the last media conn */
  720.     int  fdx;                               /* media full duplex flag       */
  721.     int  linkOK;                            /* Link is OK                   */
  722.     int  autosense;                         /* Allow/disallow autosensing   */
  723.     int  tx_enable;                         /* Enable descriptor polling    */
  724.     int  setup_f;                           /* Setup frame filtering type   */
  725.     int  local_state;                       /* State within a 'media' state */
  726.     struct mii_phy phy[DE4X5_MAX_PHY];      /* List of attached PHY devices */
  727.     struct sia_phy sia;                     /* SIA PHY Information          */
  728.     int  active;                            /* Index to active PHY device   */
  729.     int  mii_cnt;                           /* Number of attached PHY's     */
  730.     int  timeout;                           /* Scheduling counter           */
  731.     struct timer_list timer;                /* Timer info for kernel        */
  732.     int tmp;                                /* Temporary global per card    */
  733.     struct {
  734. void *priv;                         /* Original kmalloc'd mem addr  */
  735. u_long lock;                        /* Lock the cache accesses      */
  736. s32 csr0;                           /* Saved Bus Mode Register      */
  737. s32 csr6;                           /* Saved Operating Mode Reg.    */
  738. s32 csr7;                           /* Saved IRQ Mask Register      */
  739. s32 gep;                            /* Saved General Purpose Reg.   */
  740. s32 gepc;                           /* Control info for GEP         */
  741. s32 csr13;                          /* Saved SIA Connectivity Reg.  */
  742. s32 csr14;                          /* Saved SIA TX/RX Register     */
  743. s32 csr15;                          /* Saved SIA General Register   */
  744. int save_cnt;                       /* Flag if state already saved  */
  745. struct sk_buff *skb;                /* Save the (re-ordered) skb's  */
  746.     } cache;
  747.     struct de4x5_srom srom;                 /* A copy of the SROM           */
  748.     struct net_device *next_module;             /* Link to the next module      */
  749.     int rx_ovf;                             /* Check for 'RX overflow' tag  */
  750.     int useSROM;                            /* For non-DEC card use SROM    */
  751.     int useMII;                             /* Infoblock using the MII      */
  752.     int asBitValid;                         /* Autosense bits in GEP?       */
  753.     int asPolarity;                         /* 0 => asserted high           */
  754.     int asBit;                              /* Autosense bit number in GEP  */
  755.     int defMedium;                          /* SROM default medium          */
  756.     int tcount;                             /* Last infoblock number        */
  757.     int infoblock_init;                     /* Initialised this infoblock?  */
  758.     int infoleaf_offset;                    /* SROM infoleaf for controller */
  759.     s32 infoblock_csr6;                     /* csr6 value in SROM infoblock */
  760.     int infoblock_media;                    /* infoblock media              */
  761.     int (*infoleaf_fn)(struct net_device *);    /* Pointer to infoleaf function */
  762.     u_char *rst;                            /* Pointer to Type 5 reset info */
  763.     u_char  ibn;                            /* Infoblock number             */
  764.     struct parameters params;               /* Command line/ #defined params */
  765.     struct pci_dev *pdev;     /* Device cookie for DMA alloc  */
  766.     dma_addr_t dma_rings;     /* DMA handle for rings     */
  767.     int dma_size;     /* Size of the DMA area     */
  768.     char *rx_bufs;     /* rx bufs on alpha, sparc, ... */
  769. };
  770. /*
  771. ** Kludge to get around the fact that the CSR addresses have different
  772. ** offsets in the PCI and EISA boards. Also note that the ethernet address
  773. ** PROM is accessed differently.
  774. */
  775. static struct de4x5_bus_type {
  776.     int bus;
  777.     int bus_num;
  778.     int device;
  779.     int chipset;
  780.     struct de4x5_srom srom;
  781.     int autosense;
  782.     int useSROM;
  783. } bus;
  784. /*
  785. ** To get around certain poxy cards that don't provide an SROM
  786. ** for the second and more DECchip, I have to key off the first
  787. ** chip's address. I'll assume there's not a bad SROM iff:
  788. **
  789. **      o the chipset is the same
  790. **      o the bus number is the same and > 0
  791. **      o the sum of all the returned hw address bytes is 0 or 0x5fa
  792. **
  793. ** Also have to save the irq for those cards whose hardware designers
  794. ** can't follow the PCI to PCI Bridge Architecture spec.
  795. */
  796. static struct {
  797.     int chipset;
  798.     int bus;
  799.     int irq;
  800.     u_char addr[ETH_ALEN];
  801. } last = {0,};
  802. /*
  803. ** The transmit ring full condition is described by the tx_old and tx_new
  804. ** pointers by:
  805. **    tx_old            = tx_new    Empty ring
  806. **    tx_old            = tx_new+1  Full ring
  807. **    tx_old+txRingSize = tx_new+1  Full ring  (wrapped condition)
  808. */
  809. #define TX_BUFFS_AVAIL ((lp->tx_old<=lp->tx_new)?
  810. lp->tx_old+lp->txRingSize-lp->tx_new-1:
  811. lp->tx_old               -lp->tx_new-1)
  812. #define TX_PKT_PENDING (lp->tx_old != lp->tx_new)
  813. /*
  814. ** Public Functions
  815. */
  816. static int     de4x5_open(struct net_device *dev);
  817. static int     de4x5_queue_pkt(struct sk_buff *skb, struct net_device *dev);
  818. static void    de4x5_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  819. static int     de4x5_close(struct net_device *dev);
  820. static struct  net_device_stats *de4x5_get_stats(struct net_device *dev);
  821. static void    de4x5_local_stats(struct net_device *dev, char *buf, int pkt_len);
  822. static void    set_multicast_list(struct net_device *dev);
  823. static int     de4x5_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  824. /*
  825. ** Private functions
  826. */
  827. static int     de4x5_hw_init(struct net_device *dev, u_long iobase, struct pci_dev *pdev);
  828. static int     de4x5_init(struct net_device *dev);
  829. static int     de4x5_sw_reset(struct net_device *dev);
  830. static int     de4x5_rx(struct net_device *dev);
  831. static int     de4x5_tx(struct net_device *dev);
  832. static int     de4x5_ast(struct net_device *dev);
  833. static int     de4x5_txur(struct net_device *dev);
  834. static int     de4x5_rx_ovfc(struct net_device *dev);
  835. static int     autoconf_media(struct net_device *dev);
  836. static void    create_packet(struct net_device *dev, char *frame, int len);
  837. static void    load_packet(struct net_device *dev, char *buf, u32 flags, struct sk_buff *skb);
  838. static int     dc21040_autoconf(struct net_device *dev);
  839. static int     dc21041_autoconf(struct net_device *dev);
  840. static int     dc21140m_autoconf(struct net_device *dev);
  841. static int     dc2114x_autoconf(struct net_device *dev);
  842. static int     srom_autoconf(struct net_device *dev);
  843. static int     de4x5_suspect_state(struct net_device *dev, int timeout, int prev_state, int (*fn)(struct net_device *, int), int (*asfn)(struct net_device *));
  844. static int     dc21040_state(struct net_device *dev, int csr13, int csr14, int csr15, int timeout, int next_state, int suspect_state, int (*fn)(struct net_device *, int));
  845. static int     test_media(struct net_device *dev, s32 irqs, s32 irq_mask, s32 csr13, s32 csr14, s32 csr15, s32 msec);
  846. static int     test_for_100Mb(struct net_device *dev, int msec);
  847. static int     wait_for_link(struct net_device *dev);
  848. static int     test_mii_reg(struct net_device *dev, int reg, int mask, int pol, long msec);
  849. static int     is_spd_100(struct net_device *dev);
  850. static int     is_100_up(struct net_device *dev);
  851. static int     is_10_up(struct net_device *dev);
  852. static int     is_anc_capable(struct net_device *dev);
  853. static int     ping_media(struct net_device *dev, int msec);
  854. static struct sk_buff *de4x5_alloc_rx_buff(struct net_device *dev, int index, int len);
  855. static void    de4x5_free_rx_buffs(struct net_device *dev);
  856. static void    de4x5_free_tx_buffs(struct net_device *dev);
  857. static void    de4x5_save_skbs(struct net_device *dev);
  858. static void    de4x5_rst_desc_ring(struct net_device *dev);
  859. static void    de4x5_cache_state(struct net_device *dev, int flag);
  860. static void    de4x5_put_cache(struct net_device *dev, struct sk_buff *skb);
  861. static void    de4x5_putb_cache(struct net_device *dev, struct sk_buff *skb);
  862. static struct  sk_buff *de4x5_get_cache(struct net_device *dev);
  863. static void    de4x5_setup_intr(struct net_device *dev);
  864. static void    de4x5_init_connection(struct net_device *dev);
  865. static int     de4x5_reset_phy(struct net_device *dev);
  866. static void    reset_init_sia(struct net_device *dev, s32 sicr, s32 strr, s32 sigr);
  867. static int     test_ans(struct net_device *dev, s32 irqs, s32 irq_mask, s32 msec);
  868. static int     test_tp(struct net_device *dev, s32 msec);
  869. static int     EISA_signature(char *name, s32 eisa_id);
  870. static int     PCI_signature(char *name, struct de4x5_bus_type *lp);
  871. static void    DevicePresent(u_long iobase);
  872. static void    enet_addr_rst(u_long aprom_addr);
  873. static int     de4x5_bad_srom(struct de4x5_bus_type *lp);
  874. static short   srom_rd(u_long address, u_char offset);
  875. static void    srom_latch(u_int command, u_long address);
  876. static void    srom_command(u_int command, u_long address);
  877. static void    srom_address(u_int command, u_long address, u_char offset);
  878. static short   srom_data(u_int command, u_long address);
  879. /*static void    srom_busy(u_int command, u_long address);*/
  880. static void    sendto_srom(u_int command, u_long addr);
  881. static int     getfrom_srom(u_long addr);
  882. static int     srom_map_media(struct net_device *dev);
  883. static int     srom_infoleaf_info(struct net_device *dev);
  884. static void    srom_init(struct net_device *dev);
  885. static void    srom_exec(struct net_device *dev, u_char *p);
  886. static int     mii_rd(u_char phyreg, u_char phyaddr, u_long ioaddr);
  887. static void    mii_wr(int data, u_char phyreg, u_char phyaddr, u_long ioaddr);
  888. static int     mii_rdata(u_long ioaddr);
  889. static void    mii_wdata(int data, int len, u_long ioaddr);
  890. static void    mii_ta(u_long rw, u_long ioaddr);
  891. static int     mii_swap(int data, int len);
  892. static void    mii_address(u_char addr, u_long ioaddr);
  893. static void    sendto_mii(u32 command, int data, u_long ioaddr);
  894. static int     getfrom_mii(u32 command, u_long ioaddr);
  895. static int     mii_get_oui(u_char phyaddr, u_long ioaddr);
  896. static int     mii_get_phy(struct net_device *dev);
  897. static void    SetMulticastFilter(struct net_device *dev);
  898. static int     get_hw_addr(struct net_device *dev);
  899. static void    srom_repair(struct net_device *dev, int card);
  900. static int     test_bad_enet(struct net_device *dev, int status);
  901. static int     an_exception(struct de4x5_bus_type *lp);
  902. #if !defined(__sparc_v9__) && !defined(__powerpc__) && !defined(__alpha__)
  903. static void    eisa_probe(struct net_device *dev, u_long iobase);
  904. #endif
  905. static void    pci_probe(struct net_device *dev, u_long iobase);
  906. static void    srom_search(struct pci_dev *pdev);
  907. static char    *build_setup_frame(struct net_device *dev, int mode);
  908. static void    disable_ast(struct net_device *dev);
  909. static void    enable_ast(struct net_device *dev, u32 time_out);
  910. static long    de4x5_switch_mac_port(struct net_device *dev);
  911. static int     gep_rd(struct net_device *dev);
  912. static void    gep_wr(s32 data, struct net_device *dev);
  913. static void    timeout(struct net_device *dev, void (*fn)(u_long data), u_long data, u_long msec);
  914. static void    yawn(struct net_device *dev, int state);
  915. static void    link_modules(struct net_device *dev, struct net_device *tmp);
  916. static void    de4x5_parse_params(struct net_device *dev);
  917. static void    de4x5_dbg_open(struct net_device *dev);
  918. static void    de4x5_dbg_mii(struct net_device *dev, int k);
  919. static void    de4x5_dbg_media(struct net_device *dev);
  920. static void    de4x5_dbg_srom(struct de4x5_srom *p);
  921. static void    de4x5_dbg_rx(struct sk_buff *skb, int len);
  922. static int     de4x5_strncmp(char *a, char *b, int n);
  923. static int     dc21041_infoleaf(struct net_device *dev);
  924. static int     dc21140_infoleaf(struct net_device *dev);
  925. static int     dc21142_infoleaf(struct net_device *dev);
  926. static int     dc21143_infoleaf(struct net_device *dev);
  927. static int     type0_infoblock(struct net_device *dev, u_char count, u_char *p);
  928. static int     type1_infoblock(struct net_device *dev, u_char count, u_char *p);
  929. static int     type2_infoblock(struct net_device *dev, u_char count, u_char *p);
  930. static int     type3_infoblock(struct net_device *dev, u_char count, u_char *p);
  931. static int     type4_infoblock(struct net_device *dev, u_char count, u_char *p);
  932. static int     type5_infoblock(struct net_device *dev, u_char count, u_char *p);
  933. static int     compact_infoblock(struct net_device *dev, u_char count, u_char *p);
  934. #ifdef MODULE
  935. int  init_module(void);
  936. void cleanup_module(void);
  937. static struct net_device *unlink_modules(struct net_device *p);
  938. static struct net_device *insert_device(struct net_device *dev, u_long iobase,
  939.      int (*init)(struct net_device *));
  940. static int count_adapters(void);
  941. static int loading_module = 1;
  942. MODULE_PARM(de4x5_debug, "i");
  943. MODULE_PARM(dec_only, "i");
  944. MODULE_PARM(args, "s");
  945. MODULE_PARM_DESC(de4x5_debug, "de4x5 debug mask");
  946. MODULE_PARM_DESC(dec_only, "de4x5 probe only for Digital boards (0-1)");
  947. MODULE_PARM_DESC(args, "de4x5 full duplex and media type settings; see de4x5.c for details");
  948. MODULE_LICENSE("GPL");
  949. # else
  950. static int loading_module;
  951. #endif /* MODULE */
  952. static char name[DE4X5_NAME_LENGTH + 1];
  953. #if !defined(__sparc_v9__) && !defined(__powerpc__) && !defined(__alpha__)
  954. static u_char de4x5_irq[] = EISA_ALLOWED_IRQ_LIST;
  955. static int lastEISA;
  956. #  ifdef DE4X5_FORCE_EISA                 /* Force an EISA bus probe or not */
  957. static int forceEISA = 1;
  958. #  else
  959. static int forceEISA;
  960. #  endif
  961. #endif
  962. static int num_de4x5s;
  963. static int cfrv, useSROM;
  964. static int lastPCI = -1;
  965. static struct net_device *lastModule;
  966. static struct pci_dev *pdev;
  967. /*
  968. ** List the SROM infoleaf functions and chipsets
  969. */
  970. struct InfoLeaf {
  971.     int chipset;
  972.     int (*fn)(struct net_device *);
  973. };
  974. static struct InfoLeaf infoleaf_array[] = {
  975.     {DC21041, dc21041_infoleaf},
  976.     {DC21140, dc21140_infoleaf},
  977.     {DC21142, dc21142_infoleaf},
  978.     {DC21143, dc21143_infoleaf}
  979. };
  980. #define INFOLEAF_SIZE (sizeof(infoleaf_array)/(sizeof(int)+sizeof(int *)))
  981. /*
  982. ** List the SROM info block functions
  983. */
  984. static int (*dc_infoblock[])(struct net_device *dev, u_char, u_char *) = {
  985.     type0_infoblock,
  986.     type1_infoblock,
  987.     type2_infoblock,
  988.     type3_infoblock,
  989.     type4_infoblock,
  990.     type5_infoblock,
  991.     compact_infoblock
  992. };
  993. #define COMPACT (sizeof(dc_infoblock)/sizeof(int *) - 1)
  994. /*
  995. ** Miscellaneous defines...
  996. */
  997. #define RESET_DE4X5 {
  998.     int i;
  999.     i=inl(DE4X5_BMR);
  1000.     mdelay(1);
  1001.     outl(i | BMR_SWR, DE4X5_BMR);
  1002.     mdelay(1);
  1003.     outl(i, DE4X5_BMR);
  1004.     mdelay(1);
  1005.     for (i=0;i<5;i++) {inl(DE4X5_BMR); mdelay(1);}
  1006.     mdelay(1);
  1007. }
  1008. #define PHY_HARD_RESET {
  1009.     outl(GEP_HRST, DE4X5_GEP);           /* Hard RESET the PHY dev. */
  1010.     mdelay(1);                           /* Assert for 1ms */
  1011.     outl(0x00, DE4X5_GEP);
  1012.     mdelay(2);                           /* Wait for 2ms */
  1013. }
  1014. /*
  1015. ** Autoprobing in modules is allowed here. See the top of the file for
  1016. ** more info.
  1017. */
  1018. int __init 
  1019. de4x5_probe(struct net_device *dev)
  1020. {
  1021.     u_long iobase = dev->base_addr;
  1022.     pci_probe(dev, iobase);
  1023. #if !defined(__sparc_v9__) && !defined(__powerpc__) && !defined(__alpha__)
  1024.     if ((lastPCI == NO_MORE_PCI) && ((num_de4x5s == 0) || forceEISA)) {
  1025.         eisa_probe(dev, iobase);
  1026.     }
  1027. #endif
  1028.     
  1029.     return (dev->priv ? 0 : -ENODEV);
  1030. }
  1031. static int __init 
  1032. de4x5_hw_init(struct net_device *dev, u_long iobase, struct pci_dev *pdev)
  1033. {
  1034.     struct de4x5_bus_type *lp = &bus;
  1035.     int i, status=0;
  1036.     char *tmp;
  1037.     
  1038.     /* Ensure we're not sleeping */
  1039.     if (lp->bus == EISA) {
  1040. outb(WAKEUP, PCI_CFPM);
  1041.     } else {
  1042. pcibios_write_config_byte(lp->bus_num, lp->device << 3, 
  1043.   PCI_CFDA_PSM, WAKEUP);
  1044.     }
  1045.     mdelay(10);
  1046.     RESET_DE4X5;
  1047.     
  1048.     if ((inl(DE4X5_STS) & (STS_TS | STS_RS)) != 0) {
  1049. return -ENXIO;                       /* Hardware could not reset */
  1050.     }
  1051.     
  1052.     /* 
  1053.     ** Now find out what kind of DC21040/DC21041/DC21140 board we have.
  1054.     */
  1055.     useSROM = FALSE;
  1056.     if (lp->bus == PCI) {
  1057. PCI_signature(name, lp);
  1058.     } else {
  1059. EISA_signature(name, EISA_ID0);
  1060.     }
  1061.     
  1062.     if (*name == '') {                     /* Not found a board signature */
  1063. return -ENXIO;
  1064.     }
  1065.     
  1066.     dev->base_addr = iobase;
  1067.     if (lp->bus == EISA) {
  1068. printk("%s: %s at 0x%04lx (EISA slot %ld)", 
  1069.        dev->name, name, iobase, ((iobase>>12)&0x0f));
  1070.     } else {                                 /* PCI port address */
  1071. printk("%s: %s at 0x%04lx (PCI bus %d, device %d)", dev->name, name,
  1072.        iobase, lp->bus_num, lp->device);
  1073.     }
  1074.     
  1075.     printk(", h/w address ");
  1076.     status = get_hw_addr(dev);
  1077.     for (i = 0; i < ETH_ALEN - 1; i++) {     /* get the ethernet addr. */
  1078. printk("%2.2x:", dev->dev_addr[i]);
  1079.     }
  1080.     printk("%2.2x,n", dev->dev_addr[i]);
  1081.     
  1082.     if (status != 0) {
  1083. printk("      which has an Ethernet PROM CRC error.n");
  1084. return -ENXIO;
  1085.     } else {
  1086. struct de4x5_private *lp;
  1087. /* 
  1088. ** Reserve a section of kernel memory for the adapter
  1089. ** private area and the TX/RX descriptor rings.
  1090. */
  1091. dev->priv = (void *) kmalloc(sizeof(struct de4x5_private) + DE4X5_ALIGN, 
  1092.      GFP_KERNEL);
  1093. if (dev->priv == NULL) {
  1094.     return -ENOMEM;
  1095. }
  1096. /*
  1097. ** Align to a longword boundary
  1098. */
  1099. tmp = dev->priv;
  1100. dev->priv = (void *)(((u_long)dev->priv + DE4X5_ALIGN) & ~DE4X5_ALIGN);
  1101. lp = (struct de4x5_private *)dev->priv;
  1102. memset(dev->priv, 0, sizeof(struct de4x5_private));
  1103. lp->bus = bus.bus;
  1104. lp->bus_num = bus.bus_num;
  1105. lp->device = bus.device;
  1106. lp->chipset = bus.chipset;
  1107. lp->cache.priv = tmp;
  1108. lp->cache.gepc = GEP_INIT;
  1109. lp->asBit = GEP_SLNK;
  1110. lp->asPolarity = GEP_SLNK;
  1111. lp->asBitValid = TRUE;
  1112. lp->timeout = -1;
  1113. lp->useSROM = useSROM;
  1114. lp->pdev = pdev;
  1115. memcpy((char *)&lp->srom,(char *)&bus.srom,sizeof(struct de4x5_srom));
  1116. lp->lock = (spinlock_t) SPIN_LOCK_UNLOCKED;
  1117. de4x5_parse_params(dev);
  1118. /*
  1119. ** Choose correct autosensing in case someone messed up
  1120. */
  1121.         lp->autosense = lp->params.autosense;
  1122.         if (lp->chipset != DC21140) {
  1123.             if ((lp->chipset==DC21040) && (lp->params.autosense&TP_NW)) {
  1124.                 lp->params.autosense = TP;
  1125.             }
  1126.             if ((lp->chipset==DC21041) && (lp->params.autosense&BNC_AUI)) {
  1127.                 lp->params.autosense = BNC;
  1128.             }
  1129.         }
  1130. lp->fdx = lp->params.fdx;
  1131. sprintf(lp->adapter_name,"%s (%s)", name, dev->name);
  1132. lp->dma_size = (NUM_RX_DESC + NUM_TX_DESC) * sizeof(struct de4x5_desc);
  1133. #if defined(__alpha__) || defined(__powerpc__) || defined(__sparc_v9__) || defined(DE4X5_DO_MEMCPY)
  1134. lp->dma_size += RX_BUFF_SZ * NUM_RX_DESC + DE4X5_ALIGN;
  1135. #endif
  1136. lp->rx_ring = pci_alloc_consistent(pdev, lp->dma_size, &lp->dma_rings);
  1137. if (lp->rx_ring == NULL) {
  1138.     kfree(lp->cache.priv);
  1139.     lp->cache.priv = NULL;
  1140.     return -ENOMEM;
  1141. }
  1142. lp->tx_ring = lp->rx_ring + NUM_RX_DESC;
  1143.     
  1144. /*
  1145. ** Set up the RX descriptor ring (Intels)
  1146. ** Allocate contiguous receive buffers, long word aligned (Alphas) 
  1147. */
  1148. #if !defined(__alpha__) && !defined(__powerpc__) && !defined(__sparc_v9__) && !defined(DE4X5_DO_MEMCPY)
  1149. for (i=0; i<NUM_RX_DESC; i++) {
  1150.     lp->rx_ring[i].status = 0;
  1151.     lp->rx_ring[i].des1 = cpu_to_le32(RX_BUFF_SZ);
  1152.     lp->rx_ring[i].buf = 0;
  1153.     lp->rx_ring[i].next = 0;
  1154.     lp->rx_skb[i] = (struct sk_buff *) 1;     /* Dummy entry */
  1155. }
  1156. #else
  1157. {
  1158. dma_addr_t dma_rx_bufs;
  1159. dma_rx_bufs = lp->dma_rings + (NUM_RX_DESC + NUM_TX_DESC)
  1160.        * sizeof(struct de4x5_desc);
  1161. dma_rx_bufs = (dma_rx_bufs + DE4X5_ALIGN) & ~DE4X5_ALIGN;
  1162. lp->rx_bufs = (char *)(((long)(lp->rx_ring + NUM_RX_DESC
  1163.        + NUM_TX_DESC) + DE4X5_ALIGN) & ~DE4X5_ALIGN);
  1164. for (i=0; i<NUM_RX_DESC; i++) {
  1165.      lp->rx_ring[i].status = 0;
  1166.      lp->rx_ring[i].des1 = cpu_to_le32(RX_BUFF_SZ);
  1167.      lp->rx_ring[i].buf =
  1168. cpu_to_le32(dma_rx_bufs+i*RX_BUFF_SZ);
  1169.      lp->rx_ring[i].next = 0;
  1170.      lp->rx_skb[i] = (struct sk_buff *) 1; /* Dummy entry */
  1171. }
  1172. }
  1173. #endif
  1174. barrier();
  1175.     
  1176. request_region(iobase, (lp->bus == PCI ? DE4X5_PCI_TOTAL_SIZE :
  1177. DE4X5_EISA_TOTAL_SIZE), 
  1178.        lp->adapter_name);
  1179.     
  1180. lp->rxRingSize = NUM_RX_DESC;
  1181. lp->txRingSize = NUM_TX_DESC;
  1182.     
  1183. /* Write the end of list marker to the descriptor lists */
  1184. lp->rx_ring[lp->rxRingSize - 1].des1 |= cpu_to_le32(RD_RER);
  1185. lp->tx_ring[lp->txRingSize - 1].des1 |= cpu_to_le32(TD_TER);
  1186. /* Tell the adapter where the TX/RX rings are located. */
  1187. outl(lp->dma_rings, DE4X5_RRBA);
  1188. outl(lp->dma_rings + NUM_RX_DESC * sizeof(struct de4x5_desc),
  1189.      DE4X5_TRBA);
  1190.     
  1191. /* Initialise the IRQ mask and Enable/Disable */
  1192. lp->irq_mask = IMR_RIM | IMR_TIM | IMR_TUM | IMR_UNM;
  1193. lp->irq_en   = IMR_NIM | IMR_AIM;
  1194. /* Create a loopback packet frame for later media probing */
  1195. create_packet(dev, lp->frame, sizeof(lp->frame));
  1196. /* Check if the RX overflow bug needs testing for */
  1197. i = cfrv & 0x000000fe;
  1198. if ((lp->chipset == DC21140) && (i == 0x20)) {
  1199.     lp->rx_ovf = 1;
  1200. }
  1201. /* Initialise the SROM pointers if possible */
  1202. if (lp->useSROM) {
  1203.     lp->state = INITIALISED;
  1204.     if (srom_infoleaf_info(dev)) {
  1205. return -ENXIO;
  1206.     }
  1207.     srom_init(dev);
  1208. }
  1209. lp->state = CLOSED;
  1210. /*
  1211. ** Check for an MII interface
  1212. */
  1213. if ((lp->chipset != DC21040) && (lp->chipset != DC21041)) {
  1214.     mii_get_phy(dev);
  1215. }
  1216. #ifndef __sparc_v9__
  1217. printk("      and requires IRQ%d (provided by %s).n", dev->irq,
  1218. #else
  1219. printk("      and requires IRQ%x (provided by %s).n", dev->irq,
  1220. #endif
  1221.        ((lp->bus == PCI) ? "PCI BIOS" : "EISA CNFG"));
  1222.     }
  1223.     
  1224.     if (de4x5_debug & DEBUG_VERSION) {
  1225. printk(version);
  1226.     }
  1227.     
  1228.     /* The DE4X5-specific entries in the device structure. */
  1229.     dev->open = &de4x5_open;
  1230.     dev->hard_start_xmit = &de4x5_queue_pkt;
  1231.     dev->stop = &de4x5_close;
  1232.     dev->get_stats = &de4x5_get_stats;
  1233.     dev->set_multicast_list = &set_multicast_list;
  1234.     dev->do_ioctl = &de4x5_ioctl;
  1235.     
  1236.     dev->mem_start = 0;
  1237.     
  1238.     /* Fill in the generic fields of the device structure. */
  1239.     ether_setup(dev);
  1240.     
  1241.     /* Let the adapter sleep to save power */
  1242.     yawn(dev, SLEEP);
  1243.     
  1244.     return status;
  1245. }
  1246. static int
  1247. de4x5_open(struct net_device *dev)
  1248. {
  1249.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1250.     u_long iobase = dev->base_addr;
  1251.     int i, status = 0;
  1252.     s32 omr;
  1253.     /* Allocate the RX buffers */
  1254.     for (i=0; i<lp->rxRingSize; i++) {
  1255. if (de4x5_alloc_rx_buff(dev, i, 0) == NULL) {
  1256.     de4x5_free_rx_buffs(dev);
  1257.     return -EAGAIN;
  1258. }
  1259.     }
  1260.     /*
  1261.     ** Wake up the adapter
  1262.     */
  1263.     yawn(dev, WAKEUP);
  1264.     /* 
  1265.     ** Re-initialize the DE4X5... 
  1266.     */
  1267.     status = de4x5_init(dev);
  1268.     lp->lock = (spinlock_t) SPIN_LOCK_UNLOCKED;
  1269.     lp->state = OPEN;
  1270.     de4x5_dbg_open(dev);
  1271.     
  1272.     if (request_irq(dev->irq, (void *)de4x5_interrupt, SA_SHIRQ, 
  1273.                                      lp->adapter_name, dev)) {
  1274. printk("de4x5_open(): Requested IRQ%d is busy - attemping FAST/SHARE...", dev->irq);
  1275. if (request_irq(dev->irq, de4x5_interrupt, SA_INTERRUPT | SA_SHIRQ,
  1276.                              lp->adapter_name, dev)) {
  1277.     printk("n              Cannot get IRQ- reconfigure your hardware.n");
  1278.     disable_ast(dev);
  1279.     de4x5_free_rx_buffs(dev);
  1280.     de4x5_free_tx_buffs(dev);
  1281.     yawn(dev, SLEEP);
  1282.     lp->state = CLOSED;
  1283.     return -EAGAIN;
  1284. } else {
  1285.     printk("n              Succeeded, but you should reconfigure your hardware to avoid this.n");
  1286.     printk("WARNING: there may be IRQ related problems in heavily loaded systems.n");
  1287. }
  1288.     }
  1289.     lp->interrupt = UNMASK_INTERRUPTS;
  1290.     dev->trans_start = jiffies;
  1291.     
  1292.     START_DE4X5;
  1293.     de4x5_setup_intr(dev);
  1294.     
  1295.     if (de4x5_debug & DEBUG_OPEN) {
  1296. printk("tsts:  0x%08xn", inl(DE4X5_STS));
  1297. printk("tbmr:  0x%08xn", inl(DE4X5_BMR));
  1298. printk("timr:  0x%08xn", inl(DE4X5_IMR));
  1299. printk("tomr:  0x%08xn", inl(DE4X5_OMR));
  1300. printk("tsisr: 0x%08xn", inl(DE4X5_SISR));
  1301. printk("tsicr: 0x%08xn", inl(DE4X5_SICR));
  1302. printk("tstrr: 0x%08xn", inl(DE4X5_STRR));
  1303. printk("tsigr: 0x%08xn", inl(DE4X5_SIGR));
  1304.     }
  1305.     
  1306.     MOD_INC_USE_COUNT;
  1307.     
  1308.     return status;
  1309. }
  1310. /*
  1311. ** Initialize the DE4X5 operating conditions. NB: a chip problem with the
  1312. ** DC21140 requires using perfect filtering mode for that chip. Since I can't
  1313. ** see why I'd want > 14 multicast addresses, I have changed all chips to use
  1314. ** the perfect filtering mode. Keep the DMA burst length at 8: there seems
  1315. ** to be data corruption problems if it is larger (UDP errors seen from a
  1316. ** ttcp source).
  1317. */
  1318. static int
  1319. de4x5_init(struct net_device *dev)
  1320. {  
  1321.     /* Lock out other processes whilst setting up the hardware */
  1322.     netif_stop_queue(dev);
  1323.     
  1324.     de4x5_sw_reset(dev);
  1325.     
  1326.     /* Autoconfigure the connected port */
  1327.     autoconf_media(dev);
  1328.     
  1329.     return 0;
  1330. }
  1331. static int
  1332. de4x5_sw_reset(struct net_device *dev)
  1333. {
  1334.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1335.     u_long iobase = dev->base_addr;
  1336.     int i, j, status = 0;
  1337.     s32 bmr, omr;
  1338.     
  1339.     /* Select the MII or SRL port now and RESET the MAC */
  1340.     if (!lp->useSROM) {
  1341. if (lp->phy[lp->active].id != 0) {
  1342.     lp->infoblock_csr6 = OMR_SDP | OMR_PS | OMR_HBD;
  1343. } else {
  1344.     lp->infoblock_csr6 = OMR_SDP | OMR_TTM;
  1345. }
  1346. de4x5_switch_mac_port(dev);
  1347.     }
  1348.     /* 
  1349.     ** Set the programmable burst length to 8 longwords for all the DC21140
  1350.     ** Fasternet chips and 4 longwords for all others: DMA errors result
  1351.     ** without these values. Cache align 16 long.
  1352.     */
  1353.     bmr = (lp->chipset==DC21140 ? PBL_8 : PBL_4) | DESC_SKIP_LEN | DE4X5_CACHE_ALIGN;
  1354.     bmr |= ((lp->chipset & ~0x00ff)==DC2114x ? BMR_RML : 0);
  1355.     outl(bmr, DE4X5_BMR);
  1356.     omr = inl(DE4X5_OMR) & ~OMR_PR;             /* Turn off promiscuous mode */
  1357.     if (lp->chipset == DC21140) {
  1358. omr |= (OMR_SDP | OMR_SB);
  1359.     }
  1360.     lp->setup_f = PERFECT;
  1361.     outl(lp->dma_rings, DE4X5_RRBA);
  1362.     outl(lp->dma_rings + NUM_RX_DESC * sizeof(struct de4x5_desc),
  1363.  DE4X5_TRBA);
  1364.     
  1365.     lp->rx_new = lp->rx_old = 0;
  1366.     lp->tx_new = lp->tx_old = 0;
  1367.     
  1368.     for (i = 0; i < lp->rxRingSize; i++) {
  1369. lp->rx_ring[i].status = cpu_to_le32(R_OWN);
  1370.     }
  1371.     
  1372.     for (i = 0; i < lp->txRingSize; i++) {
  1373. lp->tx_ring[i].status = cpu_to_le32(0);
  1374.     }
  1375.     
  1376.     barrier();
  1377.     /* Build the setup frame depending on filtering mode */
  1378.     SetMulticastFilter(dev);
  1379.     
  1380.     load_packet(dev, lp->setup_frame, PERFECT_F|TD_SET|SETUP_FRAME_LEN, (struct sk_buff *)1);
  1381.     outl(omr|OMR_ST, DE4X5_OMR);
  1382.     /* Poll for setup frame completion (adapter interrupts are disabled now) */
  1383.     sti();                                       /* Ensure timer interrupts */
  1384.     for (j=0, i=0;(i<500) && (j==0);i++) {       /* Upto 500ms delay */
  1385. mdelay(1);
  1386. if ((s32)le32_to_cpu(lp->tx_ring[lp->tx_new].status) >= 0) j=1;
  1387.     }
  1388.     outl(omr, DE4X5_OMR);                        /* Stop everything! */
  1389.     if (j == 0) {
  1390. printk("%s: Setup frame timed out, status %08xn", dev->name, 
  1391.        inl(DE4X5_STS));
  1392. status = -EIO;
  1393.     }
  1394.     
  1395.     lp->tx_new = (++lp->tx_new) % lp->txRingSize;
  1396.     lp->tx_old = lp->tx_new;
  1397.     return status;
  1398. }
  1399. /* 
  1400. ** Writes a socket buffer address to the next available transmit descriptor.
  1401. */
  1402. static int
  1403. de4x5_queue_pkt(struct sk_buff *skb, struct net_device *dev)
  1404. {
  1405.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1406.     u_long iobase = dev->base_addr;
  1407.     int status = 0;
  1408.     u_long flags = 0;
  1409.     netif_stop_queue(dev);
  1410.     if (lp->tx_enable == NO) {                   /* Cannot send for now */
  1411. return -1;                                
  1412.     }
  1413.     
  1414.     /*
  1415.     ** Clean out the TX ring asynchronously to interrupts - sometimes the
  1416.     ** interrupts are lost by delayed descriptor status updates relative to
  1417.     ** the irq assertion, especially with a busy PCI bus.
  1418.     */
  1419.     spin_lock_irqsave(&lp->lock, flags);
  1420.     de4x5_tx(dev);
  1421.     spin_unlock_irqrestore(&lp->lock, flags);
  1422.     /* Test if cache is already locked - requeue skb if so */
  1423.     if (test_and_set_bit(0, (void *)&lp->cache.lock) && !lp->interrupt) 
  1424. return -1;
  1425.     /* Transmit descriptor ring full or stale skb */
  1426.     if (netif_queue_stopped(dev) || (u_long) lp->tx_skb[lp->tx_new] > 1) {
  1427. if (lp->interrupt) {
  1428.     de4x5_putb_cache(dev, skb);          /* Requeue the buffer */
  1429. } else {
  1430.     de4x5_put_cache(dev, skb);
  1431. }
  1432. if (de4x5_debug & DEBUG_TX) {
  1433.     printk("%s: transmit busy, lost media or stale skb found:n  STS:%08xn  tbusy:%dn  IMR:%08xn  OMR:%08xn Stale skb: %sn",dev->name, inl(DE4X5_STS), netif_queue_stopped(dev), inl(DE4X5_IMR), inl(DE4X5_OMR), ((u_long) lp->tx_skb[lp->tx_new] > 1) ? "YES" : "NO");
  1434. }
  1435.     } else if (skb->len > 0) {
  1436. /* If we already have stuff queued locally, use that first */
  1437. if (lp->cache.skb && !lp->interrupt) {
  1438.     de4x5_put_cache(dev, skb);
  1439.     skb = de4x5_get_cache(dev);
  1440. }
  1441. while (skb && !netif_queue_stopped(dev) &&
  1442.        (u_long) lp->tx_skb[lp->tx_new] <= 1) {
  1443.     spin_lock_irqsave(&lp->lock, flags);
  1444.     netif_stop_queue(dev);
  1445.     load_packet(dev, skb->data, TD_IC | TD_LS | TD_FS | skb->len, skb);
  1446.       lp->stats.tx_bytes += skb->len;
  1447.     outl(POLL_DEMAND, DE4X5_TPD);/* Start the TX */
  1448.     lp->tx_new = (++lp->tx_new) % lp->txRingSize;
  1449.     dev->trans_start = jiffies;
  1450.     
  1451.     if (TX_BUFFS_AVAIL) {
  1452. netif_start_queue(dev);         /* Another pkt may be queued */
  1453.     }
  1454.     skb = de4x5_get_cache(dev);
  1455.     spin_unlock_irqrestore(&lp->lock, flags);
  1456. }
  1457. if (skb) de4x5_putb_cache(dev, skb);
  1458.     }
  1459.     
  1460.     lp->cache.lock = 0;
  1461.     return status;
  1462. }
  1463. /*
  1464. ** The DE4X5 interrupt handler. 
  1465. ** 
  1466. ** I/O Read/Writes through intermediate PCI bridges are never 'posted',
  1467. ** so that the asserted interrupt always has some real data to work with -
  1468. ** if these I/O accesses are ever changed to memory accesses, ensure the
  1469. ** STS write is read immediately to complete the transaction if the adapter
  1470. ** is not on bus 0. Lost interrupts can still occur when the PCI bus load
  1471. ** is high and descriptor status bits cannot be set before the associated
  1472. ** interrupt is asserted and this routine entered.
  1473. */
  1474. static void
  1475. de4x5_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  1476. {
  1477.     struct net_device *dev = (struct net_device *)dev_id;
  1478.     struct de4x5_private *lp;
  1479.     s32 imr, omr, sts, limit;
  1480.     u_long iobase;
  1481.     
  1482.     if (dev == NULL) {
  1483. printk ("de4x5_interrupt(): irq %d for unknown device.n", irq);
  1484. return;
  1485.     }
  1486.     lp = (struct de4x5_private *)dev->priv;
  1487.     spin_lock(&lp->lock);
  1488.     iobase = dev->base_addr;
  1489.     DISABLE_IRQs;                        /* Ensure non re-entrancy */
  1490.     if (test_and_set_bit(MASK_INTERRUPTS, (void*) &lp->interrupt))
  1491. printk("%s: Re-entering the interrupt handler.n", dev->name);
  1492.     synchronize_irq();
  1493.     for (limit=0; limit<8; limit++) {
  1494. sts = inl(DE4X5_STS);            /* Read IRQ status */
  1495. outl(sts, DE4X5_STS);            /* Reset the board interrupts */
  1496.     
  1497. if (!(sts & lp->irq_mask)) break;/* All done */
  1498.     
  1499. if (sts & (STS_RI | STS_RU))     /* Rx interrupt (packet[s] arrived) */
  1500.   de4x5_rx(dev);
  1501.     
  1502. if (sts & (STS_TI | STS_TU))     /* Tx interrupt (packet sent) */
  1503.   de4x5_tx(dev); 
  1504.     
  1505. if (sts & STS_LNF) {             /* TP Link has failed */
  1506.     lp->irq_mask &= ~IMR_LFM;
  1507. }
  1508.     
  1509. if (sts & STS_UNF) {             /* Transmit underrun */
  1510.     de4x5_txur(dev);
  1511. }
  1512.     
  1513. if (sts & STS_SE) {              /* Bus Error */
  1514.     STOP_DE4X5;
  1515.     printk("%s: Fatal bus error occurred, sts=%#8x, device stopped.n",
  1516.    dev->name, sts);
  1517.     spin_unlock(&lp->lock);
  1518.     return;
  1519. }
  1520.     }
  1521.     /* Load the TX ring with any locally stored packets */
  1522.     if (!test_and_set_bit(0, (void *)&lp->cache.lock)) {
  1523. while (lp->cache.skb && !netif_queue_stopped(dev) && lp->tx_enable) {
  1524.     de4x5_queue_pkt(de4x5_get_cache(dev), dev);
  1525. }
  1526. lp->cache.lock = 0;
  1527.     }
  1528.     lp->interrupt = UNMASK_INTERRUPTS;
  1529.     ENABLE_IRQs;
  1530.     spin_unlock(&lp->lock);
  1531.     
  1532.     return;
  1533. }
  1534. static int
  1535. de4x5_rx(struct net_device *dev)
  1536. {
  1537.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1538.     u_long iobase = dev->base_addr;
  1539.     int entry;
  1540.     s32 status;
  1541.     
  1542.     for (entry=lp->rx_new; (s32)le32_to_cpu(lp->rx_ring[entry].status)>=0;
  1543.                                                     entry=lp->rx_new) {
  1544. status = (s32)le32_to_cpu(lp->rx_ring[entry].status);
  1545. if (lp->rx_ovf) {
  1546.     if (inl(DE4X5_MFC) & MFC_FOCM) {
  1547. de4x5_rx_ovfc(dev);
  1548. break;
  1549.     }
  1550. }
  1551. if (status & RD_FS) {                 /* Remember the start of frame */
  1552.     lp->rx_old = entry;
  1553. }
  1554. if (status & RD_LS) {                 /* Valid frame status */
  1555.     if (lp->tx_enable) lp->linkOK++;
  1556.     if (status & RD_ES) {       /* There was an error. */
  1557. lp->stats.rx_errors++;        /* Update the error stats. */
  1558. if (status & (RD_RF | RD_TL)) lp->stats.rx_frame_errors++;
  1559. if (status & RD_CE)           lp->stats.rx_crc_errors++;
  1560. if (status & RD_OF)           lp->stats.rx_fifo_errors++;
  1561. if (status & RD_TL)           lp->stats.rx_length_errors++;
  1562. if (status & RD_RF)           lp->pktStats.rx_runt_frames++;
  1563. if (status & RD_CS)           lp->pktStats.rx_collision++;
  1564. if (status & RD_DB)           lp->pktStats.rx_dribble++;
  1565. if (status & RD_OF)           lp->pktStats.rx_overflow++;
  1566.     } else {                          /* A valid frame received */
  1567. struct sk_buff *skb;
  1568. short pkt_len = (short)(le32_to_cpu(lp->rx_ring[entry].status)
  1569.                             >> 16) - 4;
  1570. if ((skb = de4x5_alloc_rx_buff(dev, entry, pkt_len)) == NULL) {
  1571.     printk("%s: Insufficient memory; nuking packet.n", 
  1572.                                             dev->name);
  1573.     lp->stats.rx_dropped++;
  1574. } else {
  1575.     de4x5_dbg_rx(skb, pkt_len);
  1576.     /* Push up the protocol stack */
  1577.     skb->protocol=eth_type_trans(skb,dev);
  1578.     de4x5_local_stats(dev, skb->data, pkt_len);
  1579.     netif_rx(skb);
  1580.     
  1581.     /* Update stats */
  1582.     dev->last_rx = jiffies;
  1583.     lp->stats.rx_packets++;
  1584.       lp->stats.rx_bytes += pkt_len;
  1585. }
  1586.     }
  1587.     
  1588.     /* Change buffer ownership for this frame, back to the adapter */
  1589.     for (;lp->rx_old!=entry;lp->rx_old=(++lp->rx_old)%lp->rxRingSize) {
  1590. lp->rx_ring[lp->rx_old].status = cpu_to_le32(R_OWN);
  1591. barrier();
  1592.     }
  1593.     lp->rx_ring[entry].status = cpu_to_le32(R_OWN);
  1594.     barrier();
  1595. }
  1596. /*
  1597. ** Update entry information
  1598. */
  1599. lp->rx_new = (++lp->rx_new) % lp->rxRingSize;
  1600.     }
  1601.     
  1602.     return 0;
  1603. }
  1604. static inline void
  1605. de4x5_free_tx_buff(struct de4x5_private *lp, int entry)
  1606. {
  1607.     pci_unmap_single(lp->pdev, le32_to_cpu(lp->tx_ring[entry].buf),
  1608.      le32_to_cpu(lp->tx_ring[entry].des1) & TD_TBS1,
  1609.      PCI_DMA_TODEVICE);
  1610.     if ((u_long) lp->tx_skb[entry] > 1)
  1611. dev_kfree_skb_irq(lp->tx_skb[entry]);
  1612.     lp->tx_skb[entry] = NULL;
  1613. }
  1614. /*
  1615. ** Buffer sent - check for TX buffer errors.
  1616. */
  1617. static int
  1618. de4x5_tx(struct net_device *dev)
  1619. {
  1620.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1621.     u_long iobase = dev->base_addr;
  1622.     int entry;
  1623.     s32 status;
  1624.     
  1625.     for (entry = lp->tx_old; entry != lp->tx_new; entry = lp->tx_old) {
  1626. status = (s32)le32_to_cpu(lp->tx_ring[entry].status);
  1627. if (status < 0) {                     /* Buffer not sent yet */
  1628.     break;
  1629. } else if (status != 0x7fffffff) {    /* Not setup frame */
  1630.     if (status & TD_ES) {             /* An error happened */
  1631. lp->stats.tx_errors++; 
  1632. if (status & TD_NC) lp->stats.tx_carrier_errors++;
  1633. if (status & TD_LC) lp->stats.tx_window_errors++;
  1634. if (status & TD_UF) lp->stats.tx_fifo_errors++;
  1635. if (status & TD_EC) lp->pktStats.excessive_collisions++;
  1636. if (status & TD_DE) lp->stats.tx_aborted_errors++;
  1637.     
  1638. if (TX_PKT_PENDING) {
  1639.     outl(POLL_DEMAND, DE4X5_TPD);/* Restart a stalled TX */
  1640. }
  1641.     } else {                      /* Packet sent */
  1642. lp->stats.tx_packets++;
  1643. if (lp->tx_enable) lp->linkOK++;
  1644.     }
  1645.     /* Update the collision counter */
  1646.     lp->stats.collisions += ((status & TD_EC) ? 16 : 
  1647.                       ((status & TD_CC) >> 3));
  1648.     /* Free the buffer. */
  1649.     if (lp->tx_skb[entry] != NULL)
  1650.      de4x5_free_tx_buff(lp, entry);
  1651. }
  1652. /* Update all the pointers */
  1653. lp->tx_old = (++lp->tx_old) % lp->txRingSize;
  1654.     }
  1655.     /* Any resources available? */
  1656.     if (TX_BUFFS_AVAIL && netif_queue_stopped(dev)) {
  1657. if (lp->interrupt)
  1658.     netif_wake_queue(dev);
  1659. else
  1660.     netif_start_queue(dev);
  1661.     }
  1662.     return 0;
  1663. }
  1664. static int
  1665. de4x5_ast(struct net_device *dev)
  1666. {
  1667.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1668.     int next_tick = DE4X5_AUTOSENSE_MS;
  1669.     
  1670.     disable_ast(dev);
  1671.     
  1672.     if (lp->useSROM) {
  1673. next_tick = srom_autoconf(dev);
  1674.     } else if (lp->chipset == DC21140) {
  1675. next_tick = dc21140m_autoconf(dev);
  1676.     } else if (lp->chipset == DC21041) {
  1677. next_tick = dc21041_autoconf(dev);
  1678.     } else if (lp->chipset == DC21040) {
  1679. next_tick = dc21040_autoconf(dev);
  1680.     }
  1681.     lp->linkOK = 0;
  1682.     enable_ast(dev, next_tick);
  1683.     
  1684.     return 0;
  1685. }
  1686. static int
  1687. de4x5_txur(struct net_device *dev)
  1688. {
  1689.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1690.     u_long iobase = dev->base_addr;
  1691.     int omr;
  1692.     omr = inl(DE4X5_OMR);
  1693.     if (!(omr & OMR_SF) || (lp->chipset==DC21041) || (lp->chipset==DC21040)) {
  1694. omr &= ~(OMR_ST|OMR_SR);
  1695. outl(omr, DE4X5_OMR);
  1696. while (inl(DE4X5_STS) & STS_TS);
  1697. if ((omr & OMR_TR) < OMR_TR) {
  1698.     omr += 0x4000;
  1699. } else {
  1700.     omr |= OMR_SF;
  1701. }
  1702. outl(omr | OMR_ST | OMR_SR, DE4X5_OMR);
  1703.     }
  1704.     
  1705.     return 0;
  1706. }
  1707. static int 
  1708. de4x5_rx_ovfc(struct net_device *dev)
  1709. {
  1710.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1711.     u_long iobase = dev->base_addr;
  1712.     int omr;
  1713.     omr = inl(DE4X5_OMR);
  1714.     outl(omr & ~OMR_SR, DE4X5_OMR);
  1715.     while (inl(DE4X5_STS) & STS_RS);
  1716.     for (; (s32)le32_to_cpu(lp->rx_ring[lp->rx_new].status)>=0;) {
  1717. lp->rx_ring[lp->rx_new].status = cpu_to_le32(R_OWN);
  1718. lp->rx_new = (++lp->rx_new % lp->rxRingSize);
  1719.     }
  1720.     outl(omr, DE4X5_OMR);
  1721.     
  1722.     return 0;
  1723. }
  1724. static int
  1725. de4x5_close(struct net_device *dev)
  1726. {
  1727.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1728.     u_long iobase = dev->base_addr;
  1729.     s32 imr, omr;
  1730.     
  1731.     disable_ast(dev);
  1732.     netif_stop_queue(dev);
  1733.     
  1734.     if (de4x5_debug & DEBUG_CLOSE) {
  1735. printk("%s: Shutting down ethercard, status was %8.8x.n",
  1736.        dev->name, inl(DE4X5_STS));
  1737.     }
  1738.     
  1739.     /* 
  1740.     ** We stop the DE4X5 here... mask interrupts and stop TX & RX
  1741.     */
  1742.     DISABLE_IRQs;
  1743.     STOP_DE4X5;
  1744.     
  1745.     /* Free the associated irq */
  1746.     free_irq(dev->irq, dev);
  1747.     lp->state = CLOSED;
  1748.     /* Free any socket buffers */
  1749.     de4x5_free_rx_buffs(dev);
  1750.     de4x5_free_tx_buffs(dev);
  1751.     
  1752.     MOD_DEC_USE_COUNT;
  1753.     
  1754.     /* Put the adapter to sleep to save power */
  1755.     yawn(dev, SLEEP);
  1756.     
  1757.     return 0;
  1758. }
  1759. static struct net_device_stats *
  1760. de4x5_get_stats(struct net_device *dev)
  1761. {
  1762.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1763.     u_long iobase = dev->base_addr;
  1764.     
  1765.     lp->stats.rx_missed_errors = (int)(inl(DE4X5_MFC) & (MFC_OVFL | MFC_CNTR));
  1766.     
  1767.     return &lp->stats;
  1768. }
  1769. static void
  1770. de4x5_local_stats(struct net_device *dev, char *buf, int pkt_len)
  1771. {
  1772.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1773.     int i;
  1774.     for (i=1; i<DE4X5_PKT_STAT_SZ-1; i++) {
  1775.         if (pkt_len < (i*DE4X5_PKT_BIN_SZ)) {
  1776.     lp->pktStats.bins[i]++;
  1777.     i = DE4X5_PKT_STAT_SZ;
  1778. }
  1779.     }
  1780.     if (buf[0] & 0x01) {          /* Multicast/Broadcast */
  1781.         if ((*(s32 *)&buf[0] == -1) && (*(s16 *)&buf[4] == -1)) {
  1782.     lp->pktStats.broadcast++;
  1783. } else {
  1784.     lp->pktStats.multicast++;
  1785. }
  1786.     } else if ((*(s32 *)&buf[0] == *(s32 *)&dev->dev_addr[0]) &&
  1787.        (*(s16 *)&buf[4] == *(s16 *)&dev->dev_addr[4])) {
  1788.         lp->pktStats.unicast++;
  1789.     }
  1790.     lp->pktStats.bins[0]++;       /* Duplicates stats.rx_packets */
  1791.     if (lp->pktStats.bins[0] == 0) { /* Reset counters */
  1792.         memset((char *)&lp->pktStats, 0, sizeof(lp->pktStats));
  1793.     }
  1794.     return;
  1795. }
  1796. /*
  1797. ** Removes the TD_IC flag from previous descriptor to improve TX performance.
  1798. ** If the flag is changed on a descriptor that is being read by the hardware,
  1799. ** I assume PCI transaction ordering will mean you are either successful or
  1800. ** just miss asserting the change to the hardware. Anyway you're messing with
  1801. ** a descriptor you don't own, but this shouldn't kill the chip provided
  1802. ** the descriptor register is read only to the hardware.
  1803. */
  1804. static void
  1805. load_packet(struct net_device *dev, char *buf, u32 flags, struct sk_buff *skb)
  1806. {
  1807.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1808.     int entry = (lp->tx_new ? lp->tx_new-1 : lp->txRingSize-1);
  1809.     dma_addr_t buf_dma = pci_map_single(lp->pdev, buf, flags & TD_TBS1, PCI_DMA_TODEVICE);
  1810.     lp->tx_ring[lp->tx_new].buf = cpu_to_le32(buf_dma);
  1811.     lp->tx_ring[lp->tx_new].des1 &= cpu_to_le32(TD_TER);
  1812.     lp->tx_ring[lp->tx_new].des1 |= cpu_to_le32(flags);
  1813.     lp->tx_skb[lp->tx_new] = skb;
  1814.     lp->tx_ring[entry].des1 &= cpu_to_le32(~TD_IC);
  1815.     barrier();
  1816.     lp->tx_ring[lp->tx_new].status = cpu_to_le32(T_OWN);
  1817.     barrier();
  1818. }
  1819. /*
  1820. ** Set or clear the multicast filter for this adaptor.
  1821. */
  1822. static void
  1823. set_multicast_list(struct net_device *dev)
  1824. {
  1825.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1826.     u_long iobase = dev->base_addr;
  1827.     /* First, double check that the adapter is open */
  1828.     if (lp->state == OPEN) {
  1829. if (dev->flags & IFF_PROMISC) {         /* set promiscuous mode */
  1830.     u32 omr;
  1831.     omr = inl(DE4X5_OMR);
  1832.     omr |= OMR_PR;
  1833.     outl(omr, DE4X5_OMR);
  1834. } else { 
  1835.     SetMulticastFilter(dev);
  1836.     load_packet(dev, lp->setup_frame, TD_IC | PERFECT_F | TD_SET | 
  1837.                                 SETUP_FRAME_LEN, (struct sk_buff *)1);
  1838.     
  1839.     lp->tx_new = (++lp->tx_new) % lp->txRingSize;
  1840.     outl(POLL_DEMAND, DE4X5_TPD);       /* Start the TX */
  1841.     dev->trans_start = jiffies;
  1842. }
  1843.     }
  1844.     
  1845.     return;
  1846. }
  1847. /*
  1848. ** Calculate the hash code and update the logical address filter
  1849. ** from a list of ethernet multicast addresses.
  1850. ** Little endian crc one liner from Matt Thomas, DEC.
  1851. */
  1852. static void
  1853. SetMulticastFilter(struct net_device *dev)
  1854. {
  1855.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  1856.     struct dev_mc_list *dmi=dev->mc_list;
  1857.     u_long iobase = dev->base_addr;
  1858.     int i, j, bit, byte;
  1859.     u16 hashcode;
  1860.     u32 omr, crc;
  1861.     char *pa;
  1862.     unsigned char *addrs;
  1863.     omr = inl(DE4X5_OMR);
  1864.     omr &= ~(OMR_PR | OMR_PM);
  1865.     pa = build_setup_frame(dev, ALL);        /* Build the basic frame */
  1866.     
  1867.     if ((dev->flags & IFF_ALLMULTI) || (dev->mc_count > 14)) {
  1868. omr |= OMR_PM;                       /* Pass all multicasts */
  1869.     } else if (lp->setup_f == HASH_PERF) {   /* Hash Filtering */
  1870. for (i=0;i<dev->mc_count;i++) {      /* for each address in the list */
  1871.     addrs=dmi->dmi_addr;
  1872.     dmi=dmi->next;
  1873.     if ((*addrs & 0x01) == 1) {      /* multicast address? */ 
  1874. crc = ether_crc_le(ETH_ALEN, addrs);
  1875. hashcode = crc & HASH_BITS;  /* hashcode is 9 LSb of CRC */
  1876. byte = hashcode >> 3;        /* bit[3-8] -> byte in filter */
  1877. bit = 1 << (hashcode & 0x07);/* bit[0-2] -> bit in byte */
  1878. byte <<= 1;                  /* calc offset into setup frame */
  1879. if (byte & 0x02) {
  1880.     byte -= 1;
  1881. }
  1882. lp->setup_frame[byte] |= bit;
  1883.     }
  1884. }
  1885.     } else {                                 /* Perfect filtering */
  1886. for (j=0; j<dev->mc_count; j++) {
  1887.     addrs=dmi->dmi_addr;
  1888.     dmi=dmi->next;
  1889.     for (i=0; i<ETH_ALEN; i++) { 
  1890. *(pa + (i&1)) = *addrs++;
  1891. if (i & 0x01) pa += 4;
  1892.     }
  1893. }
  1894.     }
  1895.     outl(omr, DE4X5_OMR);
  1896.     
  1897.     return;
  1898. }
  1899. #if !defined(__sparc_v9__) && !defined(__powerpc__) && !defined(__alpha__)
  1900. /*
  1901. ** EISA bus I/O device probe. Probe from slot 1 since slot 0 is usually
  1902. ** the motherboard. Upto 15 EISA devices are supported.
  1903. */
  1904. static void __init 
  1905. eisa_probe(struct net_device *dev, u_long ioaddr)
  1906. {
  1907.     int i, maxSlots, status, device;
  1908.     u_char irq;
  1909.     u_short vendor;
  1910.     u32 cfid;
  1911.     u_long iobase;
  1912.     struct de4x5_bus_type *lp = &bus;
  1913.     char name[DE4X5_STRLEN];
  1914.     if (lastEISA == MAX_EISA_SLOTS) return;/* No more EISA devices to search */
  1915.     lp->bus = EISA;
  1916.     
  1917.     if (ioaddr == 0) {                     /* Autoprobing */
  1918. iobase = EISA_SLOT_INC;            /* Get the first slot address */
  1919. i = 1;
  1920. maxSlots = MAX_EISA_SLOTS;
  1921.     } else {                               /* Probe a specific location */
  1922. iobase = ioaddr;
  1923. i = (ioaddr >> 12);
  1924. maxSlots = i + 1;
  1925.     }
  1926.     
  1927.     for (status = -ENODEV; (i<maxSlots) && (dev!=NULL); i++, iobase+=EISA_SLOT_INC) {
  1928. if (check_region(iobase, DE4X5_EISA_TOTAL_SIZE)) continue;
  1929. if (!EISA_signature(name, EISA_ID)) continue;
  1930. cfid = (u32) inl(PCI_CFID);
  1931. cfrv = (u_short) inl(PCI_CFRV);
  1932. device = (cfid >> 8) & 0x00ffff00;
  1933. vendor = (u_short) cfid;
  1934.     
  1935. /* Read the EISA Configuration Registers */
  1936. irq = inb(EISA_REG0);
  1937. irq = de4x5_irq[(irq >> 1) & 0x03];
  1938. if (is_DC2114x) {
  1939.     device = ((cfrv & CFRV_RN) < DC2114x_BRK ? DC21142 : DC21143);
  1940. }
  1941. lp->chipset = device;
  1942. /* Write the PCI Configuration Registers */
  1943. outl(PCI_COMMAND_IO | PCI_COMMAND_MASTER, PCI_CFCS);
  1944. outl(0x00006000, PCI_CFLT);
  1945. outl(iobase, PCI_CBIO);
  1946.     
  1947. DevicePresent(EISA_APROM);
  1948. dev->irq = irq;
  1949. if ((status = de4x5_hw_init(dev, iobase, NULL)) == 0) {
  1950.     num_de4x5s++;
  1951.     if (loading_module) link_modules(lastModule, dev);
  1952.     lastEISA = i;
  1953.     return;
  1954. }
  1955.     }
  1956.     if (ioaddr == 0) lastEISA = i;
  1957.     return;
  1958. }
  1959. #endif          /* !(__sparc_v9__) && !(__powerpc__) && !defined(__alpha__) */
  1960. /*
  1961. ** PCI bus I/O device probe
  1962. ** NB: PCI I/O accesses and Bus Mastering are enabled by the PCI BIOS, not
  1963. ** the driver. Some PCI BIOS's, pre V2.1, need the slot + features to be
  1964. ** enabled by the user first in the set up utility. Hence we just check for
  1965. ** enabled features and silently ignore the card if they're not.
  1966. **
  1967. ** STOP PRESS: Some BIOS's __require__ the driver to enable the bus mastering
  1968. ** bit. Here, check for I/O accesses and then set BM. If you put the card in
  1969. ** a non BM slot, you're on your own (and complain to the PC vendor that your
  1970. ** PC doesn't conform to the PCI standard)!
  1971. **
  1972. ** This function is only compatible with the *latest* 2.1.x kernels. For 2.0.x
  1973. ** kernels use the V0.535[n] drivers.
  1974. */
  1975. #define PCI_LAST_DEV  32
  1976. static void __init 
  1977. pci_probe(struct net_device *dev, u_long ioaddr)
  1978. {
  1979.     u_char pb, pbus, dev_num, dnum, timer;
  1980.     u_short vendor, index, status;
  1981.     u_int irq = 0, device, class = DE4X5_CLASS_CODE;
  1982.     u_long iobase = 0;                     /* Clear upper 32 bits in Alphas */
  1983.     struct de4x5_bus_type *lp = &bus;
  1984.     if (lastPCI == NO_MORE_PCI) return;
  1985.     if (!pcibios_present()) {
  1986. lastPCI = NO_MORE_PCI;
  1987. return;          /* No PCI bus in this machine! */
  1988.     }
  1989.     
  1990.     lp->bus = PCI;
  1991.     lp->bus_num = 0;
  1992.     if ((ioaddr < 0x1000) && loading_module) {
  1993. pbus = (u_short)(ioaddr >> 8);
  1994. dnum = (u_short)(ioaddr & 0xff);
  1995.     } else {
  1996. pbus = 0;
  1997. dnum = 0;
  1998.     }
  1999.     for (index=lastPCI+1;(pdev = pci_find_class(class, pdev))!=NULL;index++) {
  2000. dev_num = PCI_SLOT(pdev->devfn);
  2001. pb = pdev->bus->number;
  2002. if ((pbus || dnum) && ((pbus != pb) || (dnum != dev_num))) continue;
  2003. vendor = pdev->vendor;
  2004. device = pdev->device << 8;
  2005. if (!(is_DC21040 || is_DC21041 || is_DC21140 || is_DC2114x)) continue;
  2006. /* Search for an SROM on this bus */
  2007. if (lp->bus_num != pb) {
  2008.     lp->bus_num = pb;
  2009.     srom_search(pdev);
  2010. }
  2011. /* Get the chip configuration revision register */
  2012. pcibios_read_config_dword(pb, pdev->devfn, PCI_REVISION_ID, &cfrv);
  2013. /* Set the device number information */
  2014. lp->device = dev_num;
  2015. lp->bus_num = pb;
  2016.     
  2017. /* Set the chipset information */
  2018. if (is_DC2114x) {
  2019.     device = ((cfrv & CFRV_RN) < DC2114x_BRK ? DC21142 : DC21143);
  2020. }
  2021. lp->chipset = device;
  2022. /* Get the board I/O address (64 bits on sparc64) */
  2023. iobase = pci_resource_start(pdev, 0);
  2024. /* Fetch the IRQ to be used */
  2025. irq = pdev->irq;
  2026. if ((irq == 0) || (irq == 0xff) || ((int)irq == -1)) continue;
  2027.     
  2028. /* Check if I/O accesses and Bus Mastering are enabled */
  2029. pcibios_read_config_word(pb, pdev->devfn, PCI_COMMAND, &status);
  2030. #ifdef __powerpc__
  2031. if (!(status & PCI_COMMAND_IO)) {
  2032.     status |= PCI_COMMAND_IO;
  2033.     pcibios_write_config_word(pb, pdev->devfn, PCI_COMMAND, status);
  2034.     pcibios_read_config_word(pb, pdev->devfn, PCI_COMMAND, &status);
  2035. }
  2036. #endif /* __powerpc__ */
  2037. if (!(status & PCI_COMMAND_IO)) continue;
  2038. if (!(status & PCI_COMMAND_MASTER)) {
  2039.     status |= PCI_COMMAND_MASTER;
  2040.     pcibios_write_config_word(pb, pdev->devfn, PCI_COMMAND, status);
  2041.     pcibios_read_config_word(pb, pdev->devfn, PCI_COMMAND, &status);
  2042. }
  2043. if (!(status & PCI_COMMAND_MASTER)) continue;
  2044. /* Check the latency timer for values >= 0x60 */
  2045. pcibios_read_config_byte(pb, pdev->devfn, PCI_LATENCY_TIMER, &timer);
  2046. if (timer < 0x60) {
  2047.     pcibios_write_config_byte(pb, pdev->devfn, PCI_LATENCY_TIMER, 0x60);
  2048. }
  2049. DevicePresent(DE4X5_APROM);
  2050. if (check_region(iobase, DE4X5_PCI_TOTAL_SIZE) == 0) {
  2051.     dev->irq = irq;
  2052.     if ((status = de4x5_hw_init(dev, iobase, pdev)) == 0) {
  2053. num_de4x5s++;
  2054. lastPCI = index;
  2055. if (loading_module) link_modules(lastModule, dev);
  2056. return;
  2057.     }
  2058. } else if (ioaddr != 0) {
  2059.     printk("%s: region already allocated at 0x%04lx.n", dev->name,
  2060.    iobase);
  2061. }
  2062.     }
  2063.     lastPCI = NO_MORE_PCI;
  2064.     return;
  2065. }
  2066. /*
  2067. ** This function searches the current bus (which is >0) for a DECchip with an
  2068. ** SROM, so that in multiport cards that have one SROM shared between multiple 
  2069. ** DECchips, we can find the base SROM irrespective of the BIOS scan direction.
  2070. ** For single port cards this is a time waster...
  2071. */
  2072. static void __init 
  2073. srom_search(struct pci_dev *dev)
  2074. {
  2075.     u_char pb;
  2076.     u_short vendor, status;
  2077.     u_int irq = 0, device;
  2078.     u_long iobase = 0;                     /* Clear upper 32 bits in Alphas */
  2079.     int i, j;
  2080.     struct de4x5_bus_type *lp = &bus;
  2081.     struct list_head *walk = &dev->bus_list;
  2082.     for (walk = walk->next; walk != &dev->bus_list; walk = walk->next) {
  2083. struct pci_dev *this_dev = pci_dev_b(walk);
  2084. /* Skip the pci_bus list entry */
  2085. if (list_entry(walk, struct pci_bus, devices) == dev->bus) continue;
  2086. vendor = this_dev->vendor;
  2087. device = this_dev->device << 8;
  2088. if (!(is_DC21040 || is_DC21041 || is_DC21140 || is_DC2114x)) continue;
  2089. /* Get the chip configuration revision register */
  2090. pb = this_dev->bus->number;
  2091. pcibios_read_config_dword(pb, this_dev->devfn, PCI_REVISION_ID, &cfrv);
  2092. /* Set the device number information */
  2093. lp->device = PCI_SLOT(this_dev->devfn);
  2094. lp->bus_num = pb;
  2095.     
  2096. /* Set the chipset information */
  2097. if (is_DC2114x) {
  2098.     device = ((cfrv & CFRV_RN) < DC2114x_BRK ? DC21142 : DC21143);
  2099. }
  2100. lp->chipset = device;
  2101. /* Get the board I/O address (64 bits on sparc64) */
  2102. iobase = pci_resource_start(this_dev, 0);
  2103. /* Fetch the IRQ to be used */
  2104. irq = this_dev->irq;
  2105. if ((irq == 0) || (irq == 0xff) || ((int)irq == -1)) continue;
  2106.     
  2107. /* Check if I/O accesses are enabled */
  2108. pcibios_read_config_word(pb, this_dev->devfn, PCI_COMMAND, &status);
  2109. if (!(status & PCI_COMMAND_IO)) continue;
  2110. /* Search for a valid SROM attached to this DECchip */
  2111. DevicePresent(DE4X5_APROM);
  2112. for (j=0, i=0; i<ETH_ALEN; i++) {
  2113.     j += (u_char) *((u_char *)&lp->srom + SROM_HWADD + i);
  2114. }
  2115. if ((j != 0) && (j != 0x5fa)) {
  2116.     last.chipset = device;
  2117.     last.bus = pb;
  2118.     last.irq = irq;
  2119.     for (i=0; i<ETH_ALEN; i++) {
  2120. last.addr[i] = (u_char)*((u_char *)&lp->srom + SROM_HWADD + i);
  2121.     }
  2122.     return;
  2123. }
  2124.     }
  2125.     return;
  2126. }
  2127. static void __init 
  2128. link_modules(struct net_device *dev, struct net_device *tmp)
  2129. {
  2130.     struct net_device *p=dev;
  2131.     if (p) {
  2132. while (((struct de4x5_private *)(p->priv))->next_module) {
  2133.     p = ((struct de4x5_private *)(p->priv))->next_module;
  2134. }
  2135. if (dev != tmp) {
  2136.     ((struct de4x5_private *)(p->priv))->next_module = tmp;
  2137. } else {
  2138.     ((struct de4x5_private *)(p->priv))->next_module = NULL;
  2139. }
  2140.     }
  2141.     return;
  2142. }
  2143. /*
  2144. ** Auto configure the media here rather than setting the port at compile
  2145. ** time. This routine is called by de4x5_init() and when a loss of media is
  2146. ** detected (excessive collisions, loss of carrier, no carrier or link fail
  2147. ** [TP] or no recent receive activity) to check whether the user has been 
  2148. ** sneaky and changed the port on us.
  2149. */
  2150. static int
  2151. autoconf_media(struct net_device *dev)
  2152. {
  2153.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  2154.     u_long iobase = dev->base_addr;
  2155.     int next_tick = DE4X5_AUTOSENSE_MS;
  2156.     lp->linkOK = 0;
  2157.     lp->c_media = AUTO;                     /* Bogus last media */
  2158.     disable_ast(dev);
  2159.     inl(DE4X5_MFC);                         /* Zero the lost frames counter */
  2160.     lp->media = INIT;
  2161.     lp->tcount = 0;
  2162.     if (lp->useSROM) {
  2163. next_tick = srom_autoconf(dev);
  2164.     } else if (lp->chipset == DC21040) {
  2165. next_tick = dc21040_autoconf(dev);
  2166.     } else if (lp->chipset == DC21041) {
  2167. next_tick = dc21041_autoconf(dev);
  2168.     } else if (lp->chipset == DC21140) {
  2169. next_tick = dc21140m_autoconf(dev);
  2170.     }
  2171.     enable_ast(dev, next_tick);
  2172.     
  2173.     return (lp->media);
  2174. }
  2175. /*
  2176. ** Autoconfigure the media when using the DC21040. AUI cannot be distinguished
  2177. ** from BNC as the port has a jumper to set thick or thin wire. When set for
  2178. ** BNC, the BNC port will indicate activity if it's not terminated correctly.
  2179. ** The only way to test for that is to place a loopback packet onto the
  2180. ** network and watch for errors. Since we're messing with the interrupt mask
  2181. ** register, disable the board interrupts and do not allow any more packets to
  2182. ** be queued to the hardware. Re-enable everything only when the media is
  2183. ** found.
  2184. ** I may have to "age out" locally queued packets so that the higher layer
  2185. ** timeouts don't effectively duplicate packets on the network.
  2186. */
  2187. static int
  2188. dc21040_autoconf(struct net_device *dev)
  2189. {
  2190.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  2191.     u_long iobase = dev->base_addr;
  2192.     int next_tick = DE4X5_AUTOSENSE_MS;
  2193.     s32 imr;
  2194.     
  2195.     switch (lp->media) {
  2196.     case INIT:
  2197. DISABLE_IRQs;
  2198. lp->tx_enable = NO;
  2199. lp->timeout = -1;
  2200. de4x5_save_skbs(dev);
  2201. if ((lp->autosense == AUTO) || (lp->autosense == TP)) {
  2202.     lp->media = TP;
  2203. } else if ((lp->autosense == BNC) || (lp->autosense == AUI) || (lp->autosense == BNC_AUI)) {
  2204.     lp->media = BNC_AUI;
  2205. } else if (lp->autosense == EXT_SIA) {
  2206.     lp->media = EXT_SIA;
  2207. } else {
  2208.     lp->media = NC;
  2209. }
  2210. lp->local_state = 0;
  2211. next_tick = dc21040_autoconf(dev);
  2212. break;
  2213.     case TP:
  2214. next_tick = dc21040_state(dev, 0x8f01, 0xffff, 0x0000, 3000, BNC_AUI, 
  2215.                                          TP_SUSPECT, test_tp);
  2216. break;
  2217.     case TP_SUSPECT:
  2218. next_tick = de4x5_suspect_state(dev, 1000, TP, test_tp, dc21040_autoconf);
  2219. break;
  2220.     case BNC:
  2221.     case AUI:
  2222.     case BNC_AUI:
  2223. next_tick = dc21040_state(dev, 0x8f09, 0x0705, 0x0006, 3000, EXT_SIA, 
  2224.                                   BNC_AUI_SUSPECT, ping_media);
  2225. break;
  2226.     case BNC_AUI_SUSPECT:
  2227. next_tick = de4x5_suspect_state(dev, 1000, BNC_AUI, ping_media, dc21040_autoconf);
  2228. break;
  2229.     case EXT_SIA:
  2230. next_tick = dc21040_state(dev, 0x3041, 0x0000, 0x0006, 3000, 
  2231.                               NC, EXT_SIA_SUSPECT, ping_media);
  2232. break;
  2233.     case EXT_SIA_SUSPECT:
  2234. next_tick = de4x5_suspect_state(dev, 1000, EXT_SIA, ping_media, dc21040_autoconf);
  2235. break;
  2236.     case NC:
  2237. /* default to TP for all */
  2238. reset_init_sia(dev, 0x8f01, 0xffff, 0x0000);
  2239. if (lp->media != lp->c_media) {
  2240.     de4x5_dbg_media(dev);
  2241.     lp->c_media = lp->media;
  2242. }
  2243. lp->media = INIT;
  2244. lp->tx_enable = NO;
  2245. break;
  2246.     }
  2247.     
  2248.     return next_tick;
  2249. }
  2250. static int
  2251. dc21040_state(struct net_device *dev, int csr13, int csr14, int csr15, int timeout,
  2252.       int next_state, int suspect_state, 
  2253.       int (*fn)(struct net_device *, int))
  2254. {
  2255.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  2256.     int next_tick = DE4X5_AUTOSENSE_MS;
  2257.     int linkBad;
  2258.     switch (lp->local_state) {
  2259.     case 0:
  2260. reset_init_sia(dev, csr13, csr14, csr15);
  2261. lp->local_state++;
  2262. next_tick = 500;
  2263. break;
  2264.     
  2265.     case 1:
  2266. if (!lp->tx_enable) {
  2267.     linkBad = fn(dev, timeout);
  2268.     if (linkBad < 0) {
  2269. next_tick = linkBad & ~TIMER_CB;
  2270.     } else {
  2271. if (linkBad && (lp->autosense == AUTO)) {
  2272.     lp->local_state = 0;
  2273.     lp->media = next_state;
  2274. } else {
  2275.     de4x5_init_connection(dev);
  2276. }
  2277.     }
  2278. } else if (!lp->linkOK && (lp->autosense == AUTO)) {
  2279.     lp->media = suspect_state;
  2280.     next_tick = 3000;
  2281. }
  2282. break;
  2283.     }
  2284.     
  2285.     return next_tick;
  2286. }
  2287. static int
  2288. de4x5_suspect_state(struct net_device *dev, int timeout, int prev_state,
  2289.       int (*fn)(struct net_device *, int),
  2290.       int (*asfn)(struct net_device *))
  2291. {
  2292.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  2293.     int next_tick = DE4X5_AUTOSENSE_MS;
  2294.     int linkBad;
  2295.     switch (lp->local_state) {
  2296.     case 1:
  2297. if (lp->linkOK) {
  2298.     lp->media = prev_state;
  2299. } else {
  2300.     lp->local_state++;
  2301.     next_tick = asfn(dev);
  2302. }
  2303. break;
  2304.     case 2:
  2305. linkBad = fn(dev, timeout);
  2306. if (linkBad < 0) {
  2307.     next_tick = linkBad & ~TIMER_CB;
  2308. } else if (!linkBad) {
  2309.     lp->local_state--;
  2310.     lp->media = prev_state;
  2311. } else {
  2312.     lp->media = INIT;
  2313.     lp->tcount++;
  2314. }
  2315.     }
  2316.     return next_tick;
  2317. }
  2318. /*
  2319. ** Autoconfigure the media when using the DC21041. AUI needs to be tested
  2320. ** before BNC, because the BNC port will indicate activity if it's not
  2321. ** terminated correctly. The only way to test for that is to place a loopback
  2322. ** packet onto the network and watch for errors. Since we're messing with
  2323. ** the interrupt mask register, disable the board interrupts and do not allow
  2324. ** any more packets to be queued to the hardware. Re-enable everything only
  2325. ** when the media is found.
  2326. */
  2327. static int
  2328. dc21041_autoconf(struct net_device *dev)
  2329. {
  2330.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  2331.     u_long iobase = dev->base_addr;
  2332.     s32 sts, irqs, irq_mask, imr, omr;
  2333.     int next_tick = DE4X5_AUTOSENSE_MS;
  2334.     
  2335.     switch (lp->media) {
  2336.     case INIT:
  2337. DISABLE_IRQs;
  2338. lp->tx_enable = NO;
  2339. lp->timeout = -1;
  2340. de4x5_save_skbs(dev);          /* Save non transmitted skb's */
  2341. if ((lp->autosense == AUTO) || (lp->autosense == TP_NW)) {
  2342.     lp->media = TP;            /* On chip auto negotiation is broken */
  2343. } else if (lp->autosense == TP) {
  2344.     lp->media = TP;
  2345. } else if (lp->autosense == BNC) {
  2346.     lp->media = BNC;
  2347. } else if (lp->autosense == AUI) {
  2348.     lp->media = AUI;
  2349. } else {
  2350.     lp->media = NC;
  2351. }
  2352. lp->local_state = 0;
  2353. next_tick = dc21041_autoconf(dev);
  2354. break;
  2355.     case TP_NW:
  2356. if (lp->timeout < 0) {
  2357.     omr = inl(DE4X5_OMR);/* Set up full duplex for the autonegotiate */
  2358.     outl(omr | OMR_FDX, DE4X5_OMR);
  2359. }
  2360. irqs = STS_LNF | STS_LNP;
  2361. irq_mask = IMR_LFM | IMR_LPM;
  2362. sts = test_media(dev, irqs, irq_mask, 0xef01, 0xffff, 0x0008, 2400);
  2363. if (sts < 0) {
  2364.     next_tick = sts & ~TIMER_CB;
  2365. } else {
  2366.     if (sts & STS_LNP) {
  2367. lp->media = ANS;
  2368.     } else {
  2369. lp->media = AUI;
  2370.     }
  2371.     next_tick = dc21041_autoconf(dev);
  2372. }
  2373. break;
  2374.     case ANS:
  2375. if (!lp->tx_enable) {
  2376.     irqs = STS_LNP;
  2377.     irq_mask = IMR_LPM;
  2378.     sts = test_ans(dev, irqs, irq_mask, 3000);
  2379.     if (sts < 0) {
  2380. next_tick = sts & ~TIMER_CB;
  2381.     } else {
  2382. if (!(sts & STS_LNP) && (lp->autosense == AUTO)) {
  2383.     lp->media = TP;
  2384.     next_tick = dc21041_autoconf(dev);
  2385. } else {
  2386.     lp->local_state = 1;
  2387.     de4x5_init_connection(dev);
  2388. }
  2389.     }
  2390. } else if (!lp->linkOK && (lp->autosense == AUTO)) {
  2391.     lp->media = ANS_SUSPECT;
  2392.     next_tick = 3000;
  2393. }
  2394. break;
  2395.     case ANS_SUSPECT:
  2396. next_tick = de4x5_suspect_state(dev, 1000, ANS, test_tp, dc21041_autoconf);
  2397. break;
  2398.     case TP:
  2399. if (!lp->tx_enable) {
  2400.     if (lp->timeout < 0) {
  2401. omr = inl(DE4X5_OMR);          /* Set up half duplex for TP */
  2402. outl(omr & ~OMR_FDX, DE4X5_OMR);
  2403.     }
  2404.     irqs = STS_LNF | STS_LNP;
  2405.     irq_mask = IMR_LFM | IMR_LPM;
  2406.     sts = test_media(dev,irqs, irq_mask, 0xef01, 0xff3f, 0x0008, 2400);
  2407.     if (sts < 0) {
  2408. next_tick = sts & ~TIMER_CB;
  2409.     } else {
  2410. if (!(sts & STS_LNP) && (lp->autosense == AUTO)) {
  2411.     if (inl(DE4X5_SISR) & SISR_NRA) {
  2412. lp->media = AUI;       /* Non selected port activity */
  2413.     } else {
  2414. lp->media = BNC;
  2415.     }
  2416.     next_tick = dc21041_autoconf(dev);
  2417. } else {
  2418.     lp->local_state = 1;
  2419.     de4x5_init_connection(dev);
  2420. }
  2421.     }
  2422. } else if (!lp->linkOK && (lp->autosense == AUTO)) {
  2423.     lp->media = TP_SUSPECT;
  2424.     next_tick = 3000;
  2425. }
  2426. break;
  2427.     case TP_SUSPECT:
  2428. next_tick = de4x5_suspect_state(dev, 1000, TP, test_tp, dc21041_autoconf);
  2429. break;
  2430.     case AUI:
  2431. if (!lp->tx_enable) {
  2432.     if (lp->timeout < 0) {
  2433. omr = inl(DE4X5_OMR);          /* Set up half duplex for AUI */
  2434. outl(omr & ~OMR_FDX, DE4X5_OMR);
  2435.     }
  2436.     irqs = 0;
  2437.     irq_mask = 0;
  2438.     sts = test_media(dev,irqs, irq_mask, 0xef09, 0xf73d, 0x000e, 1000);
  2439.     if (sts < 0) {
  2440. next_tick = sts & ~TIMER_CB;
  2441.     } else {
  2442. if (!(inl(DE4X5_SISR) & SISR_SRA) && (lp->autosense == AUTO)) {
  2443.     lp->media = BNC;
  2444.     next_tick = dc21041_autoconf(dev);
  2445. } else {
  2446.     lp->local_state = 1;
  2447.     de4x5_init_connection(dev);
  2448. }
  2449.     }
  2450. } else if (!lp->linkOK && (lp->autosense == AUTO)) {
  2451.     lp->media = AUI_SUSPECT;
  2452.     next_tick = 3000;
  2453. }
  2454. break;
  2455.     case AUI_SUSPECT:
  2456. next_tick = de4x5_suspect_state(dev, 1000, AUI, ping_media, dc21041_autoconf);
  2457. break;
  2458.     case BNC:
  2459. switch (lp->local_state) {
  2460. case 0:
  2461.     if (lp->timeout < 0) {
  2462. omr = inl(DE4X5_OMR);          /* Set up half duplex for BNC */
  2463. outl(omr & ~OMR_FDX, DE4X5_OMR);
  2464.     }
  2465.     irqs = 0;
  2466.     irq_mask = 0;
  2467.     sts = test_media(dev,irqs, irq_mask, 0xef09, 0xf73d, 0x0006, 1000);
  2468.     if (sts < 0) {
  2469. next_tick = sts & ~TIMER_CB;
  2470.     } else {
  2471. lp->local_state++;             /* Ensure media connected */
  2472. next_tick = dc21041_autoconf(dev);
  2473.     }
  2474.     break;
  2475.     
  2476. case 1:
  2477.     if (!lp->tx_enable) {
  2478. if ((sts = ping_media(dev, 3000)) < 0) {
  2479.     next_tick = sts & ~TIMER_CB;
  2480. } else {
  2481.     if (sts) {
  2482. lp->local_state = 0;
  2483. lp->media = NC;
  2484.     } else {
  2485. de4x5_init_connection(dev);
  2486.     }
  2487. }
  2488.     } else if (!lp->linkOK && (lp->autosense == AUTO)) {
  2489. lp->media = BNC_SUSPECT;
  2490. next_tick = 3000;
  2491.     }
  2492.     break;
  2493. }
  2494. break;
  2495.     case BNC_SUSPECT:
  2496. next_tick = de4x5_suspect_state(dev, 1000, BNC, ping_media, dc21041_autoconf);
  2497. break;
  2498.     case NC:
  2499. omr = inl(DE4X5_OMR);    /* Set up full duplex for the autonegotiate */
  2500. outl(omr | OMR_FDX, DE4X5_OMR);
  2501. reset_init_sia(dev, 0xef01, 0xffff, 0x0008);/* Initialise the SIA */
  2502. if (lp->media != lp->c_media) {
  2503.     de4x5_dbg_media(dev);
  2504.     lp->c_media = lp->media;
  2505. }
  2506. lp->media = INIT;
  2507. lp->tx_enable = NO;
  2508. break;
  2509.     }
  2510.     
  2511.     return next_tick;
  2512. }
  2513. /*
  2514. ** Some autonegotiation chips are broken in that they do not return the
  2515. ** acknowledge bit (anlpa & MII_ANLPA_ACK) in the link partner advertisement
  2516. ** register, except at the first power up negotiation.
  2517. */
  2518. static int
  2519. dc21140m_autoconf(struct net_device *dev)
  2520. {
  2521.     struct de4x5_private *lp = (struct de4x5_private *)dev->priv;
  2522.     int ana, anlpa, cap, cr, slnk, sr;
  2523.     int next_tick = DE4X5_AUTOSENSE_MS;
  2524.     u_long imr, omr, iobase = dev->base_addr;
  2525.     
  2526.     switch(lp->media) {
  2527.     case INIT: 
  2528.         if (lp->timeout < 0) {
  2529.     DISABLE_IRQs;
  2530.     lp->tx_enable = FALSE;
  2531.     lp->linkOK = 0;
  2532.     de4x5_save_skbs(dev);          /* Save non transmitted skb's */
  2533. }
  2534. if ((next_tick = de4x5_reset_phy(dev)) < 0) {
  2535.     next_tick &= ~TIMER_CB;
  2536. } else {
  2537.     if (lp->useSROM) {
  2538. if (srom_map_media(dev) < 0) {
  2539.     lp->tcount++;
  2540.     return next_tick;
  2541. }
  2542. srom_exec(dev, lp->phy[lp->active].gep);
  2543. if (lp->infoblock_media == ANS) {
  2544.     ana = lp->phy[lp->active].ana | MII_ANA_CSMA;
  2545.     mii_wr(ana, MII_ANA, lp->phy[lp->active].addr, DE4X5_MII);
  2546. }
  2547.     } else {
  2548. lp->tmp = MII_SR_ASSC;     /* Fake out the MII speed set */
  2549. SET_10Mb;
  2550. if (lp->autosense == _100Mb) {
  2551.     lp->media = _100Mb;
  2552. } else if (lp->autosense == _10Mb) {
  2553.     lp->media = _10Mb;
  2554. } else if ((lp->autosense == AUTO) && 
  2555.             ((sr=is_anc_capable(dev)) & MII_SR_ANC)) {
  2556.     ana = (((sr >> 6) & MII_ANA_TAF) | MII_ANA_CSMA);
  2557.     ana &= (lp->fdx ? ~0 : ~MII_ANA_FDAM);
  2558.     mii_wr(ana, MII_ANA, lp->phy[lp->active].addr, DE4X5_MII);
  2559.     lp->media = ANS;
  2560. } else if (lp->autosense == AUTO) {
  2561.     lp->media = SPD_DET;
  2562. } else if (is_spd_100(dev) && is_100_up(dev)) {
  2563.     lp->media = _100Mb;
  2564. } else {
  2565.     lp->media = NC;
  2566. }
  2567.     }
  2568.     lp->local_state = 0;
  2569.     next_tick = dc21140m_autoconf(dev);
  2570. }
  2571. break;
  2572.     case ANS:
  2573. switch (lp->local_state) {
  2574. case 0:
  2575.     if (lp->timeout < 0) {
  2576. mii_wr(MII_CR_ASSE | MII_CR_RAN, MII_CR, lp->phy[lp->active].addr, DE4X5_MII);
  2577.     }
  2578.     cr = test_mii_reg(dev, MII_CR, MII_CR_RAN, FALSE, 500);
  2579.     if (cr < 0) {
  2580. next_tick = cr & ~TIMER_CB;
  2581.     } else {
  2582. if (cr) {
  2583.     lp->local_state = 0;
  2584.     lp->media = SPD_DET;
  2585. } else {
  2586.     lp->local_state++;
  2587. }
  2588. next_tick = dc21140m_autoconf(dev);
  2589.     }
  2590.     break;
  2591.     
  2592. case 1:
  2593.     if ((sr=test_mii_reg(dev, MII_SR, MII_SR_ASSC, TRUE, 2000)) < 0) {
  2594. next_tick = sr & ~TIMER_CB;
  2595.     } else {
  2596. lp->media = SPD_DET;
  2597. lp->local_state = 0;
  2598. if (sr) {                         /* Success! */
  2599.     lp->tmp = MII_SR_ASSC;
  2600.     anlpa = mii_rd(MII_ANLPA, lp->phy[lp->active].addr, DE4X5_MII);
  2601.     ana = mii_rd(MII_ANA, lp->phy[lp->active].addr, DE4X5_MII);
  2602.     if (!(anlpa & MII_ANLPA_RF) && 
  2603.  (cap = anlpa & MII_ANLPA_TAF & ana)) {
  2604. if (cap & MII_ANA_100M) {
  2605.     lp->fdx = ((ana & anlpa & MII_ANA_FDAM & MII_ANA_100M) ? TRUE : FALSE);
  2606.     lp->media = _100Mb;
  2607. } else if (cap & MII_ANA_10M) {
  2608.     lp->fdx = ((ana & anlpa & MII_ANA_FDAM & MII_ANA_10M) ? TRUE : FALSE);
  2609.     lp->media = _10Mb;
  2610. }
  2611.     }
  2612. }                       /* Auto Negotiation failed to finish */
  2613. next_tick = dc21140m_autoconf(dev);
  2614.     }                           /* Auto Negotiation failed to start */
  2615.     break;
  2616. }
  2617. break;
  2618.     case SPD_DET:                              /* Choose 10Mb/s or 100Mb/s */
  2619.         if (lp->timeout < 0) {
  2620.     lp->tmp = (lp->phy[lp->active].id ? MII_SR_LKS : 
  2621.                                   (~gep_rd(dev) & GEP_LNP));
  2622.     SET_100Mb_PDET;
  2623. }
  2624.         if ((slnk = test_for_100Mb(dev, 6500)) < 0) {
  2625.     next_tick = slnk & ~TIMER_CB;
  2626. } else {
  2627.     if (is_spd_100(dev) && is_100_up(dev)) {
  2628. lp->media = _100Mb;
  2629.     } else if ((!is_spd_100(dev) && (is_10_up(dev) & lp->tmp))) {
  2630. lp->media = _10Mb;
  2631.     } else {
  2632. lp->media = NC;
  2633.     }
  2634.     next_tick = dc21140m_autoconf(dev);
  2635. }
  2636. break;
  2637.     case _100Mb:                               /* Set 100Mb/s */
  2638.         next_tick = 3000;
  2639. if (!lp->tx_enable) {
  2640.     SET_100Mb;
  2641.     de4x5_init_connection(dev);
  2642. } else {
  2643.     if (!lp->linkOK && (lp->autosense == AUTO)) {
  2644. if (!is_100_up(dev) || (!lp->useSROM && !is_spd_100(dev))) {
  2645.     lp->media = INIT;
  2646.     lp->tcount++;
  2647.     next_tick = DE4X5_AUTOSENSE_MS;
  2648. }
  2649.     }
  2650. }
  2651. break;
  2652.     case BNC:
  2653.     case AUI:
  2654.     case _10Mb:                                /* Set 10Mb/s */
  2655.         next_tick = 3000;
  2656. if (!lp->tx_enable) {
  2657.     SET_10Mb;
  2658.     de4x5_init_connection(dev);
  2659. } else {
  2660.     if (!lp->linkOK && (lp->autosense == AUTO)) {
  2661. if (!is_10_up(dev) || (!lp->useSROM && is_spd_100(dev))) {
  2662.     lp->media = INIT;
  2663.     lp->tcount++;
  2664.     next_tick = DE4X5_AUTOSENSE_MS;
  2665. }
  2666.     }
  2667. }
  2668. break;
  2669.     case NC:
  2670.         if (lp->media != lp->c_media) {
  2671.     de4x5_dbg_media(dev);
  2672.     lp->c_media = lp->media;
  2673. }
  2674. lp->media = INIT;
  2675. lp->tx_enable = FALSE;
  2676. break;
  2677.     }
  2678.     
  2679.     return next_tick;
  2680. }
  2681. /*
  2682. ** This routine may be merged into dc21140m_autoconf() sometime as I'm
  2683. ** changing how I figure out the media - but trying to keep it backwards
  2684. ** compatible with the de500-xa and de500-aa.
  2685. ** Whether it's BNC, AUI, SYM or MII is sorted out in the infoblock
  2686. ** functions and set during de4x5_mac_port() and/or de4x5_reset_phy().
  2687. ** This routine just has to figure out whether 10Mb/s or 100Mb/s is
  2688. ** active.