Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. if (BF533 || BF532 || BF531)
  2. source "arch/blackfin/mach-bf533/boards/Kconfig"
  3. menu "BF533/2/1 Specific Configuration"
  4. comment "Interrupt Priority Assignment"
  5. menu "Priority"
  6. config UART_ERROR
  7. int "UART ERROR"
  8. default 7
  9. config SPORT0_ERROR
  10. int "SPORT0 ERROR"
  11. default 7
  12. config SPI_ERROR
  13. int "SPI ERROR"
  14. default 7
  15. config SPORT1_ERROR
  16. int "SPORT1 ERROR"
  17. default 7
  18. config PPI_ERROR
  19. int "PPI ERROR"
  20. default 7
  21. config DMA_ERROR
  22. int "DMA ERROR"
  23. default 7
  24. config PLLWAKE_ERROR
  25. int "PLL WAKEUP ERROR"
  26. default 7
  27. config RTC_ERROR
  28. int "RTC ERROR"
  29. default 8
  30. config DMA0_PPI
  31. int "DMA0 PPI"
  32. default 8
  33. config DMA1_SPORT0RX
  34. int "DMA1 (SPORT0 RX)"
  35. default 9
  36. config DMA2_SPORT0TX
  37. int "DMA2 (SPORT0 TX)"
  38. default 9
  39. config DMA3_SPORT1RX
  40. int "DMA3 (SPORT1 RX)"
  41. default 9
  42. config DMA4_SPORT1TX
  43. int "DMA4 (SPORT1 TX)"
  44. default 9
  45. config DMA5_SPI
  46. int "DMA5 (SPI)"
  47. default 10
  48. config DMA6_UARTRX
  49. int "DMA6 (UART0 RX)"
  50. default 10
  51. config DMA7_UARTTX
  52. int "DMA7 (UART0 TX)"
  53. default 10
  54. config TIMER0
  55. int "TIMER0"
  56. default 11
  57. config TIMER1
  58. int "TIMER1"
  59. default 11
  60. config TIMER2
  61. int "TIMER2"
  62. default 11
  63. config PFA
  64. int "PF Interrupt A"
  65. default 12
  66. config PFB
  67. int "PF Interrupt B"
  68. default 12
  69. config MEMDMA0
  70. int "MEMORY DMA0"
  71. default 13
  72. config MEMDMA1
  73. int "MEMORY DMA1"
  74. default 13
  75. config WDTIMER
  76. int "WATCH DOG TIMER"
  77. default 13
  78. help
  79. Enter the priority numbers between 7-13 ONLY. Others are Reserved.
  80. This applies to all the above. It is not recommended to assign the
  81. highest priority number 7 to UART or any other device.
  82. endmenu
  83. endmenu
  84. endif