diff options
author | Tom Rini <trini@konsulko.com> | 2022-06-27 13:35:48 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-07-08 17:57:34 -0400 |
commit | edcbd6e38899589b8d03d1f1f8ebc01beb3b574b (patch) | |
tree | 170470073f32c156e436e5fc4f6ecac40a94a675 /arch/arm | |
parent | 95cc3efcc1ec22be2c649ef4cdc065fa9f7fb697 (diff) |
omap3: emif4: More clearly hard-code cs0 size
We have a single platform that is both in the OMAP3 family of parts, but
has an EMIF4 memory controller. Currently we hard-code the size of
chip select 0. Make this more clear by putting the value in the
function rather than a CONFIG option.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-omap2/omap3/emif4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/omap3/emif4.c b/arch/arm/mach-omap2/omap3/emif4.c index d7d779819bf..491e7c23dbc 100644 --- a/arch/arm/mach-omap2/omap3/emif4.c +++ b/arch/arm/mach-omap2/omap3/emif4.c @@ -41,7 +41,7 @@ static u32 get_sdr_cs_size(u32 cs) /* TODO: Calculate the size based on EMIF4 configuration */ if (cs == CS0) - size = CONFIG_SYS_CS0_SIZE; + size = 256 * 1024 * 1024; return size; } |