307-ARM-qcom-Add-IPQ4019-SoC-support.patch 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. From e7748d641ae37081e2034869491f1629461ae13c Mon Sep 17 00:00:00 2001
  2. From: Christian Lamparter <[email protected]>
  3. Date: Sat, 19 Nov 2016 00:58:18 +0100
  4. Subject: [PATCH] ARM: qcom: Add IPQ4019 SoC support
  5. Add support for the Qualcomm Atheros IPQ4019 SoC.
  6. Signed-off-by: Christian Lamparter <[email protected]>
  7. ---
  8. arch/arm/Makefile | 1 +
  9. arch/arm/mach-qcom/Kconfig | 5 +++++
  10. 2 files changed, 6 insertions(+)
  11. --- a/arch/arm/Makefile
  12. +++ b/arch/arm/Makefile
  13. @@ -147,6 +147,7 @@ textofs-$(CONFIG_SA1111) := 0x00208000
  14. endif
  15. textofs-$(CONFIG_ARCH_MSM8X60) := 0x00208000
  16. textofs-$(CONFIG_ARCH_MSM8960) := 0x00208000
  17. +textofs-$(CONFIG_ARCH_IPQ40XX) := 0x00208000
  18. textofs-$(CONFIG_ARCH_AXXIA) := 0x00308000
  19. # Machine directory name. This list is sorted alphanumerically
  20. --- a/arch/arm/mach-qcom/Kconfig
  21. +++ b/arch/arm/mach-qcom/Kconfig
  22. @@ -28,4 +28,9 @@ config ARCH_MDM9615
  23. bool "Enable support for MDM9615"
  24. select CLKSRC_QCOM
  25. +config ARCH_IPQ40XX
  26. + bool "Enable support for IPQ40XX"
  27. + select CLKSRC_QCOM
  28. + select HAVE_ARM_ARCH_TIMER
  29. +
  30. endif