]> git.baikalelectronics.ru Git - uboot.git/commit
clk: ti: add am33xx/am43xx spread spectrum clock support
authorDario Binacchi <dariobin@libero.it>
Sun, 26 Sep 2021 09:58:58 +0000 (11:58 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 11 Oct 2021 18:27:32 +0000 (14:27 -0400)
commite5c51e078c8e9eebe3cb21b76e55bb79159b2f2b
treebceaf7c3f0eead73a2ccfebe66dd0ccad26590ba
parent226474b3d379f6253eb4ffd933eb13af98845073
clk: ti: add am33xx/am43xx spread spectrum clock support

The patch enables spread spectrum clocking (SSC) for MPU and LCD PLLs.
As reported by the TI spruh73x/spruhl7x RM, SSC is only supported for
the DISP/LCD and MPU PLLs on am33xx/am43xx. SSC is not supported for
DDR, PER, and CORE PLLs.

Calculating the required values and setting the registers accordingly
was taken from the set_mpu_spreadspectrum routine contained in the
arch/arm/mach-omap2/am33xx/clock_am33xx.c file of the u-boot project.

In locked condition, DPLL output clock = CLKINP *[M/N]. In case of
SSC enabled, the reference manual explains that there is a restriction
of range of M values. Since the clk_ti_am3_dpll_round_rate() attempts
to select the minimum possible N, the value of M obtained is not
guaranteed to be within the range required. With the new "ti,min-div"
parameter it is possible to increase N and consequently M to satisfy the
constraint imposed by SSC.

Link: https://lore.kernel.org/r/20210606202253.31649-6-dariobin@libero.it
Signed-off-by: Dario Binacchi <dariobin@libero.it>
arch/arm/include/asm/arch-am33xx/clock.h
drivers/clk/ti/clk-am3-dpll.c