diff options
author | Andrew Victor <linux@maxim.org.za> | 2008-04-02 16:47:29 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-04-04 04:52:21 -0400 |
commit | a3da12229f4f9bee2ed66ac34a54a4e8b74bcbcb (patch) | |
tree | 7d0e06b560ff8b7dee204f4fb2d8c5e40cded821 /arch/arm/mach-at91/board-sam9263ek.c | |
parent | d7a2415f7a48ce4fc16cc769f96d0df818648837 (diff) |
[ARM] 4905/1: [AT91] Atmel SAM9 boards updated to new-style UART initialization
Convert the Atmel SAM9260-EK, SAM9261-EK, SAM9263-EK and SAM9RL-EK
boards to use the new-style UART initialization.
Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
Signed-off-by: Andrew Victor <linux@maxim.org.za>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-at91/board-sam9263ek.c')
-rw-r--r-- | arch/arm/mach-at91/board-sam9263ek.c | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/arch/arm/mach-at91/board-sam9263ek.c b/arch/arm/mach-at91/board-sam9263ek.c index a65bd1654021..86a7fb17096c 100644 --- a/arch/arm/mach-at91/board-sam9263ek.c +++ b/arch/arm/mach-at91/board-sam9263ek.c | |||
@@ -48,24 +48,19 @@ | |||
48 | #include "generic.h" | 48 | #include "generic.h" |
49 | 49 | ||
50 | 50 | ||
51 | /* | ||
52 | * Serial port configuration. | ||
53 | * 0 .. 2 = USART0 .. USART2 | ||
54 | * 3 = DBGU | ||
55 | */ | ||
56 | static struct at91_uart_config __initdata ek_uart_config = { | ||
57 | .console_tty = 0, /* ttyS0 */ | ||
58 | .nr_tty = 2, | ||
59 | .tty_map = { 3, 0, -1, -1, } /* ttyS0, ..., ttyS3 */ | ||
60 | }; | ||
61 | |||
62 | static void __init ek_map_io(void) | 51 | static void __init ek_map_io(void) |
63 | { | 52 | { |
64 | /* Initialize processor: 16.367 MHz crystal */ | 53 | /* Initialize processor: 16.367 MHz crystal */ |
65 | at91sam9263_initialize(16367660); | 54 | at91sam9263_initialize(16367660); |
66 | 55 | ||
67 | /* Setup the serial ports and console */ | 56 | /* DGBU on ttyS0. (Rx & Tx only) */ |
68 | at91_init_serial(&ek_uart_config); | 57 | at91_register_uart(0, 0, 0); |
58 | |||
59 | /* USART0 on ttyS1. (Rx, Tx, RTS, CTS) */ | ||
60 | at91_register_uart(AT91SAM9263_ID_US0, 1, ATMEL_UART_CTS | ATMEL_UART_RTS); | ||
61 | |||
62 | /* set serial console to ttyS0 (ie, DBGU) */ | ||
63 | at91_set_serial_console(0); | ||
69 | } | 64 | } |
70 | 65 | ||
71 | static void __init ek_init_irq(void) | 66 | static void __init ek_init_irq(void) |