1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-05 02:32:11 +02:00

spi: Rename sun4i_spi.c into spi-sunxi.c

Now the same SPI controller driver is reusable in all Allwinner
SoC variants, so rename the existing sun4i_spi.c into spi-sunxi.c
which eventually look like a common sunxi driver.

Also update the function, variable, structure names in driver from
sun4i into sunxi.

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
This commit is contained in:
Jagan Teki
2019-02-27 20:02:13 +05:30
parent 903e7cf37c
commit a51cd54eff
3 changed files with 8 additions and 6 deletions

View File

@@ -213,6 +213,13 @@ config SANDBOX_SPI
}; };
}; };
config SPI_SUNXI
bool "Allwinner SoC SPI controllers"
help
Enable the Allwinner SoC SPi controller driver.
Same controller driver can reuse in all Allwinner SoC variants.
config STM32_QSPI config STM32_QSPI
bool "STM32F7 QSPI driver" bool "STM32F7 QSPI driver"
depends on STM32F7 depends on STM32F7
@@ -222,11 +229,6 @@ config STM32_QSPI
used to access the SPI NOR flash chips on platforms embedding used to access the SPI NOR flash chips on platforms embedding
this ST IP core. this ST IP core.
config SUN4I_SPI
bool "Allwinner A10/A31 SoCs SPI controller"
help
This enables using the SPI controller on the Allwinner A10/A31 SoCs.
config TEGRA114_SPI config TEGRA114_SPI
bool "nVidia Tegra114 SPI driver" bool "nVidia Tegra114 SPI driver"
help help

View File

@@ -48,10 +48,10 @@ obj-$(CONFIG_PL022_SPI) += pl022_spi.o
obj-$(CONFIG_RENESAS_RPC_SPI) += renesas_rpc_spi.o obj-$(CONFIG_RENESAS_RPC_SPI) += renesas_rpc_spi.o
obj-$(CONFIG_ROCKCHIP_SPI) += rk_spi.o obj-$(CONFIG_ROCKCHIP_SPI) += rk_spi.o
obj-$(CONFIG_SANDBOX_SPI) += sandbox_spi.o obj-$(CONFIG_SANDBOX_SPI) += sandbox_spi.o
obj-$(CONFIG_SPI_SUNXI) += spi-sunxi.o
obj-$(CONFIG_SH_SPI) += sh_spi.o obj-$(CONFIG_SH_SPI) += sh_spi.o
obj-$(CONFIG_SH_QSPI) += sh_qspi.o obj-$(CONFIG_SH_QSPI) += sh_qspi.o
obj-$(CONFIG_STM32_QSPI) += stm32_qspi.o obj-$(CONFIG_STM32_QSPI) += stm32_qspi.o
obj-$(CONFIG_SUN4I_SPI) += sun4i_spi.o
obj-$(CONFIG_TEGRA114_SPI) += tegra114_spi.o obj-$(CONFIG_TEGRA114_SPI) += tegra114_spi.o
obj-$(CONFIG_TEGRA20_SFLASH) += tegra20_sflash.o obj-$(CONFIG_TEGRA20_SFLASH) += tegra20_sflash.o
obj-$(CONFIG_TEGRA20_SLINK) += tegra20_slink.o obj-$(CONFIG_TEGRA20_SLINK) += tegra20_slink.o