diff options
author | Bastien Curutchet <bastien.curutchet@bootlin.com> | 2024-10-21 17:13:26 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-29 18:45:22 -0600 |
commit | 1ba44c8eed7c1c623f7010401bb0b8d2e59a8d8a (patch) | |
tree | 3fd441e6d1fba932c8198603cc6d66ec1f8dd5cc /arch/arm | |
parent | 7a7b13838f11f6dbb3049a44b8884e9139f39b5e (diff) | |
download | u-boot-1ba44c8eed7c1c623f7010401bb0b8d2e59a8d8a.tar.gz |
memory: ti-aemif: Make AEMIF driver architecture agnostic
AEMIF controller is present on other SoCs than the Keystone ones.
Remove Keystone specificities from the driver to be able to use it from
other architectures.
Adapt the ks2_evm/board.c to fit the new driver.
Signed-off-by: Bastien Curutchet <bastien.curutchet@bootlin.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/include/asm/ti-common/ti-aemif.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/include/asm/ti-common/ti-aemif.h b/arch/arm/include/asm/ti-common/ti-aemif.h index a77538673f6..11a7384cec9 100644 --- a/arch/arm/include/asm/ti-common/ti-aemif.h +++ b/arch/arm/include/asm/ti-common/ti-aemif.h @@ -16,6 +16,7 @@ #define AEMIF_PRESERVE -1 struct aemif_config { + void *base; unsigned mode; unsigned select_strobe; unsigned extend_wait; |