]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/net/ks8695eth.c
imported Ka-Ro specific additions to U-Boot 2009.08 for TX28
[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: %pM\n", eth_mac);
154 }
155
156 /****************************************************************************/
157
158 int eth_init(bd_t *bd)
159 {
160         debug ("%s(%d): eth_init()\n", __FILE__, __LINE__);
161
162         eth_reset(bd);
163         return 0;
164 }
165
166 /****************************************************************************/
167
168 void eth_halt(void)
169 {
170         debug ("%s(%d): eth_halt()\n", __FILE__, __LINE__);
171
172         /* Reset the ethernet engines */
173         ks8695_write(KS8695_LAN_DMA_TX, 0x80000000);
174         ks8695_write(KS8695_LAN_DMA_RX, 0x80000000);
175 }
176
177 /****************************************************************************/
178
179 int eth_rx(void)
180 {
181         volatile struct ks8695_rxdesc *dp;
182         int i, len = 0;
183
184         debug ("%s(%d): eth_rx()\n", __FILE__, __LINE__);
185
186         for (i = 0; (i < RXDESCS); i++) {
187                 dp= &ks8695_rx[i];
188                 if ((dp->status & 0x80000000) == 0) {
189                         len = (dp->status & 0x7ff) - 4;
190                         NetReceive((void *) dp->addr, len);
191                         dp->status = 0x80000000;
192                         ks8695_write(KS8695_LAN_DMA_RX_START, 0x1);
193                         break;
194                 }
195         }
196
197         return len;
198 }
199
200 /****************************************************************************/
201
202 int eth_send(volatile void *packet, int len)
203 {
204         volatile struct ks8695_txdesc *dp;
205         static int next = 0;
206
207         debug ("%s(%d): eth_send(packet=%x,len=%d)\n", __FILE__, __LINE__,
208                 packet, len);
209
210         dp = &ks8695_tx[next];
211         memcpy((void *) dp->addr, (void *) packet, len);
212
213         if (len < 64) {
214                 memset((void *) (dp->addr + len), 0, 64-len);
215                 len = 64;
216         }
217
218         dp->ctrl = len | 0xe0000000;
219         dp->owner = 0x80000000;
220
221         ks8695_write(KS8695_LAN_DMA_TX, 0x3);
222         ks8695_write(KS8695_LAN_DMA_TX_START, 0x1);
223
224         if (++next >= TXDESCS)
225                 next = 0;
226
227         return len;
228 }