From 828d9af5eca7404ded18e0ede453f8040fd01f78 Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Mon, 2 Feb 2015 22:35:27 +0800 Subject: x86: Add basic Intel Quark processor support Add minimum codes to support Intel Quark SoC. DRAM initialization is not ready yet so a hardcoded gd->ram_size is assigned. Signed-off-by: Bin Meng Acked-by: Simon Glass --- arch/x86/cpu/quark/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 arch/x86/cpu/quark/Makefile (limited to 'arch/x86/cpu/quark/Makefile') diff --git a/arch/x86/cpu/quark/Makefile b/arch/x86/cpu/quark/Makefile new file mode 100644 index 0000000..168c1e6 --- /dev/null +++ b/arch/x86/cpu/quark/Makefile @@ -0,0 +1,8 @@ +# +# Copyright (C) 2015, Bin Meng +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-y += car.o dram.o msg_port.o quark.o +obj-$(CONFIG_PCI) += pci.o -- cgit v1.1 From 236b711e89b529758ab474660b936140dbab3842 Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Thu, 5 Feb 2015 23:42:25 +0800 Subject: x86: quark: Enable the Memory Reference Code build Turn on the Memory Reference code build in the quark Makefile. Signed-off-by: Bin Meng Acked-by: Simon Glass --- arch/x86/cpu/quark/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'arch/x86/cpu/quark/Makefile') diff --git a/arch/x86/cpu/quark/Makefile b/arch/x86/cpu/quark/Makefile index 168c1e6..e87b424 100644 --- a/arch/x86/cpu/quark/Makefile +++ b/arch/x86/cpu/quark/Makefile @@ -5,4 +5,5 @@ # obj-y += car.o dram.o msg_port.o quark.o +obj-y += mrc.o mrc_util.o hte.o smc.o obj-$(CONFIG_PCI) += pci.o -- cgit v1.1