Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. if ARCH_MSM
  2. choice
  3. prompt "Qualcomm MSM SoC Type"
  4. default ARCH_MSM7X00A
  5. config ARCH_MSM7X00A
  6. bool "MSM7x00A / MSM7x01A"
  7. select ARCH_MSM_ARM11
  8. select MSM_SMD_PKG3
  9. select CPU_V6
  10. endchoice
  11. config ARCH_MSM_ARM11
  12. bool
  13. comment "MSM Board Type"
  14. depends on ARCH_MSM
  15. config MSM_DEBUG_UART
  16. int
  17. default 1 if MSM_DEBUG_UART1
  18. default 2 if MSM_DEBUG_UART2
  19. default 3 if MSM_DEBUG_UART3
  20. choice
  21. prompt "Debug UART"
  22. default MSM_DEBUG_UART_NONE
  23. config MSM_DEBUG_UART_NONE
  24. bool "None"
  25. config MSM_DEBUG_UART1
  26. bool "UART1"
  27. config MSM_DEBUG_UART2
  28. bool "UART2"
  29. config MSM_DEBUG_UART3
  30. bool "UART3"
  31. endchoice
  32. config MACH_HALIBUT
  33. depends on ARCH_MSM7X00A
  34. default y
  35. bool "Halibut Board (QCT SURF7201A)"
  36. help
  37. Support for the Qualcomm SURF7201A eval board.
  38. config MACH_TROUT
  39. depends on ARCH_MSM7X00A
  40. default y
  41. bool "HTC Dream (aka trout)"
  42. help
  43. Support for the HTC Dream, T-Mobile G1, Android ADP1 devices.
  44. config MSM_SMD_PKG3
  45. bool
  46. config MSM_SMD
  47. default y
  48. bool "MSM Shared Memory Driver (SMD)"
  49. help
  50. Support for the shared memory interface between the apps
  51. processor and the baseband processor. Provides access to
  52. the "shared heap", as well as virtual serial channels
  53. used to communicate with various services on the baseband
  54. processor.
  55. endif