root/drivers/net/Space.c

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

DEFINITIONS

This source file includes following definitions.
  1. ethif_probe
  2. pc_eth_probe
  3. pc_eth_open

   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 #include <linux/errno.h>
  30 
  31 #define LOOPBACK                        /* always present, right?       */
  32 
  33 #define NEXT_DEV        NULL
  34 
  35 
  36 /* A unifed ethernet device probe.  This is the easiest way to have every
  37    ethernet adaptor have the name "eth[0123...]".
  38    */
  39 
  40 extern int ultra_probe(struct device *dev);
  41 extern int wd_probe(struct device *dev);
  42 extern int el2_probe(struct device *dev);
  43 extern int ne_probe(struct device *dev);
  44 extern int hp_probe(struct device *dev);
  45 extern int znet_probe(struct device *);
  46 extern int express_probe(struct device *);
  47 extern int el3_probe(struct device *);
  48 extern int at1500_probe(struct device *);
  49 extern int at1700_probe(struct device *);
  50 extern int depca_probe(struct device *);
  51 extern int el1_probe(struct device *);
  52 extern int el16_probe(struct device *);
  53 extern int elplus_probe(struct device *);
  54 extern int ac3200_probe(struct device *);
  55 extern int e2100_probe(struct device *);
  56 
  57 /* Detachable devices ("pocket adaptors" and special PCMCIA drivers). */
  58 extern int atp_init(struct device *);
  59 extern int de600_probe(struct device *);
  60 
  61 static int
  62 ethif_probe(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
  63 {
  64     short base_addr = dev->base_addr;
  65 
  66     if (base_addr < 0  ||  base_addr == 1)
  67         return 1;               /* ENXIO */
  68 
  69     if (1
  70 #if defined(CONFIG_ULTRA)
  71         && ultra_probe(dev)
  72 #endif
  73 #if defined(CONFIG_WD80x3) || defined(WD80x3)
  74         && wd_probe(dev)
  75 #endif
  76 #if defined(CONFIG_EL2) || defined(EL2) /* 3c503 */
  77         && el2_probe(dev)
  78 #endif
  79 #if defined(CONFIG_NE2000) || defined(NE2000)
  80         && ne_probe(dev)
  81 #endif
  82 #if defined(CONFIG_HPLAN) || defined(HPLAN)
  83         && hp_probe(dev)
  84 #endif
  85 #ifdef CONFIG_AT1500
  86         && at1500_probe(dev)
  87 #endif
  88 #ifdef CONFIG_AT1700
  89         && at1700_probe(dev)
  90 #endif
  91 #ifdef CONFIG_EL3               /* 3c509 */
  92         && el3_probe(dev)
  93 #endif
  94 #ifdef CONFIG_ZNET              /* Zenith Z-Note and some IBM Thinkpads. */
  95         && znet_probe(dev)
  96 #endif
  97 #ifdef CONFIG_EEXPRESS          /* Intel EtherExpress */
  98         && express_probe(dev)
  99 #endif
 100 #ifdef CONFIG_DEPCA             /* DEC DEPCA */
 101         && depca_probe(dev)
 102 #endif
 103 #ifdef CONFIG_EL1               /* 3c501 */
 104         && el1_probe(dev)
 105 #endif
 106 #ifdef CONFIG_EL16              /* 3c507 */
 107         && el16_probe(dev)
 108 #endif
 109 #ifdef CONFIG_ELPLUS            /* 3c505 */
 110         && elplus_probe(dev)
 111 #endif
 112 #ifdef CONFIG_AC3200            /* Ansel Communications EISA 3200. */
 113         && ac3200_probe(dev)
 114 #endif
 115 #ifdef CONFIG_E2100             /* Cabletron E21xx series. */
 116         && e2100_probe(dev)
 117 #endif
 118 #ifdef CONFIG_DE600
 119         && de600_probe(dev)
 120 #endif
 121         && 1 ) {
 122         return 1;       /* -ENODEV or -EAGAIN would be more accurate. */
 123     }
 124     return 0;
 125 }
 126 
 127 #ifdef CONFIG_PCMCIA_NET
 128 extern int dl_open(struct device *dev);
 129 extern int tc589_open(struct device *dev);
 130 extern int ibmccae_open(struct device *dev);
 131 static int pc_eth_open(struct device *dev);
 132 
 133 static int pc_eth_probe(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
 134   {
 135   dev->open = &pc_eth_open;
 136   dev->set_config = &ether_config;
 137   dev->tbusy = 1;
 138   return 0;
 139   }
 140 
 141 static int pc_eth_open(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
 142   {
 143   if (1
 144 #ifdef CONFIG_DE650
 145       && dl_open(dev)
 146 #endif
 147 #ifdef CONFIG_3C589
 148       && tc589_open(dev)
 149 #endif
 150 #ifdef CONFIG_IBMCCAE
 151       && ibmccae_open(dev)
 152 #endif
 153       && 1)
 154     return -ENODEV;
 155   else
 156     return 0;
 157   }
 158 #endif /* CONFIG_PCMCIA_NET */
 159 
 160 
 161 /* Run-time ATtachable (Pocket) devices have a different (not "eth#") name. */
 162 #ifdef CONFIG_ATP               /* AT-LAN-TEC (RealTek) pocket adaptor. */
 163 static struct device atp_dev = {
 164     "atp0", 0, 0, 0, 0, 0, 0, 0, 0, 0, NEXT_DEV, atp_init, /* ... */ };
 165 #   undef NEXT_DEV
 166 #   define NEXT_DEV     (&atp_dev)
 167 #endif
 168 
 169 #ifdef CONFIG_PCMCIA_NET
 170 static struct device pc_eth1_dev = {
 171     "pc_eth1", 0, 0, 0, 0, 0, 0, 0, 0, 0, NEXT_DEV, pc_eth_probe,
 172     };
 173 static struct device pc_eth0_dev = {
 174     "pc_eth0", 0, 0, 0, 0, 0, 0, 0, 0, 0, &pc_eth1_dev, pc_eth_probe,
 175     };
 176 #   undef NEXT_DEV
 177 #   define NEXT_DEV     (&pc_eth0_dev)
 178 #endif /* CONFIG_PCMCIA_NET */
 179 
 180 /* The first device defaults to I/O base '0', which means autoprobe. */
 181 #ifndef ETH0_ADDR
 182 # define ETH0_ADDR 0
 183 #endif
 184 #ifndef ETH0_IRQ
 185 # define ETH0_IRQ 0
 186 #endif
 187 /* "eth0" defaults to autoprobe (== 0), other use a base of 0xffe0 (== -0x20),
 188    which means "don't probe".  These entries exist to only to provide empty
 189    slots which may be enabled at boot-time. */
 190 
 191 static struct device eth3_dev = {
 192     "eth3", 0,0,0,0,0xffe0 /* I/O base*/, 0,0,0,0, NEXT_DEV, ethif_probe };
 193 static struct device eth2_dev = {
 194     "eth2", 0,0,0,0,0xffe0 /* I/O base*/, 0,0,0,0, &eth3_dev, ethif_probe };
 195 static struct device eth1_dev = {
 196     "eth1", 0,0,0,0,0xffe0 /* I/O base*/, 0,0,0,0, &eth2_dev, ethif_probe };
 197 
 198 static struct device eth0_dev = {
 199     "eth0", 0, 0, 0, 0, ETH0_ADDR, ETH0_IRQ, 0, 0, 0, &eth1_dev, ethif_probe };
 200 
 201 #   undef NEXT_DEV
 202 #   define NEXT_DEV     (&eth0_dev)
 203 
 204 #if defined(PLIP) || defined(CONFIG_PLIP)
 205     extern int plip_init(struct device *);
 206     static struct device plip2_dev = {
 207         "plip2", 0, 0, 0, 0, 0x278, 2, 0, 0, 0, NEXT_DEV, plip_init, };
 208     static struct device plip1_dev = {
 209         "plip1", 0, 0, 0, 0, 0x378, 7, 0, 0, 0, &plip2_dev, plip_init, };
 210     static struct device plip0_dev = {
 211         "plip0", 0, 0, 0, 0, 0x3BC, 5, 0, 0, 0, &plip1_dev, plip_init, };
 212 #   undef NEXT_DEV
 213 #   define NEXT_DEV     (&plip0_dev)
 214 #endif  /* PLIP */
 215 
 216 #if defined(SLIP) || defined(CONFIG_SLIP)
 217     extern int slip_init(struct device *);
 218     static struct device slip3_dev = {
 219         "sl3",                  /* Internal SLIP driver, channel 3      */
 220         0x0,                    /* recv memory end                      */
 221         0x0,                    /* recv memory start                    */
 222         0x0,                    /* memory end                           */
 223         0x0,                    /* memory start                         */
 224         0x3,                    /* base I/O address                     */
 225         0,                      /* IRQ                                  */
 226         0, 0, 0,                /* flags                                */
 227         NEXT_DEV,               /* next device                          */
 228         slip_init               /* slip_init should set up the rest     */
 229     };
 230     static struct device slip2_dev = {
 231         "sl2",                  /* Internal SLIP driver, channel 2      */
 232         0x0,                    /* recv memory end                      */
 233         0x0,                    /* recv memory start                    */
 234         0x0,                    /* memory end                           */
 235         0x0,                    /* memory start                         */
 236         0x2,                    /* base I/O address                     */
 237         0,                      /* IRQ                                  */
 238         0, 0, 0,                /* flags                                */
 239         &slip3_dev,             /* next device                          */
 240         slip_init               /* slip_init should set up the rest     */
 241     };
 242     static struct device slip1_dev = {
 243         "sl1",                  /* Internal SLIP driver, channel 1      */
 244         0x0,                    /* recv memory end                      */
 245         0x0,                    /* recv memory start                    */
 246         0x0,                    /* memory end                           */
 247         0x0,                    /* memory start                         */
 248         0x1,                    /* base I/O address                     */
 249         0,                      /* IRQ                                  */
 250         0, 0, 0,                /* flags                                */
 251         &slip2_dev,             /* next device                          */
 252         slip_init               /* slip_init should set up the rest     */
 253     };
 254     static struct device slip0_dev = {
 255         "sl0",                  /* Internal SLIP driver, channel 0      */
 256         0x0,                    /* recv memory end                      */
 257         0x0,                    /* recv memory start                    */
 258         0x0,                    /* memory end                           */
 259         0x0,                    /* memory start                         */
 260         0x0,                    /* base I/O address                     */
 261         0,                      /* IRQ                                  */
 262         0, 0, 0,                /* flags                                */
 263         &slip1_dev,             /* next device                          */
 264         slip_init               /* slip_init should set up the rest     */
 265     };
 266 #   undef       NEXT_DEV
 267 #   define      NEXT_DEV        (&slip0_dev)
 268 #endif  /* SLIP */
 269   
 270 #if defined(CONFIG_PPP)
 271 extern int ppp_init(struct device *);
 272 static struct device ppp3_dev = {
 273     "ppp3", 0x0, 0x0, 0x0, 0x0, 3, 0, 0, 0, 0, NEXT_DEV,  ppp_init, };
 274 static struct device ppp2_dev = {
 275     "ppp2", 0x0, 0x0, 0x0, 0x0, 2, 0, 0, 0, 0, &ppp3_dev, ppp_init, };
 276 static struct device ppp1_dev = {
 277     "ppp1", 0x0, 0x0, 0x0, 0x0, 1, 0, 0, 0, 0, &ppp2_dev, ppp_init, };
 278 static struct device ppp0_dev = {
 279     "ppp0", 0x0, 0x0, 0x0, 0x0, 0, 0, 0, 0, 0, &ppp1_dev, ppp_init, };
 280 #undef NEXT_DEV
 281 #define NEXT_DEV (&ppp0_dev)
 282 #endif   /* PPP */
 283 
 284 #ifdef CONFIG_DUMMY
 285     extern int dummy_init(struct device *dev);
 286     static struct device dummy_dev = {
 287         "dummy", 0x0, 0x0, 0x0, 0x0, 0, 0, 0, 0, 0, NEXT_DEV, dummy_init, };
 288 #   undef       NEXT_DEV
 289 #   define      NEXT_DEV        (&dummy_dev)
 290 #endif
 291 
 292 #ifdef LOOPBACK
 293     extern int loopback_init(struct device *dev);
 294     static struct device loopback_dev = {
 295         "lo",                   /* Software Loopback interface          */
 296         0x0,                    /* recv memory end                      */
 297         0x0,                    /* recv memory start                    */
 298         0x0,                    /* memory end                           */
 299         0x0,                    /* memory start                         */
 300         0,                      /* base I/O address                     */
 301         0,                      /* IRQ                                  */
 302         0, 0, 0,                /* flags                                */
 303         NEXT_DEV,               /* next device                          */
 304         loopback_init           /* loopback_init should set up the rest */
 305     };
 306 #   undef       NEXT_DEV
 307 #   define      NEXT_DEV        (&loopback_dev)
 308 #endif
 309 
 310 
 311 struct device *dev_base = NEXT_DEV;

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