[coreboot-gerrit] Patch set updated for coreboot: e453e83 cpu/intel/socket_atom_d5xx: Add Intel Atom D5xx cpu

Damien Zammit (damien@zamaudio.com) gerrit at coreboot.org
Sat May 9 13:43:39 CEST 2015


Damien Zammit (damien at zamaudio.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10066

-gerrit

commit e453e83f26e4c2c50ce4f122d7f67a5793082207
Author: Damien Zammit <damien at zamaudio.com>
Date:   Sun May 3 19:49:37 2015 +1000

    cpu/intel/socket_atom_d5xx: Add Intel Atom D5xx cpu
    
    Tested on Intel D510MO board, boots to UART console.
    
    Change-Id: I82a630c9836c099d0fcc62e019c20f328a75151d
    Signed-off-by: Damien Zammit <damien at zamaudio.com>
---
 src/cpu/intel/Kconfig                        |  1 +
 src/cpu/intel/Makefile.inc                   |  1 +
 src/cpu/intel/model_106cx/model_106cx_init.c |  1 +
 src/cpu/intel/socket_atom_d5xx/Kconfig       | 20 ++++++++++++++++++++
 src/cpu/intel/socket_atom_d5xx/Makefile.inc  |  8 ++++++++
 5 files changed, 31 insertions(+)

diff --git a/src/cpu/intel/Kconfig b/src/cpu/intel/Kconfig
index b388c50..8229bfd 100644
--- a/src/cpu/intel/Kconfig
+++ b/src/cpu/intel/Kconfig
@@ -24,6 +24,7 @@ source src/cpu/intel/haswell/Kconfig
 # Sockets/Slots
 source src/cpu/intel/slot_2/Kconfig
 source src/cpu/intel/slot_1/Kconfig
+source src/cpu/intel/socket_atom_d5xx/Kconfig
 source src/cpu/intel/socket_BGA956/Kconfig
 source src/cpu/intel/socket_FC_PGA370/Kconfig
 source src/cpu/intel/socket_mFCBGA479/Kconfig
diff --git a/src/cpu/intel/Makefile.inc b/src/cpu/intel/Makefile.inc
index 51451e9..b1d8737 100644
--- a/src/cpu/intel/Makefile.inc
+++ b/src/cpu/intel/Makefile.inc
@@ -3,6 +3,7 @@
 #
 # Therefore: ONLY include Makefile.inc from socket directories!
 
+subdirs-$(CONFIG_CPU_INTEL_SOCKET_ATOM_D5XX) += socket_atom_d5xx
 subdirs-$(CONFIG_CPU_INTEL_SOCKET_441) += socket_441
 subdirs-$(CONFIG_CPU_INTEL_SOCKET_BGA956) += socket_BGA956
 subdirs-$(CONFIG_CPU_INTEL_EP80579) += ep80579
diff --git a/src/cpu/intel/model_106cx/model_106cx_init.c b/src/cpu/intel/model_106cx/model_106cx_init.c
index b201474..da603dd 100644
--- a/src/cpu/intel/model_106cx/model_106cx_init.c
+++ b/src/cpu/intel/model_106cx/model_106cx_init.c
@@ -152,6 +152,7 @@ static struct device_operations cpu_dev_ops = {
 
 static struct cpu_device_id cpu_table[] = {
 	{ X86_VENDOR_INTEL, 0x106c0 }, /* Intel Atom 230 */
+	{ X86_VENDOR_INTEL, 0x106ca }, /* Intel Atom D5xx */
 	{ 0, 0 },
 };
 
diff --git a/src/cpu/intel/socket_atom_d5xx/Kconfig b/src/cpu/intel/socket_atom_d5xx/Kconfig
new file mode 100644
index 0000000..f73a0b6
--- /dev/null
+++ b/src/cpu/intel/socket_atom_d5xx/Kconfig
@@ -0,0 +1,20 @@
+config CPU_INTEL_SOCKET_ATOM_D5XX
+	bool
+
+if CPU_INTEL_SOCKET_ATOM_D5XX
+
+config SOCKET_SPECIFIC_OPTIONS
+	def_bool y
+	select CPU_INTEL_MODEL_106CX
+	select MMX
+	select SSE
+
+config DCACHE_RAM_BASE
+	hex
+	default 0xff000000
+
+config DCACHE_RAM_SIZE
+	hex
+	default 0x8000
+
+endif # CPU_INTEL_SOCKET_ATOM_D5XX
diff --git a/src/cpu/intel/socket_atom_d5xx/Makefile.inc b/src/cpu/intel/socket_atom_d5xx/Makefile.inc
new file mode 100644
index 0000000..e36c8b1
--- /dev/null
+++ b/src/cpu/intel/socket_atom_d5xx/Makefile.inc
@@ -0,0 +1,8 @@
+subdirs-y += ../model_106cx
+subdirs-y += ../../x86/tsc
+subdirs-y += ../../x86/mtrr
+subdirs-y += ../../x86/lapic
+subdirs-y += ../../x86/cache
+subdirs-y += ../../x86/smm
+subdirs-y += ../microcode
+subdirs-y += ../hyperthreading



More information about the coreboot-gerrit mailing list