diff options
Diffstat (limited to 'arch/arm/mach-omap2/serial.c')
-rw-r--r-- | arch/arm/mach-omap2/serial.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index dd3c735b5588..645546cbd265 100644 --- a/arch/arm/mach-omap2/serial.c +++ b/arch/arm/mach-omap2/serial.c | |||
@@ -113,6 +113,21 @@ static struct plat_serial8250_port serial_platform_data2[] = { | |||
113 | } | 113 | } |
114 | }; | 114 | }; |
115 | 115 | ||
116 | #ifdef CONFIG_ARCH_OMAP4 | ||
117 | static struct plat_serial8250_port serial_platform_data3[] = { | ||
118 | { | ||
119 | .membase = IO_ADDRESS(OMAP_UART4_BASE), | ||
120 | .mapbase = OMAP_UART4_BASE, | ||
121 | .irq = 70, | ||
122 | .flags = UPF_BOOT_AUTOCONF, | ||
123 | .iotype = UPIO_MEM, | ||
124 | .regshift = 2, | ||
125 | .uartclk = OMAP24XX_BASE_BAUD * 16, | ||
126 | }, { | ||
127 | .flags = 0 | ||
128 | } | ||
129 | }; | ||
130 | #endif | ||
116 | static inline unsigned int serial_read_reg(struct plat_serial8250_port *up, | 131 | static inline unsigned int serial_read_reg(struct plat_serial8250_port *up, |
117 | int offset) | 132 | int offset) |
118 | { | 133 | { |
@@ -550,6 +565,17 @@ static struct omap_uart_state omap_uart[OMAP_MAX_NR_PORTS] = { | |||
550 | }, | 565 | }, |
551 | }, | 566 | }, |
552 | }, | 567 | }, |
568 | #ifdef CONFIG_ARCH_OMAP4 | ||
569 | { | ||
570 | .pdev = { | ||
571 | .name = "serial8250", | ||
572 | .id = 3 | ||
573 | .dev = { | ||
574 | .platform_data = serial_platform_data3, | ||
575 | }, | ||
576 | }, | ||
577 | }, | ||
578 | #endif | ||
553 | }; | 579 | }; |
554 | 580 | ||
555 | void __init omap_serial_init(void) | 581 | void __init omap_serial_init(void) |