Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 7 if TICKSOURCE_GPTMR0
  57. default 8
  58. config TIMER1
  59. int "TIMER1"
  60. default 11
  61. config TIMER2
  62. int "TIMER2"
  63. default 11
  64. config PFA
  65. int "PF Interrupt A"
  66. default 12
  67. config PFB
  68. int "PF Interrupt B"
  69. default 12
  70. config MEMDMA0
  71. int "MEMORY DMA0"
  72. default 13
  73. config MEMDMA1
  74. int "MEMORY DMA1"
  75. default 13
  76. config WDTIMER
  77. int "WATCH DOG TIMER"
  78. default 13
  79. help
  80. Enter the priority numbers between 7-13 ONLY. Others are Reserved.
  81. This applies to all the above. It is not recommended to assign the
  82. highest priority number 7 to UART or any other device.
  83. endmenu
  84. endmenu
  85. endif