2011-10-10 16:29:24 +00:00
|
|
|
/*
|
2015-01-27 15:41:55 +00:00
|
|
|
* Setup code for AT91SAM9
|
2011-10-10 16:29:24 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Atmel,
|
|
|
|
* 2011 Nicolas Ferre <nicolas.ferre@atmel.com>
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/gpio.h>
|
2012-02-14 17:08:14 +00:00
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_irq.h>
|
2015-01-15 14:59:27 +00:00
|
|
|
#include <linux/of_platform.h>
|
2014-03-12 09:43:41 +00:00
|
|
|
#include <linux/clk-provider.h>
|
2011-10-10 16:29:24 +00:00
|
|
|
|
2015-01-15 21:58:08 +00:00
|
|
|
#include <asm/system_misc.h>
|
2011-10-10 16:29:24 +00:00
|
|
|
#include <asm/setup.h>
|
|
|
|
#include <asm/irq.h>
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
#include <asm/mach/map.h>
|
|
|
|
#include <asm/mach/irq.h>
|
|
|
|
|
|
|
|
#include "generic.h"
|
|
|
|
|
2015-01-15 14:59:27 +00:00
|
|
|
static void __init sam9_dt_device_init(void)
|
|
|
|
{
|
2015-01-23 10:47:37 +00:00
|
|
|
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
|
|
|
2015-01-15 21:58:08 +00:00
|
|
|
arm_pm_idle = at91sam9_idle;
|
2015-01-15 14:59:27 +00:00
|
|
|
at91_sam9260_pm_init();
|
|
|
|
}
|
|
|
|
|
2015-01-22 16:19:04 +00:00
|
|
|
static const char *at91_dt_board_compat[] __initconst = {
|
2012-03-01 06:47:44 +00:00
|
|
|
"atmel,at91sam9",
|
2011-10-10 16:29:24 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM (Device Tree)")
|
|
|
|
/* Maintainer: Atmel */
|
|
|
|
.map_io = at91_map_io,
|
2015-01-15 14:59:27 +00:00
|
|
|
.init_machine = sam9_dt_device_init,
|
2011-10-10 16:29:24 +00:00
|
|
|
.dt_compat = at91_dt_board_compat,
|
|
|
|
MACHINE_END
|
2015-01-15 14:59:27 +00:00
|
|
|
|
|
|
|
static void __init sam9g45_dt_device_init(void)
|
|
|
|
{
|
2015-01-23 10:47:37 +00:00
|
|
|
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
|
|
|
2015-01-15 21:58:08 +00:00
|
|
|
arm_pm_idle = at91sam9_idle;
|
2015-01-15 14:59:27 +00:00
|
|
|
at91_sam9g45_pm_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *at91_9g45_board_compat[] __initconst = {
|
|
|
|
"atmel,at91sam9g45",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(at91sam9g45_dt, "Atmel AT91SAM9G45")
|
|
|
|
/* Maintainer: Atmel */
|
|
|
|
.map_io = at91_map_io,
|
|
|
|
.init_machine = sam9g45_dt_device_init,
|
|
|
|
.dt_compat = at91_9g45_board_compat,
|
|
|
|
MACHINE_END
|
2015-01-22 15:54:50 +00:00
|
|
|
|
|
|
|
static void __init sam9x5_dt_device_init(void)
|
|
|
|
{
|
2015-01-23 10:47:37 +00:00
|
|
|
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
|
|
|
2015-01-15 21:58:08 +00:00
|
|
|
arm_pm_idle = at91sam9_idle;
|
2015-01-22 15:54:50 +00:00
|
|
|
at91_sam9x5_pm_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *at91_9x5_board_compat[] __initconst = {
|
|
|
|
"atmel,at91sam9x5",
|
|
|
|
"atmel,at91sam9n12",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(at91sam9x5_dt, "Atmel AT91SAM9")
|
|
|
|
/* Maintainer: Atmel */
|
|
|
|
.map_io = at91_map_io,
|
|
|
|
.init_machine = sam9x5_dt_device_init,
|
|
|
|
.dt_compat = at91_9x5_board_compat,
|
|
|
|
MACHINE_END
|