From patchwork Sun Dec 9 21:54:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 204790 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 612D12C0172 for ; Mon, 10 Dec 2012 08:54:17 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 240C93107D; Sun, 9 Dec 2012 21:54:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VjATmcpSbVCo; Sun, 9 Dec 2012 21:54:15 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id D988231065; Sun, 9 Dec 2012 21:54:14 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id C98E58F74B for ; Sun, 9 Dec 2012 21:54:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id A2F4B80820 for ; Sun, 9 Dec 2012 21:54:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nHysghC2TS7L for ; Sun, 9 Dec 2012 21:54:12 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 52A1880663 for ; Sun, 9 Dec 2012 21:54:12 +0000 (UTC) Received: from asgard (host201.201-252-64.telecom.net.ar [201.252.64.201]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id qB9Ls5hu024580 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 9 Dec 2012 21:54:07 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1355090049; bh=5mv/aj5mmxFgRTvYwIf2Mrwah/lAkdkDrK/n+q9Kk1g=; h=From:To:Cc:Subject:Date; b=tWyLvhrMHIeiBlERBcraE02qUXmv+aZ1cCLsc/vAqkEyFPbNuqsDeK8dhhinDHiNZ mqBnPcqDP2WQCrOycSwMx+s5LSWArMXfw91YxLYt+2kioZSb6C/Cd350ZMAGN7jufC Wlq4yonHWDb1oq83VtfgoFnHqfWZsOU2d6QcKa/E= Received: by asgard (sSMTP sendmail emulation); Sun, 09 Dec 2012 18:54:04 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sun, 9 Dec 2012 18:54:02 -0300 Message-Id: <1355090043-12326-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 1/2] powerpc: update processor types X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Update the powerpc processor types. Remove the 801, it's the original IBM experimental implementation. Add the 464, 464fp, 476 and 476fp cores. Signed-off-by: Gustavo Zacarias --- arch/Config.in.powerpc | 15 ++++++++++++--- toolchain/gcc/Config.in | 4 ++-- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/arch/Config.in.powerpc b/arch/Config.in.powerpc index 693246b..8643efc 100644 --- a/arch/Config.in.powerpc +++ b/arch/Config.in.powerpc @@ -18,6 +18,14 @@ config BR2_powerpc_440 bool "440" config BR2_powerpc_440fp bool "440 with FPU" +config BR2_powerpc_464 + bool "464" +config BR2_powerpc_464fp + bool "464 with FPU" +config BR2_powerpc_476 + bool "476" +config BR2_powerpc_476fp + bool "476 with FPU" config BR2_powerpc_505 bool "505" config BR2_powerpc_601 @@ -44,8 +52,6 @@ config BR2_powerpc_7450 bool "7450" config BR2_powerpc_750 bool "750" -config BR2_powerpc_801 - bool "801" config BR2_powerpc_821 bool "821" config BR2_powerpc_823 @@ -95,6 +101,10 @@ config BR2_GCC_TARGET_TUNE default "405fp" if BR2_powerpc_405fp default "440" if BR2_powerpc_440 default "440fp" if BR2_powerpc_440fp + default "464" if BR2_powerpc_464 + default "464fp" if BR2_powerpc_464fp + default "476" if BR2_powerpc_476 + default "476fp" if BR2_powerpc_476fp default "505" if BR2_powerpc_505 default "601" if BR2_powerpc_601 default "602" if BR2_powerpc_602 @@ -108,7 +118,6 @@ config BR2_GCC_TARGET_TUNE default "7400" if BR2_powerpc_7400 default "7450" if BR2_powerpc_7450 default "750" if BR2_powerpc_750 - default "801" if BR2_powerpc_801 default "821" if BR2_powerpc_821 default "823" if BR2_powerpc_823 default "860" if BR2_powerpc_860 diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index 6456502..de79452 100644 --- a/toolchain/gcc/Config.in +++ b/toolchain/gcc/Config.in @@ -15,11 +15,11 @@ choice bool "gcc 4.2.2-avr32-2.1.5" config BR2_GCC_VERSION_4_3_X - depends on !BR2_avr32 && !BR2_sparc_sparchfleon && !BR2_sparc_sparchfleonv8 && !BR2_sparc_sparcsfleon && !BR2_sparc_sparcsfleonv8 && !BR2_cortex_a8 && !BR2_cortex_a9 && !BR2_x86_atom && !BR2_powerpc_e300c2 && !BR2_powerpc_e300c3 && !BR2_powerpc_e500mc + depends on !BR2_avr32 && !BR2_sparc_sparchfleon && !BR2_sparc_sparchfleonv8 && !BR2_sparc_sparcsfleon && !BR2_sparc_sparcsfleonv8 && !BR2_cortex_a8 && !BR2_cortex_a9 && !BR2_x86_atom && !BR2_powerpc_e300c2 && !BR2_powerpc_e300c3 && !BR2_powerpc_e500mc && !BR2_powerpc_464 && !BR2_powerpc_464fp && !BR2_powerpc_476 && !BR2_powerpc_476fp bool "gcc 4.3.x" config BR2_GCC_VERSION_4_4_X - depends on !BR2_avr32 && !BR2_x86_atom + depends on !BR2_avr32 && !BR2_x86_atom && !BR2_powerpc_476 && !BR2_powerpc_476fp bool "gcc 4.4.x" config BR2_GCC_VERSION_4_5_X