Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

pch_uart: Add uart_clk selection for the MinnowBoard

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 <dvhart@linux.intel.com>
Cc: Jiri Slaby <jslaby@suse.cz>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Peter Waskiewicz <peter.p.waskiewicz.jr@intel.com>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Darren Hart and committed by
Greg Kroah-Hartman
29692d05 91f8c2d8

+5
+5
drivers/tty/serial/pch_uart.c
··· 217 217 #define FRI2_64_UARTCLK 64000000 /* 64.0000 MHz */ 218 218 #define FRI2_48_UARTCLK 48000000 /* 48.0000 MHz */ 219 219 #define NTC1_UARTCLK 64000000 /* 64.0000 MHz */ 220 + #define MINNOW_UARTCLK 50000000 /* 50.0000 MHz */ 220 221 221 222 struct pch_uart_buffer { 222 223 unsigned char *buf; ··· 398 397 if (cmp && (strstr(cmp, "COMe-mTT") || 399 398 strstr(cmp, "nanoETXexpress-TT"))) 400 399 return NTC1_UARTCLK; 400 + 401 + cmp = dmi_get_system_info(DMI_BOARD_NAME); 402 + if (cmp && strstr(cmp, "MinnowBoard")) 403 + return MINNOW_UARTCLK; 401 404 402 405 return DEFAULT_UARTCLK; 403 406 }