2 * MPC8560 FCC Fast Ethernet
3 * Copyright (c) 2003 Motorola,Inc.
4 * Xianghua Xiao, (X.Xiao@motorola.com)
6 * Copyright (c) 2000 MontaVista Software, Inc. Dan Malek (dmalek@jlc.net)
8 * (C) Copyright 2000 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9 * Marius Groeger <mgroeger@sysgo.de>
11 * See file CREDITS for list of people who contributed to this
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 * MPC8560 FCC Fast Ethernet
32 * Basic ET HW initialization and packet RX/TX routines
34 * This code will not perform the IO port configuration. This should be
35 * done in the iop_conf_t structure specific for the board.
38 * add a PHY driver to do the negotiation
39 * reflect negotiation results in FPSMR
40 * look for ways to configure the board specific stuff elsewhere, eg.
41 * config_xxx.h or the board directory
46 #include <asm/cpm_85xx.h>
51 #if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)
55 #if defined(CONFIG_CPM2)
57 #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_COMMANDS & CFG_CMD_NET) && \
58 defined(CONFIG_NET_MULTI)
60 static struct ether_fcc_info_s
64 ulong cpm_cr_enet_sblock
;
65 ulong cpm_cr_enet_page
;
71 #ifdef CONFIG_ETHER_ON_FCC1
82 #ifdef CONFIG_ETHER_ON_FCC2
93 #ifdef CONFIG_ETHER_ON_FCC3
105 /*---------------------------------------------------------------------*/
107 /* Maximum input DMA size. Must be a should(?) be a multiple of 4. */
108 #define PKT_MAXDMA_SIZE 1520
110 /* The FCC stores dest/src/type, data, and checksum for receive packets. */
111 #define PKT_MAXBUF_SIZE 1518
112 #define PKT_MINBUF_SIZE 64
114 /* Maximum input buffer size. Must be a multiple of 32. */
115 #define PKT_MAXBLR_SIZE 1536
117 #define TOUT_LOOP 1000000
121 static uint rxIdx
; /* index of the current RX buffer */
122 static uint txIdx
; /* index of the current TX buffer */
125 * FCC Ethernet Tx and Rx buffer descriptors.
126 * Provide for Double Buffering
127 * Note: PKTBUFSRX is defined in net.h
130 typedef volatile struct rtxbd
{
131 cbd_t rxbd
[PKTBUFSRX
];
132 cbd_t txbd
[TX_BUF_CNT
];
135 /* Good news: the FCC supports external BDs! */
137 static RTXBD rtx
__attribute__ ((aligned(8)));
139 #error "rtx must be 64-bit aligned"
144 static int fec_send(struct eth_device
* dev
, volatile void *packet
, int length
)
150 printf("fec: bad packet size: %d\n", length
);
154 for(i
=0; rtx
.txbd
[txIdx
].cbd_sc
& BD_ENET_TX_READY
; i
++) {
155 if (i
>= TOUT_LOOP
) {
156 printf("fec: tx buffer not ready\n");
161 rtx
.txbd
[txIdx
].cbd_bufaddr
= (uint
)packet
;
162 rtx
.txbd
[txIdx
].cbd_datlen
= length
;
163 rtx
.txbd
[txIdx
].cbd_sc
|= (BD_ENET_TX_READY
| BD_ENET_TX_LAST
| \
164 BD_ENET_TX_TC
| BD_ENET_TX_PAD
);
166 for(i
=0; rtx
.txbd
[txIdx
].cbd_sc
& BD_ENET_TX_READY
; i
++) {
167 if (i
>= TOUT_LOOP
) {
168 printf("fec: tx error\n");
174 printf("cycles: 0x%x txIdx=0x%04x status: 0x%04x\n", i
, txIdx
,rtx
.txbd
[txIdx
].cbd_sc
);
175 printf("packets at 0x%08x, length_in_bytes=0x%x\n",(uint
)packet
,length
);
176 for(i
=0;i
<(length
/16 + 1);i
++) {
177 printf("%08x %08x %08x %08x\n",*((uint
*)rtx
.txbd
[txIdx
].cbd_bufaddr
+i
*4),\
178 *((uint
*)rtx
.txbd
[txIdx
].cbd_bufaddr
+ i
*4 + 1),*((uint
*)rtx
.txbd
[txIdx
].cbd_bufaddr
+ i
*4 + 2), \
179 *((uint
*)rtx
.txbd
[txIdx
].cbd_bufaddr
+ i
*4 + 3));
183 /* return only status bits */
184 result
= rtx
.txbd
[txIdx
].cbd_sc
& BD_ENET_TX_STATS
;
185 txIdx
= (txIdx
+ 1) % TX_BUF_CNT
;
191 static int fec_recv(struct eth_device
* dev
)
197 if (rtx
.rxbd
[rxIdx
].cbd_sc
& BD_ENET_RX_EMPTY
) {
199 break; /* nothing received - leave for() loop */
201 length
= rtx
.rxbd
[rxIdx
].cbd_datlen
;
203 if (rtx
.rxbd
[rxIdx
].cbd_sc
& 0x003f) {
204 printf("fec: rx error %04x\n", rtx
.rxbd
[rxIdx
].cbd_sc
);
207 /* Pass the packet up to the protocol layers. */
208 NetReceive(NetRxPackets
[rxIdx
], length
- 4);
212 /* Give the buffer back to the FCC. */
213 rtx
.rxbd
[rxIdx
].cbd_datlen
= 0;
215 /* wrap around buffer index when necessary */
216 if ((rxIdx
+ 1) >= PKTBUFSRX
) {
217 rtx
.rxbd
[PKTBUFSRX
- 1].cbd_sc
= (BD_ENET_RX_WRAP
| BD_ENET_RX_EMPTY
);
221 rtx
.rxbd
[rxIdx
].cbd_sc
= BD_ENET_RX_EMPTY
;
229 static int fec_init(struct eth_device
* dev
, bd_t
*bis
)
231 struct ether_fcc_info_s
* info
= dev
->priv
;
233 volatile immap_t
*immr
= (immap_t
*)CFG_IMMR
;
234 volatile ccsr_cpm_cp_t
*cp
= &(immr
->im_cpm
.im_cpm_cp
);
235 fcc_enet_t
*pram_ptr
;
236 unsigned long mem_addr
;
242 /* 28.9 - (1-2): ioports have been set up already */
244 /* 28.9 - (3): connect FCC's tx and rx clocks */
245 immr
->im_cpm
.im_cpm_mux
.cmxuar
= 0; /* ATM */
246 immr
->im_cpm
.im_cpm_mux
.cmxfcr
= (immr
->im_cpm
.im_cpm_mux
.cmxfcr
& ~info
->cmxfcr_mask
) |
249 /* 28.9 - (4): GFMR: disable tx/rx, CCITT CRC, set Mode Ethernet */
250 if(info
->ether_index
== 0) {
251 immr
->im_cpm
.im_cpm_fcc1
.gfmr
= FCC_GFMR_MODE_ENET
| FCC_GFMR_TCRC_32
;
252 } else if (info
->ether_index
== 1) {
253 immr
->im_cpm
.im_cpm_fcc2
.gfmr
= FCC_GFMR_MODE_ENET
| FCC_GFMR_TCRC_32
;
254 } else if (info
->ether_index
== 2) {
255 immr
->im_cpm
.im_cpm_fcc3
.gfmr
= FCC_GFMR_MODE_ENET
| FCC_GFMR_TCRC_32
;
258 /* 28.9 - (5): FPSMR: enable full duplex, select CCITT CRC for Ethernet,MII */
259 if(info
->ether_index
== 0) {
260 immr
->im_cpm
.im_cpm_fcc1
.fpsmr
= CFG_FCC_PSMR
| FCC_PSMR_ENCRC
;
261 } else if (info
->ether_index
== 1){
262 immr
->im_cpm
.im_cpm_fcc2
.fpsmr
= CFG_FCC_PSMR
| FCC_PSMR_ENCRC
;
263 } else if (info
->ether_index
== 2){
264 immr
->im_cpm
.im_cpm_fcc3
.fpsmr
= CFG_FCC_PSMR
| FCC_PSMR_ENCRC
;
267 /* 28.9 - (6): FDSR: Ethernet Syn */
268 if(info
->ether_index
== 0) {
269 immr
->im_cpm
.im_cpm_fcc1
.fdsr
= 0xD555;
270 } else if (info
->ether_index
== 1) {
271 immr
->im_cpm
.im_cpm_fcc2
.fdsr
= 0xD555;
272 } else if (info
->ether_index
== 2) {
273 immr
->im_cpm
.im_cpm_fcc3
.fdsr
= 0xD555;
276 /* reset indeces to current rx/tx bd (see eth_send()/eth_rx()) */
280 /* Setup Receiver Buffer Descriptors */
281 for (i
= 0; i
< PKTBUFSRX
; i
++)
283 rtx
.rxbd
[i
].cbd_sc
= BD_ENET_RX_EMPTY
;
284 rtx
.rxbd
[i
].cbd_datlen
= 0;
285 rtx
.rxbd
[i
].cbd_bufaddr
= (uint
)NetRxPackets
[i
];
287 rtx
.rxbd
[PKTBUFSRX
- 1].cbd_sc
|= BD_ENET_RX_WRAP
;
289 /* Setup Ethernet Transmitter Buffer Descriptors */
290 for (i
= 0; i
< TX_BUF_CNT
; i
++)
292 rtx
.txbd
[i
].cbd_sc
= 0;
293 rtx
.txbd
[i
].cbd_datlen
= 0;
294 rtx
.txbd
[i
].cbd_bufaddr
= 0;
296 rtx
.txbd
[TX_BUF_CNT
- 1].cbd_sc
|= BD_ENET_TX_WRAP
;
298 /* 28.9 - (7): initialize parameter ram */
299 pram_ptr
= (fcc_enet_t
*)&(immr
->im_cpm
.im_dprambase
[info
->proff_enet
]);
301 /* clear whole structure to make sure all reserved fields are zero */
302 memset((void*)pram_ptr
, 0, sizeof(fcc_enet_t
));
305 * common Parameter RAM area
307 * Allocate space in the reserved FCC area of DPRAM for the
308 * internal buffers. No one uses this space (yet), so we
309 * can do this. Later, we will add resource management for
311 * CPM_FCC_SPECIAL_BASE: 0xB000 for MPC8540, MPC8560
312 * 0x9000 for MPC8541, MPC8555
314 mem_addr
= CPM_FCC_SPECIAL_BASE
+ ((info
->ether_index
) * 64);
315 pram_ptr
->fen_genfcc
.fcc_riptr
= mem_addr
;
316 pram_ptr
->fen_genfcc
.fcc_tiptr
= mem_addr
+32;
318 * Set maximum bytes per receive buffer.
319 * It must be a multiple of 32.
321 pram_ptr
->fen_genfcc
.fcc_mrblr
= PKT_MAXBLR_SIZE
; /* 1536 */
322 /* localbus SDRAM should be preferred */
323 pram_ptr
->fen_genfcc
.fcc_rstate
= (CPMFCR_GBL
| CPMFCR_EB
|
324 CFG_CPMFCR_RAMTYPE
) << 24;
325 pram_ptr
->fen_genfcc
.fcc_rbase
= (unsigned int)(&rtx
.rxbd
[rxIdx
]);
326 pram_ptr
->fen_genfcc
.fcc_rbdstat
= 0;
327 pram_ptr
->fen_genfcc
.fcc_rbdlen
= 0;
328 pram_ptr
->fen_genfcc
.fcc_rdptr
= 0;
329 /* localbus SDRAM should be preferred */
330 pram_ptr
->fen_genfcc
.fcc_tstate
= (CPMFCR_GBL
| CPMFCR_EB
|
331 CFG_CPMFCR_RAMTYPE
) << 24;
332 pram_ptr
->fen_genfcc
.fcc_tbase
= (unsigned int)(&rtx
.txbd
[txIdx
]);
333 pram_ptr
->fen_genfcc
.fcc_tbdstat
= 0;
334 pram_ptr
->fen_genfcc
.fcc_tbdlen
= 0;
335 pram_ptr
->fen_genfcc
.fcc_tdptr
= 0;
337 /* protocol-specific area */
338 pram_ptr
->fen_statbuf
= 0x0;
339 pram_ptr
->fen_cmask
= 0xdebb20e3; /* CRC mask */
340 pram_ptr
->fen_cpres
= 0xffffffff; /* CRC preset */
341 pram_ptr
->fen_crcec
= 0;
342 pram_ptr
->fen_alec
= 0;
343 pram_ptr
->fen_disfc
= 0;
344 pram_ptr
->fen_retlim
= 15; /* Retry limit threshold */
345 pram_ptr
->fen_retcnt
= 0;
346 pram_ptr
->fen_pper
= 0;
347 pram_ptr
->fen_boffcnt
= 0;
348 pram_ptr
->fen_gaddrh
= 0;
349 pram_ptr
->fen_gaddrl
= 0;
350 pram_ptr
->fen_mflr
= PKT_MAXBUF_SIZE
; /* maximum frame length register */
352 * Set Ethernet station address.
354 * This is supplied in the board information structure, so we
355 * copy that into the controller.
356 * So far we have only been given one Ethernet address. We make
357 * it unique by setting a few bits in the upper byte of the
358 * non-static part of the address.
360 #define ea eth_get_dev()->enetaddr
361 pram_ptr
->fen_paddrh
= (ea
[5] << 8) + ea
[4];
362 pram_ptr
->fen_paddrm
= (ea
[3] << 8) + ea
[2];
363 pram_ptr
->fen_paddrl
= (ea
[1] << 8) + ea
[0];
365 pram_ptr
->fen_ibdcount
= 0;
366 pram_ptr
->fen_ibdstart
= 0;
367 pram_ptr
->fen_ibdend
= 0;
368 pram_ptr
->fen_txlen
= 0;
369 pram_ptr
->fen_iaddrh
= 0; /* disable hash */
370 pram_ptr
->fen_iaddrl
= 0;
371 pram_ptr
->fen_minflr
= PKT_MINBUF_SIZE
; /* minimum frame length register: 64 */
372 /* pad pointer. use tiptr since we don't need a specific padding char */
373 pram_ptr
->fen_padptr
= pram_ptr
->fen_genfcc
.fcc_tiptr
;
374 pram_ptr
->fen_maxd1
= PKT_MAXDMA_SIZE
; /* maximum DMA1 length:1520 */
375 pram_ptr
->fen_maxd2
= PKT_MAXDMA_SIZE
; /* maximum DMA2 length:1520 */
377 #if defined(ET_DEBUG)
378 printf("parm_ptr(0xff788500) = %p\n",pram_ptr
);
379 printf("pram_ptr->fen_genfcc.fcc_rbase %08x\n",
380 pram_ptr
->fen_genfcc
.fcc_rbase
);
381 printf("pram_ptr->fen_genfcc.fcc_tbase %08x\n",
382 pram_ptr
->fen_genfcc
.fcc_tbase
);
385 /* 28.9 - (8)(9): clear out events in FCCE */
386 /* 28.9 - (9): FCCM: mask all events */
387 if(info
->ether_index
== 0) {
388 immr
->im_cpm
.im_cpm_fcc1
.fcce
= ~0x0;
389 immr
->im_cpm
.im_cpm_fcc1
.fccm
= 0;
390 } else if (info
->ether_index
== 1) {
391 immr
->im_cpm
.im_cpm_fcc2
.fcce
= ~0x0;
392 immr
->im_cpm
.im_cpm_fcc2
.fccm
= 0;
393 } else if (info
->ether_index
== 2) {
394 immr
->im_cpm
.im_cpm_fcc3
.fcce
= ~0x0;
395 immr
->im_cpm
.im_cpm_fcc3
.fccm
= 0;
398 /* 28.9 - (10-12): we don't use ethernet interrupts */
402 * Let's re-initialize the channel now. We have to do it later
403 * than the manual describes because we have just now finished
404 * the BD initialization.
406 cp
->cpcr
= mk_cr_cmd(info
->cpm_cr_enet_page
,
407 info
->cpm_cr_enet_sblock
,
409 CPM_CR_INIT_TRX
) | CPM_CR_FLG
;
411 __asm__
__volatile__ ("eieio");
412 } while (cp
->cpcr
& CPM_CR_FLG
);
414 /* 28.9 - (14): enable tx/rx in gfmr */
415 if(info
->ether_index
== 0) {
416 immr
->im_cpm
.im_cpm_fcc1
.gfmr
|= FCC_GFMR_ENT
| FCC_GFMR_ENR
;
417 } else if (info
->ether_index
== 1) {
418 immr
->im_cpm
.im_cpm_fcc2
.gfmr
|= FCC_GFMR_ENT
| FCC_GFMR_ENR
;
419 } else if (info
->ether_index
== 2) {
420 immr
->im_cpm
.im_cpm_fcc3
.gfmr
|= FCC_GFMR_ENT
| FCC_GFMR_ENR
;
426 static void fec_halt(struct eth_device
* dev
)
428 struct ether_fcc_info_s
* info
= dev
->priv
;
429 volatile immap_t
*immr
= (immap_t
*)CFG_IMMR
;
431 /* write GFMR: disable tx/rx */
432 if(info
->ether_index
== 0) {
433 immr
->im_cpm
.im_cpm_fcc1
.gfmr
&= ~(FCC_GFMR_ENT
| FCC_GFMR_ENR
);
434 } else if(info
->ether_index
== 1) {
435 immr
->im_cpm
.im_cpm_fcc2
.gfmr
&= ~(FCC_GFMR_ENT
| FCC_GFMR_ENR
);
436 } else if(info
->ether_index
== 2) {
437 immr
->im_cpm
.im_cpm_fcc3
.gfmr
&= ~(FCC_GFMR_ENT
| FCC_GFMR_ENR
);
441 int fec_initialize(bd_t
*bis
)
443 struct eth_device
* dev
;
446 for (i
= 0; i
< sizeof(ether_fcc_info
) / sizeof(ether_fcc_info
[0]); i
++)
448 dev
= (struct eth_device
*) malloc(sizeof *dev
);
449 memset(dev
, 0, sizeof *dev
);
451 sprintf(dev
->name
, "FCC%d ETHERNET",
452 ether_fcc_info
[i
].ether_index
+ 1);
453 dev
->priv
= ðer_fcc_info
[i
];
454 dev
->init
= fec_init
;
455 dev
->halt
= fec_halt
;
456 dev
->send
= fec_send
;
457 dev
->recv
= fec_recv
;
461 #if (defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)) \
462 && defined(CONFIG_BITBANGMII)
463 miiphy_register(dev
->name
,
464 bb_miiphy_read
, bb_miiphy_write
);
471 #endif /* CONFIG_ETHER_ON_FCC && CFG_CMD_NET && CONFIG_NET_MULTI */
473 #endif /* CONFIG_CPM2 */