summaryrefslogtreecommitdiff
path: root/src/cpu/amd/model_10xxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/amd/model_10xxx')
-rw-r--r--src/cpu/amd/model_10xxx/Kconfig44
-rw-r--r--src/cpu/amd/model_10xxx/Makefile.inc5
2 files changed, 49 insertions, 0 deletions
diff --git a/src/cpu/amd/model_10xxx/Kconfig b/src/cpu/amd/model_10xxx/Kconfig
new file mode 100644
index 0000000000..0e308a27a1
--- /dev/null
+++ b/src/cpu/amd/model_10xxx/Kconfig
@@ -0,0 +1,44 @@
+config CPU_AMD_MODEL_10XXX
+ bool
+ default n
+
+config HAVE_INIT_TIMER
+ bool
+ default y
+ depends on CPU_AMD_MODEL_10XXX
+
+config HAVE_MOVNTI
+ bool
+ default y
+ depends on CPU_AMD_MODEL_10XXX
+
+config CPU_ADDR_BITS
+ int
+ default 48
+ depends on CPU_AMD_MODEL_10XXX
+
+config USE_PRINTK_IN_CAR
+ bool
+ default y
+ depends on CPU_AMD_MODEL_10XXX
+
+config USE_DCACHE_RAM
+ bool
+ default y
+ depends on CPU_AMD_MODEL_10XXX
+
+config DCACHE_RAM_BASE
+ hex
+ default 0xc8000
+ depends on CPU_AMD_MODEL_10XXX
+
+config DCACHE_RAM_SIZE
+ hex
+ default 0x08000
+ depends on CPU_AMD_MODEL_10XXX
+
+config DCACHE_RAM_GLOBAL_VAR_SIZE
+ hex
+ default 0x01000
+ depends on CPU_AMD_MODEL_10XXX
+
diff --git a/src/cpu/amd/model_10xxx/Makefile.inc b/src/cpu/amd/model_10xxx/Makefile.inc
new file mode 100644
index 0000000000..d0beb04c98
--- /dev/null
+++ b/src/cpu/amd/model_10xxx/Makefile.inc
@@ -0,0 +1,5 @@
+# no conditionals here. If you include this file from a socket, then you get all the binaries.
+driver-y += model_10xxx_init.o
+obj-y += update_microcode.o
+obj-y += apic_timer.o
+obj-y += processor_name.o