Blame view

doc/README.drivers.eth 6.59 KB
1f1e774ec   Mike Frysinger   document network ...
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
  -----------------------
   Ethernet Driver Guide
  -----------------------
  
  The networking stack in Das U-Boot is designed for multiple network devices
  to be easily added and controlled at runtime.  This guide is meant for people
  who wish to review the net driver stack with an eye towards implementing your
  own ethernet device driver.  Here we will describe a new pseudo 'APE' driver.
  
  ------------------
   Driver Functions
  ------------------
  
  All functions you will be implementing in this document have the return value
  meaning of 0 for success and non-zero for failure.
  
   ----------
    Register
   ----------
  
  When U-Boot initializes, it will call the common function eth_initialize().
  This will in turn call the board-specific board_eth_init() (or if that fails,
  the cpu-specific cpu_eth_init()).  These board-specific functions can do random
  system handling, but ultimately they will call the driver-specific register
  function which in turn takes care of initializing that particular instance.
  
  Keep in mind that you should code the driver to avoid storing state in global
99dbd4efd   Ben Warren   Add information a...
28
29
30
  data as someone might want to hook up two of the same devices to one board.
  Any such information that is specific to an interface should be stored in a
  private, driver-defined data structure and pointed to by eth->priv (see below).
1f1e774ec   Mike Frysinger   document network ...
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
  
  So the call graph at this stage would look something like:
  board_init()
  	eth_initialize()
  		board_eth_init() / cpu_eth_init()
  			driver_register()
  				initialize eth_device
  				eth_register()
  
  At this point in time, the only thing you need to worry about is the driver's
  register function.  The pseudo code would look something like:
  int ape_register(bd_t *bis, int iobase)
  {
  	struct ape_priv *priv;
  	struct eth_device *dev;
  
  	priv = malloc(sizeof(*priv));
  	if (priv == NULL)
  		return 1;
  
  	dev = malloc(sizeof(*dev));
  	if (dev == NULL) {
  		free(priv);
  		return 1;
  	}
  
  	/* setup whatever private state you need */
  
  	memset(dev, 0, sizeof(*dev));
  	sprintf(dev->name, "APE");
  
  	/* if your device has dedicated hardware storage for the
  	 * MAC, read it and initialize dev->enetaddr with it
  	 */
  	ape_mac_read(dev->enetaddr);
  
  	dev->iobase = iobase;
  	dev->priv = priv;
  	dev->init = ape_init;
  	dev->halt = ape_halt;
  	dev->send = ape_send;
  	dev->recv = ape_recv;
ecee9324d   Ben Warren   Program net devic...
73
  	dev->write_hwaddr = ape_write_hwaddr;
1f1e774ec   Mike Frysinger   document network ...
74
75
76
77
78
79
  
  	eth_register(dev);
  
  #ifdef CONFIG_CMD_MII)
  	miiphy_register(dev->name, ape_mii_read, ape_mii_write);
  #endif
99dbd4efd   Ben Warren   Add information a...
80
  	return 1;
1f1e774ec   Mike Frysinger   document network ...
81
82
83
84
  }
  
  The exact arguments needed to initialize your device are up to you.  If you
  need to pass more/less arguments, that's fine.  You should also add the
99dbd4efd   Ben Warren   Add information a...
85
86
87
88
89
  prototype for your new register function to include/netdev.h.
  
  The return value for this function should be as follows:
  < 0 - failure (hardware failure, not probe failure)
  >=0 - number of interfaces detected
4946775c6   Wolfgang Denk   Coding Style clea...
90
  You might notice that many drivers seem to use xxx_initialize() rather than
99dbd4efd   Ben Warren   Add information a...
91
92
  xxx_register().  This is the old naming convention and should be avoided as it
  causes confusion with the driver-specific init function.
1f1e774ec   Mike Frysinger   document network ...
93
94
95
96
97
98
99
100
101
102
103
  
  Other than locating the MAC address in dedicated hardware storage, you should
  not touch the hardware in anyway.  That step is handled in the driver-specific
  init function.  Remember that we are only registering the device here, we are
  not checking its state or doing random probing.
  
   -----------
    Callbacks
   -----------
  
  Now that we've registered with the ethernet layer, we can start getting some
ecee9324d   Ben Warren   Program net devic...
104
  real work done.  You will need five functions:
1f1e774ec   Mike Frysinger   document network ...
105
106
107
108
  	int ape_init(struct eth_device *dev, bd_t *bis);
  	int ape_send(struct eth_device *dev, volatile void *packet, int length);
  	int ape_recv(struct eth_device *dev);
  	int ape_halt(struct eth_device *dev);
ecee9324d   Ben Warren   Program net devic...
109
  	int ape_write_hwaddr(struct eth_device *dev);
1f1e774ec   Mike Frysinger   document network ...
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
  
  The init function checks the hardware (probing/identifying) and gets it ready
  for send/recv operations.  You often do things here such as resetting the MAC
  and/or PHY, and waiting for the link to autonegotiate.  You should also take
  the opportunity to program the device's MAC address with the dev->enetaddr
  member.  This allows the rest of U-Boot to dynamically change the MAC address
  and have the new settings be respected.
  
  The send function does what you think -- transmit the specified packet whose
  size is specified by length (in bytes).  You should not return until the
  transmission is complete, and you should leave the state such that the send
  function can be called multiple times in a row.
  
  The recv function should process packets as long as the hardware has them
  readily available before returning.  i.e. you should drain the hardware fifo.
e5c5d9e08   Mike Frysinger   clarify eth drive...
125
126
127
128
129
130
  For each packet you receive, you should call the NetReceive() function on it
  along with the packet length.  The common code sets up packet buffers for you
  already in the .bss (NetRxPackets), so there should be no need to allocate your
  own.  This doesn't mean you must use the NetRxPackets array however; you're
  free to call the NetReceive() function with any buffer you wish.  So the pseudo
  code here would look something like:
1f1e774ec   Mike Frysinger   document network ...
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
  int ape_recv(struct eth_device *dev)
  {
  	int length, i = 0;
  	...
  	while (packets_are_available()) {
  		...
  		length = ape_get_packet(&NetRxPackets[i]);
  		...
  		NetReceive(&NetRxPackets[i], length);
  		...
  		if (++i >= PKTBUFSRX)
  			i = 0;
  		...
  	}
  	...
  	return 0;
  }
  
  The halt function should turn off / disable the hardware and place it back in
e5c5d9e08   Mike Frysinger   clarify eth drive...
150
151
  its reset state.  It can be called at any time (before any call to the related
  init function), so make sure it can handle this sort of thing.
1f1e774ec   Mike Frysinger   document network ...
152

ecee9324d   Ben Warren   Program net devic...
153
154
  The write_hwaddr function should program the MAC address stored in dev->enetaddr
  into the Ethernet controller.
1f1e774ec   Mike Frysinger   document network ...
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
  So the call graph at this stage would look something like:
  some net operation (ping / tftp / whatever...)
  	eth_init()
  		dev->init()
  	eth_send()
  		dev->send()
  	eth_rx()
  		dev->recv()
  	eth_halt()
  		dev->halt()
  
  -----------------------------
   CONFIG_MII / CONFIG_CMD_MII
  -----------------------------
  
  If your device supports banging arbitrary values on the MII bus (pretty much
  every device does), you should add support for the mii command.  Doing so is
  fairly trivial and makes debugging mii issues a lot easier at runtime.
  
  After you have called eth_register() in your driver's register function, add
  a call to miiphy_register() like so:
  #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
  	miiphy_register(dev->name, mii_read, mii_write);
  #endif
  
  And then define the mii_read and mii_write functions if you haven't already.
  Their syntax is straightforward:
  	int mii_read(char *devname, uchar addr, uchar reg, ushort *val);
  	int mii_write(char *devname, uchar addr, uchar reg, ushort val);
  
  The read function should read the register 'reg' from the phy at address 'addr'
  and store the result in the pointer 'val'.  The implementation for the write
  function should logically follow.