On Tue, Jun 25, 2013 at 06:53:22PM -0700, Darren Hart wrote:
> 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 <dvh...@linux.intel.com>
> Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org>
> Cc: Jiri Slaby <jsl...@suse.cz>
> Cc: "H. Peter Anvin" <h...@zytor.com>
> Cc: Peter Waskiewicz <peter.p.waskiewicz...@intel.com>
> Cc: Andy Shevchenko <andriy.shevche...@linux.intel.com>
> Cc: linux-ser...@vger.kernel.org
> ---
>  drivers/tty/serial/pch_uart.c | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/drivers/tty/serial/pch_uart.c b/drivers/tty/serial/pch_uart.c
> index 21a7e17..572d481 100644
> --- 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;
> +

You know, we do have the DMI interface to handle this in a much nicer
way instead of just randomly trying different strings over and over
until we find one that matches...

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to