From patchwork Thu Apr 11 11:24:03 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bastian Hecht X-Patchwork-Id: 2427361 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 1B7A63FD40 for ; Thu, 11 Apr 2013 11:24:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752796Ab3DKLYR (ORCPT ); Thu, 11 Apr 2013 07:24:17 -0400 Received: from mail-bk0-f51.google.com ([209.85.214.51]:61499 "EHLO mail-bk0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753154Ab3DKLYR (ORCPT ); Thu, 11 Apr 2013 07:24:17 -0400 Received: by mail-bk0-f51.google.com with SMTP id y8so757625bkt.38 for ; Thu, 11 Apr 2013 04:24:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=ueJpBcCaRccPN3uqJoO+kDO5eBbHRkclvkBqIfLOFQo=; b=XXxLnT0Tl0tsQpgteb5vhrF/oSRMWGq2iyO/FDifG86tzfsbJLUomVpBCFRhfI9S/j pMgfUgJ4Nwi3kmcXn0AdcSWCGCyL4NFKvCNBfGOqVduwKC76g0jt86PgSylfC1b1UKL0 pilpLkktCQqP2g+nZnfnx2/jd1uPIoZmDo10iNe3vhMvuHmMGH3e3jerZfb4agTdtNxE Ra34+4c6C1V9VzKk8PvhAhnSb8SN4EA72okk6mQBdvS5cPGQ+N5E3iKa1SdgwCVBFQ5q 6LxZgePG5/anlbLj8vxIucWZzINEnpxZeHUZ8lFJP4DB0cuSdqPoDQLw8uIhgjxki9ED lvVg== X-Received: by 10.205.35.13 with SMTP id su13mr2329861bkb.40.1365679456087; Thu, 11 Apr 2013 04:24:16 -0700 (PDT) Received: from localhost.localdomain (g229146212.adsl.alicedsl.de. [92.229.146.212]) by mx.google.com with ESMTPS id uo3sm1665914bkb.11.2013.04.11.04.24.15 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 11 Apr 2013 04:24:15 -0700 (PDT) From: Bastian Hecht To: linux-sh@vger.kernel.org Cc: Magnus Damm , Simon Horman , Paul Mundt , Mark Rutland , Sergei Shtylyov , linux-arm-kernel@lists.infradead.org Subject: [PATCH v4 7/7] ARM: mach-shmobile: r8a7740: Setup the timer CMT10 using DT Date: Thu, 11 Apr 2013 13:24:03 +0200 Message-Id: <1365679443-25456-7-git-send-email-hechtb+renesas@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1365679443-25456-1-git-send-email-hechtb+renesas@gmail.com> References: <1365679443-25456-1-git-send-email-hechtb+renesas@gmail.com> Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org We can now use the Device Tree for bringing up our timer device CMT10 on the SoC r8a7740. Signed-off-by: Bastian Hecht --- v4: same. only patch 2 and 3 changed arch/arm/mach-shmobile/setup-r8a7740.c | 33 -------------------------------- 1 file changed, 33 deletions(-) diff --git a/arch/arm/mach-shmobile/setup-r8a7740.c b/arch/arm/mach-shmobile/setup-r8a7740.c index c2ac4aa..e88b50d 100644 --- a/arch/arm/mach-shmobile/setup-r8a7740.c +++ b/arch/arm/mach-shmobile/setup-r8a7740.c @@ -363,38 +363,6 @@ static struct platform_device scifb_device = { }, }; -/* CMT */ -static struct sh_timer_config cmt10_platform_data = { - .name = "CMT10", - .channel_offset = 0x10, - .timer_bit = 0, - .clockevent_rating = 125, - .clocksource_rating = 125, -}; - -static struct resource cmt10_resources[] = { - [0] = { - .name = "CMT10", - .start = 0xe6138010, - .end = 0xe613801b, - .flags = IORESOURCE_MEM, - }, - [1] = { - .start = gic_spi(58), - .flags = IORESOURCE_IRQ, - }, -}; - -static struct platform_device cmt10_device = { - .name = "sh_cmt", - .id = 10, - .dev = { - .platform_data = &cmt10_platform_data, - }, - .resource = cmt10_resources, - .num_resources = ARRAY_SIZE(cmt10_resources), -}; - /* TMU */ static struct sh_timer_config tmu00_platform_data = { .name = "TMU00", @@ -531,7 +499,6 @@ static struct platform_device *r8a7740_early_devices[] __initdata = { &scif6_device, &scif7_device, &scifb_device, - &cmt10_device, &tmu00_device, &tmu01_device, &tmu02_device,