]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Marvell 88E1118 interrupt fix
authorRon Madrid <ron_madrid@sbcglobal.net>
Thu, 29 Jan 2009 00:17:21 +0000 (16:17 -0800)
committerBen Warren <biggerbadderben@gmail.com>
Thu, 29 Jan 2009 07:59:28 +0000 (23:59 -0800)
This patch adjusts the LED control so that interrupt lines are not reading LEDs
and effectively causing indefinite interrupts to the controller.

Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
drivers/net/tsec.c

index fbc9a6dd05b4a3178b80168cf316c173f866ee85..dc90f23859fe6518d272c2453cf7b6ddb11704fe 100644 (file)
@@ -1141,6 +1141,9 @@ struct phy_info phy_info_M88E1118 = {
                {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
                {0x16, 0x0002, NULL}, /* Change Page Number */
                {0x15, 0x1070, NULL}, /* Delay RGMII TX and RX */
+               {0x16, 0x0003, NULL}, /* Change Page Number */
+               {0x10, 0x021e, NULL}, /* Adjust LED control */
+               {0x16, 0x0000, NULL}, /* Change Page Number */
                {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
                {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
                {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
@@ -1152,6 +1155,7 @@ struct phy_info phy_info_M88E1118 = {
                /* 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},