From: Stefano Stabellini Date: Thu, 15 Nov 2012 10:25:27 +0000 (+0000) Subject: pl011: set baud and clock_hz to the right defaults for Versatile Express X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~7646 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=60ff9444480995008caf;p=xen.git pl011: set baud and clock_hz to the right defaults for Versatile Express Signed-off-by: Stefano Stabellini Acked-by: Tim Deegan Committed-by: Ian Campbell --- diff --git a/xen/drivers/char/pl011.c b/xen/drivers/char/pl011.c index 6af45aa010..6ccb73ad33 100644 --- a/xen/drivers/char/pl011.c +++ b/xen/drivers/char/pl011.c @@ -241,8 +241,8 @@ void __init pl011_init(int index, unsigned long register_base_address) uart = &pl011_com[index]; - uart->clock_hz = 7372800; - uart->baud = 115200; + uart->clock_hz = 0x16e3600; + uart->baud = 38400; uart->data_bits = 8; uart->parity = PARITY_NONE; uart->stop_bits = 1;