diff options
-rw-r--r-- | drivers/tty/serial/pch_uart.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/tty/serial/pch_uart.c b/drivers/tty/serial/pch_uart.c index 21a7e179edf3..572d48189de9 100644 --- a/drivers/tty/serial/pch_uart.c +++ b/drivers/tty/serial/pch_uart.c | |||
@@ -217,6 +217,7 @@ enum { | |||
217 | #define FRI2_64_UARTCLK 64000000 /* 64.0000 MHz */ | 217 | #define FRI2_64_UARTCLK 64000000 /* 64.0000 MHz */ |
218 | #define FRI2_48_UARTCLK 48000000 /* 48.0000 MHz */ | 218 | #define FRI2_48_UARTCLK 48000000 /* 48.0000 MHz */ |
219 | #define NTC1_UARTCLK 64000000 /* 64.0000 MHz */ | 219 | #define NTC1_UARTCLK 64000000 /* 64.0000 MHz */ |
220 | #define MINNOW_UARTCLK 50000000 /* 50.0000 MHz */ | ||
220 | 221 | ||
221 | struct pch_uart_buffer { | 222 | struct pch_uart_buffer { |
222 | unsigned char *buf; | 223 | unsigned char *buf; |
@@ -398,6 +399,10 @@ static int pch_uart_get_uartclk(void) | |||
398 | strstr(cmp, "nanoETXexpress-TT"))) | 399 | strstr(cmp, "nanoETXexpress-TT"))) |
399 | return NTC1_UARTCLK; | 400 | return NTC1_UARTCLK; |
400 | 401 | ||
402 | cmp = dmi_get_system_info(DMI_BOARD_NAME); | ||
403 | if (cmp && strstr(cmp, "MinnowBoard")) | ||
404 | return MINNOW_UARTCLK; | ||
405 | |||
401 | return DEFAULT_UARTCLK; | 406 | return DEFAULT_UARTCLK; |
402 | } | 407 | } |
403 | 408 | ||