blob: a1fce05aa7a5f7b64e8889f348934d3f75e5ee8a [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>
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020016#include <linux/of_platform.h>
17
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020018#include <mach/board.h>
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020019
20#include <asm/setup.h>
21#include <asm/irq.h>
22#include <asm/mach/arch.h>
23#include <asm/mach/map.h>
24#include <asm/mach/irq.h>
25
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020026#include "generic.h"
27
28
Nicolas Ferre8014d6f2012-02-14 18:08:14 +010029static const struct of_device_id irq_of_match[] __initconst = {
30
31 { .compatible = "atmel,at91rm9200-aic", .data = at91_aic_of_init },
32 { .compatible = "atmel,at91rm9200-gpio", .data = at91_gpio_of_irq_setup },
Nicolas Ferre582d5fb2010-07-20 19:18:51 +020033 { .compatible = "atmel,at91sam9x5-gpio", .data = at91_gpio_of_irq_setup },
Nicolas Ferre8014d6f2012-02-14 18:08:14 +010034 { /*sentinel*/ }
35};
36
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020037static void __init at91_dt_init_irq(void)
38{
Nicolas Ferre8014d6f2012-02-14 18:08:14 +010039 of_irq_init(irq_of_match);
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020040}
41
42static void __init at91_dt_device_init(void)
43{
44 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020045}
46
47static const char *at91_dt_board_compat[] __initdata = {
Jean-Christophe PLAGNIOL-VILLARD7c8a98c2012-03-01 14:47:44 +080048 "atmel,at91sam9",
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020049 NULL
50};
51
52DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM (Device Tree)")
53 /* Maintainer: Atmel */
54 .timer = &at91sam926x_timer,
55 .map_io = at91_map_io,
Jean-Christophe PLAGNIOL-VILLARD2b11ea52012-02-28 13:57:51 +080056 .init_early = at91_dt_initialize,
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020057 .init_irq = at91_dt_init_irq,
58 .init_machine = at91_dt_device_init,
59 .dt_compat = at91_dt_board_compat,
60MACHINE_END