blob: d6ebe0764344c4bc55f0036064318968367f7ce7 [file] [log] [blame]
wdenk5da627a2003-10-09 20:09:04 +00001/* Only eth0 supported for now
2 *
3 * (C) Copyright 2003
4 * Thomas.Lange@corelatus.se
5 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02006 * SPDX-License-Identifier: GPL-2.0+
wdenk5da627a2003-10-09 20:09:04 +00007 */
8#include <config.h>
9
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020010#if defined(CONFIG_SYS_DISCOVER_PHY)
Wolfgang Denk265817c2005-09-25 00:53:22 +020011#error "PHY not supported yet"
wdenk5da627a2003-10-09 20:09:04 +000012/* We just assume that we are running 100FD for now */
13/* We all use switches, right? ;-) */
14#endif
15
wdenka2663ea2003-12-07 18:32:37 +000016/* I assume ethernet behaves like au1000 */
17
Shinya Kuribayashi8bde63e2008-06-07 20:51:56 +090018#ifdef CONFIG_SOC_AU1000
wdenk5da627a2003-10-09 20:09:04 +000019/* Base address differ between cpu:s */
20#define ETH0_BASE AU1000_ETH0_BASE
21#define MAC0_ENABLE AU1000_MAC0_ENABLE
22#else
Shinya Kuribayashi8bde63e2008-06-07 20:51:56 +090023#ifdef CONFIG_SOC_AU1100
wdenka2663ea2003-12-07 18:32:37 +000024#define ETH0_BASE AU1100_ETH0_BASE
25#define MAC0_ENABLE AU1100_MAC0_ENABLE
26#else
Shinya Kuribayashi8bde63e2008-06-07 20:51:56 +090027#ifdef CONFIG_SOC_AU1500
wdenka2663ea2003-12-07 18:32:37 +000028#define ETH0_BASE AU1500_ETH0_BASE
29#define MAC0_ENABLE AU1500_MAC0_ENABLE
30#else
Shinya Kuribayashi8bde63e2008-06-07 20:51:56 +090031#ifdef CONFIG_SOC_AU1550
wdenkff36fd82005-01-09 22:28:56 +000032#define ETH0_BASE AU1550_ETH0_BASE
33#define MAC0_ENABLE AU1550_MAC0_ENABLE
34#else
wdenka2663ea2003-12-07 18:32:37 +000035#error "No valid cpu set"
36#endif
37#endif
wdenk5da627a2003-10-09 20:09:04 +000038#endif
wdenkff36fd82005-01-09 22:28:56 +000039#endif
wdenk5da627a2003-10-09 20:09:04 +000040
41#include <common.h>
42#include <malloc.h>
43#include <net.h>
44#include <command.h>
45#include <asm/io.h>
46#include <asm/au1x00.h>
47
Jon Loeliger44312832007-07-09 19:06:00 -050048#if defined(CONFIG_CMD_MII)
Marian Balakowicz63ff0042005-10-28 22:30:33 +020049#include <miiphy.h>
50#endif
51
wdenk5da627a2003-10-09 20:09:04 +000052/* Ethernet Transmit and Receive Buffers */
53#define DBUF_LENGTH 1520
54#define PKT_MAXBUF_SIZE 1518
55
56static char txbuf[DBUF_LENGTH];
57
58static int next_tx;
59static int next_rx;
60
61/* 4 rx and 4 tx fifos */
62#define NO_OF_FIFOS 4
63
64typedef struct{
65 u32 status;
66 u32 addr;
67 u32 len; /* Only used for tx */
68 u32 not_used;
69} mac_fifo_t;
70
71mac_fifo_t mac_fifo[NO_OF_FIFOS];
72
73#define MAX_WAIT 1000
74
Shinya Kuribayashif0132042007-10-27 15:00:25 +090075#if defined(CONFIG_CMD_MII)
Mike Frysinger5700bb62010-07-27 18:35:08 -040076int au1x00_miiphy_read(const char *devname, unsigned char addr,
Shinya Kuribayashif0132042007-10-27 15:00:25 +090077 unsigned char reg, unsigned short * value)
78{
79 volatile u32 *mii_control_reg = (volatile u32*)(ETH0_BASE+MAC_MII_CNTRL);
80 volatile u32 *mii_data_reg = (volatile u32*)(ETH0_BASE+MAC_MII_DATA);
81 u32 mii_control;
82 unsigned int timedout = 20;
83
84 while (*mii_control_reg & MAC_MII_BUSY) {
85 udelay(1000);
86 if (--timedout == 0) {
87 printf("au1x00_eth: miiphy_read busy timeout!!\n");
88 return -1;
89 }
90 }
91
92 mii_control = MAC_SET_MII_SELECT_REG(reg) |
93 MAC_SET_MII_SELECT_PHY(addr) | MAC_MII_READ;
94
95 *mii_control_reg = mii_control;
96
97 timedout = 20;
98 while (*mii_control_reg & MAC_MII_BUSY) {
99 udelay(1000);
100 if (--timedout == 0) {
101 printf("au1x00_eth: miiphy_read busy timeout!!\n");
102 return -1;
103 }
104 }
105 *value = *mii_data_reg;
106 return 0;
107}
108
Mike Frysinger5700bb62010-07-27 18:35:08 -0400109int au1x00_miiphy_write(const char *devname, unsigned char addr,
Shinya Kuribayashif0132042007-10-27 15:00:25 +0900110 unsigned char reg, unsigned short value)
111{
112 volatile u32 *mii_control_reg = (volatile u32*)(ETH0_BASE+MAC_MII_CNTRL);
113 volatile u32 *mii_data_reg = (volatile u32*)(ETH0_BASE+MAC_MII_DATA);
114 u32 mii_control;
115 unsigned int timedout = 20;
116
117 while (*mii_control_reg & MAC_MII_BUSY) {
118 udelay(1000);
119 if (--timedout == 0) {
120 printf("au1x00_eth: miiphy_write busy timeout!!\n");
Shinya Kuribayashi4fbd0742007-10-27 15:22:33 +0900121 return -1;
Shinya Kuribayashif0132042007-10-27 15:00:25 +0900122 }
123 }
124
125 mii_control = MAC_SET_MII_SELECT_REG(reg) |
126 MAC_SET_MII_SELECT_PHY(addr) | MAC_MII_WRITE;
127
128 *mii_data_reg = value;
129 *mii_control_reg = mii_control;
130 return 0;
131}
132#endif
133
Joe Hershberger10cbe3b2012-05-22 18:36:19 +0000134static int au1x00_send(struct eth_device *dev, void *packet, int length)
135{
wdenk5da627a2003-10-09 20:09:04 +0000136 volatile mac_fifo_t *fifo_tx =
137 (volatile mac_fifo_t*)(MAC0_TX_DMA_ADDR+MAC_TX_BUFF0_STATUS);
138 int i;
139 int res;
140
141 /* tx fifo should always be idle */
142 fifo_tx[next_tx].len = length;
143 fifo_tx[next_tx].addr = (virt_to_phys(packet))|TX_DMA_ENABLE;
144 au_sync();
145
146 udelay(1);
147 i=0;
148 while(!(fifo_tx[next_tx].addr&TX_T_DONE)){
149 if(i>MAX_WAIT){
150 printf("TX timeout\n");
151 break;
152 }
153 udelay(1);
154 i++;
155 }
156
157 /* Clear done bit */
158 fifo_tx[next_tx].addr = 0;
159 fifo_tx[next_tx].len = 0;
160 au_sync();
161
162 res = fifo_tx[next_tx].status;
163
164 next_tx++;
165 if(next_tx>=NO_OF_FIFOS){
166 next_tx=0;
167 }
168 return(res);
169}
170
171static int au1x00_recv(struct eth_device* dev){
172 volatile mac_fifo_t *fifo_rx =
173 (volatile mac_fifo_t*)(MAC0_RX_DMA_ADDR+MAC_RX_BUFF0_STATUS);
174
175 int length;
176 u32 status;
177
178 for(;;){
179 if(!(fifo_rx[next_rx].addr&RX_T_DONE)){
180 /* Nothing has been received */
181 return(-1);
182 }
183
184 status = fifo_rx[next_rx].status;
185
186 length = status&0x3FFF;
187
188 if(status&RX_ERROR){
189 printf("Rx error 0x%x\n", status);
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500190 } else {
wdenk5da627a2003-10-09 20:09:04 +0000191 /* Pass the packet up to the protocol layers. */
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500192 net_process_received_packet(net_rx_packets[next_rx],
193 length - 4);
wdenk5da627a2003-10-09 20:09:04 +0000194 }
195
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500196 fifo_rx[next_rx].addr =
197 (virt_to_phys(net_rx_packets[next_rx])) | RX_DMA_ENABLE;
wdenk5da627a2003-10-09 20:09:04 +0000198
199 next_rx++;
200 if(next_rx>=NO_OF_FIFOS){
201 next_rx=0;
202 }
203 } /* for */
204
205 return(0); /* Does anyone use this? */
206}
207
208static int au1x00_init(struct eth_device* dev, bd_t * bd){
209
210 volatile u32 *macen = (volatile u32*)MAC0_ENABLE;
211 volatile u32 *mac_ctrl = (volatile u32*)(ETH0_BASE+MAC_CONTROL);
212 volatile u32 *mac_addr_high = (volatile u32*)(ETH0_BASE+MAC_ADDRESS_HIGH);
213 volatile u32 *mac_addr_low = (volatile u32*)(ETH0_BASE+MAC_ADDRESS_LOW);
214 volatile u32 *mac_mcast_high = (volatile u32*)(ETH0_BASE+MAC_MCAST_HIGH);
215 volatile u32 *mac_mcast_low = (volatile u32*)(ETH0_BASE+MAC_MCAST_LOW);
216 volatile mac_fifo_t *fifo_tx =
217 (volatile mac_fifo_t*)(MAC0_TX_DMA_ADDR+MAC_TX_BUFF0_STATUS);
218 volatile mac_fifo_t *fifo_rx =
219 (volatile mac_fifo_t*)(MAC0_RX_DMA_ADDR+MAC_RX_BUFF0_STATUS);
220 int i;
221
Wolfgang Denk4bc12f12005-09-24 22:05:40 +0200222 next_tx = TX_GET_DMA_BUFFER(fifo_tx[0].addr);
223 next_rx = RX_GET_DMA_BUFFER(fifo_rx[0].addr);
wdenk5da627a2003-10-09 20:09:04 +0000224
225 /* We have to enable clocks before releasing reset */
226 *macen = MAC_EN_CLOCK_ENABLE;
227 udelay(10);
228
229 /* Enable MAC0 */
230 /* We have to release reset before accessing registers */
231 *macen = MAC_EN_CLOCK_ENABLE|MAC_EN_RESET0|
232 MAC_EN_RESET1|MAC_EN_RESET2;
233 udelay(10);
234
235 for(i=0;i<NO_OF_FIFOS;i++){
236 fifo_tx[i].len = 0;
237 fifo_tx[i].addr = virt_to_phys(&txbuf[0]);
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500238 fifo_rx[i].addr = (virt_to_phys(net_rx_packets[i])) |
239 RX_DMA_ENABLE;
wdenk5da627a2003-10-09 20:09:04 +0000240 }
241
242 /* Put mac addr in little endian */
Joe Hershberger8b2c9a72015-03-22 17:09:00 -0500243#define ea eth_get_ethaddr()
Wolfgang Denk265817c2005-09-25 00:53:22 +0200244 *mac_addr_high = (ea[5] << 8) | (ea[4] ) ;
245 *mac_addr_low = (ea[3] << 24) | (ea[2] << 16) |
246 (ea[1] << 8) | (ea[0] ) ;
wdenk5da627a2003-10-09 20:09:04 +0000247#undef ea
wdenk5da627a2003-10-09 20:09:04 +0000248 *mac_mcast_low = 0;
249 *mac_mcast_high = 0;
250
wdenk63f34912004-01-02 15:01:32 +0000251 /* Make sure the MAC buffer is in the correct endian mode */
252#ifdef __LITTLE_ENDIAN
253 *mac_ctrl = MAC_FULL_DUPLEX;
254 udelay(1);
255 *mac_ctrl = MAC_FULL_DUPLEX|MAC_RX_ENABLE|MAC_TX_ENABLE;
256#else
wdenk5da627a2003-10-09 20:09:04 +0000257 *mac_ctrl = MAC_BIG_ENDIAN|MAC_FULL_DUPLEX;
258 udelay(1);
259 *mac_ctrl = MAC_BIG_ENDIAN|MAC_FULL_DUPLEX|MAC_RX_ENABLE|MAC_TX_ENABLE;
wdenk63f34912004-01-02 15:01:32 +0000260#endif
wdenk5da627a2003-10-09 20:09:04 +0000261
262 return(1);
263}
264
265static void au1x00_halt(struct eth_device* dev){
Thomas Lange87423d72009-04-24 16:22:16 +0200266 volatile u32 *macen = (volatile u32*)MAC0_ENABLE;
267
268 /* Put MAC0 in reset */
269 *macen = 0;
wdenk5da627a2003-10-09 20:09:04 +0000270}
271
272int au1x00_enet_initialize(bd_t *bis){
273 struct eth_device* dev;
274
Wolfgang Denk95515302006-03-13 01:00:22 +0100275 if ((dev = (struct eth_device*)malloc(sizeof *dev)) == NULL) {
276 puts ("malloc failed\n");
Shinya Kuribayashi5dfb3ee2008-10-19 12:08:50 +0900277 return -1;
Wolfgang Denk95515302006-03-13 01:00:22 +0100278 }
279
wdenk5da627a2003-10-09 20:09:04 +0000280 memset(dev, 0, sizeof *dev);
281
Wolfgang Denk95515302006-03-13 01:00:22 +0100282 sprintf(dev->name, "Au1X00 ethernet");
wdenk5da627a2003-10-09 20:09:04 +0000283 dev->iobase = 0;
284 dev->priv = 0;
285 dev->init = au1x00_init;
286 dev->halt = au1x00_halt;
287 dev->send = au1x00_send;
288 dev->recv = au1x00_recv;
289
290 eth_register(dev);
291
Jon Loeliger44312832007-07-09 19:06:00 -0500292#if defined(CONFIG_CMD_MII)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200293 miiphy_register(dev->name,
294 au1x00_miiphy_read, au1x00_miiphy_write);
295#endif
296
wdenk5da627a2003-10-09 20:09:04 +0000297 return 1;
298}
Daniel Schwierzeckd9a4a622015-01-29 14:47:01 +0100299
300int cpu_eth_init(bd_t *bis)
301{
302 au1x00_enet_initialize(bis);
303 return 0;
304}