This series aims to allow VIC devices to be probed from the device tree.
Currently the only in-tree device tree enabled user of the VIC is versatile,
but I'll shortly submit patches for picoxcell on device tree that uses 2
VIC's.
I've split this into 3 patches for bisectability, but this could be fairly
squashed into 2.
Jamie Iles (3):
vic: add device tree bindings
versatile dt: set the irq-start property for the vic
versatile: convert to common VIC DT probing
Documentation/devicetree/bindings/arm/vic.txt | 21 +++++++++++++++
arch/arm/boot/dts/versatile-ab.dts | 1 +
arch/arm/common/vic.c | 35 +++++++++++++++++++++++++
arch/arm/include/asm/hardware/vic.h | 5 +++
arch/arm/mach-versatile/core.c | 9 +-----
5 files changed, 63 insertions(+), 8 deletions(-)
create mode 100644 Documentation/devicetree/bindings/arm/vic.txt
--
1.7.4.1
On Mon, Jul 25, 2011 at 05:09:57PM +0100, Jamie Iles wrote:
This series aims to allow VIC devices to be probed from the device tree.
Currently the only in-tree device tree enabled user of the VIC is versatile,
but I'll shortly submit patches for picoxcell on device tree that uses 2
VIC's.
I've split this into 3 patches for bisectability, but this could be fairly
squashed into 2.
I always prefer fewer patches. Which 2 patches would you squash
together? :-)
Jamie Iles (3):
vic: add device tree bindings
versatile dt: set the irq-start property for the vic
versatile: convert to common VIC DT probing
Documentation/devicetree/bindings/arm/vic.txt | 21 +++++++++++++++
arch/arm/boot/dts/versatile-ab.dts | 1 +
arch/arm/common/vic.c | 35 +++++++++++++++++++++++++
arch/arm/include/asm/hardware/vic.h | 5 +++
arch/arm/mach-versatile/core.c | 9 +-----
5 files changed, 63 insertions(+), 8 deletions(-)
create mode 100644 Documentation/devicetree/bindings/arm/vic.txt
--
1.7.4.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
On Mon, Jul 25, 2011 at 01:54:23PM -0600, Grant Likely wrote:
On Mon, Jul 25, 2011 at 05:09:57PM +0100, Jamie Iles wrote:
quoted
This series aims to allow VIC devices to be probed from the device tree.
Currently the only in-tree device tree enabled user of the VIC is versatile,
but I'll shortly submit patches for picoxcell on device tree that uses 2
VIC's.
I've split this into 3 patches for bisectability, but this could be fairly
squashed into 2.
I always prefer fewer patches. Which 2 patches would you squash
together? :-)
The conversion for versatile could go into one patch, but I'm not sure it
would bisect as easily (I guess that's more important though).
Jamie