Kconfig 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. if (BF52x)
  2. source "arch/blackfin/mach-bf527/boards/Kconfig"
  3. menu "BF527 Specific Configuration"
  4. comment "Alternative Multiplexing Scheme"
  5. choice
  6. prompt "SPORT0"
  7. default BF527_SPORT0_PORTG
  8. help
  9. Select PORT used for SPORT0. See Hardware Reference Manual
  10. config BF527_SPORT0_PORTF
  11. bool "PORT F"
  12. help
  13. PORT F
  14. config BF527_SPORT0_PORTG
  15. bool "PORT G"
  16. help
  17. PORT G
  18. endchoice
  19. choice
  20. prompt "SPORT0 TSCLK Location"
  21. depends on BF527_SPORT0_PORTG
  22. default BF527_SPORT0_TSCLK_PG10
  23. help
  24. Select PIN used for SPORT0_TSCLK. See Hardware Reference Manual
  25. config BF527_SPORT0_TSCLK_PG10
  26. bool "PORT PG10"
  27. help
  28. PORT PG10
  29. config BF527_SPORT0_TSCLK_PG14
  30. bool "PORT PG14"
  31. help
  32. PORT PG14
  33. endchoice
  34. choice
  35. prompt "UART1"
  36. default BF527_UART1_PORTF
  37. help
  38. Select PORT used for UART1. See Hardware Reference Manual
  39. config BF527_UART1_PORTF
  40. bool "PORT F"
  41. help
  42. PORT F
  43. config BF527_UART1_PORTG
  44. bool "PORT G"
  45. help
  46. PORT G
  47. endchoice
  48. choice
  49. prompt "NAND (NFC) Data"
  50. default BF527_NAND_D_PORTH
  51. help
  52. Select PORT used for NAND Data Bus. See Hardware Reference Manual
  53. config BF527_NAND_D_PORTF
  54. bool "PORT F"
  55. help
  56. PORT F
  57. config BF527_NAND_D_PORTH
  58. bool "PORT H"
  59. help
  60. PORT H
  61. endchoice
  62. comment "Interrupt Priority Assignment"
  63. menu "Priority"
  64. config IRQ_PLL_WAKEUP
  65. int "IRQ_PLL_WAKEUP"
  66. default 7
  67. config IRQ_DMA0_ERROR
  68. int "IRQ_DMA0_ERROR"
  69. default 7
  70. config IRQ_DMAR0_BLK
  71. int "IRQ_DMAR0_BLK"
  72. default 7
  73. config IRQ_DMAR1_BLK
  74. int "IRQ_DMAR1_BLK"
  75. default 7
  76. config IRQ_DMAR0_OVR
  77. int "IRQ_DMAR0_OVR"
  78. default 7
  79. config IRQ_DMAR1_OVR
  80. int "IRQ_DMAR1_OVR"
  81. default 7
  82. config IRQ_PPI_ERROR
  83. int "IRQ_PPI_ERROR"
  84. default 7
  85. config IRQ_MAC_ERROR
  86. int "IRQ_MAC_ERROR"
  87. default 7
  88. config IRQ_SPORT0_ERROR
  89. int "IRQ_SPORT0_ERROR"
  90. default 7
  91. config IRQ_SPORT1_ERROR
  92. int "IRQ_SPORT1_ERROR"
  93. default 7
  94. config IRQ_UART0_ERROR
  95. int "IRQ_UART0_ERROR"
  96. default 7
  97. config IRQ_UART1_ERROR
  98. int "IRQ_UART1_ERROR"
  99. default 7
  100. config IRQ_RTC
  101. int "IRQ_RTC"
  102. default 8
  103. config IRQ_PPI
  104. int "IRQ_PPI"
  105. default 8
  106. config IRQ_SPORT0_RX
  107. int "IRQ_SPORT0_RX"
  108. default 9
  109. config IRQ_SPORT0_TX
  110. int "IRQ_SPORT0_TX"
  111. default 9
  112. config IRQ_SPORT1_RX
  113. int "IRQ_SPORT1_RX"
  114. default 9
  115. config IRQ_SPORT1_TX
  116. int "IRQ_SPORT1_TX"
  117. default 9
  118. config IRQ_TWI
  119. int "IRQ_TWI"
  120. default 10
  121. config IRQ_SPI
  122. int "IRQ_SPI"
  123. default 10
  124. config IRQ_UART0_RX
  125. int "IRQ_UART0_RX"
  126. default 10
  127. config IRQ_UART0_TX
  128. int "IRQ_UART0_TX"
  129. default 10
  130. config IRQ_UART1_RX
  131. int "IRQ_UART1_RX"
  132. default 10
  133. config IRQ_UART1_TX
  134. int "IRQ_UART1_TX"
  135. default 10
  136. config IRQ_OPTSEC
  137. int "IRQ_OPTSEC"
  138. default 11
  139. config IRQ_CNT
  140. int "IRQ_CNT"
  141. default 11
  142. config IRQ_MAC_RX
  143. int "IRQ_MAC_RX"
  144. default 11
  145. config IRQ_PORTH_INTA
  146. int "IRQ_PORTH_INTA"
  147. default 11
  148. config IRQ_MAC_TX
  149. int "IRQ_MAC_TX/NFC"
  150. default 11
  151. config IRQ_PORTH_INTB
  152. int "IRQ_PORTH_INTB"
  153. default 11
  154. config IRQ_TMR0
  155. int "IRQ_TMR0"
  156. default 12
  157. config IRQ_TMR1
  158. int "IRQ_TMR1"
  159. default 12
  160. config IRQ_TMR2
  161. int "IRQ_TMR2"
  162. default 12
  163. config IRQ_TMR3
  164. int "IRQ_TMR3"
  165. default 12
  166. config IRQ_TMR4
  167. int "IRQ_TMR4"
  168. default 12
  169. config IRQ_TMR5
  170. int "IRQ_TMR5"
  171. default 12
  172. config IRQ_TMR6
  173. int "IRQ_TMR6"
  174. default 12
  175. config IRQ_TMR7
  176. int "IRQ_TMR7"
  177. default 12
  178. config IRQ_PORTG_INTA
  179. int "IRQ_PORTG_INTA"
  180. default 12
  181. config IRQ_PORTG_INTB
  182. int "IRQ_PORTG_INTB"
  183. default 12
  184. config IRQ_MEM_DMA0
  185. int "IRQ_MEM_DMA0"
  186. default 13
  187. config IRQ_MEM_DMA1
  188. int "IRQ_MEM_DMA1"
  189. default 13
  190. config IRQ_WATCH
  191. int "IRQ_WATCH"
  192. default 13
  193. config IRQ_PORTF_INTA
  194. int "IRQ_PORTF_INTA"
  195. default 13
  196. config IRQ_PORTF_INTB
  197. int "IRQ_PORTF_INTB"
  198. default 13
  199. config IRQ_SPI_ERROR
  200. int "IRQ_SPI_ERROR"
  201. default 7
  202. config IRQ_NFC_ERROR
  203. int "IRQ_NFC_ERROR"
  204. default 7
  205. config IRQ_HDMA_ERROR
  206. int "IRQ_HDMA_ERROR"
  207. default 7
  208. config IRQ_HDMA
  209. int "IRQ_HDMA"
  210. default 7
  211. config IRQ_USB_EINT
  212. int "IRQ_USB_EINT"
  213. default 10
  214. config IRQ_USB_INT0
  215. int "IRQ_USB_INT0"
  216. default 10
  217. config IRQ_USB_INT1
  218. int "IRQ_USB_INT1"
  219. default 10
  220. config IRQ_USB_INT2
  221. int "IRQ_USB_INT2"
  222. default 10
  223. config IRQ_USB_DMA
  224. int "IRQ_USB_DMA"
  225. default 10
  226. help
  227. Enter the priority numbers between 7-13 ONLY. Others are Reserved.
  228. This applies to all the above. It is not recommended to assign the
  229. highest priority number 7 to UART or any other device.
  230. endmenu
  231. endmenu
  232. endif