All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/11] powerpc/85xx: Add 'fsl, pq3-gpio' compatiable for GPIO driver
@ 2011-10-22 21:20 Kumar Gala
  2011-10-22 21:20 ` [PATCH 02/11] powerpc/85xx: Simplify P1020RDB CAMP dts using includes Kumar Gala
  2011-11-03 17:59 ` [PATCH 01/11] powerpc/85xx: Add 'fsl, pq3-gpio' compatiable for GPIO driver Kumar Gala
  0 siblings, 2 replies; 19+ messages in thread
From: Kumar Gala @ 2011-10-22 21:20 UTC (permalink / raw)
  To: linuxppc-dev

Support MPC85xx platforms outside of MPC8572/MPC8536.  The
MPC8572/MPC8536 have an erratum that is worked around based on having
"fsl,mpc8572-gpio" in the compatiable list.  All other MPC85xx SoCs
don't require this workaround and thus utilize the 'fsl,pq3-gpio'
compatiable.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
 drivers/gpio/gpio-mpc8xxx.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/gpio/gpio-mpc8xxx.c b/drivers/gpio/gpio-mpc8xxx.c
index fb4963a..d74d19b 100644
--- a/drivers/gpio/gpio-mpc8xxx.c
+++ b/drivers/gpio/gpio-mpc8xxx.c
@@ -310,6 +310,7 @@ static struct of_device_id mpc8xxx_gpio_ids[] __initdata = {
 	{ .compatible = "fsl,mpc8572-gpio", },
 	{ .compatible = "fsl,mpc8610-gpio", },
 	{ .compatible = "fsl,mpc5121-gpio", .data = mpc512x_irq_set_type, },
+	{ .compatible = "fsl,pq3-gpio",     },
 	{ .compatible = "fsl,qoriq-gpio",   },
 	{}
 };
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 19+ messages in thread
* [PATCH 01/11] powerpc/85xx: Add 'fsl, pq3-gpio' compatiable for GPIO driver
@ 2011-11-10 16:06 Kumar Gala
  2011-11-10 16:07 ` [PATCH 02/11] powerpc/85xx: Simplify P1020RDB CAMP dts using includes Kumar Gala
  0 siblings, 1 reply; 19+ messages in thread
From: Kumar Gala @ 2011-11-10 16:06 UTC (permalink / raw)
  To: linuxppc-dev

Support MPC85xx platforms outside of MPC8572/MPC8536.  The
MPC8572/MPC8536 have an erratum that is worked around based on having
"fsl,mpc8572-gpio" in the compatiable list.  All other MPC85xx SoCs
don't require this workaround and thus utilize the 'fsl,pq3-gpio'
compatiable.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
 drivers/gpio/gpio-mpc8xxx.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/gpio/gpio-mpc8xxx.c b/drivers/gpio/gpio-mpc8xxx.c
index fb4963a..d74d19b 100644
--- a/drivers/gpio/gpio-mpc8xxx.c
+++ b/drivers/gpio/gpio-mpc8xxx.c
@@ -310,6 +310,7 @@ static struct of_device_id mpc8xxx_gpio_ids[] __initdata = {
 	{ .compatible = "fsl,mpc8572-gpio", },
 	{ .compatible = "fsl,mpc8610-gpio", },
 	{ .compatible = "fsl,mpc5121-gpio", .data = mpc512x_irq_set_type, },
+	{ .compatible = "fsl,pq3-gpio",     },
 	{ .compatible = "fsl,qoriq-gpio",   },
 	{}
 };
-- 
1.7.3.4

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

end of thread, other threads:[~2011-11-10 16:07 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-22 21:20 [PATCH 01/11] powerpc/85xx: Add 'fsl, pq3-gpio' compatiable for GPIO driver Kumar Gala
2011-10-22 21:20 ` [PATCH 02/11] powerpc/85xx: Simplify P1020RDB CAMP dts using includes Kumar Gala
2011-10-22 21:20   ` [PATCH 03/11] powerpc/85xx: Rework PCI nodes on P1020RDB Kumar Gala
2011-10-22 21:20     ` [PATCH 04/11] powerpc/85xx: Update SPI binding to match binding spec for P1020RDB Kumar Gala
2011-10-22 21:20       ` [PATCH 05/11] powerpc/85xx: Update P1020 SEC3.3 node to match actual SoC HW Kumar Gala
2011-10-22 21:20         ` [PATCH 06/11] powerpc/85xx: Add ethernet magic packet property to P1020 device tree Kumar Gala
2011-10-22 21:20           ` [PATCH 07/11] powerpc/85xx: p1020si.dtsi update interrupt handling Kumar Gala
2011-10-22 21:20             ` [PATCH 08/11] powerpc/85xx: create dts components to build up an SoC Kumar Gala
2011-10-22 21:20               ` [PATCH 09/11] powerpc/85xx: Rework P1020 SoC device tree Kumar Gala
2011-10-22 21:20                 ` [PATCH 10/11] powerpc/85xx: Rework P1020RDB " Kumar Gala
2011-10-22 21:20                   ` [PATCH 11/11] powerpc/85xx: Add P1020RDB 36-bit address map " Kumar Gala
2011-10-25 22:19           ` [PATCH 06/11] powerpc/85xx: Add ethernet magic packet property to P1020 " Scott Wood
2011-10-26  3:35             ` Kumar Gala
2011-10-26 16:02               ` Scott Wood
2011-10-23 14:37     ` [PATCH 03/11] powerpc/85xx: Rework PCI nodes on P1020RDB Tabi Timur-B04825
2011-10-24 14:02       ` Kumar Gala
2011-10-24 14:05         ` Timur Tabi
2011-11-03 17:59 ` [PATCH 01/11] powerpc/85xx: Add 'fsl, pq3-gpio' compatiable for GPIO driver Kumar Gala
  -- strict thread matches above, loose matches on Subject: below --
2011-11-10 16:06 Kumar Gala
2011-11-10 16:07 ` [PATCH 02/11] powerpc/85xx: Simplify P1020RDB CAMP dts using includes Kumar Gala
2011-11-10 16:07   ` [PATCH 03/11] powerpc/85xx: Rework PCI nodes on P1020RDB Kumar Gala
2011-11-10 16:07     ` [PATCH 04/11] powerpc/85xx: Update SPI binding to match binding spec for P1020RDB Kumar Gala
2011-11-10 16:07       ` [PATCH 05/11] powerpc/85xx: Update P1020 SEC3.3 node to match actual SoC HW Kumar Gala
2011-11-10 16:07         ` [PATCH 06/11] powerpc/85xx: Add ethernet magic packet property to P1020 device tree Kumar Gala

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.