Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Blackfin: mach/bfin_serial_5xx.h: punt now-unused header

Now that the serial code has been unified in bfin_serial.h, and the
Blackfin UART driver pushed its resources to the boards files, we
don't need these headers anymore.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

-528
-79
arch/blackfin/mach-bf518/include/mach/bfin_serial_5xx.h
··· 1 - /* 2 - * Copyright 2008-2009 Analog Devices Inc. 3 - * 4 - * Licensed under the GPL-2 or later 5 - */ 6 - 7 - #include <asm/dma.h> 8 - #include <asm/portmux.h> 9 - 10 - #if defined(CONFIG_BFIN_UART0_CTSRTS) || defined(CONFIG_BFIN_UART1_CTSRTS) 11 - # define CONFIG_SERIAL_BFIN_CTSRTS 12 - 13 - # ifndef CONFIG_UART0_CTS_PIN 14 - # define CONFIG_UART0_CTS_PIN -1 15 - # endif 16 - 17 - # ifndef CONFIG_UART0_RTS_PIN 18 - # define CONFIG_UART0_RTS_PIN -1 19 - # endif 20 - 21 - # ifndef CONFIG_UART1_CTS_PIN 22 - # define CONFIG_UART1_CTS_PIN -1 23 - # endif 24 - 25 - # ifndef CONFIG_UART1_RTS_PIN 26 - # define CONFIG_UART1_RTS_PIN -1 27 - # endif 28 - #endif 29 - 30 - struct bfin_serial_res { 31 - unsigned long uart_base_addr; 32 - int uart_irq; 33 - int uart_status_irq; 34 - #ifdef CONFIG_SERIAL_BFIN_DMA 35 - unsigned int uart_tx_dma_channel; 36 - unsigned int uart_rx_dma_channel; 37 - #endif 38 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 39 - int uart_cts_pin; 40 - int uart_rts_pin; 41 - #endif 42 - }; 43 - 44 - struct bfin_serial_res bfin_serial_resource[] = { 45 - #ifdef CONFIG_SERIAL_BFIN_UART0 46 - { 47 - 0xFFC00400, 48 - IRQ_UART0_RX, 49 - IRQ_UART0_ERROR, 50 - #ifdef CONFIG_SERIAL_BFIN_DMA 51 - CH_UART0_TX, 52 - CH_UART0_RX, 53 - #endif 54 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 55 - CONFIG_UART0_CTS_PIN, 56 - CONFIG_UART0_RTS_PIN, 57 - #endif 58 - }, 59 - #endif 60 - #ifdef CONFIG_SERIAL_BFIN_UART1 61 - { 62 - 0xFFC02000, 63 - IRQ_UART1_RX, 64 - IRQ_UART1_ERROR, 65 - #ifdef CONFIG_SERIAL_BFIN_DMA 66 - CH_UART1_TX, 67 - CH_UART1_RX, 68 - #endif 69 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 70 - CONFIG_UART1_CTS_PIN, 71 - CONFIG_UART1_RTS_PIN, 72 - #endif 73 - }, 74 - #endif 75 - }; 76 - 77 - #define DRIVER_NAME "bfin-uart" 78 - 79 - #include <asm/bfin_serial.h>
-79
arch/blackfin/mach-bf527/include/mach/bfin_serial_5xx.h
··· 1 - /* 2 - * Copyright 2007-2009 Analog Devices Inc. 3 - * 4 - * Licensed under the GPL-2 or later 5 - */ 6 - 7 - #include <asm/dma.h> 8 - #include <asm/portmux.h> 9 - 10 - #if defined(CONFIG_BFIN_UART0_CTSRTS) || defined(CONFIG_BFIN_UART1_CTSRTS) 11 - # define CONFIG_SERIAL_BFIN_CTSRTS 12 - 13 - # ifndef CONFIG_UART0_CTS_PIN 14 - # define CONFIG_UART0_CTS_PIN -1 15 - # endif 16 - 17 - # ifndef CONFIG_UART0_RTS_PIN 18 - # define CONFIG_UART0_RTS_PIN -1 19 - # endif 20 - 21 - # ifndef CONFIG_UART1_CTS_PIN 22 - # define CONFIG_UART1_CTS_PIN -1 23 - # endif 24 - 25 - # ifndef CONFIG_UART1_RTS_PIN 26 - # define CONFIG_UART1_RTS_PIN -1 27 - # endif 28 - #endif 29 - 30 - struct bfin_serial_res { 31 - unsigned long uart_base_addr; 32 - int uart_irq; 33 - int uart_status_irq; 34 - #ifdef CONFIG_SERIAL_BFIN_DMA 35 - unsigned int uart_tx_dma_channel; 36 - unsigned int uart_rx_dma_channel; 37 - #endif 38 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 39 - int uart_cts_pin; 40 - int uart_rts_pin; 41 - #endif 42 - }; 43 - 44 - struct bfin_serial_res bfin_serial_resource[] = { 45 - #ifdef CONFIG_SERIAL_BFIN_UART0 46 - { 47 - 0xFFC00400, 48 - IRQ_UART0_RX, 49 - IRQ_UART0_ERROR, 50 - #ifdef CONFIG_SERIAL_BFIN_DMA 51 - CH_UART0_TX, 52 - CH_UART0_RX, 53 - #endif 54 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 55 - CONFIG_UART0_CTS_PIN, 56 - CONFIG_UART0_RTS_PIN, 57 - #endif 58 - }, 59 - #endif 60 - #ifdef CONFIG_SERIAL_BFIN_UART1 61 - { 62 - 0xFFC02000, 63 - IRQ_UART1_RX, 64 - IRQ_UART1_ERROR, 65 - #ifdef CONFIG_SERIAL_BFIN_DMA 66 - CH_UART1_TX, 67 - CH_UART1_RX, 68 - #endif 69 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 70 - CONFIG_UART1_CTS_PIN, 71 - CONFIG_UART1_RTS_PIN, 72 - #endif 73 - }, 74 - #endif 75 - }; 76 - 77 - #define DRIVER_NAME "bfin-uart" 78 - 79 - #include <asm/bfin_serial.h>
-52
arch/blackfin/mach-bf533/include/mach/bfin_serial_5xx.h
··· 1 - /* 2 - * Copyright 2006-2009 Analog Devices Inc. 3 - * 4 - * Licensed under the GPL-2 or later 5 - */ 6 - 7 - #include <asm/dma.h> 8 - #include <asm/portmux.h> 9 - 10 - #ifdef CONFIG_BFIN_UART0_CTSRTS 11 - # define CONFIG_SERIAL_BFIN_CTSRTS 12 - # ifndef CONFIG_UART0_CTS_PIN 13 - # define CONFIG_UART0_CTS_PIN -1 14 - # endif 15 - # ifndef CONFIG_UART0_RTS_PIN 16 - # define CONFIG_UART0_RTS_PIN -1 17 - # endif 18 - #endif 19 - 20 - struct bfin_serial_res { 21 - unsigned long uart_base_addr; 22 - int uart_irq; 23 - int uart_status_irq; 24 - #ifdef CONFIG_SERIAL_BFIN_DMA 25 - unsigned int uart_tx_dma_channel; 26 - unsigned int uart_rx_dma_channel; 27 - #endif 28 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 29 - int uart_cts_pin; 30 - int uart_rts_pin; 31 - #endif 32 - }; 33 - 34 - struct bfin_serial_res bfin_serial_resource[] = { 35 - { 36 - 0xFFC00400, 37 - IRQ_UART0_RX, 38 - IRQ_UART0_ERROR, 39 - #ifdef CONFIG_SERIAL_BFIN_DMA 40 - CH_UART0_TX, 41 - CH_UART0_RX, 42 - #endif 43 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 44 - CONFIG_UART0_CTS_PIN, 45 - CONFIG_UART0_RTS_PIN, 46 - #endif 47 - } 48 - }; 49 - 50 - #define DRIVER_NAME "bfin-uart" 51 - 52 - #include <asm/bfin_serial.h>
-79
arch/blackfin/mach-bf537/include/mach/bfin_serial_5xx.h
··· 1 - /* 2 - * Copyright 2006-2009 Analog Devices Inc. 3 - * 4 - * Licensed under the GPL-2 or later 5 - */ 6 - 7 - #include <asm/dma.h> 8 - #include <asm/portmux.h> 9 - 10 - #if defined(CONFIG_BFIN_UART0_CTSRTS) || defined(CONFIG_BFIN_UART1_CTSRTS) 11 - # define CONFIG_SERIAL_BFIN_CTSRTS 12 - 13 - # ifndef CONFIG_UART0_CTS_PIN 14 - # define CONFIG_UART0_CTS_PIN -1 15 - # endif 16 - 17 - # ifndef CONFIG_UART0_RTS_PIN 18 - # define CONFIG_UART0_RTS_PIN -1 19 - # endif 20 - 21 - # ifndef CONFIG_UART1_CTS_PIN 22 - # define CONFIG_UART1_CTS_PIN -1 23 - # endif 24 - 25 - # ifndef CONFIG_UART1_RTS_PIN 26 - # define CONFIG_UART1_RTS_PIN -1 27 - # endif 28 - #endif 29 - 30 - struct bfin_serial_res { 31 - unsigned long uart_base_addr; 32 - int uart_irq; 33 - int uart_status_irq; 34 - #ifdef CONFIG_SERIAL_BFIN_DMA 35 - unsigned int uart_tx_dma_channel; 36 - unsigned int uart_rx_dma_channel; 37 - #endif 38 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 39 - int uart_cts_pin; 40 - int uart_rts_pin; 41 - #endif 42 - }; 43 - 44 - struct bfin_serial_res bfin_serial_resource[] = { 45 - #ifdef CONFIG_SERIAL_BFIN_UART0 46 - { 47 - 0xFFC00400, 48 - IRQ_UART0_RX, 49 - IRQ_UART0_ERROR, 50 - #ifdef CONFIG_SERIAL_BFIN_DMA 51 - CH_UART0_TX, 52 - CH_UART0_RX, 53 - #endif 54 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 55 - CONFIG_UART0_CTS_PIN, 56 - CONFIG_UART0_RTS_PIN, 57 - #endif 58 - }, 59 - #endif 60 - #ifdef CONFIG_SERIAL_BFIN_UART1 61 - { 62 - 0xFFC02000, 63 - IRQ_UART1_RX, 64 - IRQ_UART1_ERROR, 65 - #ifdef CONFIG_SERIAL_BFIN_DMA 66 - CH_UART1_TX, 67 - CH_UART1_RX, 68 - #endif 69 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 70 - CONFIG_UART1_CTS_PIN, 71 - CONFIG_UART1_RTS_PIN, 72 - #endif 73 - }, 74 - #endif 75 - }; 76 - 77 - #define DRIVER_NAME "bfin-uart" 78 - 79 - #include <asm/bfin_serial.h>
-93
arch/blackfin/mach-bf538/include/mach/bfin_serial_5xx.h
··· 1 - /* 2 - * Copyright 2008-2009 Analog Devices Inc. 3 - * 4 - * Licensed under the GPL-2 or later. 5 - */ 6 - 7 - #include <asm/dma.h> 8 - #include <asm/portmux.h> 9 - 10 - #if defined(CONFIG_BFIN_UART0_CTSRTS) || defined(CONFIG_BFIN_UART1_CTSRTS) 11 - # define CONFIG_SERIAL_BFIN_CTSRTS 12 - 13 - # ifndef CONFIG_UART0_CTS_PIN 14 - # define CONFIG_UART0_CTS_PIN -1 15 - # endif 16 - 17 - # ifndef CONFIG_UART0_RTS_PIN 18 - # define CONFIG_UART0_RTS_PIN -1 19 - # endif 20 - 21 - # ifndef CONFIG_UART1_CTS_PIN 22 - # define CONFIG_UART1_CTS_PIN -1 23 - # endif 24 - 25 - # ifndef CONFIG_UART1_RTS_PIN 26 - # define CONFIG_UART1_RTS_PIN -1 27 - # endif 28 - #endif 29 - 30 - struct bfin_serial_res { 31 - unsigned long uart_base_addr; 32 - int uart_irq; 33 - int uart_status_irq; 34 - #ifdef CONFIG_SERIAL_BFIN_DMA 35 - unsigned int uart_tx_dma_channel; 36 - unsigned int uart_rx_dma_channel; 37 - #endif 38 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 39 - int uart_cts_pin; 40 - int uart_rts_pin; 41 - #endif 42 - }; 43 - 44 - struct bfin_serial_res bfin_serial_resource[] = { 45 - #ifdef CONFIG_SERIAL_BFIN_UART0 46 - { 47 - 0xFFC00400, 48 - IRQ_UART0_RX, 49 - IRQ_UART0_ERROR, 50 - #ifdef CONFIG_SERIAL_BFIN_DMA 51 - CH_UART0_TX, 52 - CH_UART0_RX, 53 - #endif 54 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 55 - CONFIG_UART0_CTS_PIN, 56 - CONFIG_UART0_RTS_PIN, 57 - #endif 58 - }, 59 - #endif 60 - #ifdef CONFIG_SERIAL_BFIN_UART1 61 - { 62 - 0xFFC02000, 63 - IRQ_UART1_RX, 64 - IRQ_UART1_ERROR, 65 - #ifdef CONFIG_SERIAL_BFIN_DMA 66 - CH_UART1_TX, 67 - CH_UART1_RX, 68 - #endif 69 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 70 - CONFIG_UART1_CTS_PIN, 71 - CONFIG_UART1_RTS_PIN, 72 - #endif 73 - }, 74 - #endif 75 - #ifdef CONFIG_SERIAL_BFIN_UART2 76 - { 77 - 0xFFC02100, 78 - IRQ_UART2_RX, 79 - #ifdef CONFIG_SERIAL_BFIN_DMA 80 - CH_UART2_TX, 81 - CH_UART2_RX, 82 - #endif 83 - #ifdef CONFIG_BFIN_UART2_CTSRTS 84 - CONFIG_UART2_CTS_PIN, 85 - CONFIG_UART2_RTS_PIN, 86 - #endif 87 - }, 88 - #endif 89 - }; 90 - 91 - #define DRIVER_NAME "bfin-uart" 92 - 93 - #include <asm/bfin_serial.h>
-94
arch/blackfin/mach-bf548/include/mach/bfin_serial_5xx.h
··· 1 - /* 2 - * Copyright 2007-2009 Analog Devices Inc. 3 - * 4 - * Licensed under the GPL-2 or later. 5 - */ 6 - 7 - #include <asm/dma.h> 8 - #include <asm/portmux.h> 9 - 10 - #if defined(CONFIG_BFIN_UART0_CTSRTS) || defined(CONFIG_BFIN_UART1_CTSRTS) || \ 11 - defined(CONFIG_BFIN_UART2_CTSRTS) || defined(CONFIG_BFIN_UART3_CTSRTS) 12 - # define CONFIG_SERIAL_BFIN_HARD_CTSRTS 13 - #endif 14 - 15 - struct bfin_serial_res { 16 - unsigned long uart_base_addr; 17 - int uart_irq; 18 - int uart_status_irq; 19 - #ifdef CONFIG_SERIAL_BFIN_DMA 20 - unsigned int uart_tx_dma_channel; 21 - unsigned int uart_rx_dma_channel; 22 - #endif 23 - #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS 24 - int uart_cts_pin; 25 - int uart_rts_pin; 26 - #endif 27 - }; 28 - 29 - struct bfin_serial_res bfin_serial_resource[] = { 30 - #ifdef CONFIG_SERIAL_BFIN_UART0 31 - { 32 - 0xFFC00400, 33 - IRQ_UART0_RX, 34 - IRQ_UART0_ERROR, 35 - #ifdef CONFIG_SERIAL_BFIN_DMA 36 - CH_UART0_TX, 37 - CH_UART0_RX, 38 - #endif 39 - #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS 40 - 0, 41 - 0, 42 - #endif 43 - }, 44 - #endif 45 - #ifdef CONFIG_SERIAL_BFIN_UART1 46 - { 47 - 0xFFC02000, 48 - IRQ_UART1_RX, 49 - IRQ_UART1_ERROR, 50 - #ifdef CONFIG_SERIAL_BFIN_DMA 51 - CH_UART1_TX, 52 - CH_UART1_RX, 53 - #endif 54 - #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS 55 - GPIO_PE10, 56 - GPIO_PE9, 57 - #endif 58 - }, 59 - #endif 60 - #ifdef CONFIG_SERIAL_BFIN_UART2 61 - { 62 - 0xFFC02100, 63 - IRQ_UART2_RX, 64 - IRQ_UART2_ERROR, 65 - #ifdef CONFIG_SERIAL_BFIN_DMA 66 - CH_UART2_TX, 67 - CH_UART2_RX, 68 - #endif 69 - #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS 70 - 0, 71 - 0, 72 - #endif 73 - }, 74 - #endif 75 - #ifdef CONFIG_SERIAL_BFIN_UART3 76 - { 77 - 0xFFC03100, 78 - IRQ_UART3_RX, 79 - IRQ_UART3_ERROR, 80 - #ifdef CONFIG_SERIAL_BFIN_DMA 81 - CH_UART3_TX, 82 - CH_UART3_RX, 83 - #endif 84 - #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS 85 - GPIO_PB3, 86 - GPIO_PB2, 87 - #endif 88 - }, 89 - #endif 90 - }; 91 - 92 - #define DRIVER_NAME "bfin-uart" 93 - 94 - #include <asm/bfin_serial.h>
-52
arch/blackfin/mach-bf561/include/mach/bfin_serial_5xx.h
··· 1 - /* 2 - * Copyright 2006-2009 Analog Devices Inc. 3 - * 4 - * Licensed under the GPL-2 or later. 5 - */ 6 - 7 - #include <asm/dma.h> 8 - #include <asm/portmux.h> 9 - 10 - #ifdef CONFIG_BFIN_UART0_CTSRTS 11 - # define CONFIG_SERIAL_BFIN_CTSRTS 12 - # ifndef CONFIG_UART0_CTS_PIN 13 - # define CONFIG_UART0_CTS_PIN -1 14 - # endif 15 - # ifndef CONFIG_UART0_RTS_PIN 16 - # define CONFIG_UART0_RTS_PIN -1 17 - # endif 18 - #endif 19 - 20 - struct bfin_serial_res { 21 - unsigned long uart_base_addr; 22 - int uart_irq; 23 - int uart_status_irq; 24 - #ifdef CONFIG_SERIAL_BFIN_DMA 25 - unsigned int uart_tx_dma_channel; 26 - unsigned int uart_rx_dma_channel; 27 - #endif 28 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 29 - int uart_cts_pin; 30 - int uart_rts_pin; 31 - #endif 32 - }; 33 - 34 - struct bfin_serial_res bfin_serial_resource[] = { 35 - { 36 - 0xFFC00400, 37 - IRQ_UART_RX, 38 - IRQ_UART_ERROR, 39 - #ifdef CONFIG_SERIAL_BFIN_DMA 40 - CH_UART_TX, 41 - CH_UART_RX, 42 - #endif 43 - #ifdef CONFIG_SERIAL_BFIN_CTSRTS 44 - CONFIG_UART0_CTS_PIN, 45 - CONFIG_UART0_RTS_PIN, 46 - #endif 47 - } 48 - }; 49 - 50 - #define DRIVER_NAME "bfin-uart" 51 - 52 - #include <asm/bfin_serial.h>