[U-Boot-Users] [PATCH] Adds Marvell 88E1149S phy to tsec.c

eran liberty eran.liberty at gmail.com
Thu Jun 21 08:29:41 CEST 2007


Signed-off-by: Eran Liberty

diff -x .svn -Nuar
u-boot.git-5ffa76a032279bc6d3230b703eda32d13305ba13/drivers/tsec.c
u-boot.exsw6000/drivers/tsec.c
--- u-boot.git-5ffa76a032279bc6d3230b703eda32d13305ba13/drivers/tsec.c	2007-06-18
22:38:46.000000000 +0300
+++ u-boot.exsw6000/drivers/tsec.c	2007-06-20 19:28:49.000000000 +0300
@@ -900,6 +900,39 @@
 		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},
+		{0x1d, 0x1f, NULL},
+		{0x1e, 0x200c, NULL},
+		{0x1d, 0x5, NULL},
+		{0x1e, 0x0, NULL},
+		{0x1e, 0x100, 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 */
@@ -1293,6 +1326,7 @@
 	&phy_info_cis8201,
 	&phy_info_BCM5461S,
 	&phy_info_M88E1011S,
+	&phy_info_M88E1149S,
 	&phy_info_M88E1111S,
 	&phy_info_M88E1145,
 	&phy_info_dm9161,




More information about the U-Boot mailing list