From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-gx0-f14.google.com (mail-gx0-f14.google.com [209.85.217.14]) by ozlabs.org (Postfix) with ESMTP id DBF0FDE7F1 for ; Tue, 14 Oct 2008 05:10:54 +1100 (EST) Received: by gxk7 with SMTP id 7so4771188gxk.9 for ; Mon, 13 Oct 2008 11:10:53 -0700 (PDT) Message-Id: From: Josh Boyer Date: Mon, 13 Oct 2008 14:07:18 -0400 Subject: [PATCH 0/5] Acadia support To: linuxppc-dev@ozlabs.org Mime-Version: 1.0 Sender: Josh Boyer List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Updated patch set for the AMCC Acadia board. As Arnd suggested, I implemented the ppc40x_simple platform and simply add Acadia as the first supported board. The patches are slightly reordered and the defconfig is updated as well. josh Josh Boyer (5): powerpc/40x: AMCC PowerPC 405EZ Acadia DTS powerpc/40x: Add AMCC PowerPC 405EZ to cputable powerpc/40x: Add PowerPC 40x simple platform support powerpc/40x: Add cuboot wrapper for Acadia board powerpc/40x: Add PowerPC 405EZ Acadia defconfig arch/powerpc/boot/Makefile | 4 +- arch/powerpc/boot/cuboot-acadia.c | 174 ++++++ arch/powerpc/boot/dts/acadia.dts | 224 +++++++ arch/powerpc/configs/40x/acadia_defconfig | 921 ++++++++++++++++++++++++++++ arch/powerpc/kernel/cputable.c | 13 + arch/powerpc/platforms/40x/Kconfig | 22 + arch/powerpc/platforms/40x/Makefile | 1 + arch/powerpc/platforms/40x/ppc40x_simple.c | 80 +++ 8 files changed, 1438 insertions(+), 1 deletions(-) create mode 100644 arch/powerpc/boot/cuboot-acadia.c create mode 100644 arch/powerpc/boot/dts/acadia.dts create mode 100644 arch/powerpc/configs/40x/acadia_defconfig create mode 100644 arch/powerpc/platforms/40x/ppc40x_simple.c