projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91f8c2d
)
pch_uart: Add uart_clk selection for the MinnowBoard
author
Darren Hart
<
[email protected]
>
Wed, 26 Jun 2013 01:53:22 +0000
(18:53 -0700)
committer
Greg Kroah-Hartman
<
[email protected]
>
Wed, 26 Jun 2013 04:24:11 +0000
(21:24 -0700)
Use DMI_BOARD_NAME to determine if we are running on a MinnowBoard and
set the uart clock to 50MHz if so. This removes the need to pass the
user_uartclk to the kernel at boot time.
Signed-off-by: Darren Hart <
[email protected]
>
Cc: Jiri Slaby <
[email protected]
>
Cc: "H. Peter Anvin" <
[email protected]
>
Cc: Peter Waskiewicz <
[email protected]
>
Cc: Andy Shevchenko <
[email protected]
>
Cc: stable <
[email protected]
>
Signed-off-by: Greg Kroah-Hartman <
[email protected]
>
drivers/tty/serial/pch_uart.c
patch
|
blob
|
history
diff --git
a/drivers/tty/serial/pch_uart.c
b/drivers/tty/serial/pch_uart.c
index 21a7e179edf36a2ef476553159000e7eef81c913..572d48189de910c632ed12e93b4f603bceb55172 100644
(file)
--- a/
drivers/tty/serial/pch_uart.c
+++ b/
drivers/tty/serial/pch_uart.c
@@
-217,6
+217,7
@@
enum {
#define FRI2_64_UARTCLK 64000000 /* 64.0000 MHz */
#define FRI2_48_UARTCLK 48000000 /* 48.0000 MHz */
#define NTC1_UARTCLK 64000000 /* 64.0000 MHz */
+#define MINNOW_UARTCLK 50000000 /* 50.0000 MHz */
struct pch_uart_buffer {
unsigned char *buf;
@@
-398,6
+399,10
@@
static int pch_uart_get_uartclk(void)
strstr(cmp, "nanoETXexpress-TT")))
return NTC1_UARTCLK;
+ cmp = dmi_get_system_info(DMI_BOARD_NAME);
+ if (cmp && strstr(cmp, "MinnowBoard"))
+ return MINNOW_UARTCLK;
+
return DEFAULT_UARTCLK;
}