]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/cs8900.c
7165d60bdf319fa46e1e8de9ecc65a5b92a95a77
[karo-tx-uboot.git] / drivers / cs8900.c
1 /*
2  * Cirrus Logic CS8900A Ethernet
3  *
4  * (C) 2003 Wolfgang Denk, wd@denx.de
5  *     Extension to synchronize ethaddr environment variable
6  *     against value in EEPROM
7  *
8  * (C) Copyright 2002
9  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10  * Marius Groeger <mgroeger@sysgo.de>
11  *
12  * Copyright (C) 1999 Ben Williamson <benw@pobox.com>
13  *
14  * See file CREDITS for list of people who contributed to this
15  * project.
16  *
17  * This program is loaded into SRAM in bootstrap mode, where it waits
18  * for commands on UART1 to read and write memory, jump to code etc.
19  * A design goal for this program is to be entirely independent of the
20  * target board.  Anything with a CL-PS7111 or EP7211 should be able to run
21  * this code in bootstrap mode.  All the board specifics can be handled on
22  * the host.
23  *
24  * This program is free software; you can redistribute it and/or modify
25  * it under the terms of the GNU General Public License as published by
26  * the Free Software Foundation; either version 2 of the License, or
27  * (at your option) any later version.
28  *
29  * This program is distributed in the hope that it will be useful,
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32  * GNU General Public License for more details.
33  *
34  * You should have received a copy of the GNU General Public License
35  * along with this program; if not, write to the Free Software
36  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
37  */
38
39 #include <common.h>
40 #include <command.h>
41 #include "cs8900.h"
42 #include <net.h>
43
44 #ifdef CONFIG_DRIVER_CS8900
45
46 #if (CONFIG_COMMANDS & CFG_CMD_NET)
47
48
49 /* packet page register access functions */
50
51 #ifdef CS8900_BUS32
52 /* we don't need 16 bit initialisation on 32 bit bus */
53 #define get_reg_init_bus(x) get_reg((x))
54 #else
55 static unsigned short get_reg_init_bus (int regno)
56 {
57         /* force 16 bit busmode */
58         volatile unsigned char c;
59
60         c = CS8900_BUS16_0;
61         c = CS8900_BUS16_1;
62         c = CS8900_BUS16_0;
63         c = CS8900_BUS16_1;
64         c = CS8900_BUS16_0;
65
66         CS8900_PPTR = regno;
67         return (unsigned short) CS8900_PDATA;
68 }
69 #endif
70
71 static unsigned short get_reg (int regno)
72 {
73         CS8900_PPTR = regno;
74         return (unsigned short) CS8900_PDATA;
75 }
76
77
78 static void put_reg (int regno, unsigned short val)
79 {
80         CS8900_PPTR = regno;
81         CS8900_PDATA = val;
82 }
83
84 static void eth_reset (void)
85 {
86         int tmo;
87         unsigned short us;
88
89         /* reset NIC */
90         put_reg (PP_SelfCTL, get_reg (PP_SelfCTL) | PP_SelfCTL_Reset);
91
92         /* wait for 200ms */
93         udelay (200000);
94         /* Wait until the chip is reset */
95
96         tmo = get_timer (0) + 1 * CFG_HZ;
97         while ((((us = get_reg_init_bus (PP_SelfSTAT)) & PP_SelfSTAT_InitD) == 0)
98                    && tmo < get_timer (0))
99                 /*NOP*/;
100 }
101
102 void cs8900_get_enetaddr (uchar * addr)
103 {
104         int i;
105         unsigned char env_enetaddr[6];
106         char *tmp = getenv ("ethaddr");
107         char *end;
108
109         for (i=0; i<6; i++) {
110                 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
111                 if (tmp)
112                         tmp = (*end) ? end+1 : end;
113         }
114
115         /* verify chip id */
116         if (get_reg_init_bus (PP_ChipID) != 0x630e)
117                 return;
118         eth_reset ();
119         if ((get_reg (PP_SelfST) & (PP_SelfSTAT_EEPROM | PP_SelfSTAT_EEPROM_OK)) ==
120                         (PP_SelfSTAT_EEPROM | PP_SelfSTAT_EEPROM_OK)) {
121
122                 /* Load the MAC from EEPROM */
123                 for (i = 0; i < 6 / 2; i++) {
124                         unsigned int Addr;
125
126                         Addr = get_reg (PP_IA + i * 2);
127                         addr[i * 2] = Addr & 0xFF;
128                         addr[i * 2 + 1] = Addr >> 8;
129                 }
130
131                 if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6) != 0 &&
132                     memcmp(env_enetaddr, addr, 6) != 0) {
133                         printf ("\nWarning: MAC addresses don't match:\n");
134                         printf ("\tHW MAC address:  "
135                                 "%02X:%02X:%02X:%02X:%02X:%02X\n",
136                                 addr[0], addr[1],
137                                 addr[2], addr[3],
138                                 addr[4], addr[5] );
139                         printf ("\t\"ethaddr\" value: "
140                                 "%02X:%02X:%02X:%02X:%02X:%02X\n",
141                                 env_enetaddr[0], env_enetaddr[1],
142                                 env_enetaddr[2], env_enetaddr[3],
143                                 env_enetaddr[4], env_enetaddr[5]) ;
144                         debug ("### Set MAC addr from environment\n");
145                         memcpy (addr, env_enetaddr, 6);
146                 }
147                 if (!tmp) {
148                         char ethaddr[20];
149                         sprintf (ethaddr, "%02X:%02X:%02X:%02X:%02X:%02X",
150                                  addr[0], addr[1],
151                                  addr[2], addr[3],
152                                  addr[4], addr[5]) ;
153                         debug ("### Set environment from HW MAC addr = \"%s\"\n",                               ethaddr);
154                         setenv ("ethaddr", ethaddr);
155                 }
156
157         }
158 }
159
160 void eth_halt (void)
161 {
162         /* disable transmitter/receiver mode */
163         put_reg (PP_LineCTL, 0);
164
165         /* "shutdown" to show ChipID or kernel wouldn't find he cs8900 ... */
166         get_reg_init_bus (PP_ChipID);
167 }
168
169 int eth_init (bd_t * bd)
170 {
171
172         /* verify chip id */
173         if (get_reg_init_bus (PP_ChipID) != 0x630e) {
174                 printf ("CS8900 Ethernet chip not found?!\n");
175                 return 0;
176         }
177
178         eth_reset ();
179         /* set the ethernet address */
180         put_reg (PP_IA + 0, bd->bi_enetaddr[0] | (bd->bi_enetaddr[1] << 8));
181         put_reg (PP_IA + 2, bd->bi_enetaddr[2] | (bd->bi_enetaddr[3] << 8));
182         put_reg (PP_IA + 4, bd->bi_enetaddr[4] | (bd->bi_enetaddr[5] << 8));
183
184         /* receive only error free packets addressed to this card */
185         put_reg (PP_RxCTL, PP_RxCTL_IA | PP_RxCTL_Broadcast | PP_RxCTL_RxOK);
186
187         /* do not generate any interrupts on receive operations */
188         put_reg (PP_RxCFG, 0);
189
190         /* do not generate any interrupts on transmit operations */
191         put_reg (PP_TxCFG, 0);
192
193         /* do not generate any interrupts on buffer operations */
194         put_reg (PP_BufCFG, 0);
195
196         /* enable transmitter/receiver mode */
197         put_reg (PP_LineCTL, PP_LineCTL_Rx | PP_LineCTL_Tx);
198
199         return 0;
200 }
201
202 /* Get a data block via Ethernet */
203 extern int eth_rx (void)
204 {
205         int i;
206         unsigned short rxlen;
207         unsigned short *addr;
208         unsigned short status;
209
210         status = get_reg (PP_RER);
211
212         if ((status & PP_RER_RxOK) == 0)
213                 return 0;
214
215         status = CS8900_RTDATA;         /* stat */
216         rxlen = CS8900_RTDATA;          /* len */
217
218         if (rxlen > PKTSIZE_ALIGN + PKTALIGN)
219                 printf ("packet too big!\n");
220
221         for (addr = (unsigned short *) NetRxPackets[0], i = rxlen >> 1; i > 0;
222                  i--)
223                 *addr++ = CS8900_RTDATA;
224         if (rxlen & 1)
225                 *addr++ = CS8900_RTDATA;
226
227         /* Pass the packet up to the protocol layers. */
228         NetReceive (NetRxPackets[0], rxlen);
229
230         return rxlen;
231 }
232
233 /* Send a data block via Ethernet. */
234 extern int eth_send (volatile void *packet, int length)
235 {
236         volatile unsigned short *addr;
237         int tmo;
238         unsigned short s;
239
240 retry:
241         /* initiate a transmit sequence */
242         CS8900_TxCMD = PP_TxCmd_TxStart_Full;
243         CS8900_TxLEN = length;
244
245         /* Test to see if the chip has allocated memory for the packet */
246         if ((get_reg (PP_BusSTAT) & PP_BusSTAT_TxRDY) == 0) {
247                 /* Oops... this should not happen! */
248                 printf ("cs: unable to send packet; retrying...\n");
249                 for (tmo = get_timer (0) + 5 * CFG_HZ; get_timer (0) < tmo;)
250                         /*NOP*/;
251                 eth_reset ();
252                 goto retry;
253         }
254
255         /* Write the contents of the packet */
256         /* assume even number of bytes */
257         for (addr = packet; length > 0; length -= 2)
258                 CS8900_RTDATA = *addr++;
259
260         /* wait for transfer to succeed */
261         tmo = get_timer (0) + 5 * CFG_HZ;
262         while ((s = get_reg (PP_TER) & ~0x1F) == 0) {
263                 if (get_timer (0) >= tmo)
264                         break;
265         }
266
267         /* nothing */ ;
268         if ((s & (PP_TER_CRS | PP_TER_TxOK)) != PP_TER_TxOK) {
269                 printf ("\ntransmission error %#x\n", s);
270         }
271
272         return 0;
273 }
274
275 #endif  /* COMMANDS & CFG_NET */
276
277 #endif  /* CONFIG_DRIVER_CS8900 */