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

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