2 * Freescale Three Speed Ethernet Controller driver
4 * This software may be used and distributed according to the
5 * terms of the GNU Public License, Version 2, incorporated
8 * Copyright 2004 Freescale Semiconductor.
9 * (C) Copyright 2003, Motorola, Inc.
20 #if defined(CONFIG_TSEC_ENET)
24 DECLARE_GLOBAL_DATA_PTR
;
28 static uint rxIdx
; /* index of the current RX buffer */
29 static uint txIdx
; /* index of the current TX buffer */
31 typedef volatile struct rtxbd
{
32 txbd8_t txbd
[TX_BUF_CNT
];
33 rxbd8_t rxbd
[PKTBUFSRX
];
36 struct tsec_info_struct
{
39 unsigned int phyregidx
;
42 /* The tsec_info structure contains 3 values which the
43 * driver uses to determine how to operate a given ethernet
44 * device. The information needed is:
45 * phyaddr - The address of the PHY which is attached to
48 * flags - This variable indicates whether the device
49 * supports gigabit speed ethernet, and whether it should be
52 * phyregidx - This variable specifies which ethernet device
53 * controls the MII Management registers which are connected
54 * to the PHY. For now, only TSEC1 (index 0) has
55 * access to the PHYs, so all of the entries have "0".
57 * The values specified in the table are taken from the board's
58 * config file in include/configs/. When implementing a new
59 * board with ethernet capability, it is necessary to define:
63 * for n = 1,2,3, etc. And for FEC:
67 static struct tsec_info_struct tsec_info
[] = {
68 #if defined(CONFIG_MPC85XX_TSEC1) || defined(CONFIG_MPC83XX_TSEC1)
69 {TSEC1_PHY_ADDR
, TSEC_GIGABIT
, TSEC1_PHYIDX
},
70 #elif defined(CONFIG_MPC86XX_TSEC1)
71 {TSEC1_PHY_ADDR
, TSEC_GIGABIT
| TSEC_REDUCED
, TSEC1_PHYIDX
},
75 #if defined(CONFIG_MPC85XX_TSEC2) || defined(CONFIG_MPC83XX_TSEC2)
76 {TSEC2_PHY_ADDR
, TSEC_GIGABIT
, TSEC2_PHYIDX
},
77 #elif defined(CONFIG_MPC86XX_TSEC2)
78 {TSEC2_PHY_ADDR
, TSEC_GIGABIT
| TSEC_REDUCED
, TSEC2_PHYIDX
},
82 #ifdef CONFIG_MPC85XX_FEC
83 {FEC_PHY_ADDR
, 0, FEC_PHYIDX
},
85 #if defined(CONFIG_MPC85XX_TSEC3) || defined(CONFIG_MPC83XX_TSEC3) || defined(CONFIG_MPC86XX_TSEC3)
86 {TSEC3_PHY_ADDR
, TSEC_GIGABIT
| TSEC_REDUCED
, TSEC3_PHYIDX
},
90 #if defined(CONFIG_MPC85XX_TSEC4) || defined(CONFIG_MPC83XX_TSEC4) || defined(CONFIG_MPC86XX_TSEC4)
91 {TSEC4_PHY_ADDR
, TSEC_GIGABIT
| TSEC_REDUCED
, TSEC4_PHYIDX
},
98 #define MAXCONTROLLERS (4)
100 static int relocated
= 0;
102 static struct tsec_private
*privlist
[MAXCONTROLLERS
];
105 static RTXBD rtx
__attribute__ ((aligned(8)));
107 #error "rtx must be 64-bit aligned"
110 static int tsec_send(struct eth_device
*dev
,
111 volatile void *packet
, int length
);
112 static int tsec_recv(struct eth_device
*dev
);
113 static int tsec_init(struct eth_device
*dev
, bd_t
* bd
);
114 static void tsec_halt(struct eth_device
*dev
);
115 static void init_registers(volatile tsec_t
* regs
);
116 static void startup_tsec(struct eth_device
*dev
);
117 static int init_phy(struct eth_device
*dev
);
118 void write_phy_reg(struct tsec_private
*priv
, uint regnum
, uint value
);
119 uint
read_phy_reg(struct tsec_private
*priv
, uint regnum
);
120 struct phy_info
*get_phy_info(struct eth_device
*dev
);
121 void phy_run_commands(struct tsec_private
*priv
, struct phy_cmd
*cmd
);
122 static void adjust_link(struct eth_device
*dev
);
123 static void relocate_cmds(void);
124 static int tsec_miiphy_write(char *devname
, unsigned char addr
,
125 unsigned char reg
, unsigned short value
);
126 static int tsec_miiphy_read(char *devname
, unsigned char addr
,
127 unsigned char reg
, unsigned short *value
);
129 /* Initialize device structure. Returns success if PHY
130 * initialization succeeded (i.e. if it recognizes the PHY)
132 int tsec_initialize(bd_t
* bis
, int index
, char *devname
)
134 struct eth_device
*dev
;
136 struct tsec_private
*priv
;
138 dev
= (struct eth_device
*)malloc(sizeof *dev
);
143 memset(dev
, 0, sizeof *dev
);
145 priv
= (struct tsec_private
*)malloc(sizeof(*priv
));
150 privlist
[index
] = priv
;
151 priv
->regs
= (volatile tsec_t
*)(TSEC_BASE_ADDR
+ index
* TSEC_SIZE
);
152 priv
->phyregs
= (volatile tsec_t
*)(TSEC_BASE_ADDR
+
153 tsec_info
[index
].phyregidx
*
156 priv
->phyaddr
= tsec_info
[index
].phyaddr
;
157 priv
->flags
= tsec_info
[index
].flags
;
159 sprintf(dev
->name
, devname
);
162 dev
->init
= tsec_init
;
163 dev
->halt
= tsec_halt
;
164 dev
->send
= tsec_send
;
165 dev
->recv
= tsec_recv
;
167 /* Tell u-boot to get the addr from the env */
168 for (i
= 0; i
< 6; i
++)
169 dev
->enetaddr
[i
] = 0;
174 priv
->regs
->maccfg1
|= MACCFG1_SOFT_RESET
;
175 priv
->regs
->maccfg1
&= ~(MACCFG1_SOFT_RESET
);
177 #if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII) \
178 && !defined(BITBANGMII)
179 miiphy_register(dev
->name
, tsec_miiphy_read
, tsec_miiphy_write
);
182 /* Try to initialize PHY here, and return */
183 return init_phy(dev
);
186 /* Initializes data structures and registers for the controller,
187 * and brings the interface up. Returns the link status, meaning
188 * that it returns success if the link is up, failure otherwise.
189 * This allows u-boot to find the first active controller.
191 int tsec_init(struct eth_device
*dev
, bd_t
* bd
)
194 char tmpbuf
[MAC_ADDR_LEN
];
196 struct tsec_private
*priv
= (struct tsec_private
*)dev
->priv
;
197 volatile tsec_t
*regs
= priv
->regs
;
199 /* Make sure the controller is stopped */
202 /* Init MACCFG2. Defaults to GMII */
203 regs
->maccfg2
= MACCFG2_INIT_SETTINGS
;
206 regs
->ecntrl
= ECNTRL_INIT_SETTINGS
;
208 /* Copy the station address into the address registers.
209 * Backwards, because little endian MACS are dumb */
210 for (i
= 0; i
< MAC_ADDR_LEN
; i
++) {
211 tmpbuf
[MAC_ADDR_LEN
- 1 - i
] = dev
->enetaddr
[i
];
213 regs
->macstnaddr1
= *((uint
*) (tmpbuf
));
215 tempval
= *((uint
*) (tmpbuf
+ 4));
217 regs
->macstnaddr2
= tempval
;
219 /* reset the indices to zero */
223 /* Clear out (for the most part) the other registers */
224 init_registers(regs
);
226 /* Ready the device for tx/rx */
229 /* If there's no link, fail */
234 /* Write value to the device's PHY through the registers
235 * specified in priv, modifying the register specified in regnum.
236 * It will wait for the write to be done (or for a timeout to
237 * expire) before exiting
239 void write_phy_reg(struct tsec_private
*priv
, uint regnum
, uint value
)
241 volatile tsec_t
*regbase
= priv
->phyregs
;
242 uint phyid
= priv
->phyaddr
;
243 int timeout
= 1000000;
245 regbase
->miimadd
= (phyid
<< 8) | regnum
;
246 regbase
->miimcon
= value
;
250 while ((regbase
->miimind
& MIIMIND_BUSY
) && timeout
--) ;
253 /* Reads register regnum on the device's PHY through the
254 * registers specified in priv. It lowers and raises the read
255 * command, and waits for the data to become valid (miimind
256 * notvalid bit cleared), and the bus to cease activity (miimind
257 * busy bit cleared), and then returns the value
259 uint
read_phy_reg(struct tsec_private
*priv
, uint regnum
)
262 volatile tsec_t
*regbase
= priv
->phyregs
;
263 uint phyid
= priv
->phyaddr
;
265 /* Put the address of the phy, and the register
266 * number into MIIMADD */
267 regbase
->miimadd
= (phyid
<< 8) | regnum
;
269 /* Clear the command register, and wait */
270 regbase
->miimcom
= 0;
273 /* Initiate a read command, and wait */
274 regbase
->miimcom
= MIIM_READ_COMMAND
;
277 /* Wait for the the indication that the read is done */
278 while ((regbase
->miimind
& (MIIMIND_NOTVALID
| MIIMIND_BUSY
))) ;
280 /* Grab the value read from the PHY */
281 value
= regbase
->miimstat
;
286 /* Discover which PHY is attached to the device, and configure it
287 * properly. If the PHY is not recognized, then return 0
288 * (failure). Otherwise, return 1
290 static int init_phy(struct eth_device
*dev
)
292 struct tsec_private
*priv
= (struct tsec_private
*)dev
->priv
;
293 struct phy_info
*curphy
;
294 volatile tsec_t
*regs
= (volatile tsec_t
*)(TSEC_BASE_ADDR
);
296 /* Assign a Physical address to the TBI */
297 regs
->tbipa
= TBIPA_VALUE
;
298 regs
= (volatile tsec_t
*)(TSEC_BASE_ADDR
+ TSEC_SIZE
);
299 regs
->tbipa
= TBIPA_VALUE
;
302 /* Reset MII (due to new addresses) */
303 priv
->phyregs
->miimcfg
= MIIMCFG_RESET
;
305 priv
->phyregs
->miimcfg
= MIIMCFG_INIT_VALUE
;
307 while (priv
->phyregs
->miimind
& MIIMIND_BUSY
) ;
312 /* Get the cmd structure corresponding to the attached
314 curphy
= get_phy_info(dev
);
316 if (curphy
== NULL
) {
317 priv
->phyinfo
= NULL
;
318 printf("%s: No PHY found\n", dev
->name
);
323 priv
->phyinfo
= curphy
;
325 phy_run_commands(priv
, priv
->phyinfo
->config
);
331 * Returns which value to write to the control register.
332 * For 10/100, the value is slightly different
334 uint
mii_cr_init(uint mii_reg
, struct tsec_private
* priv
)
336 if (priv
->flags
& TSEC_GIGABIT
)
337 return MIIM_CONTROL_INIT
;
342 /* Parse the status register for link, and then do
345 uint
mii_parse_sr(uint mii_reg
, struct tsec_private
* priv
)
348 * Wait if PHY is capable of autonegotiation and autonegotiation
351 mii_reg
= read_phy_reg(priv
, MIIM_STATUS
);
352 if ((mii_reg
& PHY_BMSR_AUTN_ABLE
)
353 && !(mii_reg
& PHY_BMSR_AUTN_COMP
)) {
356 puts("Waiting for PHY auto negotiation to complete");
357 while (!((mii_reg
& PHY_BMSR_AUTN_COMP
)
358 && (mii_reg
& MIIM_STATUS_LINK
))) {
362 if (i
> PHY_AUTONEGOTIATE_TIMEOUT
) {
363 puts(" TIMEOUT !\n");
368 if ((i
++ % 1000) == 0) {
371 udelay(1000); /* 1 ms */
372 mii_reg
= read_phy_reg(priv
, MIIM_STATUS
);
376 udelay(500000); /* another 500 ms (results in faster booting) */
384 /* Parse the 88E1011's status register for speed and duplex
387 uint
mii_parse_88E1011_psr(uint mii_reg
, struct tsec_private
* priv
)
391 mii_reg
= read_phy_reg(priv
, MIIM_88E1011_PHY_STATUS
);
393 if (!((mii_reg
& MIIM_88E1011_PHYSTAT_SPDDONE
) &&
394 (mii_reg
& MIIM_88E1011_PHYSTAT_LINK
))) {
397 puts("Waiting for PHY realtime link");
398 while (!((mii_reg
& MIIM_88E1011_PHYSTAT_SPDDONE
) &&
399 (mii_reg
& MIIM_88E1011_PHYSTAT_LINK
))) {
403 if (i
> PHY_AUTONEGOTIATE_TIMEOUT
) {
404 puts(" TIMEOUT !\n");
409 if ((i
++ % 1000) == 0) {
412 udelay(1000); /* 1 ms */
413 mii_reg
= read_phy_reg(priv
, MIIM_88E1011_PHY_STATUS
);
416 udelay(500000); /* another 500 ms (results in faster booting) */
419 if (mii_reg
& MIIM_88E1011_PHYSTAT_DUPLEX
)
424 speed
= (mii_reg
& MIIM_88E1011_PHYSTAT_SPEED
);
427 case MIIM_88E1011_PHYSTAT_GBIT
:
430 case MIIM_88E1011_PHYSTAT_100
:
440 /* Parse the cis8201's status register for speed and duplex
443 uint
mii_parse_cis8201(uint mii_reg
, struct tsec_private
* priv
)
447 if (mii_reg
& MIIM_CIS8201_AUXCONSTAT_DUPLEX
)
452 speed
= mii_reg
& MIIM_CIS8201_AUXCONSTAT_SPEED
;
454 case MIIM_CIS8201_AUXCONSTAT_GBIT
:
457 case MIIM_CIS8201_AUXCONSTAT_100
:
468 /* Parse the vsc8244's status register for speed and duplex
471 uint
mii_parse_vsc8244(uint mii_reg
, struct tsec_private
* priv
)
475 if (mii_reg
& MIIM_VSC8244_AUXCONSTAT_DUPLEX
)
480 speed
= mii_reg
& MIIM_VSC8244_AUXCONSTAT_SPEED
;
482 case MIIM_VSC8244_AUXCONSTAT_GBIT
:
485 case MIIM_VSC8244_AUXCONSTAT_100
:
496 /* Parse the DM9161's status register for speed and duplex
499 uint
mii_parse_dm9161_scsr(uint mii_reg
, struct tsec_private
* priv
)
501 if (mii_reg
& (MIIM_DM9161_SCSR_100F
| MIIM_DM9161_SCSR_100H
))
506 if (mii_reg
& (MIIM_DM9161_SCSR_100F
| MIIM_DM9161_SCSR_10F
))
515 * Hack to write all 4 PHYs with the LED values
517 uint
mii_cis8204_fixled(uint mii_reg
, struct tsec_private
* priv
)
520 volatile tsec_t
*regbase
= priv
->phyregs
;
521 int timeout
= 1000000;
523 for (phyid
= 0; phyid
< 4; phyid
++) {
524 regbase
->miimadd
= (phyid
<< 8) | mii_reg
;
525 regbase
->miimcon
= MIIM_CIS8204_SLEDCON_INIT
;
529 while ((regbase
->miimind
& MIIMIND_BUSY
) && timeout
--) ;
532 return MIIM_CIS8204_SLEDCON_INIT
;
535 uint
mii_cis8204_setmode(uint mii_reg
, struct tsec_private
* priv
)
537 if (priv
->flags
& TSEC_REDUCED
)
538 return MIIM_CIS8204_EPHYCON_INIT
| MIIM_CIS8204_EPHYCON_RGMII
;
540 return MIIM_CIS8204_EPHYCON_INIT
;
543 /* Initialized required registers to appropriate values, zeroing
544 * those we don't care about (unless zero is bad, in which case,
545 * choose a more appropriate value)
547 static void init_registers(volatile tsec_t
* regs
)
550 regs
->ievent
= IEVENT_INIT_CLEAR
;
552 regs
->imask
= IMASK_INIT_CLEAR
;
554 regs
->hash
.iaddr0
= 0;
555 regs
->hash
.iaddr1
= 0;
556 regs
->hash
.iaddr2
= 0;
557 regs
->hash
.iaddr3
= 0;
558 regs
->hash
.iaddr4
= 0;
559 regs
->hash
.iaddr5
= 0;
560 regs
->hash
.iaddr6
= 0;
561 regs
->hash
.iaddr7
= 0;
563 regs
->hash
.gaddr0
= 0;
564 regs
->hash
.gaddr1
= 0;
565 regs
->hash
.gaddr2
= 0;
566 regs
->hash
.gaddr3
= 0;
567 regs
->hash
.gaddr4
= 0;
568 regs
->hash
.gaddr5
= 0;
569 regs
->hash
.gaddr6
= 0;
570 regs
->hash
.gaddr7
= 0;
572 regs
->rctrl
= 0x00000000;
574 /* Init RMON mib registers */
575 memset((void *)&(regs
->rmon
), 0, sizeof(rmon_mib_t
));
577 regs
->rmon
.cam1
= 0xffffffff;
578 regs
->rmon
.cam2
= 0xffffffff;
580 regs
->mrblr
= MRBLR_INIT_SETTINGS
;
582 regs
->minflr
= MINFLR_INIT_SETTINGS
;
584 regs
->attr
= ATTR_INIT_SETTINGS
;
585 regs
->attreli
= ATTRELI_INIT_SETTINGS
;
589 /* Configure maccfg2 based on negotiated speed and duplex
590 * reported by PHY handling code
592 static void adjust_link(struct eth_device
*dev
)
594 struct tsec_private
*priv
= (struct tsec_private
*)dev
->priv
;
595 volatile tsec_t
*regs
= priv
->regs
;
598 if (priv
->duplexity
!= 0)
599 regs
->maccfg2
|= MACCFG2_FULL_DUPLEX
;
601 regs
->maccfg2
&= ~(MACCFG2_FULL_DUPLEX
);
603 switch (priv
->speed
) {
605 regs
->maccfg2
= ((regs
->maccfg2
& ~(MACCFG2_IF
))
610 regs
->maccfg2
= ((regs
->maccfg2
& ~(MACCFG2_IF
))
613 /* If We're in reduced mode, we need
614 * to say whether we're 10 or 100 MB.
616 if ((priv
->speed
== 100)
617 && (priv
->flags
& TSEC_REDUCED
))
618 regs
->ecntrl
|= ECNTRL_R100
;
620 regs
->ecntrl
&= ~(ECNTRL_R100
);
623 printf("%s: Speed was bad\n", dev
->name
);
627 printf("Speed: %d, %s duplex\n", priv
->speed
,
628 (priv
->duplexity
) ? "full" : "half");
631 printf("%s: No link.\n", dev
->name
);
635 /* Set up the buffers and their descriptors, and bring up the
638 static void startup_tsec(struct eth_device
*dev
)
641 struct tsec_private
*priv
= (struct tsec_private
*)dev
->priv
;
642 volatile tsec_t
*regs
= priv
->regs
;
644 /* Point to the buffer descriptors */
645 regs
->tbase
= (unsigned int)(&rtx
.txbd
[txIdx
]);
646 regs
->rbase
= (unsigned int)(&rtx
.rxbd
[rxIdx
]);
648 /* Initialize the Rx Buffer descriptors */
649 for (i
= 0; i
< PKTBUFSRX
; i
++) {
650 rtx
.rxbd
[i
].status
= RXBD_EMPTY
;
651 rtx
.rxbd
[i
].length
= 0;
652 rtx
.rxbd
[i
].bufPtr
= (uint
) NetRxPackets
[i
];
654 rtx
.rxbd
[PKTBUFSRX
- 1].status
|= RXBD_WRAP
;
656 /* Initialize the TX Buffer Descriptors */
657 for (i
= 0; i
< TX_BUF_CNT
; i
++) {
658 rtx
.txbd
[i
].status
= 0;
659 rtx
.txbd
[i
].length
= 0;
660 rtx
.txbd
[i
].bufPtr
= 0;
662 rtx
.txbd
[TX_BUF_CNT
- 1].status
|= TXBD_WRAP
;
664 /* Start up the PHY */
666 phy_run_commands(priv
, priv
->phyinfo
->startup
);
669 /* Enable Transmit and Receive */
670 regs
->maccfg1
|= (MACCFG1_RX_EN
| MACCFG1_TX_EN
);
672 /* Tell the DMA it is clear to go */
673 regs
->dmactrl
|= DMACTRL_INIT_SETTINGS
;
674 regs
->tstat
= TSTAT_CLEAR_THALT
;
675 regs
->dmactrl
&= ~(DMACTRL_GRS
| DMACTRL_GTS
);
678 /* This returns the status bits of the device. The return value
679 * is never checked, and this is what the 8260 driver did, so we
680 * do the same. Presumably, this would be zero if there were no
683 static int tsec_send(struct eth_device
*dev
, volatile void *packet
, int length
)
687 struct tsec_private
*priv
= (struct tsec_private
*)dev
->priv
;
688 volatile tsec_t
*regs
= priv
->regs
;
690 /* Find an empty buffer descriptor */
691 for (i
= 0; rtx
.txbd
[txIdx
].status
& TXBD_READY
; i
++) {
692 if (i
>= TOUT_LOOP
) {
693 debug("%s: tsec: tx buffers full\n", dev
->name
);
698 rtx
.txbd
[txIdx
].bufPtr
= (uint
) packet
;
699 rtx
.txbd
[txIdx
].length
= length
;
700 rtx
.txbd
[txIdx
].status
|=
701 (TXBD_READY
| TXBD_LAST
| TXBD_CRC
| TXBD_INTERRUPT
);
703 /* Tell the DMA to go */
704 regs
->tstat
= TSTAT_CLEAR_THALT
;
706 /* Wait for buffer to be transmitted */
707 for (i
= 0; rtx
.txbd
[txIdx
].status
& TXBD_READY
; i
++) {
708 if (i
>= TOUT_LOOP
) {
709 debug("%s: tsec: tx error\n", dev
->name
);
714 txIdx
= (txIdx
+ 1) % TX_BUF_CNT
;
715 result
= rtx
.txbd
[txIdx
].status
& TXBD_STATS
;
720 static int tsec_recv(struct eth_device
*dev
)
723 struct tsec_private
*priv
= (struct tsec_private
*)dev
->priv
;
724 volatile tsec_t
*regs
= priv
->regs
;
726 while (!(rtx
.rxbd
[rxIdx
].status
& RXBD_EMPTY
)) {
728 length
= rtx
.rxbd
[rxIdx
].length
;
730 /* Send the packet up if there were no errors */
731 if (!(rtx
.rxbd
[rxIdx
].status
& RXBD_STATS
)) {
732 NetReceive(NetRxPackets
[rxIdx
], length
- 4);
734 printf("Got error %x\n",
735 (rtx
.rxbd
[rxIdx
].status
& RXBD_STATS
));
738 rtx
.rxbd
[rxIdx
].length
= 0;
740 /* Set the wrap bit if this is the last element in the list */
741 rtx
.rxbd
[rxIdx
].status
=
742 RXBD_EMPTY
| (((rxIdx
+ 1) == PKTBUFSRX
) ? RXBD_WRAP
: 0);
744 rxIdx
= (rxIdx
+ 1) % PKTBUFSRX
;
747 if (regs
->ievent
& IEVENT_BSY
) {
748 regs
->ievent
= IEVENT_BSY
;
749 regs
->rstat
= RSTAT_CLEAR_RHALT
;
756 /* Stop the interface */
757 static void tsec_halt(struct eth_device
*dev
)
759 struct tsec_private
*priv
= (struct tsec_private
*)dev
->priv
;
760 volatile tsec_t
*regs
= priv
->regs
;
762 regs
->dmactrl
&= ~(DMACTRL_GRS
| DMACTRL_GTS
);
763 regs
->dmactrl
|= (DMACTRL_GRS
| DMACTRL_GTS
);
765 while (!(regs
->ievent
& (IEVENT_GRSC
| IEVENT_GTSC
))) ;
767 regs
->maccfg1
&= ~(MACCFG1_TX_EN
| MACCFG1_RX_EN
);
769 /* Shut down the PHY, as needed */
771 phy_run_commands(priv
, priv
->phyinfo
->shutdown
);
774 struct phy_info phy_info_M88E1011S
= {
778 (struct phy_cmd
[]){ /* config */
779 /* Reset and configure the PHY */
780 {MIIM_CONTROL
, MIIM_CONTROL_RESET
, NULL
},
782 {0x1e, 0x200c, NULL
},
786 {MIIM_GBIT_CONTROL
, MIIM_GBIT_CONTROL_INIT
, NULL
},
787 {MIIM_ANAR
, MIIM_ANAR_INIT
, NULL
},
788 {MIIM_CONTROL
, MIIM_CONTROL_RESET
, NULL
},
789 {MIIM_CONTROL
, MIIM_CONTROL_INIT
, &mii_cr_init
},
792 (struct phy_cmd
[]){ /* startup */
793 /* Status is read once to clear old link state */
794 {MIIM_STATUS
, miim_read
, NULL
},
796 {MIIM_STATUS
, miim_read
, &mii_parse_sr
},
797 /* Read the status */
798 {MIIM_88E1011_PHY_STATUS
, miim_read
,
799 &mii_parse_88E1011_psr
},
802 (struct phy_cmd
[]){ /* shutdown */
807 struct phy_info phy_info_M88E1111S
= {
811 (struct phy_cmd
[]){ /* config */
812 /* Reset and configure the PHY */
813 {MIIM_CONTROL
, MIIM_CONTROL_RESET
, NULL
},
815 {0x1e, 0x200c, NULL
},
819 {MIIM_GBIT_CONTROL
, MIIM_GBIT_CONTROL_INIT
, NULL
},
820 {MIIM_ANAR
, MIIM_ANAR_INIT
, NULL
},
821 {MIIM_CONTROL
, MIIM_CONTROL_RESET
, NULL
},
822 {MIIM_CONTROL
, MIIM_CONTROL_INIT
, &mii_cr_init
},
825 (struct phy_cmd
[]){ /* startup */
826 /* Status is read once to clear old link state */
827 {MIIM_STATUS
, miim_read
, NULL
},
829 {MIIM_STATUS
, miim_read
, &mii_parse_sr
},
830 /* Read the status */
831 {MIIM_88E1011_PHY_STATUS
, miim_read
,
832 &mii_parse_88E1011_psr
},
835 (struct phy_cmd
[]){ /* shutdown */
840 static unsigned int m88e1145_setmode(uint mii_reg
, struct tsec_private
*priv
)
842 uint mii_data
= read_phy_reg(priv
, mii_reg
);
844 /* Setting MIIM_88E1145_PHY_EXT_CR */
845 if (priv
->flags
& TSEC_REDUCED
)
847 MIIM_M88E1145_RGMII_RX_DELAY
| MIIM_M88E1145_RGMII_TX_DELAY
;
852 static struct phy_info phy_info_M88E1145
= {
856 (struct phy_cmd
[]){ /* config */
863 /* Reset and configure the PHY */
864 {MIIM_CONTROL
, MIIM_CONTROL_RESET
, NULL
},
865 {MIIM_GBIT_CONTROL
, MIIM_GBIT_CONTROL_INIT
, NULL
},
866 {MIIM_ANAR
, MIIM_ANAR_INIT
, NULL
},
867 {MIIM_88E1011_PHY_SCR
, MIIM_88E1011_PHY_MDI_X_AUTO
,
869 {MIIM_88E1145_PHY_EXT_CR
, 0, &m88e1145_setmode
},
870 {MIIM_CONTROL
, MIIM_CONTROL_RESET
, NULL
},
871 {MIIM_CONTROL
, MIIM_CONTROL_INIT
, NULL
},
874 (struct phy_cmd
[]){ /* startup */
875 /* Status is read once to clear old link state */
876 {MIIM_STATUS
, miim_read
, NULL
},
878 {MIIM_STATUS
, miim_read
, &mii_parse_sr
},
879 {MIIM_88E1111_PHY_LED_CONTROL
,
880 MIIM_88E1111_PHY_LED_DIRECT
, NULL
},
881 /* Read the Status */
882 {MIIM_88E1011_PHY_STATUS
, miim_read
,
883 &mii_parse_88E1011_psr
},
886 (struct phy_cmd
[]){ /* shutdown */
891 struct phy_info phy_info_cis8204
= {
895 (struct phy_cmd
[]){ /* config */
896 /* Override PHY config settings */
897 {MIIM_CIS8201_AUX_CONSTAT
,
898 MIIM_CIS8201_AUXCONSTAT_INIT
, NULL
},
899 /* Configure some basic stuff */
900 {MIIM_CONTROL
, MIIM_CONTROL_INIT
, &mii_cr_init
},
901 {MIIM_CIS8204_SLED_CON
, MIIM_CIS8204_SLEDCON_INIT
,
902 &mii_cis8204_fixled
},
903 {MIIM_CIS8204_EPHY_CON
, MIIM_CIS8204_EPHYCON_INIT
,
904 &mii_cis8204_setmode
},
907 (struct phy_cmd
[]){ /* startup */
908 /* Read the Status (2x to make sure link is right) */
909 {MIIM_STATUS
, miim_read
, NULL
},
911 {MIIM_STATUS
, miim_read
, &mii_parse_sr
},
912 /* Read the status */
913 {MIIM_CIS8201_AUX_CONSTAT
, miim_read
,
917 (struct phy_cmd
[]){ /* shutdown */
923 struct phy_info phy_info_cis8201
= {
927 (struct phy_cmd
[]){ /* config */
928 /* Override PHY config settings */
929 {MIIM_CIS8201_AUX_CONSTAT
,
930 MIIM_CIS8201_AUXCONSTAT_INIT
, NULL
},
931 /* Set up the interface mode */
932 {MIIM_CIS8201_EXT_CON1
, MIIM_CIS8201_EXTCON1_INIT
,
934 /* Configure some basic stuff */
935 {MIIM_CONTROL
, MIIM_CONTROL_INIT
, &mii_cr_init
},
938 (struct phy_cmd
[]){ /* startup */
939 /* Read the Status (2x to make sure link is right) */
940 {MIIM_STATUS
, miim_read
, NULL
},
942 {MIIM_STATUS
, miim_read
, &mii_parse_sr
},
943 /* Read the status */
944 {MIIM_CIS8201_AUX_CONSTAT
, miim_read
,
948 (struct phy_cmd
[]){ /* shutdown */
952 struct phy_info phy_info_VSC8244
= {
956 (struct phy_cmd
[]){ /* config */
957 /* Override PHY config settings */
958 /* Configure some basic stuff */
959 {MIIM_CONTROL
, MIIM_CONTROL_INIT
, &mii_cr_init
},
962 (struct phy_cmd
[]){ /* startup */
963 /* Read the Status (2x to make sure link is right) */
964 {MIIM_STATUS
, miim_read
, NULL
},
966 {MIIM_STATUS
, miim_read
, &mii_parse_sr
},
967 /* Read the status */
968 {MIIM_VSC8244_AUX_CONSTAT
, miim_read
,
972 (struct phy_cmd
[]){ /* shutdown */
977 struct phy_info phy_info_dm9161
= {
981 (struct phy_cmd
[]){ /* config */
982 {MIIM_CONTROL
, MIIM_DM9161_CR_STOP
, NULL
},
983 /* Do not bypass the scrambler/descrambler */
984 {MIIM_DM9161_SCR
, MIIM_DM9161_SCR_INIT
, NULL
},
985 /* Clear 10BTCSR to default */
986 {MIIM_DM9161_10BTCSR
, MIIM_DM9161_10BTCSR_INIT
,
988 /* Configure some basic stuff */
989 {MIIM_CONTROL
, MIIM_CR_INIT
, NULL
},
990 /* Restart Auto Negotiation */
991 {MIIM_CONTROL
, MIIM_DM9161_CR_RSTAN
, NULL
},
994 (struct phy_cmd
[]){ /* startup */
995 /* Status is read once to clear old link state */
996 {MIIM_STATUS
, miim_read
, NULL
},
998 {MIIM_STATUS
, miim_read
, &mii_parse_sr
},
999 /* Read the status */
1000 {MIIM_DM9161_SCSR
, miim_read
,
1001 &mii_parse_dm9161_scsr
},
1004 (struct phy_cmd
[]){ /* shutdown */
1009 uint
mii_parse_lxt971_sr2(uint mii_reg
, struct tsec_private
*priv
)
1013 speed
= mii_reg
& MIIM_LXT971_SR2_SPEED_MASK
;
1016 case MIIM_LXT971_SR2_10HDX
:
1018 priv
->duplexity
= 0;
1020 case MIIM_LXT971_SR2_10FDX
:
1022 priv
->duplexity
= 1;
1024 case MIIM_LXT971_SR2_100HDX
:
1026 priv
->duplexity
= 0;
1029 priv
->duplexity
= 1;
1034 priv
->duplexity
= 0;
1040 static struct phy_info phy_info_lxt971
= {
1044 (struct phy_cmd
[]){ /* config */
1045 {MIIM_CR
, MIIM_CR_INIT
, mii_cr_init
}, /* autonegotiate */
1048 (struct phy_cmd
[]){ /* startup - enable interrupts */
1049 /* { 0x12, 0x00f2, NULL }, */
1050 {MIIM_STATUS
, miim_read
, NULL
},
1051 {MIIM_STATUS
, miim_read
, &mii_parse_sr
},
1052 {MIIM_LXT971_SR2
, miim_read
, &mii_parse_lxt971_sr2
},
1055 (struct phy_cmd
[]){ /* shutdown - disable interrupts */
1060 /* Parse the DP83865's link and auto-neg status register for speed and duplex
1063 uint
mii_parse_dp83865_lanr(uint mii_reg
, struct tsec_private
*priv
)
1065 switch (mii_reg
& MIIM_DP83865_SPD_MASK
) {
1067 case MIIM_DP83865_SPD_1000
:
1071 case MIIM_DP83865_SPD_100
:
1081 if (mii_reg
& MIIM_DP83865_DPX_FULL
)
1082 priv
->duplexity
= 1;
1084 priv
->duplexity
= 0;
1089 struct phy_info phy_info_dp83865
= {
1093 (struct phy_cmd
[]){ /* config */
1094 {MIIM_CONTROL
, MIIM_DP83865_CR_INIT
, NULL
},
1097 (struct phy_cmd
[]){ /* startup */
1098 /* Status is read once to clear old link state */
1099 {MIIM_STATUS
, miim_read
, NULL
},
1100 /* Auto-negotiate */
1101 {MIIM_STATUS
, miim_read
, &mii_parse_sr
},
1102 /* Read the link and auto-neg status */
1103 {MIIM_DP83865_LANR
, miim_read
,
1104 &mii_parse_dp83865_lanr
},
1107 (struct phy_cmd
[]){ /* shutdown */
1112 struct phy_info
*phy_info
[] = {
1117 &phy_info_M88E1011S
,
1118 &phy_info_M88E1111S
,
1127 /* Grab the identifier of the device's PHY, and search through
1128 * all of the known PHYs to see if one matches. If so, return
1129 * it, if not, return NULL
1131 struct phy_info
*get_phy_info(struct eth_device
*dev
)
1133 struct tsec_private
*priv
= (struct tsec_private
*)dev
->priv
;
1134 uint phy_reg
, phy_ID
;
1136 struct phy_info
*theInfo
= NULL
;
1138 /* Grab the bits from PHYIR1, and put them in the upper half */
1139 phy_reg
= read_phy_reg(priv
, MIIM_PHYIR1
);
1140 phy_ID
= (phy_reg
& 0xffff) << 16;
1142 /* Grab the bits from PHYIR2, and put them in the lower half */
1143 phy_reg
= read_phy_reg(priv
, MIIM_PHYIR2
);
1144 phy_ID
|= (phy_reg
& 0xffff);
1146 /* loop through all the known PHY types, and find one that */
1147 /* matches the ID we read from the PHY. */
1148 for (i
= 0; phy_info
[i
]; i
++) {
1149 if (phy_info
[i
]->id
== (phy_ID
>> phy_info
[i
]->shift
))
1150 theInfo
= phy_info
[i
];
1153 if (theInfo
== NULL
) {
1154 printf("%s: PHY id %x is not supported!\n", dev
->name
, phy_ID
);
1157 debug("%s: PHY is %s (%x)\n", dev
->name
, theInfo
->name
, phy_ID
);
1163 /* Execute the given series of commands on the given device's
1164 * PHY, running functions as necessary
1166 void phy_run_commands(struct tsec_private
*priv
, struct phy_cmd
*cmd
)
1170 volatile tsec_t
*phyregs
= priv
->phyregs
;
1172 phyregs
->miimcfg
= MIIMCFG_RESET
;
1174 phyregs
->miimcfg
= MIIMCFG_INIT_VALUE
;
1176 while (phyregs
->miimind
& MIIMIND_BUSY
) ;
1178 for (i
= 0; cmd
->mii_reg
!= miim_end
; i
++) {
1179 if (cmd
->mii_data
== miim_read
) {
1180 result
= read_phy_reg(priv
, cmd
->mii_reg
);
1182 if (cmd
->funct
!= NULL
)
1183 (*(cmd
->funct
)) (result
, priv
);
1186 if (cmd
->funct
!= NULL
)
1187 result
= (*(cmd
->funct
)) (cmd
->mii_reg
, priv
);
1189 result
= cmd
->mii_data
;
1191 write_phy_reg(priv
, cmd
->mii_reg
, result
);
1198 /* Relocate the function pointers in the phy cmd lists */
1199 static void relocate_cmds(void)
1201 struct phy_cmd
**cmdlistptr
;
1202 struct phy_cmd
*cmd
;
1205 for (i
= 0; phy_info
[i
]; i
++) {
1206 /* First thing's first: relocate the pointers to the
1207 * PHY command structures (the structs were done) */
1208 phy_info
[i
] = (struct phy_info
*)((uint
) phy_info
[i
]
1210 phy_info
[i
]->name
+= gd
->reloc_off
;
1211 phy_info
[i
]->config
=
1212 (struct phy_cmd
*)((uint
) phy_info
[i
]->config
1214 phy_info
[i
]->startup
=
1215 (struct phy_cmd
*)((uint
) phy_info
[i
]->startup
1217 phy_info
[i
]->shutdown
=
1218 (struct phy_cmd
*)((uint
) phy_info
[i
]->shutdown
1221 cmdlistptr
= &phy_info
[i
]->config
;
1223 for (; cmdlistptr
<= &phy_info
[i
]->shutdown
; cmdlistptr
++) {
1225 for (cmd
= *cmdlistptr
;
1226 cmd
->mii_reg
!= miim_end
;
1228 /* Only relocate non-NULL pointers */
1230 cmd
->funct
+= gd
->reloc_off
;
1241 #if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII) \
1242 && !defined(BITBANGMII)
1244 struct tsec_private
*get_priv_for_phy(unsigned char phyaddr
)
1248 for (i
= 0; i
< MAXCONTROLLERS
; i
++) {
1249 if (privlist
[i
]->phyaddr
== phyaddr
)
1257 * Read a MII PHY register.
1262 static int tsec_miiphy_read(char *devname
, unsigned char addr
,
1263 unsigned char reg
, unsigned short *value
)
1266 struct tsec_private
*priv
= get_priv_for_phy(addr
);
1269 printf("Can't read PHY at address %d\n", addr
);
1273 ret
= (unsigned short)read_phy_reg(priv
, reg
);
1280 * Write a MII PHY register.
1285 static int tsec_miiphy_write(char *devname
, unsigned char addr
,
1286 unsigned char reg
, unsigned short value
)
1288 struct tsec_private
*priv
= get_priv_for_phy(addr
);
1291 printf("Can't write PHY at address %d\n", addr
);
1295 write_phy_reg(priv
, reg
, value
);
1300 #endif /* defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)
1301 && !defined(BITBANGMII) */
1303 #endif /* CONFIG_TSEC_ENET */