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

Damien Zammit (damien@zamaudio.com) gerrit at coreboot.org
Fri Nov 13 15:23:55 CET 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 479fdf477532ac605c4d532e555215396698f80c
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  |  9 +++++++++
 5 files changed, 32 insertions(+)

diff --git a/src/cpu/intel/Kconfig b/src/cpu/intel/Kconfig
index 19f1c73..69760e2 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_BGA1284/Kconfig
 source src/cpu/intel/socket_FC_PGA370/Kconfig
diff --git a/src/cpu/intel/Makefile.inc b/src/cpu/intel/Makefile.inc
index 4fd3c84..e80ebc8 100644
--- a/src/cpu/intel/Makefile.inc
+++ b/src/cpu/intel/Makefile.inc
@@ -4,6 +4,7 @@
 # Therefore: ONLY include Makefile.inc from socket directories!
 
 subdirs-$(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE) += fit
+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_SOCKET_BGA1284) += socket_BGA1284
diff --git a/src/cpu/intel/model_106cx/model_106cx_init.c b/src/cpu/intel/model_106cx/model_106cx_init.c
index 4f38265..82552d8 100644
--- a/src/cpu/intel/model_106cx/model_106cx_init.c
+++ b/src/cpu/intel/model_106cx/model_106cx_init.c
@@ -148,6 +148,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..b8ac1e3
--- /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 0xfffe0000
+
+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..cc1aa56
--- /dev/null
+++ b/src/cpu/intel/socket_atom_d5xx/Makefile.inc
@@ -0,0 +1,9 @@
+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
+subdirs-y += ../speedstep



More information about the coreboot-gerrit mailing list