mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 14:10:43 +00:00
spi: kirkwood_spi.c: Change KW_SPI_BASE to MVEBU_SPI_BASE
This makes is possible to use this SPI driver from other MVEBU SoC's as well. As the upcoming Armada XP support will do. Signed-off-by: Stefan Roese <sr@denx.de> Reviewed-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com> Tested-by: Luka Perkov <luka@openwrt.org> Acked-by: Prafulla Wadaskar <prafulla@marvell.com>
This commit is contained in:
parent
d5c5132f87
commit
4fd7717e8e
2 changed files with 3 additions and 2 deletions
|
@ -30,7 +30,7 @@
|
|||
#define MVEBU_GPIO1_BASE (KW_REGISTER(0x10140))
|
||||
#define KW_RTC_BASE (KW_REGISTER(0x10300))
|
||||
#define KW_NANDF_BASE (KW_REGISTER(0x10418))
|
||||
#define KW_SPI_BASE (KW_REGISTER(0x10600))
|
||||
#define MVEBU_SPI_BASE (KW_REGISTER(0x10600))
|
||||
#define KW_CPU_WIN_BASE (KW_REGISTER(0x20000))
|
||||
#define KW_CPU_REG_BASE (KW_REGISTER(0x20100))
|
||||
#define MVEBU_TIMER_BASE (KW_REGISTER(0x20300))
|
||||
|
|
|
@ -18,7 +18,8 @@
|
|||
#endif
|
||||
#include <asm/arch-mvebu/spi.h>
|
||||
|
||||
static struct kwspi_registers *spireg = (struct kwspi_registers *)KW_SPI_BASE;
|
||||
static struct kwspi_registers *spireg =
|
||||
(struct kwspi_registers *)MVEBU_SPI_BASE;
|
||||
|
||||
#ifdef CONFIG_KIRKWOOD
|
||||
static u32 cs_spi_mpp_back[2];
|
||||
|
|
Loading…
Reference in a new issue