root/drivers/net/Space.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. ethif_probe

   1 /*
   2  * INET         An implementation of the TCP/IP protocol suite for the LINUX
   3  *              operating system.  INET is implemented using the  BSD Socket
   4  *              interface as the means of communication with the user level.
   5  *
   6  *              Holds initial configuration information for devices.
   7  *
   8  * NOTE:        This file is a nice idea, but its current format does not work
   9  *              well for drivers that support multiple units, like the SLIP
  10  *              driver.  We should actually have only one pointer to a driver
  11  *              here, with the driver knowing how many units it supports.
  12  *              Currently, the SLIP driver abuses the "base_addr" integer
  13  *              field of the 'device' structure to store the unit number...
  14  *              -FvK
  15  *
  16  * Version:     @(#)Space.c     1.0.7   08/12/93
  17  *
  18  * Authors:     Ross Biro, <bir7@leland.Stanford.Edu>
  19  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  20  *              Donald J. Becker, <becker@super.org>
  21  *
  22  *              This program is free software; you can redistribute it and/or
  23  *              modify it under the terms of the GNU General Public License
  24  *              as published by the Free Software Foundation; either version
  25  *              2 of the License, or (at your option) any later version.
  26  */
  27 #include <linux/config.h>
  28 #include <linux/netdevice.h>
  29 
  30 #define LOOPBACK                        /* always present, right?       */
  31 
  32 #define NEXT_DEV        NULL
  33 
  34 
  35 /* A unifed ethernet device probe.  This is the easiest way to have every
  36    ethernet adaptor have the name "eth[0123...]".
  37    */
  38 
  39 extern int ultra_probe(struct device *dev);
  40 extern int wd_probe(struct device *dev);
  41 extern int el2_probe(struct device *dev);
  42 extern int ne_probe(struct device *dev);
  43 extern int hp_probe(struct device *dev);
  44 extern int znet_probe(struct device *);
  45 extern int express_probe(struct device *);
  46 extern int el3_probe(struct device *);
  47 extern int at1500_probe(struct device *);
  48 extern int at1700_probe(struct device *);
  49 extern int depca_probe(struct device *);
  50 extern int el1_probe(struct device *);
  51 extern int el16_probe(struct device *);
  52 extern int elplus_probe(struct device *);
  53 extern int ac3200_probe(struct device *);
  54 extern int e2100_probe(struct device *);
  55 
  56 /* Detachable devices ("pocket adaptors" and special PCMCIA drivers). */
  57 extern int atp_init(struct device *);
  58 extern int de600_probe(struct device *);
  59 
  60 static int
  61 ethif_probe(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
  62 {
  63     short base_addr = dev->base_addr;
  64 
  65     if (base_addr < 0  ||  base_addr == 1)
  66         return 1;               /* ENXIO */
  67 
  68     if (1
  69 #if defined(CONFIG_ULTRA)
  70         && ultra_probe(dev)
  71 #endif
  72 #if defined(CONFIG_WD80x3) || defined(WD80x3)
  73         && wd_probe(dev)
  74 #endif
  75 #if defined(CONFIG_EL2) || defined(EL2) /* 3c503 */
  76         && el2_probe(dev)
  77 #endif
  78 #if defined(CONFIG_NE2000) || defined(NE2000)
  79         && ne_probe(dev)
  80 #endif
  81 #if defined(CONFIG_HPLAN) || defined(HPLAN)
  82         && hp_probe(dev)
  83 #endif
  84 #ifdef CONFIG_AT1500
  85         && at1500_probe(dev)
  86 #endif
  87 #ifdef CONFIG_AT1700
  88         && at1700_probe(dev)
  89 #endif
  90 #ifdef CONFIG_EL3               /* 3c509 */
  91         && el3_probe(dev)
  92 #endif
  93 #ifdef CONFIG_ZNET              /* Zenith Z-Note and some IBM Thinkpads. */
  94         && znet_probe(dev)
  95 #endif
  96 #ifdef CONFIG_EEXPRESS          /* Intel EtherExpress */
  97         && express_probe(dev)
  98 #endif
  99 #ifdef CONFIG_DEPCA             /* DEC DEPCA */
 100         && depca_probe(dev)
 101 #endif
 102 #ifdef CONFIG_EL1               /* 3c501 */
 103         && el1_probe(dev)
 104 #endif
 105 #ifdef CONFIG_EL16              /* 3c507 */
 106         && el16_probe(dev)
 107 #endif
 108 #ifdef CONFIG_ELPLUS            /* 3c505 */
 109         && elplus_probe(dev)
 110 #endif
 111 #ifdef CONFIG_AC3200            /* Ansel Communications EISA 3200. */
 112         && ac3200_probe(dev)
 113 #endif
 114 #ifdef CONFIG_E2100             /* Cabletron E21xx series. */
 115         && e2100_probe(dev)
 116 #endif
 117 #ifdef CONFIG_DE600
 118         && de600_probe(dev)
 119 #endif
 120         && 1 ) {
 121         return 1;       /* -ENODEV or -EAGAIN would be more accurate. */
 122     }
 123     return 0;
 124 }
 125 
 126 
 127 /* Run-time ATtachable (Pocket) devices have a different (not "eth#") name. */
 128 #ifdef CONFIG_ATP               /* AT-LAN-TEC (RealTek) pocket adaptor. */
 129 static struct device atp_dev = {
 130     "atp0", 0, 0, 0, 0, 0, 0, 0, 0, 0, NEXT_DEV, atp_init, /* ... */ };
 131 #   undef NEXT_DEV
 132 #   define NEXT_DEV     (&atp_dev)
 133 #endif
 134 
 135 /* The first device defaults to I/O base '0', which means autoprobe. */
 136 #ifndef ETH0_ADDR
 137 # define ETH0_ADDR 0
 138 #endif
 139 #ifndef ETH0_IRQ
 140 # define ETH0_IRQ 0
 141 #endif
 142 /* "eth0" defaults to autoprobe (== 0), other use a base of 0xffe0 (== -0x20),
 143    which means "don't probe".  These entries exist to only to provide empty
 144    slots which may be enabled at boot-time. */
 145 
 146 static struct device eth3_dev = {
 147     "eth3", 0,0,0,0,0xffe0 /* I/O base*/, 0,0,0,0, NEXT_DEV, ethif_probe };
 148 static struct device eth2_dev = {
 149     "eth2", 0,0,0,0,0xffe0 /* I/O base*/, 0,0,0,0, &eth3_dev, ethif_probe };
 150 static struct device eth1_dev = {
 151     "eth1", 0,0,0,0,0xffe0 /* I/O base*/, 0,0,0,0, &eth2_dev, ethif_probe };
 152 
 153 static struct device eth0_dev = {
 154     "eth0", 0, 0, 0, 0, ETH0_ADDR, ETH0_IRQ, 0, 0, 0, &eth1_dev, ethif_probe };
 155 
 156 #   undef NEXT_DEV
 157 #   define NEXT_DEV     (&eth0_dev)
 158 
 159 #if defined(PLIP) || defined(CONFIG_PLIP)
 160     extern int plip_init(struct device *);
 161     static struct device plip2_dev = {
 162         "plip2", 0, 0, 0, 0, 0x278, 2, 0, 0, 0, NEXT_DEV, plip_init, };
 163     static struct device plip1_dev = {
 164         "plip1", 0, 0, 0, 0, 0x378, 7, 0, 0, 0, &plip2_dev, plip_init, };
 165     static struct device plip0_dev = {
 166         "plip0", 0, 0, 0, 0, 0x3BC, 5, 0, 0, 0, &plip1_dev, plip_init, };
 167 #   undef NEXT_DEV
 168 #   define NEXT_DEV     (&plip0_dev)
 169 #endif  /* PLIP */
 170 
 171 #if defined(SLIP) || defined(CONFIG_SLIP)
 172     extern int slip_init(struct device *);
 173     static struct device slip3_dev = {
 174         "sl3",                  /* Internal SLIP driver, channel 3      */
 175         0x0,                    /* recv memory end                      */
 176         0x0,                    /* recv memory start                    */
 177         0x0,                    /* memory end                           */
 178         0x0,                    /* memory start                         */
 179         0x3,                    /* base I/O address                     */
 180         0,                      /* IRQ                                  */
 181         0, 0, 0,                /* flags                                */
 182         NEXT_DEV,               /* next device                          */
 183         slip_init               /* slip_init should set up the rest     */
 184     };
 185     static struct device slip2_dev = {
 186         "sl2",                  /* Internal SLIP driver, channel 2      */
 187         0x0,                    /* recv memory end                      */
 188         0x0,                    /* recv memory start                    */
 189         0x0,                    /* memory end                           */
 190         0x0,                    /* memory start                         */
 191         0x2,                    /* base I/O address                     */
 192         0,                      /* IRQ                                  */
 193         0, 0, 0,                /* flags                                */
 194         &slip3_dev,             /* next device                          */
 195         slip_init               /* slip_init should set up the rest     */
 196     };
 197     static struct device slip1_dev = {
 198         "sl1",                  /* Internal SLIP driver, channel 1      */
 199         0x0,                    /* recv memory end                      */
 200         0x0,                    /* recv memory start                    */
 201         0x0,                    /* memory end                           */
 202         0x0,                    /* memory start                         */
 203         0x1,                    /* base I/O address                     */
 204         0,                      /* IRQ                                  */
 205         0, 0, 0,                /* flags                                */
 206         &slip2_dev,             /* next device                          */
 207         slip_init               /* slip_init should set up the rest     */
 208     };
 209     static struct device slip0_dev = {
 210         "sl0",                  /* Internal SLIP driver, channel 0      */
 211         0x0,                    /* recv memory end                      */
 212         0x0,                    /* recv memory start                    */
 213         0x0,                    /* memory end                           */
 214         0x0,                    /* memory start                         */
 215         0x0,                    /* base I/O address                     */
 216         0,                      /* IRQ                                  */
 217         0, 0, 0,                /* flags                                */
 218         &slip1_dev,             /* next device                          */
 219         slip_init               /* slip_init should set up the rest     */
 220     };
 221 #   undef       NEXT_DEV
 222 #   define      NEXT_DEV        (&slip0_dev)
 223 #endif  /* SLIP */
 224   
 225 #if defined(CONFIG_PPP)
 226 extern int ppp_init(struct device *);
 227 static struct device ppp3_dev = {
 228     "ppp3", 0x0, 0x0, 0x0, 0x0, 3, 0, 0, 0, 0, NEXT_DEV,  ppp_init, };
 229 static struct device ppp2_dev = {
 230     "ppp2", 0x0, 0x0, 0x0, 0x0, 2, 0, 0, 0, 0, &ppp3_dev, ppp_init, };
 231 static struct device ppp1_dev = {
 232     "ppp1", 0x0, 0x0, 0x0, 0x0, 1, 0, 0, 0, 0, &ppp2_dev, ppp_init, };
 233 static struct device ppp0_dev = {
 234     "ppp0", 0x0, 0x0, 0x0, 0x0, 0, 0, 0, 0, 0, &ppp1_dev, ppp_init, };
 235 #undef NEXT_DEV
 236 #define NEXT_DEV (&ppp0_dev)
 237 #endif   /* PPP */
 238 
 239 #ifdef LOOPBACK
 240     extern int loopback_init(struct device *dev);
 241     static struct device loopback_dev = {
 242         "lo",                   /* Software Loopback interface          */
 243         0x0,                    /* recv memory end                      */
 244         0x0,                    /* recv memory start                    */
 245         0x0,                    /* memory end                           */
 246         0x0,                    /* memory start                         */
 247         0,                      /* base I/O address                     */
 248         0,                      /* IRQ                                  */
 249         0, 0, 0,                /* flags                                */
 250         NEXT_DEV,               /* next device                          */
 251         loopback_init           /* loopback_init should set up the rest */
 252     };
 253 #   undef       NEXT_DEV
 254 #   define      NEXT_DEV        (&loopback_dev)
 255 #endif
 256 
 257 
 258 struct device *dev_base = NEXT_DEV;

/* [previous][next][first][last][top][bottom][index][help] */