blob: 0fe1ced608c58257a29301dac9152cca88c83c3a [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 Ferre8014d6f42012-02-14 18:08:14 +010014#include <linux/of.h>
15#include <linux/of_irq.h>
Alexandre Belloni4db0ba22015-01-15 15:59:27 +010016#include <linux/of_platform.h>
Boris BREZILLON2db5a932014-03-12 10:43:41 +010017#include <linux/clk-provider.h>
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020018
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020019#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
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020025#include "generic.h"
26
Alexandre Belloni4db0ba22015-01-15 15:59:27 +010027static void __init sam9_dt_device_init(void)
28{
29 at91_sam9260_pm_init();
30 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
31}
32
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020033static const char *at91_dt_board_compat[] __initdata = {
Jean-Christophe PLAGNIOL-VILLARD7c8a98c2012-03-01 14:47:44 +080034 "atmel,at91sam9",
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020035 NULL
36};
37
38DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM (Device Tree)")
39 /* Maintainer: Atmel */
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020040 .map_io = at91_map_io,
Jean-Christophe PLAGNIOL-VILLARD2b11ea52012-02-28 13:57:51 +080041 .init_early = at91_dt_initialize,
Alexandre Belloni4db0ba22015-01-15 15:59:27 +010042 .init_machine = sam9_dt_device_init,
Nicolas Ferre49fe2ba2011-10-10 18:29:24 +020043 .dt_compat = at91_dt_board_compat,
44MACHINE_END
Alexandre Belloni4db0ba22015-01-15 15:59:27 +010045
46static void __init sam9g45_dt_device_init(void)
47{
48 at91_sam9g45_pm_init();
49 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
50}
51
52static const char *at91_9g45_board_compat[] __initconst = {
53 "atmel,at91sam9g45",
54 NULL
55};
56
57DT_MACHINE_START(at91sam9g45_dt, "Atmel AT91SAM9G45")
58 /* Maintainer: Atmel */
59 .map_io = at91_map_io,
60 .init_early = at91_dt_initialize,
61 .init_machine = sam9g45_dt_device_init,
62 .dt_compat = at91_9g45_board_compat,
63MACHINE_END