[PATCH v4] lib: utils: serial: Add Cadence UART driver
Andrew Jones
ajones at ventanamicro.com
Mon Aug 22 01:38:17 PDT 2022
On Mon, Aug 22, 2022 at 08:38:40AM +0530, Anup Patel wrote:
> On Wed, Aug 17, 2022 at 9:11 PM Jun Liang Tan
> <junliang.tan at linux.starfivetech.com> wrote:
> >
> > Add Cadence UART driver
> >
> > Signed-off-by: Jun Liang Tan <junliang.tan at linux.starfivetech.com>
> > Signed-off-by: Wei Liang Lim <weiliang.lim at linux.starfivetech.com>
>
> Overall, this looks good except the divide-by-zero question raised by
> other folks in uart_min_clk_divisor().
>
> Reviewed-by: Anup Patel <anup at brainfault.org>
>
Hi Anup,
I don't think there's an issue with the baud divisor calculation.
The manual[1] I looked at for this UART states
baud_rate = sel_clk / (CD * (BDIV + 1)
which is the same as the sifive calculation except for the additional
'CD' term.
However this driver sets CD == 1, which reduces it to the exact same
as the sifive calculation.
So the '- 1' in the calculation is correct, as just comes from the
algebra applied to get BDIV.
[*] https://docs.xilinx.com/v/u/en-US/ug585-Zynq-7000-TRM
Thanks,
drew
More information about the opensbi
mailing list