Kconfig 1.0 KB
Newer Older
1
if ARCH_MSM
2

3 4
comment "MSM Board Type"
	depends on ARCH_MSM
5

6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
config MSM_DEBUG_UART
	int
	default 1 if MSM_DEBUG_UART1
	default 2 if MSM_DEBUG_UART2
	default 3 if MSM_DEBUG_UART3

choice
	prompt "Debug UART"

	default MSM_DEBUG_UART_NONE

	config MSM_DEBUG_UART_NONE
		bool "None"

	config MSM_DEBUG_UART1
		bool "UART1"

	config MSM_DEBUG_UART2
		bool "UART2"

	config MSM_DEBUG_UART3
		bool "UART3"
endchoice

30
config MACH_HALIBUT
31
	depends on ARCH_MSM
32
	select CPU_V6
33
	default y
34
	bool "Halibut Board (QCT SURF7201A)"
35
	help
36
	  Support for the Qualcomm SURF7201A eval board.
37

38
config MACH_TROUT
39
	select CPU_V6
40 41 42 43 44
	default y
	bool "HTC Dream (aka trout)"
	help
	  Support for the HTC Dream, T-Mobile G1, Android ADP1 devices.

45 46 47 48 49 50 51 52 53 54
config MSM_SMD
	default y
	bool "MSM Shared Memory Driver (SMD)"
	help
	  Support for the shared memory interface between the apps
	  processor and the baseband processor.  Provides access to
	  the "shared heap", as well as virtual serial channels
	  used to communicate with various services on the baseband
	  processor.

55
endif