Merge tag 'at91-drivers-for-3.17' of git://git.kernel.org/pub/scm/linux/kernel/git...
authorNicolas Ferre <nicolas.ferre@atmel.com>
Mon, 25 Aug 2014 13:35:26 +0000 (15:35 +0200)
committerNicolas Ferre <nicolas.ferre@atmel.com>
Mon, 25 Aug 2014 13:35:26 +0000 (15:35 +0200)
Pull AT91 reset, poweroff and ram drivers from Maxime Ripard:
 "This tag holds the various new drivers introduced to move code that used to be
  in mach-at91 over to the proper frameworks.

  These files are the reboot and poweroff code for all AT91 SoCs but the RM9200,
  and the ram controller driver is not doing much at the time, except for grabing
  the RAM clock in order to leave it always enabled."

Conflicts:
arch/arm/mach-at91/Kconfig

1  2 
arch/arm/mach-at91/Kconfig
arch/arm/mach-at91/setup.c
drivers/memory/Kconfig
drivers/memory/Makefile
drivers/power/reset/Kconfig
drivers/power/reset/Makefile

index dd28e1fedbdce67ac24269cedbb6e6558b67f6a2,7a69ffd93b6be1b8fc3ba3d6aaf6b9faaa27c5e1..6aa7ab47205e767a3926088b48dc84035c5e2304
@@@ -50,17 -45,23 +50,21 @@@ config HAVE_AT91_SM
  config SOC_AT91SAM9
        bool
        select AT91_SAM9_TIME
 +      select ATMEL_AIC_IRQ if !OLD_IRQ_AT91
        select CPU_ARM926T
        select GENERIC_CLOCKEVENTS
 -      select MULTI_IRQ_HANDLER
 -      select SPARSE_IRQ
+       select MEMORY if USE_OF
+       select ATMEL_SDRAMC if USE_OF
  
  config SOC_SAMA5
        bool
        select AT91_SAM9_TIME
 +      select ATMEL_AIC5_IRQ
        select CPU_V7
        select GENERIC_CLOCKEVENTS
 -      select MULTI_IRQ_HANDLER
 -      select SPARSE_IRQ
        select USE_OF
+       select MEMORY
+       select ATMEL_SDRAMC
  
  menu "Atmel AT91 System-on-Chip"
  
Simple merge
Simple merge
index 4055c47f45ab337362524804bfeff4d20ca8699c,b8637261e1a1c106a2b847354941091661ac1113..c32d31981be314518d16c8933177937e97841545
@@@ -5,9 -5,9 +5,10 @@@
  ifeq ($(CONFIG_DDR),y)
  obj-$(CONFIG_OF)              += of_memory.o
  endif
+ obj-$(CONFIG_ATMEL_SDRAMC)    += atmel-sdramc.o
  obj-$(CONFIG_TI_AEMIF)                += ti-aemif.o
  obj-$(CONFIG_TI_EMIF)         += emif.o
 +obj-$(CONFIG_FSL_CORENET_CF)  += fsl-corenet-cf.o
  obj-$(CONFIG_FSL_IFC)         += fsl_ifc.o
  obj-$(CONFIG_MVEBU_DEVBUS)    += mvebu-devbus.o
  obj-$(CONFIG_TEGRA20_MC)      += tegra20-mc.o
index ca41523bbebf767ad1af56594cd1ba57d297b06e,1f9d0c53fc140a6ec7e8ba80d7a4031dee8ca1c0..c1c046d0464e398d9d732b19969c791dfb6298c1
@@@ -20,34 -38,17 +38,34 @@@ config POWER_RESET_AXXI
  
          Say Y if you have an Axxia family SoC.
  
 +config POWER_RESET_BRCMSTB
 +      bool "Broadcom STB reset driver" if COMPILE_TEST
 +      depends on POWER_RESET && ARM
 +      default ARCH_BRCMSTB
 +      help
 +        This driver provides restart support for ARM-based Broadcom STB
 +        boards.
 +
 +        Say Y here if you have an ARM-based Broadcom STB board and you wish
 +        to have restart support.
 +
  config POWER_RESET_GPIO
        bool "GPIO power-off driver"
-       depends on OF_GPIO && POWER_RESET
+       depends on OF_GPIO
        help
          This driver supports turning off your board via a GPIO line.
          If your board needs a GPIO high/low to power down, say Y and
          create a binding in your devicetree.
  
 +config POWER_RESET_HISI
 +      bool "Hisilicon power-off driver"
 +      depends on POWER_RESET && ARCH_HISI
 +      help
 +        Reboot support for Hisilicon boards.
 +
  config POWER_RESET_MSM
        bool "Qualcomm MSM power-off driver"
-       depends on POWER_RESET && ARCH_QCOM
+       depends on ARCH_QCOM
        help
          Power off and restart support for Qualcomm boards.
  
index a42e70edd0376912b88b4f4a4a3f3fc01ef17496,8bf941bac3da8010a61142d348e454d6b55d69fa..4433a753fd937eb4b2e1553bd86f1c61deea763a
@@@ -1,8 -1,8 +1,10 @@@
  obj-$(CONFIG_POWER_RESET_AS3722) += as3722-poweroff.o
+ obj-$(CONFIG_POWER_RESET_AT91_POWEROFF) += at91-poweroff.o
+ obj-$(CONFIG_POWER_RESET_AT91_RESET) += at91-reset.o
  obj-$(CONFIG_POWER_RESET_AXXIA) += axxia-reset.o
 +obj-$(CONFIG_POWER_RESET_BRCMSTB) += brcmstb-reboot.o
  obj-$(CONFIG_POWER_RESET_GPIO) += gpio-poweroff.o
 +obj-$(CONFIG_POWER_RESET_HISI) += hisi-reboot.o
  obj-$(CONFIG_POWER_RESET_MSM) += msm-poweroff.o
  obj-$(CONFIG_POWER_RESET_QNAP) += qnap-poweroff.o
  obj-$(CONFIG_POWER_RESET_RESTART) += restart-poweroff.o