From patchwork Sun Jul 15 14:49:13 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Fainelli X-Patchwork-Id: 1199001 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id 1B3D1E0004 for ; Sun, 15 Jul 2012 14:56:11 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1SqQCj-0003Kn-U8; Sun, 15 Jul 2012 14:53:51 +0000 Received: from mail-we0-f177.google.com ([74.125.82.177]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1SqQ9m-0003E7-IB for linux-arm-kernel@lists.infradead.org; Sun, 15 Jul 2012 14:50:50 +0000 Received: by weyr3 with SMTP id r3so3657533wey.36 for ; Sun, 15 Jul 2012 07:49:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=sXzTYViUBTm9jHbyp8QqP9SSwaB0eu0ig/hgqhpfuxE=; b=FiBzno16YZrRF2nB0i9cSK/ElPYAlYdPmotZ77rPFPlBVAK9FY6Q43ftLRBocHFifj DOaC2LiafVVs6jFJQOBxAqJO4xjVopkhb6F4w0ZZxlyMYUqjz6tHlz9izyZYl5nRoX/9 Dz3kag+FS4Aw4Y/NCWDbZ8eICsCobgFZcj4hS7ByIjq4baItFXzJuJfwiD86cOSoGGzx 2eX943LjW98f2l4p2eK4I3vqcnIATwQwqT1V/mka/w9g1AG3Ub97CkVMMhpkXmFYwtW8 n9yRbwHXjJKb7aEuNzayvua2+UW7wIGGh68bGUdFEGSbGzAzGa13tCfxhTE2pSBOCLn6 OKKw== Received: by 10.180.105.6 with SMTP id gi6mr11522315wib.4.1342363780947; Sun, 15 Jul 2012 07:49:40 -0700 (PDT) Received: from localhost.localdomain ([78.251.81.37]) by mx.google.com with ESMTPS id t7sm23788594wix.6.2012.07.15.07.49.39 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 15 Jul 2012 07:49:40 -0700 (PDT) From: Florian Fainelli To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 7/8] ARM: MSC814X: add Kconfig and Makefile to arch/arm Date: Sun, 15 Jul 2012 16:49:13 +0200 Message-Id: <1342363754-30808-8-git-send-email-florian@openwrt.org> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1342363754-30808-1-git-send-email-florian@openwrt.org> References: <1342363754-30808-1-git-send-email-florian@openwrt.org> X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [74.125.82.177 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (f.fainelli[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: olof@lixom.net, devicetree-discuss@lists.ozlabs.org, Florian Fainelli , arnd@arndb.de X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org This patch makes arch/arm/{Kconfig,Makefile} reference the MCS814x machine code that we can now select and build it. Signed-off-by: Florian Fainelli --- arch/arm/Kconfig | 15 +++++++++++++++ arch/arm/Makefile | 1 + 2 files changed, 16 insertions(+) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 84449dd..ec7e340 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -618,6 +618,19 @@ config ARCH_KS8695 Support for Micrel/Kendin KS8695 "Centaur" (ARM922T) based System-on-Chip devices. +config ARCH_MCS814X + bool "Moschip MCS814x" + select PCI + select FIQ + select GENERIC_IRQ_CHIP + select GENERIC_GPIO + select ARCH_REQUIRE_GPIOLIB + select CLKDEV_LOOKUP + select ARCH_USES_GETTIMEOFFSET + select NEED_MACH_MEMORY_H + help + Support for Moschip MCS814x SoCs (MCS8140 currently). + config ARCH_W90X900 bool "Nuvoton W90X900 CPU" select CPU_ARM926T @@ -1054,6 +1067,8 @@ source "arch/arm/mach-sa1100/Kconfig" source "arch/arm/plat-samsung/Kconfig" source "arch/arm/plat-s3c24xx/Kconfig" +source "arch/arm/mach-mcs814x/Kconfig" + source "arch/arm/plat-spear/Kconfig" source "arch/arm/mach-s3c24xx/Kconfig" diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 0298b00..1d9f377 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile @@ -151,6 +151,7 @@ machine-$(CONFIG_ARCH_IXP4XX) := ixp4xx machine-$(CONFIG_ARCH_KIRKWOOD) := kirkwood machine-$(CONFIG_ARCH_KS8695) := ks8695 machine-$(CONFIG_ARCH_LPC32XX) := lpc32xx +machine-$(CONFIG_ARCH_MCS814X) := mcs814x machine-$(CONFIG_ARCH_MMP) := mmp machine-$(CONFIG_ARCH_MSM) := msm machine-$(CONFIG_ARCH_MV78XX0) := mv78xx0