]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/net/ks8695eth.c
Merge branch 'master' of git://www.denx.de/git/u-boot-mips
[karo-tx-uboot.git] / drivers / net / ks8695eth.c
1 /*
2  * ks8695eth.c -- KS8695 ethernet driver
3  *
4  * (C) Copyright 2004-2005, Greg Ungerer <greg.ungerer@opengear.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 /****************************************************************************/
22
23 #include <common.h>
24 #include <malloc.h>
25 #include <net.h>
26 #include <asm/io.h>
27 #include <asm/arch/platform.h>
28
29 /****************************************************************************/
30
31 /*
32  * Hardware register access to the KS8695 LAN ethernet port
33  * (well, it is the 4 port switch really).
34  */
35 #define ks8695_read(a)    *((volatile unsigned long *) (KS8695_IO_BASE + (a)))
36 #define ks8695_write(a,v) *((volatile unsigned long *) (KS8695_IO_BASE + (a))) = (v)
37
38 /****************************************************************************/
39
40 /*
41  * Define the descriptor in-memory data structures.
42  */
43 struct ks8695_txdesc {
44         uint32_t        owner;
45         uint32_t        ctrl;
46         uint32_t        addr;
47         uint32_t        next;
48 };
49
50 struct ks8695_rxdesc {
51         uint32_t        status;
52         uint32_t        ctrl;
53         uint32_t        addr;
54         uint32_t        next;
55 };
56
57 /****************************************************************************/
58
59 /*
60  * Allocate local data structures to use for receiving and sending
61  * packets. Just to keep it all nice and simple.
62  */
63
64 #define TXDESCS         4
65 #define RXDESCS         4
66 #define BUFSIZE         2048
67
68 volatile struct ks8695_txdesc ks8695_tx[TXDESCS] __attribute__((aligned(256)));
69 volatile struct ks8695_rxdesc ks8695_rx[RXDESCS] __attribute__((aligned(256)));
70 volatile uint8_t ks8695_bufs[BUFSIZE*(TXDESCS+RXDESCS)] __attribute__((aligned(2048)));;
71
72 /****************************************************************************/
73
74 /*
75  *      Ideally we want to use the MAC address stored in flash.
76  *      But we do some sanity checks in case they are not present
77  *      first.
78  */
79 unsigned char eth_mac[] = {
80         0x00, 0x13, 0xc6, 0x00, 0x00, 0x00
81 };
82
83 void ks8695_getmac(void)
84 {
85         unsigned char *fp;
86         int i;
87
88         /* Check if flash MAC is valid */
89         fp = (unsigned char *) 0x0201c000;
90         for (i = 0; (i < 6); i++) {
91                 if ((fp[i] != 0) && (fp[i] != 0xff))
92                         break;
93         }
94
95         /* If we found a valid looking MAC address then use it */
96         if (i < 6)
97                 memcpy(&eth_mac[0], fp, 6);
98 }
99
100 /****************************************************************************/
101
102 void eth_reset(bd_t *bd)
103 {
104         int i;
105
106         debug ("%s(%d): eth_reset()\n", __FILE__, __LINE__);
107
108         /* Reset the ethernet engines first */
109         ks8695_write(KS8695_LAN_DMA_TX, 0x80000000);
110         ks8695_write(KS8695_LAN_DMA_RX, 0x80000000);
111
112         ks8695_getmac();
113
114         /* Set MAC address */
115         ks8695_write(KS8695_LAN_MAC_LOW, (eth_mac[5] | (eth_mac[4] << 8) |
116                 (eth_mac[3] << 16) | (eth_mac[2] << 24)));
117         ks8695_write(KS8695_LAN_MAC_HIGH, (eth_mac[1] | (eth_mac[0] << 8)));
118
119         /* Turn the 4 port switch on */
120         i = ks8695_read(KS8695_SWITCH_CTRL0);
121         ks8695_write(KS8695_SWITCH_CTRL0, (i | 0x1));
122         /* ks8695_write(KS8695_WAN_CONTROL, 0x3f000066); */
123
124         /* Initialize descriptor rings */
125         for (i = 0; (i < TXDESCS); i++) {
126                 ks8695_tx[i].owner = 0;
127                 ks8695_tx[i].ctrl = 0;
128                 ks8695_tx[i].addr = (uint32_t) &ks8695_bufs[i*BUFSIZE];
129                 ks8695_tx[i].next = (uint32_t) &ks8695_tx[i+1];
130         }
131         ks8695_tx[TXDESCS-1].ctrl = 0x02000000;
132         ks8695_tx[TXDESCS-1].next = (uint32_t) &ks8695_tx[0];
133
134         for (i = 0; (i < RXDESCS); i++) {
135                 ks8695_rx[i].status = 0x80000000;
136                 ks8695_rx[i].ctrl = BUFSIZE - 4;
137                 ks8695_rx[i].addr = (uint32_t) &ks8695_bufs[(i+TXDESCS)*BUFSIZE];
138                 ks8695_rx[i].next = (uint32_t) &ks8695_rx[i+1];
139         }
140         ks8695_rx[RXDESCS-1].ctrl |= 0x00080000;
141         ks8695_rx[RXDESCS-1].next = (uint32_t) &ks8695_rx[0];
142
143         /* The KS8695 is pretty slow reseting the ethernets... */
144         udelay(2000000);
145
146         /* Enable the ethernet engine */
147         ks8695_write(KS8695_LAN_TX_LIST, (uint32_t) &ks8695_tx[0]);
148         ks8695_write(KS8695_LAN_RX_LIST, (uint32_t) &ks8695_rx[0]);
149         ks8695_write(KS8695_LAN_DMA_TX, 0x3);
150         ks8695_write(KS8695_LAN_DMA_RX, 0x71);
151         ks8695_write(KS8695_LAN_DMA_RX_START, 0x1);
152
153         printf("KS8695 ETHERNET: ");
154         for (i = 0; (i < 5); i++) {
155                 bd->bi_enetaddr[i] = eth_mac[i];
156                 printf("%02x:", eth_mac[i]);
157         }
158         bd->bi_enetaddr[i] = eth_mac[i];
159         printf("%02x\n", eth_mac[i]);
160 }
161
162 /****************************************************************************/
163
164 int eth_init(bd_t *bd)
165 {
166         debug ("%s(%d): eth_init()\n", __FILE__, __LINE__);
167
168         eth_reset(bd);
169         return 0;
170 }
171
172 /****************************************************************************/
173
174 void eth_halt(void)
175 {
176         debug ("%s(%d): eth_halt()\n", __FILE__, __LINE__);
177
178         /* Reset the ethernet engines */
179         ks8695_write(KS8695_LAN_DMA_TX, 0x80000000);
180         ks8695_write(KS8695_LAN_DMA_RX, 0x80000000);
181 }
182
183 /****************************************************************************/
184
185 int eth_rx(void)
186 {
187         volatile struct ks8695_rxdesc *dp;
188         int i, len = 0;
189
190         debug ("%s(%d): eth_rx()\n", __FILE__, __LINE__);
191
192         for (i = 0; (i < RXDESCS); i++) {
193                 dp= &ks8695_rx[i];
194                 if ((dp->status & 0x80000000) == 0) {
195                         len = (dp->status & 0x7ff) - 4;
196                         NetReceive((void *) dp->addr, len);
197                         dp->status = 0x80000000;
198                         ks8695_write(KS8695_LAN_DMA_RX_START, 0x1);
199                         break;
200                 }
201         }
202
203         return len;
204 }
205
206 /****************************************************************************/
207
208 int eth_send(volatile void *packet, int len)
209 {
210         volatile struct ks8695_txdesc *dp;
211         static int next = 0;
212
213         debug ("%s(%d): eth_send(packet=%x,len=%d)\n", __FILE__, __LINE__,
214                 packet, len);
215
216         dp = &ks8695_tx[next];
217         memcpy((void *) dp->addr, (void *) packet, len);
218
219         if (len < 64) {
220                 memset((void *) (dp->addr + len), 0, 64-len);
221                 len = 64;
222         }
223
224         dp->ctrl = len | 0xe0000000;
225         dp->owner = 0x80000000;
226
227         ks8695_write(KS8695_LAN_DMA_TX, 0x3);
228         ks8695_write(KS8695_LAN_DMA_TX_START, 0x1);
229
230         if (++next >= TXDESCS)
231                 next = 0;
232
233         return len;
234 }