mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
64b5f46975
New imx8 boards started adding duplicated UART init code. Factor out this to common function sc_pm_setup_uart(). Signed-off-by: Anatolij Gustschin <agust@denx.de> Cc: Peng Fan <peng.fan@nxp.com> Cc: Marcel Ziswiler <marcel.ziswiler@toradex.com> Reviewed-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Peng Fan <peng.fan@nxp.com>
26 lines
599 B
C
26 lines
599 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
#include <common.h>
|
|
#include <asm/arch/sci/sci.h>
|
|
|
|
int sc_pm_setup_uart(sc_rsrc_t uart_rsrc, sc_pm_clock_rate_t clk_rate)
|
|
{
|
|
sc_pm_clock_rate_t rate = clk_rate;
|
|
int ret;
|
|
|
|
/* Power up UARTn */
|
|
ret = sc_pm_set_resource_power_mode(-1, uart_rsrc, SC_PM_PW_MODE_ON);
|
|
if (ret)
|
|
return ret;
|
|
|
|
/* Set UARTn clock root to 'rate' MHz */
|
|
ret = sc_pm_set_clock_rate(-1, uart_rsrc, SC_PM_CLK_PER, &rate);
|
|
if (ret)
|
|
return ret;
|
|
|
|
/* Enable UARTn clock root */
|
|
ret = sc_pm_clock_enable(-1, uart_rsrc, SC_PM_CLK_PER, true, false);
|
|
if (ret)
|
|
return ret;
|
|
|
|
return 0;
|
|
}
|