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

