blob: a15ab6f8de00efb3fbdf76505c36cf170114343e [file] [log] [blame]
Joachim Eastwood397f8c32012-10-28 18:31:09 +00001/*
2 * Setup code for AT91RM9200 Evaluation Kits with Device Tree support
3 *
4 * Copyright (C) 2011 Atmel,
5 * 2011 Nicolas Ferre <nicolas.ferre@atmel.com>
6 * 2012 Joachim Eastwood <manabian@gmail.com>
7 *
8 * Licensed under GPLv2 or later.
9 */
10
11#include <linux/types.h>
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/gpio.h>
15#include <linux/of.h>
16#include <linux/of_irq.h>
Alexandre Belloni04ffc962014-09-05 16:15:33 +020017#include <linux/clk-provider.h>
Joachim Eastwood397f8c32012-10-28 18:31:09 +000018
Joachim Eastwood397f8c32012-10-28 18:31:09 +000019#include <asm/setup.h>
20#include <asm/irq.h>
21#include <asm/mach/arch.h>
22#include <asm/mach/map.h>
23#include <asm/mach/irq.h>
24
Joachim Eastwood397f8c32012-10-28 18:31:09 +000025#include "generic.h"
26
Alexandre Belloni04ffc962014-09-05 16:15:33 +020027static void __init at91rm9200_dt_timer_init(void)
28{
Alexandre Belloni04ffc962014-09-05 16:15:33 +020029 of_clk_init(NULL);
Alexandre Belloni04ffc962014-09-05 16:15:33 +020030 at91rm9200_timer_init();
31}
32
Joachim Eastwood397f8c32012-10-28 18:31:09 +000033static const char *at91rm9200_dt_board_compat[] __initdata = {
34 "atmel,at91rm9200",
35 NULL
36};
37
38DT_MACHINE_START(at91rm9200_dt, "Atmel AT91RM9200 (Device Tree)")
Alexandre Belloni04ffc962014-09-05 16:15:33 +020039 .init_time = at91rm9200_dt_timer_init,
Joachim Eastwood397f8c32012-10-28 18:31:09 +000040 .map_io = at91_map_io,
Alexandre Belloni427accd2015-01-12 19:42:15 +010041 .init_early = at91_dt_initialize,
Joachim Eastwood397f8c32012-10-28 18:31:09 +000042 .dt_compat = at91rm9200_dt_board_compat,
43MACHINE_END