blob: 575b0be66ca8958028c656e3289b26368fb401a4 [file] [log] [blame]
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +02001/*
2 * Setup code for AT91SAM Evaluation Kits with Device Tree support
3 *
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +02004 * Copyright (C) 2011 Atmel,
5 * 2011 Nicolas Ferre <nicolas.ferre@atmel.com>
6 *
7 * Licensed under GPLv2 or later.
8 */
9
10#include <linux/types.h>
11#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/gpio.h>
Nicolas Ferre8014d6f2012-02-14 18:08:14 +010014#include <linux/of.h>
15#include <linux/of_irq.h>
Boris BREZILLON2db5a932014-03-12 10:43:41 +010016#include <linux/clk-provider.h>
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020017
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020018#include <asm/setup.h>
19#include <asm/irq.h>
20#include <asm/mach/arch.h>
21#include <asm/mach/map.h>
22#include <asm/mach/irq.h>
23
Jean-Christophe PLAGNIOL-VILLARDa510b9b2012-10-30 06:41:28 +080024#include "at91_aic.h"
Jean-Christophe PLAGNIOL-VILLARD43d2f532012-10-30 05:14:17 +080025#include "board.h"
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020026#include "generic.h"
27
28
Boris BREZILLON2db5a932014-03-12 10:43:41 +010029static void __init sam9_dt_timer_init(void)
30{
31#if defined(CONFIG_COMMON_CLK)
32 of_clk_init(NULL);
33#endif
34 at91sam926x_pit_init();
35}
36
Nicolas Ferre8014d6f2012-02-14 18:08:14 +010037static const struct of_device_id irq_of_match[] __initconst = {
38
39 { .compatible = "atmel,at91rm9200-aic", .data = at91_aic_of_init },
Nicolas Ferre8014d6f2012-02-14 18:08:14 +010040 { /*sentinel*/ }
41};
42
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020043static void __init at91_dt_init_irq(void)
44{
Nicolas Ferre8014d6f2012-02-14 18:08:14 +010045 of_irq_init(irq_of_match);
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020046}
47
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020048static const char *at91_dt_board_compat[] __initdata = {
Jean-Christophe PLAGNIOL-VILLARD7c8a98c2012-03-01 14:47:44 +080049 "atmel,at91sam9",
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020050 NULL
51};
52
53DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM (Device Tree)")
54 /* Maintainer: Atmel */
Boris BREZILLON2db5a932014-03-12 10:43:41 +010055 .init_time = sam9_dt_timer_init,
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020056 .map_io = at91_map_io,
Ludovic Desroches3e135462012-06-11 15:38:03 +020057 .handle_irq = at91_aic_handle_irq,
Jean-Christophe PLAGNIOL-VILLARD2b11ea52012-02-28 13:57:51 +080058 .init_early = at91_dt_initialize,
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020059 .init_irq = at91_dt_init_irq,
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020060 .dt_compat = at91_dt_board_compat,
61MACHINE_END