* [U-Boot-Users] [PATCH] mpc83xx: UEC: add support for Broadcom BCM5481 Gigabit PHY @ 2007-12-25 17:01 Anton Vorontsov 2008-01-08 16:50 ` Kim Phillips 0 siblings, 1 reply; 7+ messages in thread From: Anton Vorontsov @ 2007-12-25 17:01 UTC (permalink / raw) To: u-boot This patch adds basic support for Broadcom BCM5481 PHY, with the quirk needed for at least MPC8360E-RDK. Quirk comes from MPC8360E-RDK BSP source, I think author is Peter Barada <peterb@logicpd.com>, but I'm not sure. There are no openly available specifications for that PHY. Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> --- drivers/qe/uec_phy.c | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++ drivers/qe/uec_phy.h | 5 +++ 2 files changed, 82 insertions(+), 0 deletions(-) diff --git a/drivers/qe/uec_phy.c b/drivers/qe/uec_phy.c index ca6faa6..6882d03 100644 --- a/drivers/qe/uec_phy.c +++ b/drivers/qe/uec_phy.c @@ -237,6 +237,44 @@ static int gbit_config_aneg (struct uec_mii_info *mii_info) return 0; } +static int gbit_read_status(struct uec_mii_info *mii_info) +{ + u16 status; + int err; + + err = genmii_update_link(mii_info); + if (err) + return err; + + if (mii_info->autoneg) { + mii_info->pause = 0; + status = phy_read(mii_info, MII_1000BASETSTATUS); + if (status & (LPA_1000FULL | LPA_1000HALF)) { + mii_info->speed = SPEED_1000; + if (status & LPA_1000FULL) + mii_info->duplex = DUPLEX_FULL; + else + mii_info->duplex = DUPLEX_HALF; + } else { + status = phy_read(mii_info, PHY_ANLPAR); + + if (status & (PHY_ANLPAR_10FD | PHY_ANLPAR_TXFD)) + mii_info->duplex = DUPLEX_FULL; + else + mii_info->duplex = DUPLEX_HALF; + if (status & (PHY_ANLPAR_TXFD | PHY_ANLPAR_TX)) + mii_info->speed = SPEED_100; + else + mii_info->speed = SPEED_10; + } + } + /* + * On non-aneg, we assume what we put in BMCR is the speed, + * though magic-aneg shouldn't prevent this case from occurring. + */ + return 0; +} + static int marvell_config_aneg (struct uec_mii_info *mii_info) { /* The Marvell PHY has an errata which requires @@ -319,6 +357,35 @@ static int genmii_read_status (struct uec_mii_info *mii_info) return 0; } +static int bcm_init(struct uec_mii_info *mii_info) +{ + gbit_config_aneg(mii_info); + +#ifdef CONFIG_MPC8360ERDK + { + u16 val; + int cnt = 50; + + /* Wait for aneg to complete. */ + do + val = phy_read(mii_info, PHY_BMSR); + while (--cnt && !(val & PHY_BMSR_AUTN_COMP)); + + /* Set RDX clk delay. */ + phy_write(mii_info, 0x18, 0x7 | (7 << 12)); + + val = phy_read(mii_info, 0x18); + /* Set RDX-RXC skew. */ + val |= (1<<8); + val |= (7 | (7 << 12)); + /* Write bits 14:0. */ + val |= (1<<15); + phy_write(mii_info, 0x18, val); + } +#endif + return 0; +} + static int marvell_read_status (struct uec_mii_info *mii_info) { u16 status; @@ -491,6 +558,15 @@ static struct phy_info phy_info_marvell = { .config_intr = &marvell_config_intr, }; +static struct phy_info phy_info_bcm5481 = { + .phy_id = 0x0143bca0, + .phy_id_mask = 0xffffff0, + .name = "Broadcom 5481", + .features = MII_GBIT_FEATURES, + .read_status = gbit_read_status, + .init = bcm_init, +}; + static struct phy_info phy_info_genmii = { .phy_id = 0x00000000, .phy_id_mask = 0x00000000, @@ -504,6 +580,7 @@ static struct phy_info *phy_info[] = { &phy_info_dm9161, &phy_info_dm9161a, &phy_info_marvell, + &phy_info_bcm5481, &phy_info_genmii, NULL }; diff --git a/drivers/qe/uec_phy.h b/drivers/qe/uec_phy.h index e59a940..6f769fb 100644 --- a/drivers/qe/uec_phy.h +++ b/drivers/qe/uec_phy.h @@ -29,6 +29,11 @@ #define MII_1000BASETCONTROL_FULLDUPLEXCAP 0x0200 #define MII_1000BASETCONTROL_HALFDUPLEXCAP 0x0100 +/* 1000BT status */ +#define MII_1000BASETSTATUS 0x0a +#define LPA_1000FULL 0x0400 +#define LPA_1000HALF 0x0200 + /* Cicada Extended Control Register 1 */ #define MII_CIS8201_EXT_CON1 0x17 #define MII_CIS8201_EXTCON1_INIT 0x0000 -- 1.5.2.2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [U-Boot-Users] [PATCH] mpc83xx: UEC: add support for Broadcom BCM5481 Gigabit PHY 2007-12-25 17:01 [U-Boot-Users] [PATCH] mpc83xx: UEC: add support for Broadcom BCM5481 Gigabit PHY Anton Vorontsov @ 2008-01-08 16:50 ` Kim Phillips 2008-01-08 18:04 ` Ben Warren 2008-01-08 18:41 ` Anton Vorontsov 0 siblings, 2 replies; 7+ messages in thread From: Kim Phillips @ 2008-01-08 16:50 UTC (permalink / raw) To: u-boot On Tue, 25 Dec 2007 20:01:26 +0300 Anton Vorontsov <avorontsov@ru.mvista.com> wrote: > This patch adds basic support for Broadcom BCM5481 PHY, > with the quirk needed for at least MPC8360E-RDK. ? the MPC8360E-RDK doesn't exist in the mainline tree. > Quirk comes from MPC8360E-RDK BSP source, I think author is > Peter Barada <peterb@logicpd.com>, but I'm not sure. solicit his signoff then? > There are no openly available specifications for that PHY. > > Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> Also, shouldn't networking patches go through Ben Warren? Kim ^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] [PATCH] mpc83xx: UEC: add support for Broadcom BCM5481 Gigabit PHY 2008-01-08 16:50 ` Kim Phillips @ 2008-01-08 18:04 ` Ben Warren 2008-01-08 23:31 ` Kim Phillips 2008-01-08 18:41 ` Anton Vorontsov 1 sibling, 1 reply; 7+ messages in thread From: Ben Warren @ 2008-01-08 18:04 UTC (permalink / raw) To: u-boot Kim Phillips wrote: > On Tue, 25 Dec 2007 20:01:26 +0300 > Anton Vorontsov <avorontsov@ru.mvista.com> wrote: > > >> This patch adds basic support for Broadcom BCM5481 PHY, >> with the quirk needed for at least MPC8360E-RDK. >> > > ? the MPC8360E-RDK doesn't exist in the mainline tree. > > >> Quirk comes from MPC8360E-RDK BSP source, I think author is >> Peter Barada <peterb@logicpd.com>, but I'm not sure. >> > > solicit his signoff then? > > >> There are no openly available specifications for that PHY. >> >> Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> >> > > Also, shouldn't networking patches go through Ben Warren? > Sorry Kim, but I didn't take it because it was in 83xx code. These multi-jurisdictional patches are pretty common, and there doesn't seem to be a well-defined way of handling them. In this case, it's pretty clearly network code, but I'd like to at least have your 'acked-by' in the paper trail. Does this sound like the right way to do it, or am I making things too bureaucratic? regards, Ben ^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] [PATCH] mpc83xx: UEC: add support for Broadcom BCM5481 Gigabit PHY 2008-01-08 18:04 ` Ben Warren @ 2008-01-08 23:31 ` Kim Phillips 0 siblings, 0 replies; 7+ messages in thread From: Kim Phillips @ 2008-01-08 23:31 UTC (permalink / raw) To: u-boot On Tue, 08 Jan 2008 13:04:50 -0500 Ben Warren <biggerbadderben@gmail.com> wrote: > Kim Phillips wrote: > > On Tue, 25 Dec 2007 20:01:26 +0300 > > Anton Vorontsov <avorontsov@ru.mvista.com> wrote: <snip> > >> There are no openly available specifications for that PHY. > >> > >> Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> > >> > > > > Also, shouldn't networking patches go through Ben Warren? > > > Sorry Kim, but I didn't take it because it was in 83xx code. These > multi-jurisdictional patches are pretty common, and there doesn't seem > to be a well-defined way of handling them. In this case, it's pretty > clearly network code, but I'd like to at least have your 'acked-by' in > the paper trail. Does this sound like the right way to do it, or am I > making things too bureaucratic? I could easily be accused of that myself ;) I could be wrong, but I thought gbit_read_status() could have been merged with genmii_read_status(), and the aneg wait code go into genmii_update_link() (J.Tjerlund and I were working on such a patch before the holidays) and the CONFIG_MPC8360ERDK ifdef be eliminated. Kim ^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] [PATCH] mpc83xx: UEC: add support for Broadcom BCM5481 Gigabit PHY 2008-01-08 16:50 ` Kim Phillips 2008-01-08 18:04 ` Ben Warren @ 2008-01-08 18:41 ` Anton Vorontsov 2008-01-08 20:29 ` Kim Phillips 1 sibling, 1 reply; 7+ messages in thread From: Anton Vorontsov @ 2008-01-08 18:41 UTC (permalink / raw) To: u-boot On Tue, Jan 08, 2008 at 10:50:18AM -0600, Kim Phillips wrote: > On Tue, 25 Dec 2007 20:01:26 +0300 > Anton Vorontsov <avorontsov@ru.mvista.com> wrote: > > > This patch adds basic support for Broadcom BCM5481 PHY, > > with the quirk needed for at least MPC8360E-RDK. > > ? the MPC8360E-RDK doesn't exist in the mainline tree. Patch for the board support was sent at the same time. Though, I'll resend it with few improvements. > > Quirk comes from MPC8360E-RDK BSP source, I think author is > > Peter Barada <peterb@logicpd.com>, but I'm not sure. > > solicit his signoff then? Not an absolute necessity. Signed-off-by means: - - - Documentation/SubmittingPatches By making a contribution to this project, I certify that: (a) The contribution was created in whole or in part by me and I have the right to submit it under the open source license indicated in the file; or (b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same open source license (unless I am permitted to submit under a different license), as indicated in the file; or (c) The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it. (d) I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license(s) involved. then you just add a line saying Signed-off-by: Random J Developer <random@developer.example.org> - - - Here is (b). To the best of my knowledge, code is covered under an appropriate open source license (that is, GPL) and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same open source license (GPL). Though, I'm adding Peter Barada <peterb@logicpd.com> to the Cc and copying the patch. Peter, could you please add your Signed-off-by line on the bcm phy quirk? - - - mpc83xx: UEC: add support for Broadcom BCM5481 Gigabit PHY This patch adds basic support for Broadcom BCM5481 PHY, with the quirk needed for at least MPC8360E-RDK. Quirk comes from MPC8360E-RDK BSP source, I think author is Peter Barada <peterb@logicpd.com>, but I'm not sure. There are no openly available specifications for that PHY. diff --git a/drivers/qe/uec_phy.c b/drivers/qe/uec_phy.c index ca6faa6..6882d03 100644 --- a/drivers/qe/uec_phy.c +++ b/drivers/qe/uec_phy.c @@ -237,6 +237,44 @@ static int gbit_config_aneg (struct uec_mii_info22 *mii_info) return 0; } +static int gbit_read_status(struct uec_mii_info *mii_info) +{ + u16 status; + int err; + + err = genmii_update_link(mii_info); + if (err) + return err; + + if (mii_info->autoneg) { + mii_info->pause = 0; + status = phy_read(mii_info, MII_1000BASETSTATUS); + if (status & (LPA_1000FULL | LPA_1000HALF)) { + mii_info->speed = SPEED_1000; + if (status & LPA_1000FULL) + mii_info->duplex = DUPLEX_FULL; + else + mii_info->duplex = DUPLEX_HALF; + } else { + status = phy_read(mii_info, PHY_ANLPAR); + + if (status & (PHY_ANLPAR_10FD | PHY_ANLPAR_TXFD)) + mii_info->duplex = DUPLEX_FULL; + else + mii_info->duplex = DUPLEX_HALF; + if (status & (PHY_ANLPAR_TXFD | PHY_ANLPAR_TX)) + mii_info->speed = SPEED_100; + else + mii_info->speed = SPEED_10; + } + } + /* + * On non-aneg, we assume what we put in BMCR is the speed, + * though magic-aneg shouldn't prevent this case from occurring. + */ + return 0; +} + static int marvell_config_aneg (struct uec_mii_info *mii_info) { /* The Marvell PHY has an errata which requires @@ -319,6 +357,35 @@ static int genmii_read_status (struct uec_mii_info *mii_info) return 0; } +static int bcm_init(struct uec_mii_info *mii_info) +{ + gbit_config_aneg(mii_info); + +#ifdef CONFIG_MPC8360ERDK + { + u16 val; + int cnt = 50; + + /* Wait for aneg to complete. */ + do + val = phy_read(mii_info, PHY_BMSR); + while (--cnt && !(val & PHY_BMSR_AUTN_COMP)); + + /* Set RDX clk delay. */ + phy_write(mii_info, 0x18, 0x7 | (7 << 12)); + + val = phy_read(mii_info, 0x18); + /* Set RDX-RXC skew. */ + val |= (1<<8); + val |= (7 | (7 << 12)); + /* Write bits 14:0. */ + val |= (1<<15); + phy_write(mii_info, 0x18, val); + } +#endif + return 0; +} + static int marvell_read_status (struct uec_mii_info *mii_info) { u16 status; @@ -491,6 +558,15 @@ static struct phy_info phy_info_marvell = { .config_intr = &marvell_config_intr, }; +static struct phy_info phy_info_bcm5481 = { + .phy_id = 0x0143bca0, + .phy_id_mask = 0xffffff0, + .name = "Broadcom 5481", + .features = MII_GBIT_FEATURES, + .read_status = gbit_read_status, + .init = bcm_init, +}; + static struct phy_info phy_info_genmii = { .phy_id = 0x00000000, .phy_id_mask = 0x00000000, @@ -504,6 +580,7 @@ static struct phy_info *phy_info[] = { &phy_info_dm9161, &phy_info_dm9161a, &phy_info_marvell, + &phy_info_bcm5481, &phy_info_genmii, NULL }; diff --git a/drivers/qe/uec_phy.h b/drivers/qe/uec_phy.h index e59a940..6f769fb 100644 --- a/drivers/qe/uec_phy.h +++ b/drivers/qe/uec_phy.h @@ -29,6 +29,11 @@ #define MII_1000BASETCONTROL_FULLDUPLEXCAP 0x0200 #define MII_1000BASETCONTROL_HALFDUPLEXCAP 0x0100 +/* 1000BT status */ +#define MII_1000BASETSTATUS 0x0a +#define LPA_1000FULL 0x0400 +#define LPA_1000HALF 0x0200 + /* Cicada Extended Control Register 1 */ #define MII_CIS8201_EXT_CON1 0x17 #define MII_CIS8201_EXTCON1_INIT 0x0000 - - - Thanks in advance. > > There are no openly available specifications for that PHY. > > > > Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> > > Also, shouldn't networking patches go through Ben Warren? Ok, I'll expand Cc list on respin. Thanks, -- Anton Vorontsov email: cbou at mail.ru backup email: ya-cbou at yandex.ru irc://irc.freenode.net/bd2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [U-Boot-Users] [PATCH] mpc83xx: UEC: add support for Broadcom BCM5481 Gigabit PHY 2008-01-08 18:41 ` Anton Vorontsov @ 2008-01-08 20:29 ` Kim Phillips 2008-01-08 21:18 ` Peter Barada 0 siblings, 1 reply; 7+ messages in thread From: Kim Phillips @ 2008-01-08 20:29 UTC (permalink / raw) To: u-boot On Tue, 8 Jan 2008 21:41:09 +0300 Anton Vorontsov <avorontsov@ru.mvista.com> wrote: > On Tue, Jan 08, 2008 at 10:50:18AM -0600, Kim Phillips wrote: > > On Tue, 25 Dec 2007 20:01:26 +0300 > > Anton Vorontsov <avorontsov@ru.mvista.com> wrote: > > > > > This patch adds basic support for Broadcom BCM5481 PHY, > > > with the quirk needed for at least MPC8360E-RDK. > > > > ? the MPC8360E-RDK doesn't exist in the mainline tree. > > Patch for the board support was sent at the same time. Though, > I'll resend it with few improvements. ok, yes, I'm a bit behind in my emails still :(. I took a brief look at it; while modding, can you please: a. reorder your Makefile entry in alpha order (per WD), and add MAINTAINERS and MAKEALL entries. b. move the non-board specific nand code out of the board directory and merge with drivers/mtd/nand (this should go through Stefan Roese). c. turn off CONFIG_OF_HAS_BD_T and CONFIG_OF_HAS_UBOOT_ENV (unless you have a really good reason to keep them on). d. remove references to OF_CPU, OF_SOC, OF_QE, OF_TBCLK, OF_STDOUT_PATH and use the new libfdt glue code. thanks in advance. > > > Quirk comes from MPC8360E-RDK BSP source, I think author is > > > Peter Barada <peterb@logicpd.com>, but I'm not sure. > > > > solicit his signoff then? > > Not an absolute necessity. > ok, we'll see if Peter replies anyway. Thanks for paying attention to this matter. Kim ^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] [PATCH] mpc83xx: UEC: add support for Broadcom BCM5481 Gigabit PHY 2008-01-08 20:29 ` Kim Phillips @ 2008-01-08 21:18 ` Peter Barada 0 siblings, 0 replies; 7+ messages in thread From: Peter Barada @ 2008-01-08 21:18 UTC (permalink / raw) To: u-boot On Tue, 2008-01-08 at 14:29 -0600, Kim Phillips wrote: > On Tue, 8 Jan 2008 21:41:09 +0300 > Anton Vorontsov <avorontsov@ru.mvista.com> wrote: > > > On Tue, Jan 08, 2008 at 10:50:18AM -0600, Kim Phillips wrote: > > > On Tue, 25 Dec 2007 20:01:26 +0300 > > > Anton Vorontsov <avorontsov@ru.mvista.com> wrote: > > > > > > > This patch adds basic support for Broadcom BCM5481 PHY, > > > > with the quirk needed for at least MPC8360E-RDK. > > > > > > ? the MPC8360E-RDK doesn't exist in the mainline tree. > > > > Patch for the board support was sent at the same time. Though, > > I'll resend it with few improvements. > > ok, yes, I'm a bit behind in my emails still :(. > > I took a brief look at it; while modding, can you please: > > a. reorder your Makefile entry in alpha order (per WD), and add > MAINTAINERS and MAKEALL entries. > > b. move the non-board specific nand code out of the board directory and > merge with drivers/mtd/nand (this should go through Stefan Roese). > > c. turn off CONFIG_OF_HAS_BD_T and CONFIG_OF_HAS_UBOOT_ENV (unless you > have a really good reason to keep them on). > > d. remove references to OF_CPU, OF_SOC, OF_QE, OF_TBCLK, OF_STDOUT_PATH > and use the new libfdt glue code. > > thanks in advance. > > > > > Quirk comes from MPC8360E-RDK BSP source, I think author is > > > > Peter Barada <peterb@logicpd.com>, but I'm not sure. > > > > > > solicit his signoff then? > > > > Not an absolute necessity. > > > ok, we'll see if Peter replies anyway. Thanks for paying attention to > this matter. I the code to the Freescale BSP u-boot-1.1.3 code that added support for the 8360EPB board. Where is the patch you put together so I can look it over? > > Kim -- Peter Barada <peterb@logicpd.com> ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-01-08 23:31 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2007-12-25 17:01 [U-Boot-Users] [PATCH] mpc83xx: UEC: add support for Broadcom BCM5481 Gigabit PHY Anton Vorontsov 2008-01-08 16:50 ` Kim Phillips 2008-01-08 18:04 ` Ben Warren 2008-01-08 23:31 ` Kim Phillips 2008-01-08 18:41 ` Anton Vorontsov 2008-01-08 20:29 ` Kim Phillips 2008-01-08 21:18 ` Peter Barada
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox