Linux Audio

Check our new training course

Buildroot integration, development and maintenance

Need a Buildroot system for your embedded project?
Loading...
v4.17
 1menuconfig ARCH_QCOM
 2	bool "Qualcomm Support"
 3	depends on ARCH_MULTI_V7
 4	select ARCH_SUPPORTS_BIG_ENDIAN
 5	select ARM_GIC
 6	select ARM_AMBA
 7	select PINCTRL
 
 8	select QCOM_SCM if SMP
 9	help
10	  Support for Qualcomm's devicetree based systems.
11
12if ARCH_QCOM
13
 
 
14config ARCH_MSM8X60
15	bool "Enable support for MSM8X60"
16	select CLKSRC_QCOM
17
18config ARCH_MSM8960
19	bool "Enable support for MSM8960"
20	select CLKSRC_QCOM
21
22config ARCH_MSM8974
23	bool "Enable support for MSM8974"
24	select HAVE_ARM_ARCH_TIMER
25
26config ARCH_MDM9615
27	bool "Enable support for MDM9615"
28	select CLKSRC_QCOM
 
29
30endif
v3.15
 1config ARCH_QCOM
 2	bool "Qualcomm Support" if ARCH_MULTI_V7
 3	select ARCH_REQUIRE_GPIOLIB
 
 4	select ARM_GIC
 5	select CLKSRC_OF
 6	select GENERIC_CLOCKEVENTS
 7	select HAVE_SMP
 8	select QCOM_SCM if SMP
 9	help
10	  Support for Qualcomm's devicetree based systems.
11
12if ARCH_QCOM
13
14menu "Qualcomm SoC Selection"
15
16config ARCH_MSM8X60
17	bool "Enable support for MSM8X60"
18	select CLKSRC_QCOM
19
20config ARCH_MSM8960
21	bool "Enable support for MSM8960"
22	select CLKSRC_QCOM
23
24config ARCH_MSM8974
25	bool "Enable support for MSM8974"
26	select HAVE_ARM_ARCH_TIMER
27
28endmenu
29
30config QCOM_SCM
31	bool
32
33endif