UDM-net.txt 13.2 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
The U-Boot Driver Model Project
===============================
Net system analysis
===================
Marek Vasut <marek.vasut@gmail.com>
2012-03-03

I) Overview
-----------

The networking subsystem already supports multiple devices. Therefore the
conversion shall not be very hard.

The network subsystem is operated from net/eth.c, which tracks all registered
ethernet interfaces and calls their particular functions registered via
eth_register().

The eth_register() is called from the network driver initialization function,
which in turn is called most often either from "board_net_init()" or
"cpu_net_init()". This function has one important argument, which is the
"struct eth_device", defined at include/net.h:

struct eth_device {
  /* DRIVER: Name of the device */
  char name[NAMESIZE];
  /* DRIVER: MAC address */
  unsigned char enetaddr[6];
  /* DRIVER: Register base address */
  int iobase;
  /* CORE: state of the device */
  int state;

  /* DRIVER: Device initialization function */
  int  (*init) (struct eth_device*, bd_t*);
  /* DRIVER: Function for sending packets */
  int  (*send) (struct eth_device*, volatile void* packet, int length);
  /* DRIVER: Function for receiving packets */
  int  (*recv) (struct eth_device*);
  /* DRIVER: Function to cease operation of the device */
  void (*halt) (struct eth_device*);
  /* DRIVER: Function to send multicast packet (OPTIONAL) */
  int (*mcast) (struct eth_device*, u32 ip, u8 set);
  /* DRIVER: Function to change ethernet MAC address */
  int  (*write_hwaddr) (struct eth_device*);
  /* CORE: Next device in the linked list of devices managed by net core */
  struct eth_device *next;
  /* CORE: Device index */
  int index;
  /* DRIVER: Driver's private data */
  void *priv;
};

This structure defines the particular driver, though also contains elements that
should not be exposed to the driver, like core state.

Small, but important part of the networking subsystem is the PHY management
layer, whose drivers are contained in drivers/net/phy. These drivers register in
a very similar manner to network drivers, by calling "phy_register()" with the
argument of "struct phy_driver":

struct phy_driver {
  /* DRIVER: Name of the PHY driver */
  char *name;
  /* DRIVER: UID of the PHY driver */
  unsigned int uid;
  /* DRIVER: Mask for UID of the PHY driver */
  unsigned int mask;
  /* DRIVER: MMDS of the PHY driver */
  unsigned int mmds;
  /* DRIVER: Features the PHY driver supports */
  u32 features;
  /* DRIVER: Initialize the PHY hardware */
  int (*probe)(struct phy_device *phydev);
  /* DRIVER: Reconfigure the PHY hardware */
  int (*config)(struct phy_device *phydev);
  /* DRIVER: Turn on the PHY hardware, allow it to send/receive */
  int (*startup)(struct phy_device *phydev);
  /* DRIVER: Turn off the PHY hardware */
  int (*shutdown)(struct phy_device *phydev);
  /* CORE: Allows this driver to be part of list of drivers */
  struct list_head list;
};

II) Approach
------------

To convert the elements of network subsystem to proper driver model method, the
"struct eth_device" will have to be split into multiple components. The first
will be a structure defining the driver operations:

struct eth_driver_ops {
  int  (*init)(struct instance*, bd_t*);
  int  (*send)(struct instance*, void *packet, int length);
  int  (*recv)(struct instance*);
  void (*halt)(struct instance*);
  int  (*mcast)(struct instance*, u32 ip, u8 set);
  int  (*write_hwaddr)(struct instance*);
};

Next, there'll be platform data which will be per-driver and will replace the
"priv" part of "struct eth_device". Last part will be the per-device core state.

With regards to the PHY part of the API, the "struct phy_driver" is almost ready
to be used with the new driver model approach. The only change will be the
replacement of per-driver initialization functions and removal of
"phy_register()" function in favor or driver model approach.

III) Analysis of in-tree drivers
--------------------------------

  drivers/net/4xx_enet.c
  ----------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/altera_tse.c
  ------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/armada100_fec.c
  ---------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/at91_emac.c
  -----------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/ax88180.c
  ---------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/ax88796.c
  ---------------------

  This file contains a components of the NE2000 driver, implementing only
  different parts on the NE2000 clone AX88796. This being no standalone driver,
  no conversion will be done here.

  drivers/net/bfin_mac.c
  ----------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/calxedaxgmac.c
  --------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/cs8900.c
  --------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/davinci_emac.c
  --------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/dc2114x.c
  ---------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/designware.c
  ------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/dm9000x.c
  ---------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/dnet.c
  ------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/e1000.c
  -------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/e1000_spi.c
  -----------------------

  Driver for the SPI bus integrated on the Intel E1000. This is not part of the
  network stack.

  drivers/net/eepro100.c
  ----------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/enc28j60.c
  ----------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/ep93xx_eth.c
  ------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/ethoc.c
  -------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/fec_mxc.c
  ---------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/fsl_mcdmafec.c
  --------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/fsl_mdio.c
  ----------------------

  This file contains driver for FSL MDIO interface, which is not part of the
  networking stack.

  drivers/net/ftgmac100.c
  -----------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/ftmac100.c
  ----------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/greth.c
  -------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/inca-ip_sw.c
  ------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/ks8695eth.c
  -----------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/lan91c96.c
  ----------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/macb.c
  ------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/mcffec.c
  --------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/mcfmii.c
  --------------------

  This file contains MII interface driver for MCF FEC.

  drivers/net/mpc512x_fec.c
  -------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/mpc5xxx_fec.c
  -------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/mvgbe.c
  -------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/natsemi.c
  ---------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/ne2000_base.c
  -------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process. This driver contains the core
  implementation of NE2000, which needs a few external functions, implemented by
  AX88796, NE2000 etc.

  drivers/net/ne2000.c
  --------------------

  This file implements external functions necessary for native NE2000 compatible
  networking card to work.

  drivers/net/netconsole.c
  ------------------------

  This is actually an STDIO driver.

  drivers/net/ns8382x.c
  ---------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/pcnet.c
  -------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/plb2800_eth.c
  -------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/rtl8139.c
  ---------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/rtl8169.c
  ---------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/sh_eth.c
  --------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/smc91111.c
  ----------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/smc911x.c
  ---------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/tsec.c
  ------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/tsi108_eth.c
  ------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/uli526x.c
  ---------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/vsc7385.c
  ---------------------

  This is a driver that only uploads firmware to a switch. This is not subject
  of conversion.

  drivers/net/xilinx_axi_emac.c
  -----------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.

  drivers/net/xilinx_emaclite.c
  -----------------------------

  This driver uses the standard new networking API, therefore there should be no
  obstacles throughout the conversion process.