diff options
author | Chris Packham <judge.packham@gmail.com> | 2019-03-18 20:51:58 +1300 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2019-03-19 09:22:05 +0100 |
commit | 599f7aa541bb5a658cbfd2af73bd9d2f6e828d43 (patch) | |
tree | dea007167c977ef8308f19e181d762131eaea76d /arch/arm/mach-kirkwood | |
parent | 825dd50f59537d8f301061a9638ed1805c5fdeb7 (diff) | |
download | u-boot-599f7aa541bb5a658cbfd2af73bd9d2f6e828d43.tar.gz u-boot-599f7aa541bb5a658cbfd2af73bd9d2f6e828d43.tar.bz2 u-boot-599f7aa541bb5a658cbfd2af73bd9d2f6e828d43.zip |
ARM: kirkwood: disable dcache for Kirkwood boards
Prior to commit 93b283d49f93 ("ARM: CPU: arm926ejs: Consolidate cache
routines to common file") the kirkwood boards didn't have and dcache
support. The network and usb drivers rely on this. Set
CONFIG_SYS_DCACHE_OFF in the Kirkwood specific config.h.
Reported-by: Leigh Brown <leigh@solinno.co.uk>
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Reviewed-by: Stefan Roese <sr@denx.de>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'arch/arm/mach-kirkwood')
-rw-r--r-- | arch/arm/mach-kirkwood/include/mach/config.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-kirkwood/include/mach/config.h b/arch/arm/mach-kirkwood/include/mach/config.h index fcd903887b..aea60688c2 100644 --- a/arch/arm/mach-kirkwood/include/mach/config.h +++ b/arch/arm/mach-kirkwood/include/mach/config.h @@ -26,6 +26,12 @@ #define CONFIG_KIRKWOOD_EGIGA_INIT /* Enable GbePort0/1 for kernel */ #define CONFIG_KIRKWOOD_RGMII_PAD_1V8 /* Set RGMII Pad voltage to 1.8V */ #define CONFIG_KIRKWOOD_PCIE_INIT /* Enable PCIE Port0 for kernel */ +/* + * Disable the dcache. Currently the network driver (mvgbe.c) and USB + * EHCI driver (ehci-marvell.c) and possibly others rely on the data + * cache being disabled. + */ +#define CONFIG_SYS_DCACHE_OFF /* * By default kwbimage.cfg from board specific folder is used |