Brian Swetland | 1637de0 | 2008-09-09 07:13:33 -0700 | [diff] [blame] | 1 | if ARCH_MSM |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 2 | |
Daniel Walker | bf83de4 | 2010-03-16 16:29:44 -0700 | [diff] [blame] | 3 | choice |
| 4 | prompt "Qualcomm MSM SoC Type" |
| 5 | default ARCH_MSM7X00A |
| 6 | |
| 7 | config ARCH_MSM7X00A |
| 8 | bool "MSM7x00A / MSM7x01A" |
| 9 | select ARCH_MSM_ARM11 |
| 10 | select MSM_SMD_PKG3 |
| 11 | select CPU_V6 |
| 12 | |
| 13 | endchoice |
| 14 | |
| 15 | config ARCH_MSM_ARM11 |
| 16 | bool |
| 17 | |
| 18 | |
Brian Swetland | 1637de0 | 2008-09-09 07:13:33 -0700 | [diff] [blame] | 19 | comment "MSM Board Type" |
| 20 | depends on ARCH_MSM |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 21 | |
Pavel Machek | 6339f66 | 2009-11-02 11:48:29 +0100 | [diff] [blame] | 22 | config MSM_DEBUG_UART |
| 23 | int |
| 24 | default 1 if MSM_DEBUG_UART1 |
| 25 | default 2 if MSM_DEBUG_UART2 |
| 26 | default 3 if MSM_DEBUG_UART3 |
| 27 | |
| 28 | choice |
| 29 | prompt "Debug UART" |
| 30 | |
| 31 | default MSM_DEBUG_UART_NONE |
| 32 | |
| 33 | config MSM_DEBUG_UART_NONE |
| 34 | bool "None" |
| 35 | |
| 36 | config MSM_DEBUG_UART1 |
| 37 | bool "UART1" |
| 38 | |
| 39 | config MSM_DEBUG_UART2 |
| 40 | bool "UART2" |
| 41 | |
| 42 | config MSM_DEBUG_UART3 |
| 43 | bool "UART3" |
| 44 | endchoice |
| 45 | |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 46 | config MACH_HALIBUT |
Daniel Walker | bf83de4 | 2010-03-16 16:29:44 -0700 | [diff] [blame] | 47 | depends on ARCH_MSM7X00A |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 48 | default y |
Brian Swetland | 1637de0 | 2008-09-09 07:13:33 -0700 | [diff] [blame] | 49 | bool "Halibut Board (QCT SURF7201A)" |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 50 | help |
Brian Swetland | 1637de0 | 2008-09-09 07:13:33 -0700 | [diff] [blame] | 51 | Support for the Qualcomm SURF7201A eval board. |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 52 | |
Pavel Machek | 348ee12 | 2009-11-18 19:18:24 +0100 | [diff] [blame] | 53 | config MACH_TROUT |
Daniel Walker | bf83de4 | 2010-03-16 16:29:44 -0700 | [diff] [blame] | 54 | depends on ARCH_MSM7X00A |
Pavel Machek | 348ee12 | 2009-11-18 19:18:24 +0100 | [diff] [blame] | 55 | default y |
| 56 | bool "HTC Dream (aka trout)" |
| 57 | help |
| 58 | Support for the HTC Dream, T-Mobile G1, Android ADP1 devices. |
| 59 | |
Daniel Walker | bf83de4 | 2010-03-16 16:29:44 -0700 | [diff] [blame] | 60 | config MSM_SMD_PKG3 |
| 61 | bool |
| 62 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 63 | config MSM_SMD |
| 64 | default y |
| 65 | bool "MSM Shared Memory Driver (SMD)" |
| 66 | help |
| 67 | Support for the shared memory interface between the apps |
| 68 | processor and the baseband processor. Provides access to |
| 69 | the "shared heap", as well as virtual serial channels |
| 70 | used to communicate with various services on the baseband |
| 71 | processor. |
| 72 | |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 73 | endif |