1. 21 6月, 2017 2 次提交
  2. 19 6月, 2017 1 次提交
  3. 14 6月, 2017 1 次提交
  4. 02 6月, 2017 1 次提交
  5. 25 5月, 2017 1 次提交
  6. 28 4月, 2017 1 次提交
    • A
      arm64: sunxi: always enable reset controller · 900a9020
      Arnd Bergmann 提交于
      The sunxi clk driver causes a link error when the reset controller
      subsystem is disabled:
      
      drivers/clk/built-in.o: In function `sun4i_ve_clk_setup':
      :(.init.text+0xd040): undefined reference to `reset_controller_register'
      drivers/clk/built-in.o: In function `sun4i_a10_display_init':
      :(.init.text+0xe5e0): undefined reference to `reset_controller_register'
      drivers/clk/built-in.o: In function `sunxi_usb_clk_setup':
      :(.init.text+0x10074): undefined reference to `reset_controller_register'
      
      We already force it to be enabled on arm32 and some other arm64 platforms,
      but not on arm64/sunxi. This adds the respective Kconfig statements to
      also select it here.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Acked-by: NMaxime Ripard <maxime.ripard@free-electrons.com>
      900a9020
  7. 26 4月, 2017 1 次提交
  8. 22 3月, 2017 1 次提交
  9. 20 3月, 2017 1 次提交
  10. 09 2月, 2017 1 次提交
  11. 24 11月, 2016 1 次提交
  12. 13 11月, 2016 1 次提交
    • M
      arm64: qcom: enable GPIOLIB in Kconfig · e19811a8
      Michael Scott 提交于
      While debugging a kernel image size issue, I discovered that if all
      non ARCH_QCOM configs in the ARM64 defconfig are disabled, the QCOM
      pinctrl drivers will not be built.
      
      The QCOM pinctrl drivers have a dependency on GPIOLIB which was being
      selected when other ARCH configs were enabled, but ARCH_QCOM doesn't
      select GPIOLIB directly.  Let's select GPIOLIB here to ensure the pinctrl
      drivers are built for QCOM platforms.
      Signed-off-by: NMichael Scott <michael.scott@linaro.org>
      Signed-off-by: NAndy Gross <andy.gross@linaro.org>
      e19811a8
  13. 22 10月, 2016 1 次提交
  14. 16 9月, 2016 1 次提交
  15. 01 9月, 2016 1 次提交
  16. 24 8月, 2016 3 次提交
  17. 23 8月, 2016 1 次提交
  18. 22 8月, 2016 1 次提交
  19. 11 8月, 2016 2 次提交
  20. 09 8月, 2016 1 次提交
  21. 08 8月, 2016 1 次提交
  22. 07 7月, 2016 2 次提交
  23. 05 7月, 2016 1 次提交
  24. 21 6月, 2016 1 次提交
    • S
      arm64: Kconfig: select PM{,_GENERIC_DOMAINS} for ARCH_VEXPRESS · 8da7cc08
      Sudeep Holla 提交于
      The Linux AMBA bus framework probes the peripheral IDs when adding the
      AMBA devices very early on the boot. Generally they are on APB bus and
      just require APB clocks to be on even when most of the core logic of the
      IP is powered down.
      
      However on Juno, the entire debugsys domain needs to be ON to access
      even the coresight components' CID/PID registers and hence broken by
      design. Accessing those while debugsys power domain is off will lead to
      the bridge stalling the transactions instead of returning the slave error.
      
      Further, the AMBA framework can't deal with !CONFIG_PM_GENERIC_DOMAINS
      case: it ignores the error and proceeds to access the device region.
      It was suggested to always enable CONFIG_PM{,_GENERIC_DOMAINS} in order
      to handle above explained scenario.
      
      Cc: Arnd Bergmann <arnd@arndb.de>
      Suggested-by: NUlf Hansson <ulf.hansson@linaro.org>
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      Signed-off-by: NOlof Johansson <olof@lixom.net>
      8da7cc08
  25. 16 6月, 2016 1 次提交
  26. 02 6月, 2016 1 次提交
  27. 01 6月, 2016 1 次提交
  28. 30 5月, 2016 1 次提交
  29. 11 5月, 2016 1 次提交
    • S
      arm64/sunxi: 4.6-rc1: Add dependency on generic irq chip · 23485482
      Suzuki K Poulose 提交于
      Commit ce3dd55b ("arm64: Introduce Allwinner SoC config option"),
      added support for ARCH_SUNXI on arm64, but failed to select
      GENERIC_IRQ_CHIP, which is required for drivers/irqchip/irq-sunxi-nmi.c
      and causes build failures like :
      
        UPD     include/generated/compile.h
        CC      init/version.o
        LD      init/built-in.o
      drivers/built-in.o: In function `sunxi_sc_nmi_set_type':
      drivers/irqchip/irq-sunxi-nmi.c:114: undefined reference to `irq_setup_alt_chip'
      drivers/built-in.o: In function `irq_domain_add_linear':
      include/linux/irqdomain.h:253: undefined reference to `irq_generic_chip_ops'
      include/linux/irqdomain.h:253: undefined reference to `irq_generic_chip_ops'
      drivers/built-in.o: In function `sunxi_sc_nmi_irq_init':
      drivers/irqchip/irq-sunxi-nmi.c:146: undefined reference to `irq_alloc_domain_generic_chips'
      drivers/irqchip/irq-sunxi-nmi.c:161: undefined reference to `irq_get_domain_generic_chip'
      drivers/irqchip/irq-sunxi-nmi.c:170: undefined reference to `irq_gc_mask_clr_bit'
      drivers/irqchip/irq-sunxi-nmi.c:171: undefined reference to `irq_gc_mask_set_bit'
      drivers/irqchip/irq-sunxi-nmi.c:172: undefined reference to `irq_gc_ack_set_bit'
      drivers/irqchip/irq-sunxi-nmi.c:170: undefined reference to `irq_gc_mask_clr_bit'
      
      Fixes: commit ce3dd55b ("arm64: Introduce Allwinner SoC config option")
      Signed-off-by: NSuzuki K Poulose <suzuki.poulose@arm.com>
      Signed-off-by: NAndre Przywara <andre.przywara@arm.com>
      Acked-by: NMaxime Ripard <maxime.ripard@free-electrons.com>
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      23485482
  30. 26 4月, 2016 2 次提交
  31. 14 4月, 2016 1 次提交
  32. 23 3月, 2016 1 次提交
  33. 07 3月, 2016 1 次提交
  34. 27 2月, 2016 1 次提交