public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] phy: Add support for Marvell 88E1118R
@ 2012-08-07 12:23 Michal Simek
  2012-08-10  6:37 ` Michal Simek
  2012-09-14 13:15 ` Michal Simek
  0 siblings, 2 replies; 5+ messages in thread
From: Michal Simek @ 2012-08-07 12:23 UTC (permalink / raw)
  To: u-boot

Marvell 88E1118R has different uid then 88E1118.

Signed-off-by: Michal Simek <monstr@monstr.eu>
CC: Andy Fleming <afleming@freescale.com>
CC: Zang Roy-R61911 <tie-fei.zang@freescale.com>
CC: Kumar Gala <galak@kernel.crashing.org>
---
 drivers/net/phy/marvell.c |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c
index e51e799..4b27198 100644
--- a/drivers/net/phy/marvell.c
+++ b/drivers/net/phy/marvell.c
@@ -425,6 +425,16 @@ static struct phy_driver M88E1118_driver = {
 	.shutdown = &genphy_shutdown,
 };
 
+static struct phy_driver M88E1118R_driver = {
+	.name = "Marvell 88E1118R",
+	.uid = 0x1410e40,
+	.mask = 0xffffff0,
+	.features = PHY_GBIT_FEATURES,
+	.config = &m88e1118_config,
+	.startup = &m88e1118_startup,
+	.shutdown = &genphy_shutdown,
+};
+
 static struct phy_driver M88E1121R_driver = {
 	.name = "Marvell 88E1121R",
 	.uid = 0x1410cb0,
@@ -461,6 +471,7 @@ int phy_marvell_init(void)
 	phy_register(&M88E1145_driver);
 	phy_register(&M88E1121R_driver);
 	phy_register(&M88E1118_driver);
+	phy_register(&M88E1118R_driver);
 	phy_register(&M88E1111S_driver);
 	phy_register(&M88E1011S_driver);
 
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] phy: Add support for Marvell 88E1118R
  2012-08-07 12:23 [U-Boot] [PATCH] phy: Add support for Marvell 88E1118R Michal Simek
@ 2012-08-10  6:37 ` Michal Simek
  2012-09-14 13:15 ` Michal Simek
  1 sibling, 0 replies; 5+ messages in thread
From: Michal Simek @ 2012-08-10  6:37 UTC (permalink / raw)
  To: u-boot

On 08/07/2012 02:23 PM, Michal Simek wrote:
> Marvell 88E1118R has different uid then 88E1118.
>
> Signed-off-by: Michal Simek <monstr@monstr.eu>
> CC: Andy Fleming <afleming@freescale.com>
> CC: Zang Roy-R61911 <tie-fei.zang@freescale.com>
> CC: Kumar Gala <galak@kernel.crashing.org>
> ---
>   drivers/net/phy/marvell.c |   11 +++++++++++
>   1 files changed, 11 insertions(+), 0 deletions(-)

Joe: Could you add this patch to your custodian net repo?

Thanks,
Michal


-- 
Michal Simek, Ing. (M.Eng)
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/
Microblaze U-BOOT custodian

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] phy: Add support for Marvell 88E1118R
  2012-08-07 12:23 [U-Boot] [PATCH] phy: Add support for Marvell 88E1118R Michal Simek
  2012-08-10  6:37 ` Michal Simek
@ 2012-09-14 13:15 ` Michal Simek
  2012-09-14 16:17   ` Joe Hershberger
  1 sibling, 1 reply; 5+ messages in thread
From: Michal Simek @ 2012-09-14 13:15 UTC (permalink / raw)
  To: u-boot

Hi Tom and Joe,

On 08/07/2012 02:23 PM, Michal Simek wrote:
> Marvell 88E1118R has different uid then 88E1118.
>
> Signed-off-by: Michal Simek <monstr@monstr.eu>
> CC: Andy Fleming <afleming@freescale.com>
> CC: Zang Roy-R61911 <tie-fei.zang@freescale.com>
> CC: Kumar Gala <galak@kernel.crashing.org>
> ---
>   drivers/net/phy/marvell.c |   11 +++++++++++
>   1 files changed, 11 insertions(+), 0 deletions(-)

can you please handle this patch? Or if you like I will add
to my custodian tree.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng)
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/
Microblaze U-BOOT custodian

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] phy: Add support for Marvell 88E1118R
  2012-09-14 13:15 ` Michal Simek
@ 2012-09-14 16:17   ` Joe Hershberger
  2012-09-17  8:10     ` Michal Simek
  0 siblings, 1 reply; 5+ messages in thread
From: Joe Hershberger @ 2012-09-14 16:17 UTC (permalink / raw)
  To: u-boot

Hi Michal,

On Fri, Sep 14, 2012 at 8:15 AM, Michal Simek <monstr@monstr.eu> wrote:
> Hi Tom and Joe,
>
>
> On 08/07/2012 02:23 PM, Michal Simek wrote:
>>
>> Marvell 88E1118R has different uid then 88E1118.
>>
>> Signed-off-by: Michal Simek <monstr@monstr.eu>
>> CC: Andy Fleming <afleming@freescale.com>
>> CC: Zang Roy-R61911 <tie-fei.zang@freescale.com>
>> CC: Kumar Gala <galak@kernel.crashing.org>
>> ---
>>   drivers/net/phy/marvell.c |   11 +++++++++++
>>   1 files changed, 11 insertions(+), 0 deletions(-)
>
>
> can you please handle this patch? Or if you like I will add
> to my custodian tree.

I'll apply it when I get to my backlog.

-Joe

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] phy: Add support for Marvell 88E1118R
  2012-09-14 16:17   ` Joe Hershberger
@ 2012-09-17  8:10     ` Michal Simek
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Simek @ 2012-09-17  8:10 UTC (permalink / raw)
  To: u-boot

On 09/14/2012 06:17 PM, Joe Hershberger wrote:
> Hi Michal,
>
> On Fri, Sep 14, 2012 at 8:15 AM, Michal Simek <monstr@monstr.eu> wrote:
>> Hi Tom and Joe,
>>
>>
>> On 08/07/2012 02:23 PM, Michal Simek wrote:
>>>
>>> Marvell 88E1118R has different uid then 88E1118.
>>>
>>> Signed-off-by: Michal Simek <monstr@monstr.eu>
>>> CC: Andy Fleming <afleming@freescale.com>
>>> CC: Zang Roy-R61911 <tie-fei.zang@freescale.com>
>>> CC: Kumar Gala <galak@kernel.crashing.org>
>>> ---
>>>    drivers/net/phy/marvell.c |   11 +++++++++++
>>>    1 files changed, 11 insertions(+), 0 deletions(-)
>>
>>
>> can you please handle this patch? Or if you like I will add
>> to my custodian tree.
>
> I'll apply it when I get to my backlog.

Ok.

Thanks,
Michal


-- 
Michal Simek, Ing. (M.Eng)
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/
Microblaze U-BOOT custodian

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-09-17  8:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-07 12:23 [U-Boot] [PATCH] phy: Add support for Marvell 88E1118R Michal Simek
2012-08-10  6:37 ` Michal Simek
2012-09-14 13:15 ` Michal Simek
2012-09-14 16:17   ` Joe Hershberger
2012-09-17  8:10     ` Michal Simek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox