AMD Geode cpus: apply un-written naming rules
Kconfig directives to select chip drivers for compile literally match the chip directory names capitalized and underscored. Rename directories and Kconfig as follows: model_lx -> geode_lx model_gx1 -> geode_gx1 model_gx2 -> geode_gx2 Change-Id: Ib8bf1e758b88f9efed1cf8b11c76b796388e7147 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/613 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
50759ed4ff
commit
7916f4cef6
|
@ -16,9 +16,9 @@ source src/cpu/amd/socket_S1G1/Kconfig
|
|||
|
||||
source src/cpu/amd/model_fxx/Kconfig
|
||||
source src/cpu/amd/model_10xxx/Kconfig
|
||||
source src/cpu/amd/model_gx1/Kconfig
|
||||
source src/cpu/amd/model_gx2/Kconfig
|
||||
source src/cpu/amd/model_lx/Kconfig
|
||||
source src/cpu/amd/geode_gx1/Kconfig
|
||||
source src/cpu/amd/geode_gx2/Kconfig
|
||||
source src/cpu/amd/geode_lx/Kconfig
|
||||
|
||||
source src/cpu/amd/sc520/Kconfig
|
||||
|
||||
|
|
|
@ -8,9 +8,9 @@ subdirs-$(CONFIG_CPU_AMD_SOCKET_AM2R2) += socket_AM2r2
|
|||
subdirs-$(CONFIG_CPU_AMD_SOCKET_AM3) += socket_AM3
|
||||
subdirs-$(CONFIG_CPU_AMD_SOCKET_ASB2) += socket_ASB2
|
||||
subdirs-$(CONFIG_CPU_AMD_SOCKET_C32) += socket_C32
|
||||
subdirs-$(CONFIG_CPU_AMD_GX1) += model_gx1
|
||||
subdirs-$(CONFIG_CPU_AMD_GX2) += model_gx2
|
||||
subdirs-$(CONFIG_CPU_AMD_LX) += model_lx
|
||||
subdirs-$(CONFIG_CPU_AMD_GEODE_GX1) += geode_gx1
|
||||
subdirs-$(CONFIG_CPU_AMD_GEODE_GX2) += geode_gx2
|
||||
subdirs-$(CONFIG_CPU_AMD_GEODE_LX) += geode_lx
|
||||
subdirs-$(CONFIG_CPU_AMD_SC520) += sc520
|
||||
subdirs-$(CONFIG_CPU_AMD_SOCKET_S1G1) += socket_S1G1
|
||||
|
||||
|
|
|
@ -17,16 +17,17 @@
|
|||
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
##
|
||||
|
||||
config CPU_AMD_GX1
|
||||
config CPU_AMD_GEODE_GX1
|
||||
bool
|
||||
|
||||
if CPU_AMD_GEODE_GX1
|
||||
|
||||
config DCACHE_RAM_BASE
|
||||
hex
|
||||
default 0xc0000
|
||||
depends on CPU_AMD_GX1
|
||||
|
||||
config DCACHE_RAM_SIZE
|
||||
hex
|
||||
default 0x01000
|
||||
depends on CPU_AMD_GX1
|
||||
|
||||
endif # CPU_AMD_GEODE_GX1
|
|
@ -22,7 +22,7 @@ subdirs-y += ../../x86/tsc
|
|||
subdirs-y += ../../x86/lapic
|
||||
subdirs-y += ../../x86/cache
|
||||
subdirs-y += ../../x86/smm
|
||||
driver-y += model_gx1_init.c
|
||||
driver-y += geode_gx1_init.c
|
||||
|
||||
cpu_incs += $(src)/cpu/amd/model_gx1/cpu_setup.inc
|
||||
cpu_incs += $(src)/cpu/amd/model_gx1/gx_setup.inc
|
||||
cpu_incs += $(src)/cpu/amd/geode_gx1/cpu_setup.inc
|
||||
cpu_incs += $(src)/cpu/amd/geode_gx1/gx_setup.inc
|
|
@ -73,7 +73,7 @@ unsigned long addr;
|
|||
}
|
||||
#endif
|
||||
|
||||
static void model_gx1_init(device_t dev)
|
||||
static void geode_gx1_init(device_t dev)
|
||||
{
|
||||
#if 0
|
||||
gx1_cpu_setup();
|
||||
|
@ -87,7 +87,7 @@ static void model_gx1_init(device_t dev)
|
|||
};
|
||||
|
||||
static struct device_operations cpu_dev_ops = {
|
||||
.init = model_gx1_init,
|
||||
.init = geode_gx1_init,
|
||||
};
|
||||
|
||||
static struct cpu_device_id cpu_table[] = {
|
|
@ -17,10 +17,10 @@
|
|||
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
##
|
||||
|
||||
config CPU_AMD_GX2
|
||||
config CPU_AMD_GEODE_GX2
|
||||
bool
|
||||
|
||||
if CPU_AMD_GX2
|
||||
if CPU_AMD_GEODE_GX2
|
||||
|
||||
config CPU_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
|
@ -55,5 +55,4 @@ config VSA_FILENAME
|
|||
help
|
||||
The path and filename of the file to use as VSA.
|
||||
|
||||
endif # CPU_AMD_GX2
|
||||
|
||||
endif # CPU_AMD_GEODE_GX2
|
|
@ -3,7 +3,7 @@ subdirs-y += ../../x86/lapic
|
|||
subdirs-y += ../../x86/cache
|
||||
subdirs-y += ../../x86/smm
|
||||
|
||||
driver-y += model_gx2_init.c
|
||||
driver-y += geode_gx2_init.c
|
||||
ramstage-y += cpubug.c
|
||||
|
||||
cpu_incs += $(src)/cpu/amd/model_gx2/cache_as_ram.inc
|
||||
cpu_incs += $(src)/cpu/amd/geode_gx2/cache_as_ram.inc
|
|
@ -16,9 +16,9 @@ static void vsm_end_post_smi(void)
|
|||
);
|
||||
}
|
||||
|
||||
static void model_gx2_init(device_t dev)
|
||||
static void geode_gx2_init(device_t dev)
|
||||
{
|
||||
printk(BIOS_DEBUG, "model_gx2_init\n");
|
||||
printk(BIOS_DEBUG, "geode_gx2_init\n");
|
||||
|
||||
/* Turn on caching if we haven't already */
|
||||
x86_enable_cache();
|
||||
|
@ -28,11 +28,11 @@ static void model_gx2_init(device_t dev)
|
|||
|
||||
vsm_end_post_smi();
|
||||
|
||||
printk(BIOS_DEBUG, "model_gx2_init DONE\n");
|
||||
printk(BIOS_DEBUG, "geode_gx2_init DONE\n");
|
||||
};
|
||||
|
||||
static struct device_operations cpu_dev_ops = {
|
||||
.init = model_gx2_init,
|
||||
.init = geode_gx2_init,
|
||||
};
|
||||
|
||||
static struct cpu_device_id cpu_table[] = {
|
|
@ -1,7 +1,7 @@
|
|||
config CPU_AMD_LX
|
||||
config CPU_AMD_GEODE_LX
|
||||
bool
|
||||
|
||||
if CPU_AMD_LX
|
||||
if CPU_AMD_GEODE_LX
|
||||
|
||||
config CPU_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
|
@ -36,4 +36,4 @@ config VSA_FILENAME
|
|||
help
|
||||
The path and filename of the file to use as VSA.
|
||||
|
||||
endif # CPU_AMD_LX
|
||||
endif # CPU_AMD_GEODE_LX
|
|
@ -3,7 +3,7 @@ subdirs-y += ../../x86/lapic
|
|||
subdirs-y += ../../x86/cache
|
||||
subdirs-y += ../../x86/smm
|
||||
|
||||
driver-y += model_lx_init.c
|
||||
driver-y += geode_lx_init.c
|
||||
ramstage-y += cpubug.c
|
||||
|
||||
cpu_incs += $(src)/cpu/amd/model_lx/cache_as_ram.inc
|
||||
cpu_incs += $(src)/cpu/amd/geode_lx/cache_as_ram.inc
|
|
@ -38,9 +38,9 @@ static void vsm_end_post_smi(void)
|
|||
".byte 0x0f, 0x38\n" "pop %ax\n");
|
||||
}
|
||||
|
||||
static void model_lx_init(device_t dev)
|
||||
static void geode_lx_init(device_t dev)
|
||||
{
|
||||
printk(BIOS_DEBUG, "model_lx_init\n");
|
||||
printk(BIOS_DEBUG, "geode_lx_init\n");
|
||||
|
||||
/* Turn on caching if we haven't already */
|
||||
x86_enable_cache();
|
||||
|
@ -56,11 +56,11 @@ static void model_lx_init(device_t dev)
|
|||
outb(0x02, 0x92);
|
||||
printk(BIOS_DEBUG, "A20 (0x92): %d\n", inb(0x92));
|
||||
|
||||
printk(BIOS_DEBUG, "CPU model_lx_init DONE\n");
|
||||
printk(BIOS_DEBUG, "CPU geode_lx_init DONE\n");
|
||||
};
|
||||
|
||||
static struct device_operations cpu_dev_ops = {
|
||||
.init = model_lx_init,
|
||||
.init = geode_lx_init,
|
||||
};
|
||||
|
||||
static struct cpu_device_id cpu_table[] = {
|
|
@ -41,7 +41,7 @@ int ram_check_nodie(unsigned long start, unsigned long stop);
|
|||
void quick_ram_check(void);
|
||||
|
||||
/* Defined in romstage.c */
|
||||
#if CONFIG_CPU_AMD_LX
|
||||
#if CONFIG_CPU_AMD_GEODE_LX
|
||||
void cache_as_ram_main(void);
|
||||
#else
|
||||
void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx);
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_AAEON_PFM_540I_REVB
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select SUPERIO_SMSC_SMSCSUPERIO
|
||||
|
|
|
@ -66,7 +66,7 @@ chip northbridge/amd/lx
|
|||
end
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -55,9 +55,9 @@ static inline int spd_read_byte(unsigned int device, unsigned int address)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ if BOARD_ADVANTECH_PCM_5820
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_GX1
|
||||
select CPU_AMD_GEODE_GX1
|
||||
select NORTHBRIDGE_AMD_GX1
|
||||
select SOUTHBRIDGE_AMD_CS5530
|
||||
select SUPERIO_WINBOND_W83977F
|
||||
|
|
|
@ -51,6 +51,6 @@ chip northbridge/amd/gx1 # Northbridge
|
|||
register "ide1_enable" = "1"
|
||||
end
|
||||
end
|
||||
chip cpu/amd/model_gx1 # CPU
|
||||
chip cpu/amd/geode_gx1 # CPU
|
||||
end
|
||||
end
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_AMD_DB800
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select SUPERIO_WINBOND_W83627HF
|
||||
|
|
|
@ -60,7 +60,7 @@ chip northbridge/amd/lx
|
|||
end
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -49,9 +49,9 @@ static inline int spd_read_byte(unsigned int device, unsigned int address)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_AMD_NORWICH
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select HAVE_PIRQ_TABLE
|
||||
|
|
|
@ -33,7 +33,7 @@ chip northbridge/amd/lx
|
|||
end
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -46,9 +46,9 @@ static inline int spd_read_byte(unsigned int device, unsigned int address)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ if BOARD_AMD_RUMBA
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_GX2
|
||||
select CPU_AMD_GEODE_GX2
|
||||
select NORTHBRIDGE_AMD_GX2
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select UDELAY_TSC
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
chip northbridge/amd/gx2
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_gx2
|
||||
chip cpu/amd/geode_gx2
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -26,9 +26,9 @@ static inline int spd_read_byte(unsigned device, unsigned address)
|
|||
#include "northbridge/amd/gx2/pll_reset.c"
|
||||
#include "northbridge/amd/gx2/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_gx2/cpureginit.c"
|
||||
#include "cpu/amd/model_gx2/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_gx2/cpureginit.c"
|
||||
#include "cpu/amd/geode_gx2/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_ARTECGROUP_DBE61
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select HAVE_PIRQ_TABLE
|
||||
|
|
|
@ -33,7 +33,7 @@ chip northbridge/amd/lx
|
|||
end
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -61,9 +61,9 @@ static int spd_read_byte(unsigned device, unsigned address)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ if BOARD_ASI_MB_5BLGP
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_GX1
|
||||
select CPU_AMD_GEODE_GX1
|
||||
select NORTHBRIDGE_AMD_GX1
|
||||
select SOUTHBRIDGE_AMD_CS5530
|
||||
select SUPERIO_NSC_PC87351
|
||||
|
|
|
@ -50,6 +50,6 @@ chip northbridge/amd/gx1 # Northbridge
|
|||
register "ide1_enable" = "0" # No connector on this board
|
||||
end
|
||||
end
|
||||
chip cpu/amd/model_gx1 # CPU
|
||||
chip cpu/amd/geode_gx1 # CPU
|
||||
end
|
||||
end
|
||||
|
|
|
@ -21,7 +21,7 @@ if BOARD_ASI_MB_5BLMP
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_GX1
|
||||
select CPU_AMD_GEODE_GX1
|
||||
select NORTHBRIDGE_AMD_GX1
|
||||
select SOUTHBRIDGE_AMD_CS5530
|
||||
select SUPERIO_NSC_PC87351
|
||||
|
|
|
@ -42,7 +42,7 @@ chip northbridge/amd/gx1 # Northbridge
|
|||
register "ide1_enable" = "1"
|
||||
end
|
||||
end
|
||||
chip cpu/amd/model_gx1 # CPU
|
||||
chip cpu/amd/geode_gx1 # CPU
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ if BOARD_AXUS_TC320
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_GX1
|
||||
select CPU_AMD_GEODE_GX1
|
||||
select NORTHBRIDGE_AMD_GX1
|
||||
select SOUTHBRIDGE_AMD_CS5530
|
||||
select SUPERIO_NSC_PC97317
|
||||
|
|
|
@ -50,6 +50,6 @@ chip northbridge/amd/gx1 # Northbridge
|
|||
# register "ide1_enable" = "1"
|
||||
end
|
||||
end
|
||||
chip cpu/amd/model_gx1 # CPU
|
||||
chip cpu/amd/geode_gx1 # CPU
|
||||
end
|
||||
end
|
||||
|
|
|
@ -21,7 +21,7 @@ if BOARD_BCOM_WINNET100
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_GX1
|
||||
select CPU_AMD_GEODE_GX1
|
||||
select NORTHBRIDGE_AMD_GX1
|
||||
select SOUTHBRIDGE_AMD_CS5530
|
||||
select SUPERIO_NSC_PC97317
|
||||
|
|
|
@ -51,6 +51,6 @@ chip northbridge/amd/gx1 # Northbridge
|
|||
register "ide1_enable" = "0" # Not available/needed on this board
|
||||
end
|
||||
end
|
||||
chip cpu/amd/model_gx1 # CPU
|
||||
chip cpu/amd/geode_gx1 # CPU
|
||||
end
|
||||
end
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_DIGITALLOGIC_MSM800SEV
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select SUPERIO_WINBOND_W83627HF
|
||||
|
|
|
@ -77,7 +77,7 @@ chip northbridge/amd/lx
|
|||
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -30,9 +30,9 @@ static inline int spd_read_byte(unsigned device, unsigned address)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ if BOARD_EAGLELION_5BCM
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_GX1
|
||||
select CPU_AMD_GEODE_GX1
|
||||
select NORTHBRIDGE_AMD_GX1
|
||||
select SOUTHBRIDGE_AMD_CS5530
|
||||
select SUPERIO_NSC_PC97317
|
||||
|
|
|
@ -45,7 +45,7 @@ chip northbridge/amd/gx1
|
|||
end
|
||||
end
|
||||
|
||||
chip cpu/amd/model_gx1
|
||||
chip cpu/amd/geode_gx1
|
||||
end
|
||||
|
||||
end
|
||||
|
|
|
@ -21,7 +21,7 @@ if BOARD_IEI_JUKI_511P
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_GX1
|
||||
select CPU_AMD_GEODE_GX1
|
||||
select NORTHBRIDGE_AMD_GX1
|
||||
select SOUTHBRIDGE_AMD_CS5530
|
||||
select SUPERIO_WINBOND_W83977F
|
||||
|
|
|
@ -50,7 +50,7 @@ chip northbridge/amd/gx1
|
|||
end
|
||||
end
|
||||
|
||||
chip cpu/amd/model_gx1
|
||||
chip cpu/amd/geode_gx1
|
||||
end
|
||||
|
||||
end
|
||||
|
|
|
@ -21,7 +21,7 @@ if BOARD_IEI_NOVA_4899R
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_GX1
|
||||
select CPU_AMD_GEODE_GX1
|
||||
select NORTHBRIDGE_AMD_GX1
|
||||
select SOUTHBRIDGE_AMD_CS5530
|
||||
select SUPERIO_WINBOND_W83977TF
|
||||
|
|
|
@ -57,7 +57,7 @@ chip northbridge/amd/gx1
|
|||
end
|
||||
end
|
||||
|
||||
chip cpu/amd/model_gx1
|
||||
chip cpu/amd/geode_gx1
|
||||
end
|
||||
|
||||
end
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_IEI_PCISA_LX_800_R10
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select SUPERIO_WINBOND_W83627HF
|
||||
|
|
|
@ -68,7 +68,7 @@ chip northbridge/amd/lx
|
|||
end
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -53,9 +53,9 @@ static inline int spd_read_byte(unsigned int device, unsigned int address)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_LIPPERT_FRONTRUNNER
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_GX2
|
||||
select CPU_AMD_GEODE_GX2
|
||||
select NORTHBRIDGE_AMD_GX2
|
||||
select SOUTHBRIDGE_AMD_CS5535
|
||||
select HAVE_DEBUG_SMBUS
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
chip northbridge/amd/gx2
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_gx2
|
||||
chip cpu/amd/geode_gx2
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -66,9 +66,9 @@ static inline int spd_read_byte(unsigned int device, unsigned int address)
|
|||
#include "northbridge/amd/gx2/pll_reset.c"
|
||||
#include "northbridge/amd/gx2/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_gx2/cpureginit.c"
|
||||
#include "cpu/amd/model_gx2/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_gx2/cpureginit.c"
|
||||
#include "cpu/amd/geode_gx2/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_LIPPERT_HURRICANE_LX
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select SUPERIO_ITE_IT8712F
|
||||
|
|
|
@ -83,7 +83,7 @@ chip northbridge/amd/lx
|
|||
end
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -77,9 +77,9 @@ static int smc_send_config(unsigned char config_data)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
static const u16 sio_init_table[] = { // hi=data, lo=index
|
||||
0x0707, // select LDN 7 (GPIO, SPI, watchdog, ...)
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_LIPPERT_LITERUNNER_LX
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select SUPERIO_ITE_IT8712F
|
||||
|
|
|
@ -80,7 +80,7 @@ chip northbridge/amd/lx
|
|||
end
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -118,9 +118,9 @@ static int smc_send_config(unsigned char config_data)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
static const u16 sio_init_table[] = { // hi=data, lo=index
|
||||
0x0707, // select LDN 7 (GPIO, SPI, watchdog, ...)
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_LIPPERT_ROADRUNNER_LX
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select SUPERIO_ITE_IT8712F
|
||||
|
|
|
@ -82,7 +82,7 @@ chip northbridge/amd/lx
|
|||
end
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -53,9 +53,9 @@ static inline int spd_read_byte(unsigned int device, unsigned int address)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
static const u16 sio_init_table[] = { // hi=data, lo=index
|
||||
0x0707, // select LDN 7 (GPIO, SPI, watchdog, ...)
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_LIPPERT_SPACERUNNER_LX
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select SUPERIO_ITE_IT8712F
|
||||
|
|
|
@ -83,7 +83,7 @@ chip northbridge/amd/lx
|
|||
end
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -118,9 +118,9 @@ static int smc_send_config(unsigned char config_data)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
static const u16 sio_init_table[] = { // hi=data, lo=index
|
||||
0x0707, // select LDN 7 (GPIO, SPI, watchdog, ...)
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_PCENGINES_ALIX1C
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select SUPERIO_WINBOND_W83627HF
|
||||
|
|
|
@ -77,7 +77,7 @@ chip northbridge/amd/lx
|
|||
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -107,9 +107,9 @@ static u8 spd_read_byte(u8 device, u8 address)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_PCENGINES_ALIX2D
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select HAVE_PIRQ_TABLE
|
||||
|
|
|
@ -37,7 +37,7 @@ chip northbridge/amd/lx
|
|||
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -106,9 +106,9 @@ static u8 spd_read_byte(u8 device, u8 address)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
/** Early mainboard specific GPIO setup. */
|
||||
static void mb_gpio_init(void)
|
||||
|
|
|
@ -21,7 +21,7 @@ if BOARD_TELEVIDEO_TC7020
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_GX1
|
||||
select CPU_AMD_GEODE_GX1
|
||||
select NORTHBRIDGE_AMD_GX1
|
||||
select SOUTHBRIDGE_AMD_CS5530
|
||||
select SUPERIO_NSC_PC97317
|
||||
|
|
|
@ -52,6 +52,6 @@ chip northbridge/amd/gx1 # Northbridge
|
|||
register "ide1_enable" = "0" # Not available/needed on this board
|
||||
end
|
||||
end
|
||||
chip cpu/amd/model_gx1 # CPU
|
||||
chip cpu/amd/geode_gx1 # CPU
|
||||
end
|
||||
end
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_TRAVERSE_GEOS
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select HAVE_PIRQ_TABLE
|
||||
|
|
|
@ -33,7 +33,7 @@ chip northbridge/amd/lx
|
|||
end
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -47,9 +47,9 @@ static inline int spd_read_byte(unsigned int device, unsigned int address)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ if BOARD_WINENT_PL6064
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_LX
|
||||
select CPU_AMD_GEODE_LX
|
||||
select NORTHBRIDGE_AMD_LX
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select SUPERIO_WINBOND_W83627HF
|
||||
|
|
|
@ -73,7 +73,7 @@ chip northbridge/amd/lx
|
|||
end
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_lx
|
||||
chip cpu/amd/geode_lx
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -51,9 +51,9 @@ static inline int spd_read_byte(unsigned int device, unsigned int address)
|
|||
#include "northbridge/amd/lx/pll_reset.c"
|
||||
#include "northbridge/amd/lx/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_lx/cpureginit.c"
|
||||
#include "cpu/amd/model_lx/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_lx/cpureginit.c"
|
||||
#include "cpu/amd/geode_lx/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ if BOARD_WYSE_S50
|
|||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_AMD_GX2
|
||||
select CPU_AMD_GEODE_GX2
|
||||
select NORTHBRIDGE_AMD_GX2
|
||||
select SOUTHBRIDGE_AMD_CS5536
|
||||
select UDELAY_TSC
|
||||
|
|
|
@ -44,7 +44,7 @@ chip northbridge/amd/gx2
|
|||
end
|
||||
# APIC cluster is late CPU init.
|
||||
device lapic_cluster 0 on
|
||||
chip cpu/amd/model_gx2
|
||||
chip cpu/amd/geode_gx2
|
||||
device lapic 0 on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -45,9 +45,9 @@ static inline int spd_read_byte(unsigned int device, unsigned int address)
|
|||
#include "northbridge/amd/gx2/pll_reset.c"
|
||||
#include "northbridge/amd/gx2/raminit.c"
|
||||
#include "lib/generic_sdram.c"
|
||||
#include "cpu/amd/model_gx2/cpureginit.c"
|
||||
#include "cpu/amd/model_gx2/syspreinit.c"
|
||||
#include "cpu/amd/model_lx/msrinit.c"
|
||||
#include "cpu/amd/geode_gx2/cpureginit.c"
|
||||
#include "cpu/amd/geode_gx2/syspreinit.c"
|
||||
#include "cpu/amd/geode_lx/msrinit.c"
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue