-
Notifications
You must be signed in to change notification settings - Fork 54.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM: qcom: Split Qualcomm support into legacy and multiplatform
Introduce a new mach-qcom that will support SoCs that intend to be multiplatform compatible while keeping mach-msm to legacy SoC/board support that will not transition over to multiplatform. As part of this, we move support for MSM8X60, MSM8960 and MSM8974 over to mach-qcom. Signed-off-by: Kumar Gala <[email protected]>
- Loading branch information
Kumar Gala
committed
Feb 6, 2014
1 parent
3f8e8ce
commit 8fc1b0f
Showing
15 changed files
with
64 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1167,6 +1167,14 @@ L: [email protected] (moderated for non-subscribers) | |
W: http://www.arm.linux.org.uk/ | ||
S: Maintained | ||
|
||
ARM/QUALCOMM SUPPORT | ||
M: Kumar Gala <[email protected]> | ||
M: David Brown <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: arch/arm/mach-qcom/ | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git | ||
|
||
ARM/RADISYS ENP2611 MACHINE SUPPORT | ||
M: Lennert Buytenhek <[email protected]> | ||
L: [email protected] (moderated for non-subscribers) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
config ARCH_QCOM | ||
bool "Qualcomm Support" if ARCH_MULTI_V7 | ||
select ARCH_REQUIRE_GPIOLIB | ||
select ARM_GIC | ||
select CLKSRC_OF | ||
select GENERIC_CLOCKEVENTS | ||
select HAVE_SMP | ||
select QCOM_SCM if SMP | ||
help | ||
Support for Qualcomm's devicetree based systems. | ||
|
||
if ARCH_QCOM | ||
|
||
menu "Qualcomm SoC Selection" | ||
|
||
config ARCH_MSM8X60 | ||
bool "Enable support for MSM8X60" | ||
select CLKSRC_QCOM | ||
|
||
config ARCH_MSM8960 | ||
bool "Enable support for MSM8960" | ||
select CLKSRC_QCOM | ||
|
||
config ARCH_MSM8974 | ||
bool "Enable support for MSM8974" | ||
select HAVE_ARM_ARCH_TIMER | ||
|
||
endmenu | ||
|
||
config QCOM_SCM | ||
bool | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
obj-y := board.o | ||
obj-$(CONFIG_SMP) += platsmp.o | ||
obj-$(CONFIG_QCOM_SCM) += scm.o scm-boot.o | ||
|
||
CFLAGS_scm.o :=$(call as-instr,.arch_extension sec,-DREQUIRES_SEC=1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.