]>
Commit | Line | Data |
---|---|---|
9131589a PW |
1 | /* |
2 | * (C) Copyright 2009 | |
3 | * Marvell Semiconductor <www.marvell.com> | |
4 | * Written-by: Prafulla Wadaskar <[email protected]> | |
5 | * | |
6 | * (C) Copyright 2003 | |
7 | * Ingo Assmus <[email protected]> | |
8 | * | |
9 | * based on - Driver for MV64360X ethernet ports | |
10 | * Copyright (C) 2002 [email protected] | |
11 | * | |
12 | * See file CREDITS for list of people who contributed to this | |
13 | * project. | |
14 | * | |
15 | * This program is free software; you can redistribute it and/or | |
16 | * modify it under the terms of the GNU General Public License as | |
17 | * published by the Free Software Foundation; either version 2 of | |
18 | * the License, or (at your option) any later version. | |
19 | * | |
20 | * This program is distributed in the hope that it will be useful, | |
21 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
23 | * GNU General Public License for more details. | |
24 | * | |
25 | * You should have received a copy of the GNU General Public License | |
26 | * along with this program; if not, write to the Free Software | |
27 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | |
28 | * MA 02110-1301 USA | |
29 | */ | |
30 | ||
31 | #include <common.h> | |
32 | #include <net.h> | |
33 | #include <malloc.h> | |
34 | #include <miiphy.h> | |
35 | #include <asm/errno.h> | |
36 | #include <asm/types.h> | |
37 | #include <asm/byteorder.h> | |
d44265ad AA |
38 | |
39 | #if defined(CONFIG_KIRKWOOD) | |
9131589a | 40 | #include <asm/arch/kirkwood.h> |
d3c9ffd0 AA |
41 | #elif defined(CONFIG_ORION5X) |
42 | #include <asm/arch/orion5x.h> | |
d44265ad AA |
43 | #endif |
44 | ||
9b6bcdcb | 45 | #include "mvgbe.h" |
9131589a | 46 | |
49fa6ed8 AA |
47 | DECLARE_GLOBAL_DATA_PTR; |
48 | ||
d44265ad AA |
49 | #define MV_PHY_ADR_REQUEST 0xee |
50 | #define MVGBE_SMI_REG (((struct mvgbe_registers *)MVGBE0_BASE)->smi) | |
bb1ca3b2 | 51 | |
9131589a PW |
52 | /* |
53 | * smi_reg_read - miiphy_read callback function. | |
54 | * | |
55 | * Returns 16bit phy register value, or 0xffff on error | |
56 | */ | |
5700bb63 | 57 | static int smi_reg_read(const char *devname, u8 phy_adr, u8 reg_ofs, u16 * data) |
9131589a PW |
58 | { |
59 | struct eth_device *dev = eth_get_dev_by_name(devname); | |
d44265ad AA |
60 | struct mvgbe_device *dmvgbe = to_mvgbe(dev); |
61 | struct mvgbe_registers *regs = dmvgbe->regs; | |
9131589a | 62 | u32 smi_reg; |
7b05f5e0 | 63 | u32 timeout; |
9131589a PW |
64 | |
65 | /* Phyadr read request */ | |
d44265ad AA |
66 | if (phy_adr == MV_PHY_ADR_REQUEST && |
67 | reg_ofs == MV_PHY_ADR_REQUEST) { | |
9131589a | 68 | /* */ |
d44265ad | 69 | *data = (u16) (MVGBE_REG_RD(regs->phyadr) & PHYADR_MASK); |
9131589a PW |
70 | return 0; |
71 | } | |
72 | /* check parameters */ | |
73 | if (phy_adr > PHYADR_MASK) { | |
74 | printf("Err..(%s) Invalid PHY address %d\n", | |
75 | __FUNCTION__, phy_adr); | |
76 | return -EFAULT; | |
77 | } | |
78 | if (reg_ofs > PHYREG_MASK) { | |
79 | printf("Err..(%s) Invalid register offset %d\n", | |
80 | __FUNCTION__, reg_ofs); | |
81 | return -EFAULT; | |
82 | } | |
83 | ||
d44265ad | 84 | timeout = MVGBE_PHY_SMI_TIMEOUT; |
9131589a PW |
85 | /* wait till the SMI is not busy */ |
86 | do { | |
87 | /* read smi register */ | |
d44265ad | 88 | smi_reg = MVGBE_REG_RD(MVGBE_SMI_REG); |
9131589a PW |
89 | if (timeout-- == 0) { |
90 | printf("Err..(%s) SMI busy timeout\n", __FUNCTION__); | |
91 | return -EFAULT; | |
92 | } | |
d44265ad | 93 | } while (smi_reg & MVGBE_PHY_SMI_BUSY_MASK); |
9131589a PW |
94 | |
95 | /* fill the phy address and regiser offset and read opcode */ | |
d44265ad AA |
96 | smi_reg = (phy_adr << MVGBE_PHY_SMI_DEV_ADDR_OFFS) |
97 | | (reg_ofs << MVGBE_SMI_REG_ADDR_OFFS) | |
98 | | MVGBE_PHY_SMI_OPCODE_READ; | |
9131589a PW |
99 | |
100 | /* write the smi register */ | |
d44265ad | 101 | MVGBE_REG_WR(MVGBE_SMI_REG, smi_reg); |
9131589a PW |
102 | |
103 | /*wait till read value is ready */ | |
d44265ad | 104 | timeout = MVGBE_PHY_SMI_TIMEOUT; |
9131589a PW |
105 | |
106 | do { | |
107 | /* read smi register */ | |
d44265ad | 108 | smi_reg = MVGBE_REG_RD(MVGBE_SMI_REG); |
9131589a PW |
109 | if (timeout-- == 0) { |
110 | printf("Err..(%s) SMI read ready timeout\n", | |
111 | __FUNCTION__); | |
112 | return -EFAULT; | |
113 | } | |
d44265ad | 114 | } while (!(smi_reg & MVGBE_PHY_SMI_READ_VALID_MASK)); |
9131589a PW |
115 | |
116 | /* Wait for the data to update in the SMI register */ | |
d44265ad AA |
117 | for (timeout = 0; timeout < MVGBE_PHY_SMI_TIMEOUT; timeout++) |
118 | ; | |
9131589a | 119 | |
d44265ad | 120 | *data = (u16) (MVGBE_REG_RD(MVGBE_SMI_REG) & MVGBE_PHY_SMI_DATA_MASK); |
9131589a PW |
121 | |
122 | debug("%s:(adr %d, off %d) value= %04x\n", __FUNCTION__, phy_adr, | |
123 | reg_ofs, *data); | |
124 | ||
125 | return 0; | |
126 | } | |
127 | ||
128 | /* | |
129 | * smi_reg_write - imiiphy_write callback function. | |
130 | * | |
131 | * Returns 0 if write succeed, -EINVAL on bad parameters | |
132 | * -ETIME on timeout | |
133 | */ | |
5700bb63 | 134 | static int smi_reg_write(const char *devname, u8 phy_adr, u8 reg_ofs, u16 data) |
9131589a PW |
135 | { |
136 | struct eth_device *dev = eth_get_dev_by_name(devname); | |
d44265ad AA |
137 | struct mvgbe_device *dmvgbe = to_mvgbe(dev); |
138 | struct mvgbe_registers *regs = dmvgbe->regs; | |
9131589a | 139 | u32 smi_reg; |
7b05f5e0 | 140 | u32 timeout; |
9131589a PW |
141 | |
142 | /* Phyadr write request*/ | |
d44265ad AA |
143 | if (phy_adr == MV_PHY_ADR_REQUEST && |
144 | reg_ofs == MV_PHY_ADR_REQUEST) { | |
145 | MVGBE_REG_WR(regs->phyadr, data); | |
9131589a PW |
146 | return 0; |
147 | } | |
148 | ||
149 | /* check parameters */ | |
150 | if (phy_adr > PHYADR_MASK) { | |
151 | printf("Err..(%s) Invalid phy address\n", __FUNCTION__); | |
152 | return -EINVAL; | |
153 | } | |
154 | if (reg_ofs > PHYREG_MASK) { | |
155 | printf("Err..(%s) Invalid register offset\n", __FUNCTION__); | |
156 | return -EINVAL; | |
157 | } | |
158 | ||
159 | /* wait till the SMI is not busy */ | |
d44265ad | 160 | timeout = MVGBE_PHY_SMI_TIMEOUT; |
9131589a PW |
161 | do { |
162 | /* read smi register */ | |
d44265ad | 163 | smi_reg = MVGBE_REG_RD(MVGBE_SMI_REG); |
9131589a PW |
164 | if (timeout-- == 0) { |
165 | printf("Err..(%s) SMI busy timeout\n", __FUNCTION__); | |
166 | return -ETIME; | |
167 | } | |
d44265ad | 168 | } while (smi_reg & MVGBE_PHY_SMI_BUSY_MASK); |
9131589a PW |
169 | |
170 | /* fill the phy addr and reg offset and write opcode and data */ | |
d44265ad AA |
171 | smi_reg = (data << MVGBE_PHY_SMI_DATA_OFFS); |
172 | smi_reg |= (phy_adr << MVGBE_PHY_SMI_DEV_ADDR_OFFS) | |
173 | | (reg_ofs << MVGBE_SMI_REG_ADDR_OFFS); | |
174 | smi_reg &= ~MVGBE_PHY_SMI_OPCODE_READ; | |
9131589a PW |
175 | |
176 | /* write the smi register */ | |
d44265ad | 177 | MVGBE_REG_WR(MVGBE_SMI_REG, smi_reg); |
9131589a PW |
178 | |
179 | return 0; | |
180 | } | |
181 | ||
182 | /* Stop and checks all queues */ | |
183 | static void stop_queue(u32 * qreg) | |
184 | { | |
185 | u32 reg_data; | |
186 | ||
187 | reg_data = readl(qreg); | |
188 | ||
189 | if (reg_data & 0xFF) { | |
190 | /* Issue stop command for active channels only */ | |
191 | writel((reg_data << 8), qreg); | |
192 | ||
193 | /* Wait for all queue activity to terminate. */ | |
194 | do { | |
195 | /* | |
196 | * Check port cause register that all queues | |
197 | * are stopped | |
198 | */ | |
199 | reg_data = readl(qreg); | |
200 | } | |
201 | while (reg_data & 0xFF); | |
202 | } | |
203 | } | |
204 | ||
205 | /* | |
206 | * set_access_control - Config address decode parameters for Ethernet unit | |
207 | * | |
208 | * This function configures the address decode parameters for the Gigabit | |
209 | * Ethernet Controller according the given parameters struct. | |
210 | * | |
211 | * @regs Register struct pointer. | |
212 | * @param Address decode parameter struct. | |
213 | */ | |
d44265ad AA |
214 | static void set_access_control(struct mvgbe_registers *regs, |
215 | struct mvgbe_winparam *param) | |
9131589a PW |
216 | { |
217 | u32 access_prot_reg; | |
218 | ||
219 | /* Set access control register */ | |
d44265ad | 220 | access_prot_reg = MVGBE_REG_RD(regs->epap); |
9131589a PW |
221 | /* clear window permission */ |
222 | access_prot_reg &= (~(3 << (param->win * 2))); | |
223 | access_prot_reg |= (param->access_ctrl << (param->win * 2)); | |
d44265ad | 224 | MVGBE_REG_WR(regs->epap, access_prot_reg); |
9131589a PW |
225 | |
226 | /* Set window Size reg (SR) */ | |
d44265ad | 227 | MVGBE_REG_WR(regs->barsz[param->win].size, |
9131589a PW |
228 | (((param->size / 0x10000) - 1) << 16)); |
229 | ||
230 | /* Set window Base address reg (BA) */ | |
d44265ad | 231 | MVGBE_REG_WR(regs->barsz[param->win].bar, |
9131589a PW |
232 | (param->target | param->attrib | param->base_addr)); |
233 | /* High address remap reg (HARR) */ | |
234 | if (param->win < 4) | |
d44265ad | 235 | MVGBE_REG_WR(regs->ha_remap[param->win], param->high_addr); |
9131589a PW |
236 | |
237 | /* Base address enable reg (BARER) */ | |
238 | if (param->enable == 1) | |
d44265ad | 239 | MVGBE_REG_BITS_RESET(regs->bare, (1 << param->win)); |
9131589a | 240 | else |
d44265ad | 241 | MVGBE_REG_BITS_SET(regs->bare, (1 << param->win)); |
9131589a PW |
242 | } |
243 | ||
d44265ad | 244 | static void set_dram_access(struct mvgbe_registers *regs) |
9131589a | 245 | { |
d44265ad | 246 | struct mvgbe_winparam win_param; |
9131589a PW |
247 | int i; |
248 | ||
249 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { | |
250 | /* Set access parameters for DRAM bank i */ | |
251 | win_param.win = i; /* Use Ethernet window i */ | |
252 | /* Window target - DDR */ | |
d44265ad | 253 | win_param.target = MVGBE_TARGET_DRAM; |
9131589a PW |
254 | /* Enable full access */ |
255 | win_param.access_ctrl = EWIN_ACCESS_FULL; | |
256 | win_param.high_addr = 0; | |
49fa6ed8 AA |
257 | /* Get bank base and size */ |
258 | win_param.base_addr = gd->bd->bi_dram[i].start; | |
259 | win_param.size = gd->bd->bi_dram[i].size; | |
9131589a PW |
260 | if (win_param.size == 0) |
261 | win_param.enable = 0; | |
262 | else | |
263 | win_param.enable = 1; /* Enable the access */ | |
264 | ||
265 | /* Enable DRAM bank */ | |
266 | switch (i) { | |
267 | case 0: | |
268 | win_param.attrib = EBAR_DRAM_CS0; | |
269 | break; | |
270 | case 1: | |
271 | win_param.attrib = EBAR_DRAM_CS1; | |
272 | break; | |
273 | case 2: | |
274 | win_param.attrib = EBAR_DRAM_CS2; | |
275 | break; | |
276 | case 3: | |
277 | win_param.attrib = EBAR_DRAM_CS3; | |
278 | break; | |
279 | default: | |
49fa6ed8 | 280 | /* invalid bank, disable access */ |
9131589a PW |
281 | win_param.enable = 0; |
282 | win_param.attrib = 0; | |
283 | break; | |
284 | } | |
285 | /* Set the access control for address window(EPAPR) RD/WR */ | |
286 | set_access_control(regs, &win_param); | |
287 | } | |
288 | } | |
289 | ||
290 | /* | |
291 | * port_init_mac_tables - Clear all entrance in the UC, SMC and OMC tables | |
292 | * | |
293 | * Go through all the DA filter tables (Unicast, Special Multicast & Other | |
294 | * Multicast) and set each entry to 0. | |
295 | */ | |
d44265ad | 296 | static void port_init_mac_tables(struct mvgbe_registers *regs) |
9131589a PW |
297 | { |
298 | int table_index; | |
299 | ||
300 | /* Clear DA filter unicast table (Ex_dFUT) */ | |
301 | for (table_index = 0; table_index < 4; ++table_index) | |
d44265ad | 302 | MVGBE_REG_WR(regs->dfut[table_index], 0); |
9131589a PW |
303 | |
304 | for (table_index = 0; table_index < 64; ++table_index) { | |
305 | /* Clear DA filter special multicast table (Ex_dFSMT) */ | |
d44265ad | 306 | MVGBE_REG_WR(regs->dfsmt[table_index], 0); |
9131589a | 307 | /* Clear DA filter other multicast table (Ex_dFOMT) */ |
d44265ad | 308 | MVGBE_REG_WR(regs->dfomt[table_index], 0); |
9131589a PW |
309 | } |
310 | } | |
311 | ||
312 | /* | |
313 | * port_uc_addr - This function Set the port unicast address table | |
314 | * | |
315 | * This function locates the proper entry in the Unicast table for the | |
316 | * specified MAC nibble and sets its properties according to function | |
317 | * parameters. | |
318 | * This function add/removes MAC addresses from the port unicast address | |
319 | * table. | |
320 | * | |
321 | * @uc_nibble Unicast MAC Address last nibble. | |
322 | * @option 0 = Add, 1 = remove address. | |
323 | * | |
324 | * RETURN: 1 if output succeeded. 0 if option parameter is invalid. | |
325 | */ | |
d44265ad | 326 | static int port_uc_addr(struct mvgbe_registers *regs, u8 uc_nibble, |
9131589a PW |
327 | int option) |
328 | { | |
329 | u32 unicast_reg; | |
330 | u32 tbl_offset; | |
331 | u32 reg_offset; | |
332 | ||
333 | /* Locate the Unicast table entry */ | |
334 | uc_nibble = (0xf & uc_nibble); | |
335 | /* Register offset from unicast table base */ | |
336 | tbl_offset = (uc_nibble / 4); | |
337 | /* Entry offset within the above register */ | |
338 | reg_offset = uc_nibble % 4; | |
339 | ||
340 | switch (option) { | |
341 | case REJECT_MAC_ADDR: | |
342 | /* | |
343 | * Clear accepts frame bit at specified unicast | |
344 | * DA table entry | |
345 | */ | |
d44265ad | 346 | unicast_reg = MVGBE_REG_RD(regs->dfut[tbl_offset]); |
9131589a | 347 | unicast_reg &= (0xFF << (8 * reg_offset)); |
d44265ad | 348 | MVGBE_REG_WR(regs->dfut[tbl_offset], unicast_reg); |
9131589a PW |
349 | break; |
350 | case ACCEPT_MAC_ADDR: | |
351 | /* Set accepts frame bit at unicast DA filter table entry */ | |
d44265ad | 352 | unicast_reg = MVGBE_REG_RD(regs->dfut[tbl_offset]); |
9131589a PW |
353 | unicast_reg &= (0xFF << (8 * reg_offset)); |
354 | unicast_reg |= ((0x01 | (RXUQ << 1)) << (8 * reg_offset)); | |
d44265ad | 355 | MVGBE_REG_WR(regs->dfut[tbl_offset], unicast_reg); |
9131589a PW |
356 | break; |
357 | default: | |
358 | return 0; | |
359 | } | |
360 | return 1; | |
361 | } | |
362 | ||
363 | /* | |
364 | * port_uc_addr_set - This function Set the port Unicast address. | |
365 | */ | |
d44265ad | 366 | static void port_uc_addr_set(struct mvgbe_registers *regs, u8 * p_addr) |
9131589a PW |
367 | { |
368 | u32 mac_h; | |
369 | u32 mac_l; | |
370 | ||
371 | mac_l = (p_addr[4] << 8) | (p_addr[5]); | |
372 | mac_h = (p_addr[0] << 24) | (p_addr[1] << 16) | (p_addr[2] << 8) | | |
373 | (p_addr[3] << 0); | |
374 | ||
d44265ad AA |
375 | MVGBE_REG_WR(regs->macal, mac_l); |
376 | MVGBE_REG_WR(regs->macah, mac_h); | |
9131589a PW |
377 | |
378 | /* Accept frames of this address */ | |
379 | port_uc_addr(regs, p_addr[5], ACCEPT_MAC_ADDR); | |
380 | } | |
381 | ||
382 | /* | |
d44265ad | 383 | * mvgbe_init_rx_desc_ring - Curve a Rx chain desc list and buffer in memory. |
9131589a | 384 | */ |
d44265ad | 385 | static void mvgbe_init_rx_desc_ring(struct mvgbe_device *dmvgbe) |
9131589a | 386 | { |
d44265ad | 387 | struct mvgbe_rxdesc *p_rx_desc; |
9131589a PW |
388 | int i; |
389 | ||
390 | /* initialize the Rx descriptors ring */ | |
d44265ad | 391 | p_rx_desc = dmvgbe->p_rxdesc; |
9131589a PW |
392 | for (i = 0; i < RINGSZ; i++) { |
393 | p_rx_desc->cmd_sts = | |
d44265ad | 394 | MVGBE_BUFFER_OWNED_BY_DMA | MVGBE_RX_EN_INTERRUPT; |
9131589a PW |
395 | p_rx_desc->buf_size = PKTSIZE_ALIGN; |
396 | p_rx_desc->byte_cnt = 0; | |
d44265ad | 397 | p_rx_desc->buf_ptr = dmvgbe->p_rxbuf + i * PKTSIZE_ALIGN; |
9131589a | 398 | if (i == (RINGSZ - 1)) |
d44265ad | 399 | p_rx_desc->nxtdesc_p = dmvgbe->p_rxdesc; |
9131589a | 400 | else { |
d44265ad AA |
401 | p_rx_desc->nxtdesc_p = (struct mvgbe_rxdesc *) |
402 | ((u32) p_rx_desc + MV_RXQ_DESC_ALIGNED_SIZE); | |
9131589a PW |
403 | p_rx_desc = p_rx_desc->nxtdesc_p; |
404 | } | |
405 | } | |
d44265ad | 406 | dmvgbe->p_rxdesc_curr = dmvgbe->p_rxdesc; |
9131589a PW |
407 | } |
408 | ||
d44265ad | 409 | static int mvgbe_init(struct eth_device *dev) |
9131589a | 410 | { |
d44265ad AA |
411 | struct mvgbe_device *dmvgbe = to_mvgbe(dev); |
412 | struct mvgbe_registers *regs = dmvgbe->regs; | |
aba82372 PW |
413 | #if (defined (CONFIG_MII) || defined (CONFIG_CMD_MII)) \ |
414 | && defined (CONFIG_SYS_FAULT_ECHO_LINK_DOWN) | |
cad713bf | 415 | int i; |
aba82372 | 416 | #endif |
9131589a | 417 | /* setup RX rings */ |
d44265ad | 418 | mvgbe_init_rx_desc_ring(dmvgbe); |
9131589a PW |
419 | |
420 | /* Clear the ethernet port interrupts */ | |
d44265ad AA |
421 | MVGBE_REG_WR(regs->ic, 0); |
422 | MVGBE_REG_WR(regs->ice, 0); | |
9131589a | 423 | /* Unmask RX buffer and TX end interrupt */ |
d44265ad | 424 | MVGBE_REG_WR(regs->pim, INT_CAUSE_UNMASK_ALL); |
9131589a | 425 | /* Unmask phy and link status changes interrupts */ |
d44265ad | 426 | MVGBE_REG_WR(regs->peim, INT_CAUSE_UNMASK_ALL_EXT); |
9131589a PW |
427 | |
428 | set_dram_access(regs); | |
429 | port_init_mac_tables(regs); | |
d44265ad | 430 | port_uc_addr_set(regs, dmvgbe->dev.enetaddr); |
9131589a PW |
431 | |
432 | /* Assign port configuration and command. */ | |
d44265ad AA |
433 | MVGBE_REG_WR(regs->pxc, PRT_CFG_VAL); |
434 | MVGBE_REG_WR(regs->pxcx, PORT_CFG_EXTEND_VALUE); | |
435 | MVGBE_REG_WR(regs->psc0, PORT_SERIAL_CONTROL_VALUE); | |
9131589a PW |
436 | |
437 | /* Assign port SDMA configuration */ | |
d44265ad AA |
438 | MVGBE_REG_WR(regs->sdc, PORT_SDMA_CFG_VALUE); |
439 | MVGBE_REG_WR(regs->tqx[0].qxttbc, QTKNBKT_DEF_VAL); | |
440 | MVGBE_REG_WR(regs->tqx[0].tqxtbc, | |
441 | (QMTBS_DEF_VAL << 16) | QTKNRT_DEF_VAL); | |
9131589a | 442 | /* Turn off the port/RXUQ bandwidth limitation */ |
d44265ad | 443 | MVGBE_REG_WR(regs->pmtu, 0); |
9131589a PW |
444 | |
445 | /* Set maximum receive buffer to 9700 bytes */ | |
d44265ad AA |
446 | MVGBE_REG_WR(regs->psc0, MVGBE_MAX_RX_PACKET_9700BYTE |
447 | | (MVGBE_REG_RD(regs->psc0) & MRU_MASK)); | |
9131589a | 448 | |
f0588fdf | 449 | /* Enable port initially */ |
d44265ad | 450 | MVGBE_REG_BITS_SET(regs->psc0, MVGBE_SERIAL_PORT_EN); |
f0588fdf | 451 | |
9131589a PW |
452 | /* |
453 | * Set ethernet MTU for leaky bucket mechanism to 0 - this will | |
454 | * disable the leaky bucket mechanism . | |
455 | */ | |
d44265ad | 456 | MVGBE_REG_WR(regs->pmtu, 0); |
9131589a PW |
457 | |
458 | /* Assignment of Rx CRDB of given RXUQ */ | |
d44265ad | 459 | MVGBE_REG_WR(regs->rxcdp[RXUQ], (u32) dmvgbe->p_rxdesc_curr); |
c19a20d5 AA |
460 | /* ensure previous write is done before enabling Rx DMA */ |
461 | isb(); | |
9131589a | 462 | /* Enable port Rx. */ |
d44265ad | 463 | MVGBE_REG_WR(regs->rqc, (1 << RXUQ)); |
9131589a PW |
464 | |
465 | #if (defined (CONFIG_MII) || defined (CONFIG_CMD_MII)) \ | |
466 | && defined (CONFIG_SYS_FAULT_ECHO_LINK_DOWN) | |
cad713bf SK |
467 | /* Wait up to 5s for the link status */ |
468 | for (i = 0; i < 5; i++) { | |
469 | u16 phyadr; | |
470 | ||
d44265ad AA |
471 | miiphy_read(dev->name, MV_PHY_ADR_REQUEST, |
472 | MV_PHY_ADR_REQUEST, &phyadr); | |
cad713bf SK |
473 | /* Return if we get link up */ |
474 | if (miiphy_link(dev->name, phyadr)) | |
475 | return 0; | |
476 | udelay(1000000); | |
9131589a | 477 | } |
cad713bf SK |
478 | |
479 | printf("No link on %s\n", dev->name); | |
480 | return -1; | |
9131589a PW |
481 | #endif |
482 | return 0; | |
483 | } | |
484 | ||
d44265ad | 485 | static int mvgbe_halt(struct eth_device *dev) |
9131589a | 486 | { |
d44265ad AA |
487 | struct mvgbe_device *dmvgbe = to_mvgbe(dev); |
488 | struct mvgbe_registers *regs = dmvgbe->regs; | |
9131589a PW |
489 | |
490 | /* Disable all gigE address decoder */ | |
d44265ad | 491 | MVGBE_REG_WR(regs->bare, 0x3f); |
9131589a PW |
492 | |
493 | stop_queue(®s->tqc); | |
494 | stop_queue(®s->rqc); | |
495 | ||
f0588fdf | 496 | /* Disable port */ |
d44265ad | 497 | MVGBE_REG_BITS_RESET(regs->psc0, MVGBE_SERIAL_PORT_EN); |
9131589a | 498 | /* Set port is not reset */ |
d44265ad | 499 | MVGBE_REG_BITS_RESET(regs->psc1, 1 << 4); |
9131589a PW |
500 | #ifdef CONFIG_SYS_MII_MODE |
501 | /* Set MMI interface up */ | |
d44265ad | 502 | MVGBE_REG_BITS_RESET(regs->psc1, 1 << 3); |
9131589a PW |
503 | #endif |
504 | /* Disable & mask ethernet port interrupts */ | |
d44265ad AA |
505 | MVGBE_REG_WR(regs->ic, 0); |
506 | MVGBE_REG_WR(regs->ice, 0); | |
507 | MVGBE_REG_WR(regs->pim, 0); | |
508 | MVGBE_REG_WR(regs->peim, 0); | |
9131589a PW |
509 | |
510 | return 0; | |
511 | } | |
512 | ||
d44265ad | 513 | static int mvgbe_write_hwaddr(struct eth_device *dev) |
b5ce63ed | 514 | { |
d44265ad AA |
515 | struct mvgbe_device *dmvgbe = to_mvgbe(dev); |
516 | struct mvgbe_registers *regs = dmvgbe->regs; | |
b5ce63ed PW |
517 | |
518 | /* Programs net device MAC address after initialization */ | |
d44265ad | 519 | port_uc_addr_set(regs, dmvgbe->dev.enetaddr); |
b5ce63ed PW |
520 | return 0; |
521 | } | |
522 | ||
d44265ad | 523 | static int mvgbe_send(struct eth_device *dev, void *dataptr, |
9131589a PW |
524 | int datasize) |
525 | { | |
d44265ad AA |
526 | struct mvgbe_device *dmvgbe = to_mvgbe(dev); |
527 | struct mvgbe_registers *regs = dmvgbe->regs; | |
528 | struct mvgbe_txdesc *p_txdesc = dmvgbe->p_txdesc; | |
477fa637 | 529 | void *p = (void *)dataptr; |
7b05f5e0 | 530 | u32 cmd_sts; |
9131589a | 531 | |
477fa637 | 532 | /* Copy buffer if it's misaligned */ |
9131589a | 533 | if ((u32) dataptr & 0x07) { |
477fa637 SK |
534 | if (datasize > PKTSIZE_ALIGN) { |
535 | printf("Non-aligned data too large (%d)\n", | |
536 | datasize); | |
537 | return -1; | |
538 | } | |
539 | ||
d44265ad AA |
540 | memcpy(dmvgbe->p_aligned_txbuf, p, datasize); |
541 | p = dmvgbe->p_aligned_txbuf; | |
9131589a | 542 | } |
477fa637 | 543 | |
d44265ad AA |
544 | p_txdesc->cmd_sts = MVGBE_ZERO_PADDING | MVGBE_GEN_CRC; |
545 | p_txdesc->cmd_sts |= MVGBE_TX_FIRST_DESC | MVGBE_TX_LAST_DESC; | |
546 | p_txdesc->cmd_sts |= MVGBE_BUFFER_OWNED_BY_DMA; | |
547 | p_txdesc->cmd_sts |= MVGBE_TX_EN_INTERRUPT; | |
477fa637 | 548 | p_txdesc->buf_ptr = (u8 *) p; |
9131589a PW |
549 | p_txdesc->byte_cnt = datasize; |
550 | ||
c19a20d5 | 551 | /* Set this tc desc as zeroth TXUQ */ |
d44265ad | 552 | MVGBE_REG_WR(regs->tcqdp[TXUQ], (u32) p_txdesc); |
c19a20d5 AA |
553 | |
554 | /* ensure tx desc writes above are performed before we start Tx DMA */ | |
555 | isb(); | |
556 | ||
557 | /* Apply send command using zeroth TXUQ */ | |
d44265ad | 558 | MVGBE_REG_WR(regs->tqc, (1 << TXUQ)); |
9131589a PW |
559 | |
560 | /* | |
561 | * wait for packet xmit completion | |
562 | */ | |
7b05f5e0 | 563 | cmd_sts = readl(&p_txdesc->cmd_sts); |
d44265ad | 564 | while (cmd_sts & MVGBE_BUFFER_OWNED_BY_DMA) { |
9131589a | 565 | /* return fail if error is detected */ |
d44265ad AA |
566 | if ((cmd_sts & (MVGBE_ERROR_SUMMARY | MVGBE_TX_LAST_FRAME)) == |
567 | (MVGBE_ERROR_SUMMARY | MVGBE_TX_LAST_FRAME) && | |
568 | cmd_sts & (MVGBE_UR_ERROR | MVGBE_RL_ERROR)) { | |
9131589a PW |
569 | printf("Err..(%s) in xmit packet\n", __FUNCTION__); |
570 | return -1; | |
571 | } | |
7b05f5e0 | 572 | cmd_sts = readl(&p_txdesc->cmd_sts); |
9131589a PW |
573 | }; |
574 | return 0; | |
575 | } | |
576 | ||
d44265ad | 577 | static int mvgbe_recv(struct eth_device *dev) |
9131589a | 578 | { |
d44265ad AA |
579 | struct mvgbe_device *dmvgbe = to_mvgbe(dev); |
580 | struct mvgbe_rxdesc *p_rxdesc_curr = dmvgbe->p_rxdesc_curr; | |
7b05f5e0 SK |
581 | u32 cmd_sts; |
582 | u32 timeout = 0; | |
9131589a PW |
583 | |
584 | /* wait untill rx packet available or timeout */ | |
585 | do { | |
d44265ad | 586 | if (timeout < MVGBE_PHY_SMI_TIMEOUT) |
9131589a PW |
587 | timeout++; |
588 | else { | |
589 | debug("%s time out...\n", __FUNCTION__); | |
590 | return -1; | |
591 | } | |
d44265ad | 592 | } while (readl(&p_rxdesc_curr->cmd_sts) & MVGBE_BUFFER_OWNED_BY_DMA); |
9131589a PW |
593 | |
594 | if (p_rxdesc_curr->byte_cnt != 0) { | |
595 | debug("%s: Received %d byte Packet @ 0x%x (cmd_sts= %08x)\n", | |
596 | __FUNCTION__, (u32) p_rxdesc_curr->byte_cnt, | |
597 | (u32) p_rxdesc_curr->buf_ptr, | |
598 | (u32) p_rxdesc_curr->cmd_sts); | |
599 | } | |
600 | ||
601 | /* | |
602 | * In case received a packet without first/last bits on | |
603 | * OR the error summary bit is on, | |
604 | * the packets needs to be dropeed. | |
605 | */ | |
7b05f5e0 SK |
606 | cmd_sts = readl(&p_rxdesc_curr->cmd_sts); |
607 | ||
608 | if ((cmd_sts & | |
d44265ad AA |
609 | (MVGBE_RX_FIRST_DESC | MVGBE_RX_LAST_DESC)) |
610 | != (MVGBE_RX_FIRST_DESC | MVGBE_RX_LAST_DESC)) { | |
9131589a PW |
611 | |
612 | printf("Err..(%s) Dropping packet spread on" | |
613 | " multiple descriptors\n", __FUNCTION__); | |
614 | ||
d44265ad | 615 | } else if (cmd_sts & MVGBE_ERROR_SUMMARY) { |
9131589a PW |
616 | |
617 | printf("Err..(%s) Dropping packet with errors\n", | |
618 | __FUNCTION__); | |
619 | ||
620 | } else { | |
621 | /* !!! call higher layer processing */ | |
622 | debug("%s: Sending Received packet to" | |
623 | " upper layer (NetReceive)\n", __FUNCTION__); | |
624 | ||
625 | /* let the upper layer handle the packet */ | |
626 | NetReceive((p_rxdesc_curr->buf_ptr + RX_BUF_OFFSET), | |
627 | (int)(p_rxdesc_curr->byte_cnt - RX_BUF_OFFSET)); | |
628 | } | |
629 | /* | |
630 | * free these descriptors and point next in the ring | |
631 | */ | |
632 | p_rxdesc_curr->cmd_sts = | |
d44265ad | 633 | MVGBE_BUFFER_OWNED_BY_DMA | MVGBE_RX_EN_INTERRUPT; |
9131589a PW |
634 | p_rxdesc_curr->buf_size = PKTSIZE_ALIGN; |
635 | p_rxdesc_curr->byte_cnt = 0; | |
636 | ||
d44265ad AA |
637 | writel((unsigned)p_rxdesc_curr->nxtdesc_p, |
638 | (u32) &dmvgbe->p_rxdesc_curr); | |
7b05f5e0 | 639 | |
9131589a PW |
640 | return 0; |
641 | } | |
642 | ||
d44265ad | 643 | int mvgbe_initialize(bd_t *bis) |
9131589a | 644 | { |
d44265ad | 645 | struct mvgbe_device *dmvgbe; |
9131589a PW |
646 | struct eth_device *dev; |
647 | int devnum; | |
9fd38a01 | 648 | char *s; |
d44265ad | 649 | u8 used_ports[MAX_MVGBE_DEVS] = CONFIG_MVGBE_PORTS; |
9131589a | 650 | |
d44265ad | 651 | for (devnum = 0; devnum < MAX_MVGBE_DEVS; devnum++) { |
9131589a PW |
652 | /*skip if port is configured not to use */ |
653 | if (used_ports[devnum] == 0) | |
654 | continue; | |
655 | ||
d44265ad AA |
656 | dmvgbe = malloc(sizeof(struct mvgbe_device)); |
657 | ||
658 | if (!dmvgbe) | |
9131589a PW |
659 | goto error1; |
660 | ||
d44265ad | 661 | memset(dmvgbe, 0, sizeof(struct mvgbe_device)); |
9131589a | 662 | |
d44265ad AA |
663 | dmvgbe->p_rxdesc = |
664 | (struct mvgbe_rxdesc *)memalign(PKTALIGN, | |
665 | MV_RXQ_DESC_ALIGNED_SIZE*RINGSZ + 1); | |
666 | ||
667 | if (!dmvgbe->p_rxdesc) | |
9131589a PW |
668 | goto error2; |
669 | ||
d44265ad AA |
670 | dmvgbe->p_rxbuf = (u8 *) memalign(PKTALIGN, |
671 | RINGSZ*PKTSIZE_ALIGN + 1); | |
672 | ||
673 | if (!dmvgbe->p_rxbuf) | |
9131589a PW |
674 | goto error3; |
675 | ||
d44265ad AA |
676 | dmvgbe->p_aligned_txbuf = memalign(8, PKTSIZE_ALIGN); |
677 | ||
678 | if (!dmvgbe->p_aligned_txbuf) | |
477fa637 SK |
679 | goto error4; |
680 | ||
d44265ad AA |
681 | dmvgbe->p_txdesc = (struct mvgbe_txdesc *) memalign( |
682 | PKTALIGN, sizeof(struct mvgbe_txdesc) + 1); | |
683 | ||
684 | if (!dmvgbe->p_txdesc) { | |
685 | free(dmvgbe->p_aligned_txbuf); | |
686 | error4: | |
687 | free(dmvgbe->p_rxbuf); | |
688 | error3: | |
689 | free(dmvgbe->p_rxdesc); | |
690 | error2: | |
691 | free(dmvgbe); | |
692 | error1: | |
9131589a PW |
693 | printf("Err.. %s Failed to allocate memory\n", |
694 | __FUNCTION__); | |
695 | return -1; | |
696 | } | |
697 | ||
d44265ad | 698 | dev = &dmvgbe->dev; |
9131589a PW |
699 | |
700 | /* must be less than NAMESIZE (16) */ | |
701 | sprintf(dev->name, "egiga%d", devnum); | |
702 | ||
703 | /* Extract the MAC address from the environment */ | |
704 | switch (devnum) { | |
705 | case 0: | |
d44265ad | 706 | dmvgbe->regs = (void *)MVGBE0_BASE; |
9131589a PW |
707 | s = "ethaddr"; |
708 | break; | |
d44265ad | 709 | #if defined(MVGBE1_BASE) |
9131589a | 710 | case 1: |
d44265ad | 711 | dmvgbe->regs = (void *)MVGBE1_BASE; |
9131589a PW |
712 | s = "eth1addr"; |
713 | break; | |
d44265ad | 714 | #endif |
9131589a PW |
715 | default: /* this should never happen */ |
716 | printf("Err..(%s) Invalid device number %d\n", | |
717 | __FUNCTION__, devnum); | |
718 | return -1; | |
719 | } | |
720 | ||
721 | while (!eth_getenv_enetaddr(s, dev->enetaddr)) { | |
c67e2ccd | 722 | /* Generate Private MAC addr if not set */ |
9fd38a01 PW |
723 | dev->enetaddr[0] = 0x02; |
724 | dev->enetaddr[1] = 0x50; | |
725 | dev->enetaddr[2] = 0x43; | |
c67e2ccd AA |
726 | #if defined (CONFIG_SKIP_LOCAL_MAC_RANDOMIZATION) |
727 | /* Generate fixed lower MAC half using devnum */ | |
728 | dev->enetaddr[3] = 0; | |
729 | dev->enetaddr[4] = 0; | |
730 | dev->enetaddr[5] = devnum; | |
731 | #else | |
732 | /* Generate random lower MAC half */ | |
9fd38a01 PW |
733 | dev->enetaddr[3] = get_random_hex(); |
734 | dev->enetaddr[4] = get_random_hex(); | |
735 | dev->enetaddr[5] = get_random_hex(); | |
c67e2ccd | 736 | #endif |
9fd38a01 | 737 | eth_setenv_enetaddr(s, dev->enetaddr); |
9131589a PW |
738 | } |
739 | ||
d44265ad AA |
740 | dev->init = (void *)mvgbe_init; |
741 | dev->halt = (void *)mvgbe_halt; | |
742 | dev->send = (void *)mvgbe_send; | |
743 | dev->recv = (void *)mvgbe_recv; | |
744 | dev->write_hwaddr = (void *)mvgbe_write_hwaddr; | |
9131589a PW |
745 | |
746 | eth_register(dev); | |
747 | ||
748 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) | |
749 | miiphy_register(dev->name, smi_reg_read, smi_reg_write); | |
750 | /* Set phy address of the port */ | |
d44265ad AA |
751 | miiphy_write(dev->name, MV_PHY_ADR_REQUEST, |
752 | MV_PHY_ADR_REQUEST, PHY_BASE_ADR + devnum); | |
9131589a PW |
753 | #endif |
754 | } | |
755 | return 0; | |
0b785ddd | 756 | } |