Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761785Ab3EBXtf (ORCPT ); Thu, 2 May 2013 19:49:35 -0400 Received: from mail-bk0-f46.google.com ([209.85.214.46]:57606 "EHLO mail-bk0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932080Ab3EBXtG (ORCPT ); Thu, 2 May 2013 19:49:06 -0400 From: Sebastian Hesselbarth To: Sebastian Hesselbarth Cc: Grant Likely , Rob Herring , Rob Landley , Thomas Gleixner , Russell King , Arnd Bergmann , Jason Cooper , Andrew Lunn , Jason Gunthorpe , Thomas Petazzoni , Gregory Clement , Ezequiel Garcia , Jean-Francois Moine , devicetree-discuss@lists.ozlabs.org, linux-doc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH v2 3/5] ARM: dove: add DT parsing for legacy timer Date: Fri, 3 May 2013 01:48:37 +0200 Message-Id: <1367538519-23940-4-git-send-email-sebastian.hesselbarth@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1367538519-23940-1-git-send-email-sebastian.hesselbarth@gmail.com> References: <1367519104-19677-1-git-send-email-sebastian.hesselbarth@gmail.com> <1367538519-23940-1-git-send-email-sebastian.hesselbarth@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3834 Lines: 125 To allow to move to orion irqchip driver, existing legacy devices have to map their irqs. This patch adds init code to map the corresponding irqs. It will vanish as soon as there is true device tree support for orion timer. Signed-off-by: Sebastian Hesselbarth --- Changelog: v1->v2: - split off DT changes (Suggested by Jason Cooper) Cc: Grant Likely Cc: Rob Herring Cc: Rob Landley Cc: Thomas Gleixner Cc: Russell King Cc: Arnd Bergmann Cc: Jason Cooper Cc: Andrew Lunn Cc: Jason Gunthorpe Cc: Thomas Petazzoni Cc: Gregory Clement Cc: Ezequiel Garcia Cc: Jean-Francois Moine Cc: devicetree-discuss@lists.ozlabs.org Cc: linux-doc@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org Cc: linux-kernel@vger.kernel.org --- arch/arm/mach-dove/board-dt.c | 42 +++++++++++++++++++++++++++++++++++------ 1 file changed, 36 insertions(+), 6 deletions(-) diff --git a/arch/arm/mach-dove/board-dt.c b/arch/arm/mach-dove/board-dt.c index 9df6dd7..cea65b7 100644 --- a/arch/arm/mach-dove/board-dt.c +++ b/arch/arm/mach-dove/board-dt.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include @@ -20,6 +21,7 @@ #include #include #include +#include #include "common.h" /* @@ -48,10 +50,42 @@ static void __init dove_legacy_clk_init(void) of_clk_get_from_provider(&clkspec)); } -static void __init dove_of_clk_init(void) +#define BRIDGE_INT_TIMER1_CLR (~0x0004) + +static void __init dove_legacy_timer_init(void) { + struct device_node *np = of_find_compatible_node(NULL, NULL, + "marvell,orion-timer"); + struct clk *clk; + void __iomem *base; + unsigned int tclk, irq; + + /* Setup root of clk tree */ mvebu_clocks_init(); dove_legacy_clk_init(); + + if (!np) + panic("missing timer node\n"); + + base = of_iomap(np, 0); + if (!base) + panic("%s: missing reg base for timer\n", np->full_name); + + irq = irq_of_parse_and_map(np, 0); + if (!irq) + panic("%s: missing irq for timer\n", np->full_name); + + clk = of_clk_get(np, 0); + if (IS_ERR(clk)) + panic("%s: missing clock for timer\n", np->full_name); + + clk_prepare_enable(clk); + tclk = clk_get_rate(clk); + clk_put(clk); + + orion_time_set_base(base); + /* legacy timer init gets bridge reg base */ + orion_time_init(base - 0x300, BRIDGE_INT_TIMER1_CLR, irq, tclk); } static struct mv643xx_eth_platform_data dove_dt_ge00_data = { @@ -95,9 +129,6 @@ static void __init dove_dt_init(void) #endif dove_setup_cpu_mbus(); - /* Setup root of clk tree */ - dove_of_clk_init(); - /* Internal devices not ported to DT yet */ dove_legacy_ge00_init(); dove_pcie_init(1, 1); @@ -112,9 +143,8 @@ static const char * const dove_dt_board_compat[] = { DT_MACHINE_START(DOVE_DT, "Marvell Dove (Flattened Device Tree)") .map_io = dove_map_io, - .init_early = dove_init_early, .init_irq = orion_dt_init_irq, - .init_time = dove_timer_init, + .init_time = dove_legacy_timer_init, .init_machine = dove_dt_init, .restart = dove_restart, .dt_compat = dove_dt_board_compat, -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/