]> git.dujemihanovic.xyz Git - u-boot.git/commit
spi: sunxi: drop max_hz handling
authorMichael Walle <mwalle@kernel.org>
Fri, 12 Jul 2024 17:14:56 +0000 (19:14 +0200)
committerAndre Przywara <andre.przywara@arm.com>
Tue, 16 Jul 2024 00:40:40 +0000 (01:40 +0100)
commit674e4f994f5da537cab62ad86bc8bdf5acaae88c
tree578ca44419d5c70e16b6ed8abb4f86e0abedb062
parenta7766911bc2fc40df351564d71e6b93999c97b03
spi: sunxi: drop max_hz handling

The driver is trying to read the "spi-max-frequency" property of the
*controller* driver node. There is no such property. The
"spi-max-frequency" property belongs to the SPI devices on the bus.

Right now, the driver will always fall back to the default value of 1MHz
and thus flash reads are very slow with just about 215kb/s.

In fact, the SPI uclass will already take care of everything and we just
have to clamp the frequency to the values the driver/hardware supports.
Thus, drop the whole max_hz handling.

Signed-off-by: Michael Walle <mwalle@kernel.org>
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Tested-by: Andre Przywara <andre.przywara@arm.com>
drivers/spi/spi-sunxi.c