forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sergey Ryazanov <[email protected]> Cc: Linux MIPS <[email protected]> Patchwork: https://patchwork.linux-mips.org/patch/8242/ Signed-off-by: Ralf Baechle <[email protected]>
- Loading branch information
1 parent
8aaa727
commit 1ac91b1
Showing
6 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,41 @@ | ||
#include <linux/kernel.h> | ||
#include <linux/init.h> | ||
#include <linux/serial_8250.h> | ||
#include <asm/bootinfo.h> | ||
|
||
#include "devices.h" | ||
#include "ar5312.h" | ||
#include "ar2315.h" | ||
|
||
const char *get_system_type(void) | ||
{ | ||
return "Atheros (unknown)"; | ||
} | ||
|
||
void __init ath25_serial_setup(u32 mapbase, int irq, unsigned int uartclk) | ||
{ | ||
struct uart_port s; | ||
|
||
memset(&s, 0, sizeof(s)); | ||
|
||
s.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP; | ||
s.iotype = UPIO_MEM32; | ||
s.irq = irq; | ||
s.regshift = 2; | ||
s.mapbase = mapbase; | ||
s.uartclk = uartclk; | ||
|
||
early_serial_setup(&s); | ||
} | ||
|
||
static int __init ath25_arch_init(void) | ||
{ | ||
if (is_ar5312()) | ||
ar5312_arch_init(); | ||
else | ||
ar2315_arch_init(); | ||
|
||
return 0; | ||
} | ||
|
||
arch_initcall(ath25_arch_init); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters