* [PATCH] phy: Add XGMII phy interface type
@ 2013-03-18 23:53 Ben Collins
2013-03-22 14:12 ` David Miller
0 siblings, 1 reply; 7+ messages in thread
From: Ben Collins @ 2013-03-18 23:53 UTC (permalink / raw)
To: linux-kernel; +Cc: netdev
Used by systems based on certain Freescale SoCs (specifically the
Servergy CTS-1000 system).
Signed-off-by: Ben Collins <ben.c@servergy.com>
Cc: netdev@vger.kernel.org
---
include/linux/phy.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/linux/phy.h b/include/linux/phy.h
index 33999ad..5a94ec7 100644
--- a/include/linux/phy.h
+++ b/include/linux/phy.h
@@ -64,6 +64,7 @@ typedef enum {
PHY_INTERFACE_MODE_RGMII_TXID,
PHY_INTERFACE_MODE_RTBI,
PHY_INTERFACE_MODE_SMII,
+ PHY_INTERFACE_MODE_XGMII,
} phy_interface_t;
--
1.8.1.2
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH] phy: Add XGMII phy interface type
2013-03-18 23:53 [PATCH] phy: Add XGMII phy interface type Ben Collins
@ 2013-03-22 14:12 ` David Miller
2013-03-22 14:17 ` Ben Collins
0 siblings, 1 reply; 7+ messages in thread
From: David Miller @ 2013-03-22 14:12 UTC (permalink / raw)
To: ben.c; +Cc: linux-kernel, netdev
From: Ben Collins <ben.c@servergy.com>
Date: Mon, 18 Mar 2013 19:53:42 -0400
> Used by systems based on certain Freescale SoCs (specifically the
> Servergy CTS-1000 system).
>
> Signed-off-by: Ben Collins <ben.c@servergy.com>
You can resubmit this patch when you submit a driver upstream that
uses it, so we can see what the use case looks like.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] phy: Add XGMII phy interface type
2013-03-22 14:12 ` David Miller
@ 2013-03-22 14:17 ` Ben Collins
2013-03-22 14:19 ` David Miller
0 siblings, 1 reply; 7+ messages in thread
From: Ben Collins @ 2013-03-22 14:17 UTC (permalink / raw)
To: David Miller; +Cc: ben.c, linux-kernel, netdev
On Mar 22, 2013, at 10:12 AM, David Miller <davem@davemloft.net> wrote:
> From: Ben Collins <ben.c@servergy.com>
> Date: Mon, 18 Mar 2013 19:53:42 -0400
>
>> Used by systems based on certain Freescale SoCs (specifically the
>> Servergy CTS-1000 system).
>>
>> Signed-off-by: Ben Collins <ben.c@servergy.com>
>
> You can resubmit this patch when you submit a driver upstream that
> uses it, so we can see what the use case looks like.
That patch is getting sent soon. It's starting out in staging. Should I Cc you on that?
--
Servergy : http://www.servergy.com/
SwissDisk : http://www.swissdisk.com/
Ubuntu : http://www.ubuntu.com/
My Blog : http://ben-collins.blogspot.com/
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] phy: Add XGMII phy interface type
2013-03-22 14:17 ` Ben Collins
@ 2013-03-22 14:19 ` David Miller
2013-03-22 14:22 ` Ben Collins
0 siblings, 1 reply; 7+ messages in thread
From: David Miller @ 2013-03-22 14:19 UTC (permalink / raw)
To: benmcollins13; +Cc: ben.c, linux-kernel, netdev
From: Ben Collins <benmcollins13@gmail.com>
Date: Fri, 22 Mar 2013 10:17:35 -0400
> On Mar 22, 2013, at 10:12 AM, David Miller <davem@davemloft.net> wrote:
>
>> From: Ben Collins <ben.c@servergy.com>
>> Date: Mon, 18 Mar 2013 19:53:42 -0400
>>
>>> Used by systems based on certain Freescale SoCs (specifically the
>>> Servergy CTS-1000 system).
>>>
>>> Signed-off-by: Ben Collins <ben.c@servergy.com>
>>
>> You can resubmit this patch when you submit a driver upstream that
>> uses it, so we can see what the use case looks like.
>
> That patch is getting sent soon. It's starting out in staging. Should I Cc you on that?
Why don't you wait until the driver is good enough for drivers/net proper?
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] phy: Add XGMII phy interface type
2013-03-22 14:19 ` David Miller
@ 2013-03-22 14:22 ` Ben Collins
2013-03-22 14:27 ` David Miller
0 siblings, 1 reply; 7+ messages in thread
From: Ben Collins @ 2013-03-22 14:22 UTC (permalink / raw)
To: David Miller; +Cc: linux-kernel, netdev
On Mar 22, 2013, at 10:19 AM, David Miller <davem@davemloft.net> wrote:
> From: Ben Collins <benmcollins13@gmail.com>
> Date: Fri, 22 Mar 2013 10:17:35 -0400
>
>> On Mar 22, 2013, at 10:12 AM, David Miller <davem@davemloft.net> wrote:
>>
>>> From: Ben Collins <ben.c@servergy.com>
>>> Date: Mon, 18 Mar 2013 19:53:42 -0400
>>>
>>>> Used by systems based on certain Freescale SoCs (specifically the
>>>> Servergy CTS-1000 system).
>>>>
>>>> Signed-off-by: Ben Collins <ben.c@servergy.com>
>>>
>>> You can resubmit this patch when you submit a driver upstream that
>>> uses it, so we can see what the use case looks like.
>>
>> That patch is getting sent soon. It's starting out in staging. Should I Cc you on that?
>
> Why don't you wait until the driver is good enough for drivers/net proper?
It's code that I've manually stripped down as a subset of a larger code base for Freescale's DPAA driver. I've only tested it on our (Servergy's) platform, so until it gets more broad testing (and some code review), I want to at least get it into staging so our hardware is supported.
--
Servergy : http://www.servergy.com/
SwissDisk : http://www.swissdisk.com/
Ubuntu : http://www.ubuntu.com/
My Blog : http://ben-collins.blogspot.com/
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] phy: Add XGMII phy interface type
2013-03-22 14:22 ` Ben Collins
@ 2013-03-22 14:27 ` David Miller
2013-03-22 14:33 ` Ben Collins
0 siblings, 1 reply; 7+ messages in thread
From: David Miller @ 2013-03-22 14:27 UTC (permalink / raw)
To: benmcollins13; +Cc: linux-kernel, netdev
From: Ben Collins <benmcollins13@gmail.com>
Date: Fri, 22 Mar 2013 10:22:05 -0400
> It's code that I've manually stripped down as a subset of a larger
> code base for Freescale's DPAA driver. I've only tested it on our
> (Servergy's) platform, so until it gets more broad testing (and some
> code review), I want to at least get it into staging so our hardware
> is supported.
Then why don't you submit the PHY type addition with the staging
driver, which will be the only user, and you can add my:
Acked-by: David S. Miller <davem@davemloft.net>
to that.
Thanks.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] phy: Add XGMII phy interface type
2013-03-22 14:27 ` David Miller
@ 2013-03-22 14:33 ` Ben Collins
0 siblings, 0 replies; 7+ messages in thread
From: Ben Collins @ 2013-03-22 14:33 UTC (permalink / raw)
To: David Miller; +Cc: linux-kernel, netdev
On Mar 22, 2013, at 10:27 AM, David Miller <davem@davemloft.net> wrote:
> From: Ben Collins <benmcollins13@gmail.com>
> Date: Fri, 22 Mar 2013 10:22:05 -0400
>
>> It's code that I've manually stripped down as a subset of a larger
>> code base for Freescale's DPAA driver. I've only tested it on our
>> (Servergy's) platform, so until it gets more broad testing (and some
>> code review), I want to at least get it into staging so our hardware
>> is supported.
>
> Then why don't you submit the PHY type addition with the staging
> driver, which will be the only user, and you can add my:
>
> Acked-by: David S. Miller <davem@davemloft.net>
That I can do. Greg had asked I get all the rest of this signed off before he could take the driver into staging.
--
Servergy : http://www.servergy.com/
SwissDisk : http://www.swissdisk.com/
Ubuntu : http://www.ubuntu.com/
My Blog : http://ben-collins.blogspot.com/
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-03-22 14:33 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-18 23:53 [PATCH] phy: Add XGMII phy interface type Ben Collins
2013-03-22 14:12 ` David Miller
2013-03-22 14:17 ` Ben Collins
2013-03-22 14:19 ` David Miller
2013-03-22 14:22 ` Ben Collins
2013-03-22 14:27 ` David Miller
2013-03-22 14:33 ` Ben Collins
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox