074-ARM-qcom-Add-IPQ4019-SoC-support.patch 1.1 KB

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