* [U-Boot-Users] [PATCH] Adds Marvel 8 phy part M88E1149S to drivers/tsec.c
@ 2007-07-04 23:45 eran.liberty at gmail.com
0 siblings, 0 replies; only message in thread
From: eran.liberty at gmail.com @ 2007-07-04 23:45 UTC (permalink / raw)
To: u-boot
Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
Index: drivers/tsec.c
===================================================================
--- drivers/tsec.c (u-boot.git-98c440bee623ecdd5322852732b883e696fb2140)
+++ drivers/tsec.c (exsw6000)
@@ -898,6 +900,34 @@
phy_run_commands(priv, priv->phyinfo->shutdown);
}
+struct phy_info phy_info_M88E1149S = {
+ 0x1410ca,
+ "Marvell 88E1149S",
+ 4,
+ (struct phy_cmd[]){ /* config */
+ /* Reset and configure the PHY */
+ {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
+ {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
+ {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
+ {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
+ {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
+ {miim_end,}
+ },
+ (struct phy_cmd[]){ /* startup */
+ /* Status is read once to clear old link state */
+ {MIIM_STATUS, miim_read, NULL},
+ /* Auto-negotiate */
+ {MIIM_STATUS, miim_read, &mii_parse_sr},
+ /* Read the status */
+ {MIIM_88E1011_PHY_STATUS, miim_read,
+ &mii_parse_88E1011_psr},
+ {miim_end,}
+ },
+ (struct phy_cmd[]){ /* shutdown */
+ {miim_end,}
+ },
+};
+
/* The 5411 id is 0x206070, the 5421 is 0x2060e0 */
struct phy_info phy_info_BCM5461S = {
0x02060c1, /* 5461 ID */
@@ -1319,6 +1349,7 @@
&phy_info_BCM5461S,
&phy_info_BCM5464S,
&phy_info_M88E1011S,
+ &phy_info_M88E1149S,
&phy_info_M88E1111S,
&phy_info_M88E1145,
&phy_info_dm9161,
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-07-04 23:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-04 23:45 [U-Boot-Users] [PATCH] Adds Marvel 8 phy part M88E1149S to drivers/tsec.c eran.liberty at gmail.com
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox