]> git.baikalelectronics.ru Git - uboot.git/commit
spi: sunxi: improve SPI clock calculation
authorAndre Przywara <andre.przywara@arm.com>
Tue, 3 May 2022 01:06:37 +0000 (02:06 +0100)
committerAndre Przywara <andre.przywara@arm.com>
Mon, 18 Jul 2022 10:27:59 +0000 (11:27 +0100)
commitefdda5e45bd323d8625edc46a167e03e6a059909
treeca7bb625ec767c0bfb357fe4324dd6280e1c2a37
parent12ed275417338db3c02deb854a85238e7565fc28
spi: sunxi: improve SPI clock calculation

The current SPI clock divider calculation has two problems:
- We use a normal round-down division, which results in a divider
  typically being too small, resulting in a too high frequency on the bus.
- The calculaction for the power-of-two divider is very inaccurate, and
  again rounds down, which might lead to wild bus frequencies.

This wasn't a real problem so far, since most chips can handle slightly
higher bus frequencies just fine. Also the actual speed was mostly lost
anyway, due to release_bus() reseting the device. And the power-of-2
calculation was probably never used, because it only applies to
frequencies below 47 KHz.
However this will become a problem for the F1C100s support, due to its
much higher base frequency.

Calculate a safe divider correctly (using round-up), and re-use that
value when calculating the power-of-2 value. We also separate the
maximum frequency and the input clock on the way, since they will be
different for the F1C100s.

Signed-off-by: Andre Przywara <andre.przywara@arm.com>
drivers/spi/spi-sunxi.c