From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Fri, 6 Feb 2015 13:26:21 -0700 Subject: [U-Boot] [RFC PATCH v3 5/7] x86: Add basic Intel Quark processor support In-Reply-To: References: <1422887729-601-1-git-send-email-bmeng.cn@gmail.com> <1422887729-601-6-git-send-email-bmeng.cn@gmail.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 4 February 2015 at 08:07, Simon Glass wrote: > On 2 February 2015 at 07:35, Bin Meng wrote: >> 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 >> >> --- >> >> Changes in v3: >> - Add simple help for ACPI PM1, PBLK and GEP0 >> >> Changes in v2: >> - Use machine-specific >> - Move vairous components' base addresses within Quark SoC to Kconfig >> - Rebase to u-boot-86/master >> >> arch/x86/cpu/quark/Kconfig | 121 +++++++++++++++++++++++++++++++++ >> arch/x86/cpu/quark/Makefile | 8 +++ >> arch/x86/cpu/quark/dram.c | 39 +++++++++++ >> arch/x86/cpu/quark/pci.c | 70 +++++++++++++++++++ >> arch/x86/cpu/quark/quark.c | 44 ++++++++++++ >> arch/x86/include/asm/arch-quark/gpio.h | 13 ++++ >> 6 files changed, 295 insertions(+) >> create mode 100644 arch/x86/cpu/quark/Kconfig >> create mode 100644 arch/x86/cpu/quark/Makefile >> create mode 100644 arch/x86/cpu/quark/dram.c >> create mode 100644 arch/x86/cpu/quark/pci.c >> create mode 100644 arch/x86/cpu/quark/quark.c >> create mode 100644 arch/x86/include/asm/arch-quark/gpio.h > > Acked-by: Simon Glass Applied to u-boot-x86, thanks!