[Blackfin] arch: Enable UART2 and UART3 for bf548

Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>

authored by Sonic Zhang and committed by Bryan Wu 8b01eaff 83d9cde0

+22
+10
arch/blackfin/kernel/bfin_dma_5xx.c
··· 104 104 105 105 mutex_unlock(&(dma_ch[channel].dmalock)); 106 106 107 + #ifdef CONFIG_BF54x 108 + if (channel >= CH_UART2_RX && channel <= CH_UART3_TX && 109 + strncmp(device_id, "BFIN_UART", 9) == 0) 110 + dma_ch[channel].regs->peripheral_map |= 111 + (channel - CH_UART2_RX + 0xC); 112 + else 113 + dma_ch[channel].regs->peripheral_map |= 114 + (channel - CH_UART2_RX + 0x6); 115 + #endif 116 + 107 117 dma_ch[channel].device_id = device_id; 108 118 dma_ch[channel].irq_callback = NULL; 109 119
+4
include/asm-blackfin/mach-bf548/dma.h
··· 51 51 #define CH_PIXC_OVERLAY 16 52 52 #define CH_PIXC_OUTPUT 17 53 53 #define CH_SPORT2_RX 18 54 + #define CH_UART2_RX 18 54 55 #define CH_SPORT2_TX 19 56 + #define CH_UART2_TX 19 55 57 #define CH_SPORT3_RX 20 58 + #define CH_UART3_RX 20 56 59 #define CH_SPORT3_TX 21 60 + #define CH_UART3_TX 21 57 61 #define CH_SDH 22 58 62 #define CH_NFC 22 59 63 #define CH_SPI2 23
+8
include/asm-blackfin/mach-bf548/irq.h
··· 99 99 #define IRQ_UART2_ERROR BFIN_IRQ(31) /* UART2 Status (Error) Interrupt */ 100 100 #define IRQ_CAN0_ERROR BFIN_IRQ(32) /* CAN0 Status (Error) Interrupt */ 101 101 #define IRQ_SPORT2_RX BFIN_IRQ(33) /* SPORT2 RX (DMA18) Interrupt */ 102 + #define IRQ_UART2_RX BFIN_IRQ(33) /* UART2 RX (DMA18) Interrupt */ 102 103 #define IRQ_SPORT2_TX BFIN_IRQ(34) /* SPORT2 TX (DMA19) Interrupt */ 104 + #define IRQ_UART2_TX BFIN_IRQ(34) /* UART2 TX (DMA19) Interrupt */ 103 105 #define IRQ_SPORT3_RX BFIN_IRQ(35) /* SPORT3 RX (DMA20) Interrupt */ 106 + #define IRQ_UART3_RX BFIN_IRQ(35) /* UART3 RX (DMA20) Interrupt */ 104 107 #define IRQ_SPORT3_TX BFIN_IRQ(36) /* SPORT3 TX (DMA21) Interrupt */ 108 + #define IRQ_UART3_TX BFIN_IRQ(36) /* UART3 TX (DMA21) Interrupt */ 105 109 #define IRQ_EPPI1 BFIN_IRQ(37) /* EPP1 (DMA13) Interrupt */ 106 110 #define IRQ_EPPI2 BFIN_IRQ(38) /* EPP2 (DMA14) Interrupt */ 107 111 #define IRQ_SPI1 BFIN_IRQ(39) /* SPI1 (DMA5) Interrupt */ ··· 425 421 /* IAR4 BIT FILEDS */ 426 422 #define IRQ_CAN0_ERR_POS 0 427 423 #define IRQ_SPORT2_RX_POS 4 424 + #define IRQ_UART2_RX_POS 4 428 425 #define IRQ_SPORT2_TX_POS 8 426 + #define IRQ_UART2_TX_POS 8 429 427 #define IRQ_SPORT3_RX_POS 12 428 + #define IRQ_UART3_RX_POS 12 430 429 #define IRQ_SPORT3_TX_POS 16 430 + #define IRQ_UART3_TX_POS 16 431 431 #define IRQ_EPPI1_POS 20 432 432 #define IRQ_EPPI2_POS 24 433 433 #define IRQ_SPI1_POS 28