From patchwork Mon Aug 25 03:03:34 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4772251 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 03DD2C0338 for ; Mon, 25 Aug 2014 03:01:19 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3169120121 for ; Mon, 25 Aug 2014 03:01:18 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5DC9C20114 for ; Mon, 25 Aug 2014 03:01:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753887AbaHYDBR (ORCPT ); Sun, 24 Aug 2014 23:01:17 -0400 Received: from mail-pa0-f45.google.com ([209.85.220.45]:43010 "EHLO mail-pa0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753826AbaHYDBQ (ORCPT ); Sun, 24 Aug 2014 23:01:16 -0400 Received: by mail-pa0-f45.google.com with SMTP id eu11so19987857pac.18 for ; Sun, 24 Aug 2014 20:01:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:date:message-id:in-reply-to:references:subject; bh=Ba0YKwwf7iRTFUoo4a6WKz8APX2bRKxbHRQ5OuFckyo=; b=glwRPQvcQDEW9iMR6RwMpfzWpqXefuurk3QyzZcGjQ7OaSFzsOU92nsqJNzhERQuqd ON0UOITULDSF1avGkNBJRRaB7Tdw71lx48zcfwrEivEaY+I9M3gXShvuEYyD2/9COtMJ YpNmR7kDaEEptgAiZ7njMjOXb+KLKuwlVlK6coFuC3MmS/5aFz914v0WbdvQ/K/wDTaW xyoQ/WFaBxbf793w8FYPrW1d3Qqv5vo3vGoEF5IxkGS45lCimA8kI5eQRYP4wsWjUDHK TDnC1KIR+fabsoPvrUA4Nyr1uIZEDjd+OCSfu/Y8btZaf7o7/qWrQStt1QNh6bB/k9Tb NPpg== X-Received: by 10.70.56.101 with SMTP id z5mr24545594pdp.47.1408935676345; Sun, 24 Aug 2014 20:01:16 -0700 (PDT) Received: from [127.0.0.1] (s214090.ppp.asahi-net.or.jp. [220.157.214.90]) by mx.google.com with ESMTPSA id gu4sm35793183pbb.54.2014.08.24.20.01.14 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 24 Aug 2014 20:01:15 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au, geert+renesas@glider.be Date: Mon, 25 Aug 2014 12:03:34 +0900 Message-Id: <20140825030334.1936.26302.sendpatchset@w520> In-Reply-To: <20140825030316.1936.88249.sendpatchset@w520> References: <20140825030316.1936.88249.sendpatchset@w520> Subject: [PATCH v2 02/05] ARM: shmobile: Introduce a Kconfig entry for R-Car Gen1 Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Magnus Damm Add a Kconfig entry for R-Car Generation 1 SoCs that enables TMU timer and the INTC IRQPIN driver. Signed-off-by: Magnus Damm Acked-by: Geert Uytterhoeven --- Changes since V1: - Removed dependency of "ARM: shmobile: Consolidate GPIOLIB Kconfig bits" arch/arm/mach-shmobile/Kconfig | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- 0002/arch/arm/mach-shmobile/Kconfig +++ work/arch/arm/mach-shmobile/Kconfig 2014-08-25 11:30:27.000000000 +0900 @@ -1,6 +1,11 @@ config ARCH_SHMOBILE bool +config ARCH_RCAR_GEN1 + bool + select RENESAS_INTC_IRQPIN + select SYS_SUPPORTS_SH_TMU + config ARCH_RMOBILE bool select SYS_SUPPORTS_SH_CMT @@ -33,8 +38,7 @@ config ARCH_R7S72100 config ARCH_R8A7779 bool "R-Car H1 (R8A77790)" - select RENESAS_INTC_IRQPIN - select SYS_SUPPORTS_SH_TMU + select ARCH_RCAR_GEN1 config ARCH_R8A7790 bool "R-Car H2 (R8A77900)" @@ -110,21 +114,19 @@ config ARCH_R8A7740 config ARCH_R8A7778 bool "R-Car M1A (R8A77781)" + select ARCH_RCAR_GEN1 select ARCH_WANT_OPTIONAL_GPIOLIB select CPU_V7 select SH_CLK_CPG select ARM_GIC - select SYS_SUPPORTS_SH_TMU - select RENESAS_INTC_IRQPIN config ARCH_R8A7779 bool "R-Car H1 (R8A77790)" + select ARCH_RCAR_GEN1 select ARCH_WANT_OPTIONAL_GPIOLIB select ARM_GIC select CPU_V7 select SH_CLK_CPG - select RENESAS_INTC_IRQPIN - select SYS_SUPPORTS_SH_TMU config ARCH_R8A7790 bool "R-Car H2 (R8A77900)"