blob: d88517f4b1af6f1683b3a4dfea94543e5045e906 [file] [log] [blame]
wdenk2abbe072003-06-16 23:50:08 +00001/*
2 * (C) Copyright 2003
3 * Author : Hamid Ikdoumi (Atmel)
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <at91rm9200_net.h>
25#include <net.h>
26
27/* ----- Ethernet Buffer definitions ----- */
28
29typedef struct {
30 unsigned long addr, size;
31} rbf_t;
32
33#define RBF_ADDR 0xfffffffc
34#define RBF_OWNER (1<<0)
35#define RBF_WRAP (1<<1)
36#define RBF_BROADCAST (1<<31)
37#define RBF_MULTICAST (1<<30)
38#define RBF_UNICAST (1<<29)
39#define RBF_EXTERNAL (1<<28)
40#define RBF_UNKOWN (1<<27)
41#define RBF_SIZE 0x07ff
42#define RBF_LOCAL4 (1<<26)
43#define RBF_LOCAL3 (1<<25)
44#define RBF_LOCAL2 (1<<24)
45#define RBF_LOCAL1 (1<<23)
46
Wolfgang Denk95f9dda2005-10-09 00:33:37 +020047#define RBF_FRAMEMAX 64
wdenk2abbe072003-06-16 23:50:08 +000048#define RBF_FRAMELEN 0x600
49
wdenk2abbe072003-06-16 23:50:08 +000050#ifdef CONFIG_DRIVER_ETHER
51
52#if (CONFIG_COMMANDS & CFG_CMD_NET)
53
Wolfgang Denk95f9dda2005-10-09 00:33:37 +020054/* alignment as per Errata #11 (64 bytes) is insufficient! */
55rbf_t rbfdt[RBF_FRAMEMAX] __attribute((aligned(512)));
56rbf_t *rbfp;
57
58unsigned char rbf_framebuf[RBF_FRAMEMAX][RBF_FRAMELEN] __attribute((aligned(4)));
59
wdenk2abbe072003-06-16 23:50:08 +000060/* structure to interface the PHY */
wdenk429168e2004-08-02 23:39:03 +000061AT91S_PhyOps PhyOps;
wdenk2abbe072003-06-16 23:50:08 +000062
63AT91PS_EMAC p_mac;
64
wdenk2abbe072003-06-16 23:50:08 +000065/*********** EMAC Phy layer Management functions *************************/
66/*
wdenk8bde7f72003-06-27 21:31:46 +000067 * Name:
wdenk2abbe072003-06-16 23:50:08 +000068 * at91rm9200_EmacEnableMDIO
wdenk8bde7f72003-06-27 21:31:46 +000069 * Description:
wdenk2abbe072003-06-16 23:50:08 +000070 * Enables the MDIO bit in MAC control register
wdenk8bde7f72003-06-27 21:31:46 +000071 * Arguments:
wdenk2abbe072003-06-16 23:50:08 +000072 * p_mac - pointer to struct AT91S_EMAC
wdenk8bde7f72003-06-27 21:31:46 +000073 * Return value:
wdenk2abbe072003-06-16 23:50:08 +000074 * none
75 */
wdenk429168e2004-08-02 23:39:03 +000076void at91rm9200_EmacEnableMDIO (AT91PS_EMAC p_mac)
wdenk2abbe072003-06-16 23:50:08 +000077{
78 /* Mac CTRL reg set for MDIO enable */
79 p_mac->EMAC_CTL |= AT91C_EMAC_MPE; /* Management port enable */
80}
81
82/*
wdenk8bde7f72003-06-27 21:31:46 +000083 * Name:
wdenk2abbe072003-06-16 23:50:08 +000084 * at91rm9200_EmacDisableMDIO
wdenk8bde7f72003-06-27 21:31:46 +000085 * Description:
wdenk2abbe072003-06-16 23:50:08 +000086 * Disables the MDIO bit in MAC control register
wdenk8bde7f72003-06-27 21:31:46 +000087 * Arguments:
wdenk2abbe072003-06-16 23:50:08 +000088 * p_mac - pointer to struct AT91S_EMAC
wdenk8bde7f72003-06-27 21:31:46 +000089 * Return value:
wdenk2abbe072003-06-16 23:50:08 +000090 * none
91 */
wdenk429168e2004-08-02 23:39:03 +000092void at91rm9200_EmacDisableMDIO (AT91PS_EMAC p_mac)
wdenk2abbe072003-06-16 23:50:08 +000093{
94 /* Mac CTRL reg set for MDIO disable */
95 p_mac->EMAC_CTL &= ~AT91C_EMAC_MPE; /* Management port disable */
96}
97
98
99/*
wdenk8bde7f72003-06-27 21:31:46 +0000100 * Name:
wdenk2abbe072003-06-16 23:50:08 +0000101 * at91rm9200_EmacReadPhy
wdenk8bde7f72003-06-27 21:31:46 +0000102 * Description:
wdenk2abbe072003-06-16 23:50:08 +0000103 * Reads data from the PHY register
wdenk8bde7f72003-06-27 21:31:46 +0000104 * Arguments:
wdenk2abbe072003-06-16 23:50:08 +0000105 * dev - pointer to struct net_device
106 * RegisterAddress - unsigned char
wdenk8bde7f72003-06-27 21:31:46 +0000107 * pInput - pointer to value read from register
108 * Return value:
wdenk2abbe072003-06-16 23:50:08 +0000109 * TRUE - if data read successfully
110 */
wdenk429168e2004-08-02 23:39:03 +0000111UCHAR at91rm9200_EmacReadPhy (AT91PS_EMAC p_mac,
wdenk2abbe072003-06-16 23:50:08 +0000112 unsigned char RegisterAddress,
113 unsigned short *pInput)
114{
115 p_mac->EMAC_MAN = (AT91C_EMAC_HIGH & ~AT91C_EMAC_LOW) |
wdenk074cff02004-02-24 00:16:43 +0000116 (AT91C_EMAC_RW_R) |
117 (RegisterAddress << 18) |
118 (AT91C_EMAC_CODE_802_3);
wdenk2abbe072003-06-16 23:50:08 +0000119
120 udelay (10000);
121
122 *pInput = (unsigned short) p_mac->EMAC_MAN;
123
124 return TRUE;
125}
126
127
128/*
wdenk8bde7f72003-06-27 21:31:46 +0000129 * Name:
wdenk2abbe072003-06-16 23:50:08 +0000130 * at91rm9200_EmacWritePhy
wdenk8bde7f72003-06-27 21:31:46 +0000131 * Description:
wdenk2abbe072003-06-16 23:50:08 +0000132 * Writes data to the PHY register
wdenk8bde7f72003-06-27 21:31:46 +0000133 * Arguments:
wdenk2abbe072003-06-16 23:50:08 +0000134 * dev - pointer to struct net_device
135 * RegisterAddress - unsigned char
wdenk8bde7f72003-06-27 21:31:46 +0000136 * pOutput - pointer to value to be written in the register
137 * Return value:
wdenk2abbe072003-06-16 23:50:08 +0000138 * TRUE - if data read successfully
139 */
wdenk429168e2004-08-02 23:39:03 +0000140UCHAR at91rm9200_EmacWritePhy (AT91PS_EMAC p_mac,
wdenka3ad8e22003-10-19 23:22:11 +0000141 unsigned char RegisterAddress,
142 unsigned short *pOutput)
wdenk2abbe072003-06-16 23:50:08 +0000143{
144 p_mac->EMAC_MAN = (AT91C_EMAC_HIGH & ~AT91C_EMAC_LOW) |
145 AT91C_EMAC_CODE_802_3 | AT91C_EMAC_RW_W |
wdenka3ad8e22003-10-19 23:22:11 +0000146 (RegisterAddress << 18) | *pOutput;
wdenk2abbe072003-06-16 23:50:08 +0000147
148 udelay (10000);
149
150 return TRUE;
151}
152
wdenk2abbe072003-06-16 23:50:08 +0000153
wdenk2abbe072003-06-16 23:50:08 +0000154int eth_init (bd_t * bd)
155{
156 int ret;
157 int i;
158
159 p_mac = AT91C_BASE_EMAC;
160
wdenk0b8fa032004-04-25 14:37:29 +0000161 /* PIO Disable Register */
162 *AT91C_PIOA_PDR = AT91C_PA16_EMDIO | AT91C_PA15_EMDC | AT91C_PA14_ERXER |
163 AT91C_PA13_ERX1 | AT91C_PA12_ERX0 | AT91C_PA11_ECRS_ECRSDV |
164 AT91C_PA10_ETX1 | AT91C_PA9_ETX0 | AT91C_PA8_ETXEN |
165 AT91C_PA7_ETXCK_EREFCK;
wdenk2abbe072003-06-16 23:50:08 +0000166
wdenkea287de2005-04-01 00:25:43 +0000167#ifdef CONFIG_AT91C_USE_RMII
168 *AT91C_PIOB_PDR = AT91C_PB19_ERXCK;
169 *AT91C_PIOB_BSR = AT91C_PB19_ERXCK;
170#else
171 *AT91C_PIOB_PDR = AT91C_PB19_ERXCK | AT91C_PB18_ECOL | AT91C_PB17_ERXDV |
wdenk0b8fa032004-04-25 14:37:29 +0000172 AT91C_PB16_ERX3 | AT91C_PB15_ERX2 | AT91C_PB14_ETXER |
173 AT91C_PB13_ETX3 | AT91C_PB12_ETX2;
wdenk2abbe072003-06-16 23:50:08 +0000174
wdenk0b8fa032004-04-25 14:37:29 +0000175 /* Select B Register */
wdenkea287de2005-04-01 00:25:43 +0000176 *AT91C_PIOB_BSR = AT91C_PB19_ERXCK | AT91C_PB18_ECOL |
wdenk0b8fa032004-04-25 14:37:29 +0000177 AT91C_PB17_ERXDV | AT91C_PB16_ERX3 | AT91C_PB15_ERX2 |
178 AT91C_PB14_ETXER | AT91C_PB13_ETX3 | AT91C_PB12_ETX2;
wdenk9d5028c2004-11-21 00:06:33 +0000179#endif
wdenk2abbe072003-06-16 23:50:08 +0000180
181 *AT91C_PMC_PCER = 1 << AT91C_ID_EMAC; /* Peripheral Clock Enable Register */
182
183 p_mac->EMAC_CFG |= AT91C_EMAC_CSR; /* Clear statistics */
184
185 /* Init Ehternet buffers */
wdenk2abbe072003-06-16 23:50:08 +0000186 for (i = 0; i < RBF_FRAMEMAX; i++) {
Wolfgang Denk95f9dda2005-10-09 00:33:37 +0200187 rbfdt[i].addr = rbf_framebuf[i];
wdenk2abbe072003-06-16 23:50:08 +0000188 rbfdt[i].size = 0;
189 }
190 rbfdt[RBF_FRAMEMAX - 1].addr |= RBF_WRAP;
191 rbfp = &rbfdt[0];
192
wdenk0b8fa032004-04-25 14:37:29 +0000193 p_mac->EMAC_SA2L = (bd->bi_enetaddr[3] << 24) | (bd->bi_enetaddr[2] << 16)
194 | (bd->bi_enetaddr[1] << 8) | (bd->bi_enetaddr[0]);
195 p_mac->EMAC_SA2H = (bd->bi_enetaddr[5] << 8) | (bd->bi_enetaddr[4]);
196
197 p_mac->EMAC_RBQP = (long) (&rbfdt[0]);
198 p_mac->EMAC_RSR &= ~(AT91C_EMAC_RSR_OVR | AT91C_EMAC_REC | AT91C_EMAC_BNA);
199
200 p_mac->EMAC_CFG = (p_mac->EMAC_CFG | AT91C_EMAC_CAF | AT91C_EMAC_NBC)
201 & ~AT91C_EMAC_CLK;
202
203#ifdef CONFIG_AT91C_USE_RMII
204 p_mac->EMAC_CFG |= AT91C_EMAC_RMII;
205#endif
206
wdenkba83a302005-04-04 12:23:03 +0000207#if (AT91C_MASTER_CLOCK > 40000000)
208 /* MDIO clock must not exceed 2.5 MHz, so enable MCK divider */
209 p_mac->EMAC_CFG |= AT91C_EMAC_CLK_HCLK_64;
210#endif
211
wdenk0b8fa032004-04-25 14:37:29 +0000212 p_mac->EMAC_CTL |= AT91C_EMAC_TE | AT91C_EMAC_RE;
213
Wolfgang Denk080bdb72005-10-05 01:51:29 +0200214 at91rm9200_GetPhyInterface (& PhyOps);
wdenk2abbe072003-06-16 23:50:08 +0000215
wdenk429168e2004-08-02 23:39:03 +0000216 if (!PhyOps.IsPhyConnected (p_mac))
wdenk2abbe072003-06-16 23:50:08 +0000217 printf ("PHY not connected!!\n\r");
218
219 /* MII management start from here */
220 if (!(p_mac->EMAC_SR & AT91C_EMAC_LINK)) {
wdenk429168e2004-08-02 23:39:03 +0000221 if (!(ret = PhyOps.Init (p_mac))) {
wdenk2abbe072003-06-16 23:50:08 +0000222 printf ("MAC: error during MII initialization\n");
223 return 0;
224 }
225 } else {
226 printf ("No link\n\r");
227 return 0;
228 }
229
wdenk2abbe072003-06-16 23:50:08 +0000230 return 0;
231}
232
233int eth_send (volatile void *packet, int length)
234{
235 while (!(p_mac->EMAC_TSR & AT91C_EMAC_BNQ));
236 p_mac->EMAC_TAR = (long) packet;
237 p_mac->EMAC_TCR = length;
238 while (p_mac->EMAC_TCR & 0x7ff);
239 p_mac->EMAC_TSR |= AT91C_EMAC_COMP;
240 return 0;
241}
242
243int eth_rx (void)
244{
245 int size;
246
247 if (!(rbfp->addr & RBF_OWNER))
248 return 0;
249
250 size = rbfp->size & RBF_SIZE;
251 NetReceive ((volatile uchar *) (rbfp->addr & RBF_ADDR), size);
252
253 rbfp->addr &= ~RBF_OWNER;
254 if (rbfp->addr & RBF_WRAP)
255 rbfp = &rbfdt[0];
256 else
257 rbfp++;
258
259 p_mac->EMAC_RSR |= AT91C_EMAC_REC;
260
261 return size;
262}
263
264void eth_halt (void)
265{
266};
wdenk074cff02004-02-24 00:16:43 +0000267
268#if (CONFIG_COMMANDS & CFG_CMD_MII)
269int miiphy_read(unsigned char addr, unsigned char reg, unsigned short * value)
270{
271 at91rm9200_EmacEnableMDIO (p_mac);
272 at91rm9200_EmacReadPhy (p_mac, reg, value);
273 at91rm9200_EmacDisableMDIO (p_mac);
274 return 0;
275}
276
277int miiphy_write(unsigned char addr, unsigned char reg, unsigned short value)
278{
279 at91rm9200_EmacEnableMDIO (p_mac);
280 at91rm9200_EmacWritePhy (p_mac, reg, &value);
281 at91rm9200_EmacDisableMDIO (p_mac);
282 return 0;
283}
284#endif /* CONFIG_COMMANDS & CFG_CMD_MII */
285
wdenk2abbe072003-06-16 23:50:08 +0000286#endif /* CONFIG_COMMANDS & CFG_CMD_NET */
wdenk074cff02004-02-24 00:16:43 +0000287
wdenk2abbe072003-06-16 23:50:08 +0000288#endif /* CONFIG_DRIVER_ETHER */