diff options
author | Sergey Ryazanov <ryazanov.s.a@gmail.com> | 2014-10-28 19:18:43 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-11-24 01:45:27 -0500 |
commit | 1ac91b1f686e9d819b16525baf2e8db3c282edba (patch) | |
tree | 22175fa726fe35b52f562f114a41a5eb80bcb6b6 /arch/mips/ath25/ar5312.c | |
parent | 8aaa7278c0c98a77ec36e1fed7d9bede58164a26 (diff) |
MIPS: ath25: add UART support
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
Cc: Linux MIPS <linux-mips@linux-mips.org>
Patchwork: https://patchwork.linux-mips.org/patch/8242/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/ath25/ar5312.c')
-rw-r--r-- | arch/mips/ath25/ar5312.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/mips/ath25/ar5312.c b/arch/mips/ath25/ar5312.c index b99a02a9e20e..398d4fd4dd2d 100644 --- a/arch/mips/ath25/ar5312.c +++ b/arch/mips/ath25/ar5312.c | |||
@@ -265,3 +265,11 @@ void __init ar5312_plat_mem_setup(void) | |||
265 | 265 | ||
266 | _machine_restart = ar5312_restart; | 266 | _machine_restart = ar5312_restart; |
267 | } | 267 | } |
268 | |||
269 | void __init ar5312_arch_init(void) | ||
270 | { | ||
271 | unsigned irq = irq_create_mapping(ar5312_misc_irq_domain, | ||
272 | AR5312_MISC_IRQ_UART0); | ||
273 | |||
274 | ath25_serial_setup(AR5312_UART0_BASE, irq, ar5312_sys_frequency()); | ||
275 | } | ||