Skip to content
Snippets Groups Projects
Commit 17c1b0e8 authored by Stefan Roese's avatar Stefan Roese
Browse files

ppc4xx: Remove unused code for Sequoia NAND booting version


The current define of get_bus_freq() in the CONFIG_NAND_SPL #ifdef is not
used at all. This patch changes it's define to the currently used value of
133333333 and removes the unnecessary code.

Signed-off-by: default avatarStefan Roese <sr@denx.de>
parent cf940988
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ extern void denali_core_search_data_eye(void); ...@@ -44,7 +44,7 @@ extern void denali_core_search_data_eye(void);
* for the 4k NAND boot image so define bus_frequency to 133MHz here * for the 4k NAND boot image so define bus_frequency to 133MHz here
* which is save for the refresh counter setup. * which is save for the refresh counter setup.
*/ */
#define get_bus_freq(val) 133000000 #define get_bus_freq(val) 133333333
#endif #endif
/************************************************************************* /*************************************************************************
...@@ -55,11 +55,7 @@ extern void denali_core_search_data_eye(void); ...@@ -55,11 +55,7 @@ extern void denali_core_search_data_eye(void);
phys_size_t initdram (int board_type) phys_size_t initdram (int board_type)
{ {
#if !defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL) #if !defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL)
#if !defined(CONFIG_NAND_SPL)
ulong speed = get_bus_freq(0); ulong speed = get_bus_freq(0);
#else
ulong speed = 133333333; /* 133MHz is on the safe side */
#endif
mtsdram(DDR0_02, 0x00000000); mtsdram(DDR0_02, 0x00000000);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment