]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Merge tag 'dt' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
authorLinus Torvalds <torvalds@linux-foundation.org>
Tue, 22 May 2012 16:30:52 +0000 (09:30 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 22 May 2012 16:30:52 +0000 (09:30 -0700)
Pull device tree conversions for arm-soc, part 1, from Olof Johansson:
 "The spear3xx, lpc32xx, shmobile and mmp platforms are joining the game
  of booting using device trees, which is a great step forward for them.
  at91 and spear have pretty much completed this process with a huge
  amount of work being put into at91.  The other platforms are
  continuing the process.

  We finally start to see the payback on this investment, as new
  machines are getting supported purely by adding a .dts source file
  that can be completely independent of the kernel source."

Fix up trivial conflict in arch/arm/Kconfig

* tag 'dt' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (83 commits)
  ARM: at91: Add ADC driver to at91sam9260/at91sam9g20 dtsi files
  arm/dts: omap4-panda: Add LEDs support
  arm/dts: omap4-sdp: Add LEDs support
  arm/dts: twl4030: Add twl4030-gpio node
  OMAP4: devices: Do not create mcpdm device if the dtb has been provided
  OMAP4: devices: Do not create dmic device if the dtb has been provided
  Documentation: update docs for mmp dt
  ARM: dts: refresh dts file for arch mmp
  ARM: mmp: support pxa910 with device tree
  ARM: mmp: support mmp2 with device tree
  gpio: pxa: parse gpio from DTS file
  ARM: mmp: support DT in timer
  ARM: mmp: support DT in irq
  ARM: mmp: append CONFIG_MACH_MMP2_DT
  ARM: mmp: fix build issue on mmp with device tree
  ARM: ux500: Enable PRCMU Timer 4 (clocksource) for Device Tree
  ARM: ux500: Disable SMSC911x platform code registration when DT is enabled
  ARM: ux500: Fork cpu-db8500 platform_devs for sequential DT enablement
  ARM: ux500: Do not attempt to register non-existent i2c devices on Snowball
  ARM: SPEAr3xx: Correct keyboard data passed from DT
  ...

1  2 
arch/arm/Kconfig
arch/arm/mach-omap2/devices.c
arch/arm/mach-omap2/gpio.c
arch/arm/mach-shmobile/include/mach/common.h
arch/arm/mach-shmobile/timer.c
arch/arm/mach-ux500/timer.c
drivers/net/ethernet/nxp/lpc_eth.c

index 64ae22c4fce7550ae1da0a41fa0a0bad27be111d,f10b86495fea24ad3ad9e6ca7beb5a5766b86ba9..82936f63cf16f176b24964274f1753964955d77d
@@@ -606,6 -633,8 +607,7 @@@ config ARCH_MM
        select CLKDEV_LOOKUP
        select GENERIC_CLOCKEVENTS
        select GPIO_PXA
 -      select TICK_ONESHOT
+       select IRQ_DOMAIN
        select PLAT_PXA
        select SPARSE_IRQ
        select GENERIC_ALLOCATOR
Simple merge
Simple merge
index c85e6ecda606be97b7f951aea269b65630c11852,cc1d73514ffa189523fa3bebf7c167f405091ab7..ff5f12fd742fb737c923eb2210cebcdafed5a537
@@@ -3,7 -3,10 +3,9 @@@
  
  extern void shmobile_earlytimer_init(void);
  extern struct sys_timer shmobile_timer;
+ extern void shmobile_setup_delay(unsigned int max_cpu_core_mhz,
+                                unsigned int mult, unsigned int div);
  struct twd_local_timer;
 -void shmobile_twd_init(struct twd_local_timer *twd_local_timer);
  extern void shmobile_setup_console(void);
  extern void shmobile_secondary_vector(void);
  extern int shmobile_platform_cpu_kill(unsigned int cpu);
Simple merge
index 52e55337aa9b84cc1bfa33bd0bb4605375693fb4,885c74231b8d36c6b866f05ec3802dc757f10ee9..bd8e110cbcc227fd0cf67bd6443649e13fb2824d
@@@ -45,8 -53,13 +51,10 @@@ static void __init ux500_timer_init(voi
  {
        void __iomem *mtu_timer_base;
        void __iomem *prcmu_timer_base;
+       void __iomem *tmp_base;
+       struct device_node *np;
  
 -      if (cpu_is_u5500()) {
 -              mtu_timer_base = __io_address(U5500_MTU0_BASE);
 -              prcmu_timer_base = __io_address(U5500_PRCMU_TIMER_3_BASE);
 -      } else if (cpu_is_u8500()) {
 +      if (cpu_is_u8500()) {
                mtu_timer_base = __io_address(U8500_MTU0_BASE);
                prcmu_timer_base = __io_address(U8500_PRCMU_TIMER_4_BASE);
        } else {
Simple merge