soc/broadcom/cygnus: Update DDR Kconfig
The DDR speed Kconfig symbols needed to either be added to the Kconfig tree, or have the code associated with them removed. I chose to add the symbols. - Add symbols for DDR333 - DDR667 to cygnus Kconfig. These should be selected by the mainboard. - Rename symbols from DDRXXX to CYGNUS_DDRXXX to match the existing CYGNUS_DDR800 symbol. - Rename the non Kconfig #define CONFIG_DRAM_FREQ to CYGNUS_DRAM_FREQ because having other #defines look like Kconfig symbols is confusing. - Change #ifdef CONFIG_DDRXXX to use IS_ENABLED Change-Id: I3f5957a595072434c21af0002d57ac49b48b1e43 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/17386 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
This commit is contained in:
parent
1cf5b87f48
commit
b9e8ad8f68
|
@ -37,6 +37,18 @@ config CONSOLE_SERIAL_UART_ADDRESS
|
||||||
depends on DRIVERS_UART
|
depends on DRIVERS_UART
|
||||||
default 0x18023000
|
default 0x18023000
|
||||||
|
|
||||||
|
config CYGNUS_DDR333
|
||||||
|
def_bool n
|
||||||
|
|
||||||
|
config CYGNUS_DDR400
|
||||||
|
def_bool n
|
||||||
|
|
||||||
|
config CYGNUS_DDR533
|
||||||
|
def_bool n
|
||||||
|
|
||||||
|
config CYGNUS_DDR667
|
||||||
|
def_bool n
|
||||||
|
|
||||||
config CYGNUS_DDR800
|
config CYGNUS_DDR800
|
||||||
bool "DDR Speed at 800MHz"
|
bool "DDR Speed at 800MHz"
|
||||||
default y
|
default y
|
||||||
|
|
|
@ -29,24 +29,24 @@ extern unsigned int ddr2_init_tab_1066[];
|
||||||
extern unsigned int ddr2_mode_reg_tab[];
|
extern unsigned int ddr2_mode_reg_tab[];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_DDR333
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR333)
|
||||||
#define CONFIG_DRAM_FREQ 333
|
#define CYGNUS_DRAM_FREQ 333
|
||||||
extern unsigned int ddr3_init_tab_667[];
|
extern unsigned int ddr3_init_tab_667[];
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_DDR400
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR400)
|
||||||
#define CONFIG_DRAM_FREQ 400
|
#define CYGNUS_DRAM_FREQ 400
|
||||||
extern unsigned int ddr3_init_tab_800[];
|
extern unsigned int ddr3_init_tab_800[];
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_DDR533
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR533)
|
||||||
#define CONFIG_DRAM_FREQ 533
|
#define CYGNUS_DRAM_FREQ 533
|
||||||
extern unsigned int ddr3_init_tab_1066[];
|
extern unsigned int ddr3_init_tab_1066[];
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_DDR667
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR667)
|
||||||
#define CONFIG_DRAM_FREQ 667
|
#define CYGNUS_DRAM_FREQ 667
|
||||||
extern unsigned int ddr3_init_tab_1333[];
|
extern unsigned int ddr3_init_tab_1333[];
|
||||||
#endif
|
#endif
|
||||||
#if IS_ENABLED(CONFIG_CYGNUS_DDR800)
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR800)
|
||||||
#define CONFIG_DRAM_FREQ 800
|
#define CYGNUS_DRAM_FREQ 800
|
||||||
extern unsigned int ddr3_init_tab_1600[];
|
extern unsigned int ddr3_init_tab_1600[];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -485,10 +485,10 @@ int is_ddr_32bit(void)
|
||||||
|
|
||||||
static uint32_t get_ddr_clock(uint32_t sku_id, int ddr_type)
|
static uint32_t get_ddr_clock(uint32_t sku_id, int ddr_type)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_DRAM_FREQ
|
#ifdef CYGNUS_DRAM_FREQ
|
||||||
return CONFIG_DRAM_FREQ;
|
return CYGNUS_DRAM_FREQ;
|
||||||
#else
|
#else
|
||||||
#error Please set DDR frequency (CONFIG_DRAM_FREQ must be set)
|
#error Please set DDR frequency (CYGNUS_DRAM_FREQ must be set)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1461,28 +1461,27 @@ void ddr_init2(void)
|
||||||
if (ddr_type) {
|
if (ddr_type) {
|
||||||
/* DDR3 */
|
/* DDR3 */
|
||||||
switch(ddr_clk) {
|
switch(ddr_clk) {
|
||||||
#ifdef CONFIG_DDR333
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR333)
|
||||||
case 333:
|
case 333:
|
||||||
ddr_init_regs(ddr3_init_tab_667);
|
ddr_init_regs(ddr3_init_tab_667);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_DDR400
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR400)
|
||||||
case 400:
|
case 400:
|
||||||
ddr_init_regs(ddr3_init_tab_800);
|
ddr_init_regs(ddr3_init_tab_800);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_DDR533
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR533)
|
||||||
case 533:
|
case 533:
|
||||||
ddr_init_regs(ddr3_init_tab_1066);
|
ddr_init_regs(ddr3_init_tab_1066);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_DDR667
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR667)
|
||||||
case 667:
|
case 667:
|
||||||
ddr_init_regs(ddr3_init_tab_1333);
|
ddr_init_regs(ddr3_init_tab_1333);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#if (defined(CONFIG_DDR750) || IS_ENABLED(CONFIG_CYGNUS_DDR800))
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR800)
|
||||||
case 750:
|
|
||||||
case 800:
|
case 800:
|
||||||
ddr_init_regs(ddr3_init_tab_1600);
|
ddr_init_regs(ddr3_init_tab_1600);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -292,7 +292,7 @@ const unsigned int ddr2_init_tab_400[] = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_DDR333
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR333)
|
||||||
const unsigned int ddr3_init_tab_667[] = {
|
const unsigned int ddr3_init_tab_667[] = {
|
||||||
0, 0x00000600,
|
0, 0x00000600,
|
||||||
1, 0x00000000,
|
1, 0x00000000,
|
||||||
|
@ -552,7 +552,7 @@ const unsigned int ddr3_init_tab_667[] = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_DDR400
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR400)
|
||||||
const unsigned int ddr3_init_tab_800[] = {
|
const unsigned int ddr3_init_tab_800[] = {
|
||||||
14, 0x01000000,
|
14, 0x01000000,
|
||||||
36, 0x0a140a0a,
|
36, 0x0a140a0a,
|
||||||
|
@ -864,7 +864,7 @@ const unsigned int ddr3_init_tab_800[] = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_DDR533
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR533)
|
||||||
const unsigned int ddr3_init_tab_1066[] = {
|
const unsigned int ddr3_init_tab_1066[] = {
|
||||||
14, 0x01000000,
|
14, 0x01000000,
|
||||||
36, 0x0a140a0a,
|
36, 0x0a140a0a,
|
||||||
|
@ -1176,7 +1176,7 @@ const unsigned int ddr3_init_tab_1066[] = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_DDR667
|
#if IS_ENABLED(CONFIG_CYGNUS_DDR667)
|
||||||
const unsigned int ddr3_init_tab_1333[] = {
|
const unsigned int ddr3_init_tab_1333[] = {
|
||||||
14, 0x01000000,
|
14, 0x01000000,
|
||||||
36, 0x0a140a0a,
|
36, 0x0a140a0a,
|
||||||
|
|
Loading…
Reference in New Issue