2 * SMSC LAN9[12]1[567] Network driver
4 * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
6 * See file CREDITS for list of people who contributed to this
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
33 u32 pkt_data_pull(struct eth_device *dev, u32 addr) \
34 __attribute__ ((weak, alias ("smc911x_reg_read")));
35 void pkt_data_push(struct eth_device *dev, u32 addr, u32 val) \
36 __attribute__ ((weak, alias ("smc911x_reg_write")));
38 #define mdelay(n) udelay((n)*1000)
40 static void smc911x_handle_mac_address(struct eth_device *dev)
42 unsigned long addrh, addrl;
43 uchar *m = dev->enetaddr;
45 addrl = m[0] | (m[1] << 8) | (m[2] << 16) | (m[3] << 24);
46 addrh = m[4] | (m[5] << 8);
47 smc911x_set_mac_csr(dev, ADDRL, addrl);
48 smc911x_set_mac_csr(dev, ADDRH, addrh);
50 printf(DRIVERNAME ": MAC %pM\n", m);
53 static int smc911x_miiphy_read(struct eth_device *dev,
54 u8 phy, u8 reg, u16 *val)
56 while (smc911x_get_mac_csr(dev, MII_ACC) & MII_ACC_MII_BUSY)
59 smc911x_set_mac_csr(dev, MII_ACC, phy << 11 | reg << 6 |
62 while (smc911x_get_mac_csr(dev, MII_ACC) & MII_ACC_MII_BUSY)
65 *val = smc911x_get_mac_csr(dev, MII_DATA);
70 static int smc911x_miiphy_write(struct eth_device *dev,
71 u8 phy, u8 reg, u16 val)
73 while (smc911x_get_mac_csr(dev, MII_ACC) & MII_ACC_MII_BUSY)
76 smc911x_set_mac_csr(dev, MII_DATA, val);
77 smc911x_set_mac_csr(dev, MII_ACC,
78 phy << 11 | reg << 6 | MII_ACC_MII_BUSY | MII_ACC_MII_WRITE);
80 while (smc911x_get_mac_csr(dev, MII_ACC) & MII_ACC_MII_BUSY)
85 static int smc911x_phy_reset(struct eth_device *dev)
89 reg = smc911x_reg_read(dev, PMT_CTRL);
91 reg |= PMT_CTRL_PHY_RST;
92 smc911x_reg_write(dev, PMT_CTRL, reg);
99 static void smc911x_phy_configure(struct eth_device *dev)
104 smc911x_phy_reset(dev);
106 smc911x_miiphy_write(dev, 1, PHY_BMCR, PHY_BMCR_RESET);
108 smc911x_miiphy_write(dev, 1, PHY_ANAR, 0x01e1);
109 smc911x_miiphy_write(dev, 1, PHY_BMCR, PHY_BMCR_AUTON |
115 if ((timeout--) == 0)
118 if (smc911x_miiphy_read(dev, 1, PHY_BMSR, &status) != 0)
120 } while (!(status & PHY_BMSR_LS));
122 printf(DRIVERNAME ": phy initialized\n");
127 printf(DRIVERNAME ": autonegotiation timed out\n");
130 static void smc911x_enable(struct eth_device *dev)
133 smc911x_reg_write(dev, HW_CFG, 8 << 16 | HW_CFG_SF);
135 smc911x_reg_write(dev, GPT_CFG, GPT_CFG_TIMER_EN | 10000);
137 smc911x_reg_write(dev, TX_CFG, TX_CFG_TX_ON);
139 /* no padding to start of packets */
140 smc911x_reg_write(dev, RX_CFG, 0);
142 smc911x_set_mac_csr(dev, MAC_CR, MAC_CR_TXEN | MAC_CR_RXEN |
147 static int smc911x_init(struct eth_device *dev, bd_t * bd)
149 struct chip_id *id = dev->priv;
151 printf(DRIVERNAME ": detected %s controller\n", id->name);
155 /* Configure the PHY, initialize the link state */
156 smc911x_phy_configure(dev);
158 smc911x_handle_mac_address(dev);
160 /* Turn on Tx + Rx */
166 static int smc911x_send(struct eth_device *dev,
167 volatile void *packet, int length)
169 u32 *data = (u32*)packet;
173 smc911x_reg_write(dev, TX_DATA_FIFO, TX_CMD_A_INT_FIRST_SEG |
174 TX_CMD_A_INT_LAST_SEG | length);
175 smc911x_reg_write(dev, TX_DATA_FIFO, length);
177 tmplen = (length + 3) / 4;
180 pkt_data_push(dev, TX_DATA_FIFO, *data++);
182 /* wait for transmission */
183 while (!((smc911x_reg_read(dev, TX_FIFO_INF) &
184 TX_FIFO_INF_TSUSED) >> 16));
186 /* get status. Ignore 'no carrier' error, it has no meaning for
187 * full duplex operation
189 status = smc911x_reg_read(dev, TX_STATUS_FIFO) &
190 (TX_STS_LOC | TX_STS_LATE_COLL | TX_STS_MANY_COLL |
191 TX_STS_MANY_DEFER | TX_STS_UNDERRUN);
196 printf(DRIVERNAME ": failed to send packet: %s%s%s%s%s\n",
197 status & TX_STS_LOC ? "TX_STS_LOC " : "",
198 status & TX_STS_LATE_COLL ? "TX_STS_LATE_COLL " : "",
199 status & TX_STS_MANY_COLL ? "TX_STS_MANY_COLL " : "",
200 status & TX_STS_MANY_DEFER ? "TX_STS_MANY_DEFER " : "",
201 status & TX_STS_UNDERRUN ? "TX_STS_UNDERRUN" : "");
206 static void smc911x_halt(struct eth_device *dev)
211 static int smc911x_rx(struct eth_device *dev)
213 u32 *data = (u32 *)NetRxPackets[0];
217 if ((smc911x_reg_read(dev, RX_FIFO_INF) & RX_FIFO_INF_RXSUSED) >> 16) {
218 status = smc911x_reg_read(dev, RX_STATUS_FIFO);
219 pktlen = (status & RX_STS_PKT_LEN) >> 16;
221 smc911x_reg_write(dev, RX_CFG, 0);
223 tmplen = (pktlen + 3) / 4;
225 *data++ = pkt_data_pull(dev, RX_DATA_FIFO);
227 if (status & RX_STS_ES)
229 ": dropped bad packet. Status: 0x%08x\n",
232 NetReceive(NetRxPackets[0], pktlen);
238 int smc911x_initialize(u8 dev_num, int base_addr)
240 unsigned long addrl, addrh;
241 struct eth_device *dev;
243 dev = malloc(sizeof(*dev));
247 memset(dev, 0, sizeof(*dev));
249 dev->iobase = base_addr;
251 /* Try to detect chip. Will fail if not present. */
252 if (smc911x_detect_chip(dev)) {
257 addrh = smc911x_get_mac_csr(dev, ADDRH);
258 addrl = smc911x_get_mac_csr(dev, ADDRL);
259 if (!(addrl == 0xffffffff && addrh == 0x0000ffff)) {
260 /* address is obtained from optional eeprom */
261 dev->enetaddr[0] = addrl;
262 dev->enetaddr[1] = addrl >> 8;
263 dev->enetaddr[2] = addrl >> 16;
264 dev->enetaddr[3] = addrl >> 24;
265 dev->enetaddr[4] = addrh;
266 dev->enetaddr[5] = addrh >> 8;
269 dev->init = smc911x_init;
270 dev->halt = smc911x_halt;
271 dev->send = smc911x_send;
272 dev->recv = smc911x_rx;
273 sprintf(dev->name, "%s-%hu", DRIVERNAME, dev_num);