* [PATCH v3 1/2] powerpc/corenet: Enable muxing MDIO buses via GPIO
@ 2015-01-22 10:48 Emil Medve
2015-01-22 10:48 ` [PATCH v3 2/2] powerpc/corenet: Enable muxing MDIO buses via FPGA Emil Medve
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Emil Medve @ 2015-01-22 10:48 UTC (permalink / raw)
To: linuxppc-dev, scottwood
Cc: kanetkar.shruti, Andy Fleming, Shruti Kanetkar, Shaohui Xie
From: Andy Fleming <afleming@gmail.com>
Change-Id: I4489db79957ad533f4ba3f04fe7d5bcb3288e981
Signed-off-by: Andy Fleming <afleming@gmail.com>
Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
Signed-off-by: Shruti Kanetkar <Shruti@Freescale.com>
---
v3: Spearated from the FMan MDIO dt/binding patchset http://patchwork.ozlabs.org/patch/370871
Also supersedes http://patchwork.ozlabs.org/patch/423350
Update via 'savedefconfig'
arch/powerpc/configs/corenet32_smp_defconfig | 1 +
arch/powerpc/configs/corenet64_smp_defconfig | 2 ++
arch/powerpc/platforms/85xx/corenet_generic.c | 3 +++
3 files changed, 6 insertions(+)
diff --git a/arch/powerpc/configs/corenet32_smp_defconfig b/arch/powerpc/configs/corenet32_smp_defconfig
index 611efe9..5ccedc1 100644
--- a/arch/powerpc/configs/corenet32_smp_defconfig
+++ b/arch/powerpc/configs/corenet32_smp_defconfig
@@ -103,6 +103,7 @@ CONFIG_E1000E=y
CONFIG_VITESSE_PHY=y
CONFIG_AT803X_PHY=y
CONFIG_FIXED_PHY=y
+CONFIG_MDIO_BUS_MUX_GPIO=y
# CONFIG_INPUT_MOUSEDEV is not set
# CONFIG_INPUT_KEYBOARD is not set
# CONFIG_INPUT_MOUSE is not set
diff --git a/arch/powerpc/configs/corenet64_smp_defconfig b/arch/powerpc/configs/corenet64_smp_defconfig
index be24a18..ce16278 100644
--- a/arch/powerpc/configs/corenet64_smp_defconfig
+++ b/arch/powerpc/configs/corenet64_smp_defconfig
@@ -80,6 +80,8 @@ CONFIG_SATA_SIL24=y
CONFIG_NETDEVICES=y
CONFIG_DUMMY=y
CONFIG_E1000E=y
+CONFIG_PHYLIB=y
+CONFIG_MDIO_BUS_MUX_GPIO=y
CONFIG_INPUT_FF_MEMLESS=m
# CONFIG_INPUT_MOUSEDEV is not set
# CONFIG_INPUT_KEYBOARD is not set
diff --git a/arch/powerpc/platforms/85xx/corenet_generic.c b/arch/powerpc/platforms/85xx/corenet_generic.c
index 1f309cc..0804b10 100644
--- a/arch/powerpc/platforms/85xx/corenet_generic.c
+++ b/arch/powerpc/platforms/85xx/corenet_generic.c
@@ -88,6 +88,9 @@ static const struct of_device_id of_device_ids[] = {
.compatible = "simple-bus"
},
{
+ .compatible = "mdio-mux-gpio"
+ },
+ {
.compatible = "fsl,srio",
},
{
--
2.2.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v3 2/2] powerpc/corenet: Enable muxing MDIO buses via FPGA
2015-01-22 10:48 [PATCH v3 1/2] powerpc/corenet: Enable muxing MDIO buses via GPIO Emil Medve
@ 2015-01-22 10:48 ` Emil Medve
2015-01-30 1:58 ` [v3,1/2] powerpc/corenet: Enable muxing MDIO buses via GPIO Scott Wood
2015-01-30 2:00 ` Scott Wood
2 siblings, 0 replies; 4+ messages in thread
From: Emil Medve @ 2015-01-22 10:48 UTC (permalink / raw)
To: linuxppc-dev, scottwood
Cc: kanetkar.shruti, Shruti Kanetkar, Andy Fleming, Shaohui Xie
From: Shruti Kanetkar <Shruti@Freescale.com>
Change-Id: I00c521664573808af4f9a9c06a97665db470b49a
Signed-off-by: Andy Fleming <afleming@gmail.com>
Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
Signed-off-by: Shruti Kanetkar <Shruti@Freescale.com>
---
v3: Spearated from the FMan MDIO dt/binding patchset http://patchwork.ozlabs.org/patch/370873
Also supersedes http://patchwork.ozlabs.org/patch/423348
Update via 'savedefconfig'
Auto-probe devices on 'fsl,fpga-qixis'
arch/powerpc/configs/corenet32_smp_defconfig | 1 +
arch/powerpc/configs/corenet64_smp_defconfig | 1 +
arch/powerpc/platforms/85xx/corenet_generic.c | 6 ++++++
3 files changed, 8 insertions(+)
diff --git a/arch/powerpc/configs/corenet32_smp_defconfig b/arch/powerpc/configs/corenet32_smp_defconfig
index 5ccedc1..869270c 100644
--- a/arch/powerpc/configs/corenet32_smp_defconfig
+++ b/arch/powerpc/configs/corenet32_smp_defconfig
@@ -104,6 +104,7 @@ CONFIG_VITESSE_PHY=y
CONFIG_AT803X_PHY=y
CONFIG_FIXED_PHY=y
CONFIG_MDIO_BUS_MUX_GPIO=y
+CONFIG_MDIO_BUS_MUX_MMIOREG=y
# CONFIG_INPUT_MOUSEDEV is not set
# CONFIG_INPUT_KEYBOARD is not set
# CONFIG_INPUT_MOUSE is not set
diff --git a/arch/powerpc/configs/corenet64_smp_defconfig b/arch/powerpc/configs/corenet64_smp_defconfig
index ce16278..00c49b0 100644
--- a/arch/powerpc/configs/corenet64_smp_defconfig
+++ b/arch/powerpc/configs/corenet64_smp_defconfig
@@ -82,6 +82,7 @@ CONFIG_DUMMY=y
CONFIG_E1000E=y
CONFIG_PHYLIB=y
CONFIG_MDIO_BUS_MUX_GPIO=y
+CONFIG_MDIO_BUS_MUX_MMIOREG=y
CONFIG_INPUT_FF_MEMLESS=m
# CONFIG_INPUT_MOUSEDEV is not set
# CONFIG_INPUT_KEYBOARD is not set
diff --git a/arch/powerpc/platforms/85xx/corenet_generic.c b/arch/powerpc/platforms/85xx/corenet_generic.c
index 0804b10..63bef30 100644
--- a/arch/powerpc/platforms/85xx/corenet_generic.c
+++ b/arch/powerpc/platforms/85xx/corenet_generic.c
@@ -91,6 +91,12 @@ static const struct of_device_id of_device_ids[] = {
.compatible = "mdio-mux-gpio"
},
{
+ .compatible = "fsl,fpga-ngpixis"
+ },
+ {
+ .compatible = "fsl,fpga-qixis"
+ },
+ {
.compatible = "fsl,srio",
},
{
--
2.2.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [v3,1/2] powerpc/corenet: Enable muxing MDIO buses via GPIO
2015-01-22 10:48 [PATCH v3 1/2] powerpc/corenet: Enable muxing MDIO buses via GPIO Emil Medve
2015-01-22 10:48 ` [PATCH v3 2/2] powerpc/corenet: Enable muxing MDIO buses via FPGA Emil Medve
@ 2015-01-30 1:58 ` Scott Wood
2015-01-30 2:00 ` Scott Wood
2 siblings, 0 replies; 4+ messages in thread
From: Scott Wood @ 2015-01-30 1:58 UTC (permalink / raw)
To: Emil Medve
Cc: kanetkar.shruti, Andy Fleming, linuxppc-dev, Shruti Kanetkar,
Shaohui Xie
On Thu, Jan 22, 2015 at 04:48:37AM -0600, Emil Medve wrote:
> From: Andy Fleming <afleming@gmail.com>
>
> Change-Id: I4489db79957ad533f4ba3f04fe7d5bcb3288e981
> Signed-off-by: Andy Fleming <afleming@gmail.com>
> Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
> Signed-off-by: Shruti Kanetkar <Shruti@Freescale.com>
> ---
These patches are missing your signoff. Everyone who passes the patch
along needs to sign off.
-Scott
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [v3,1/2] powerpc/corenet: Enable muxing MDIO buses via GPIO
2015-01-22 10:48 [PATCH v3 1/2] powerpc/corenet: Enable muxing MDIO buses via GPIO Emil Medve
2015-01-22 10:48 ` [PATCH v3 2/2] powerpc/corenet: Enable muxing MDIO buses via FPGA Emil Medve
2015-01-30 1:58 ` [v3,1/2] powerpc/corenet: Enable muxing MDIO buses via GPIO Scott Wood
@ 2015-01-30 2:00 ` Scott Wood
2 siblings, 0 replies; 4+ messages in thread
From: Scott Wood @ 2015-01-30 2:00 UTC (permalink / raw)
To: Emil Medve
Cc: kanetkar.shruti, Andy Fleming, linuxppc-dev, Shruti Kanetkar,
Shaohui Xie
On Thu, Jan 22, 2015 at 04:48:37AM -0600, Emil Medve wrote:
> From: Andy Fleming <afleming@gmail.com>
>
> Change-Id: I4489db79957ad533f4ba3f04fe7d5bcb3288e981
> Signed-off-by: Andy Fleming <afleming@gmail.com>
> Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
> Signed-off-by: Shruti Kanetkar <Shruti@Freescale.com>
> ---
scott@snotra:~/fsl/git/linux/upstream$ ./scripts/checkpatch.pl v3-1-2-powerpc-corenet-Enable-muxing-MDIO-buses-via-GPIO.patch
ERROR: Remove Gerrit Change-Id's before submitting upstream.
#21:
Change-Id: I4489db79957ad533f4ba3f04fe7d5bcb3288e981
total: 1 errors, 0 warnings, 24 lines checked
v3-1-2-powerpc-corenet-Enable-muxing-MDIO-buses-via-GPIO.patch has style problems, please review.
If any of these errors are false positives, please report
them to the maintainer, see CHECKPATCH in MAINTAINERS.
-Scott
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-01-30 2:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-22 10:48 [PATCH v3 1/2] powerpc/corenet: Enable muxing MDIO buses via GPIO Emil Medve
2015-01-22 10:48 ` [PATCH v3 2/2] powerpc/corenet: Enable muxing MDIO buses via FPGA Emil Medve
2015-01-30 1:58 ` [v3,1/2] powerpc/corenet: Enable muxing MDIO buses via GPIO Scott Wood
2015-01-30 2:00 ` Scott Wood
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).