diff options
Diffstat (limited to 'src/mainboard/olpc/btest')
-rw-r--r-- | src/mainboard/olpc/btest/Kconfig | 34 | ||||
-rw-r--r-- | src/mainboard/olpc/btest/Makefile.inc | 2 |
2 files changed, 36 insertions, 0 deletions
diff --git a/src/mainboard/olpc/btest/Kconfig b/src/mainboard/olpc/btest/Kconfig new file mode 100644 index 0000000000..7d12098300 --- /dev/null +++ b/src/mainboard/olpc/btest/Kconfig @@ -0,0 +1,34 @@ +config BOARD_OLPC_BTEST + bool "B-test" + select ARCH_X86 + select CPU_AMD_GX2 + select NORTHBRIDGE_AMD_GX2 + select SOUTHBRIDGE_AMD_CS5536 + select UDELAY_TSC + select TSC_X86RDTSC_CALIBRATE_WITH_TIMER2 + select HAVE_PIRQ_TABLE + +config MAINBOARD_DIR + string + default olpc/btest + depends on BOARD_OLPC_BTEST + +config MAINBOARD_PART_NUMBER + string + default "BTEST" + depends on BOARD_OLPC_BTEST + +config HAVE_OPTION_TABLE + bool + default n + depends on BOARD_OLPC_BTEST + +config IRQ_SLOT_COUNT + int + default 2 + depends on BOARD_OLPC_BTEST + +config USE_INIT + bool + default n + depends on BOARD_OLPC_BTEST diff --git a/src/mainboard/olpc/btest/Makefile.inc b/src/mainboard/olpc/btest/Makefile.inc new file mode 100644 index 0000000000..3e1aee5038 --- /dev/null +++ b/src/mainboard/olpc/btest/Makefile.inc @@ -0,0 +1,2 @@ +ROMCCFLAGS=-mcpu=p2 -O +include $(src)/mainboard/Makefile.romccboard.inc |