soc/sifive/fu540: Implement uart_platform_refclk for UART divisor calculation
After changing clock from 33.33Mhz to 1Ghz the UART divisor needs to be recalculated. Return correct tlck frequency in uart_platform_refclk. Change-Id: I2291e4198cf466a8334211c6c46bc3268fc979a9 Signed-off-by: Philipp Hug <philipp@hug.cx> Reviewed-on: https://review.coreboot.org/28584 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
This commit is contained in:
parent
91595724e7
commit
df5e6f64b6
|
@ -13,8 +13,11 @@
|
|||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <console/uart.h>
|
||||
#include <soc/addressmap.h>
|
||||
#include <soc/clock.h>
|
||||
|
||||
uintptr_t uart_platform_base(int idx)
|
||||
{
|
||||
|
@ -29,5 +32,9 @@ unsigned int uart_platform_refclk(void)
|
|||
/*
|
||||
* The SiFive UART uses tlclk, which is coreclk/2 as input
|
||||
*/
|
||||
|
||||
if (ENV_BOOTBLOCK)
|
||||
return 33330000 / 2;
|
||||
else
|
||||
return clock_get_coreclk_khz() * KHz / 2;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue