|
@@ -16,6 +16,7 @@
|
|
|
#include <linux/of_platform.h>
|
|
|
#include <linux/clk-provider.h>
|
|
|
|
|
|
+#include <asm/system_misc.h>
|
|
|
#include <asm/setup.h>
|
|
|
#include <asm/irq.h>
|
|
|
#include <asm/mach/arch.h>
|
|
@@ -26,11 +27,13 @@
|
|
|
|
|
|
static void __init sam9_dt_device_init(void)
|
|
|
{
|
|
|
- at91_sam9260_pm_init();
|
|
|
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
|
+
|
|
|
+ arm_pm_idle = at91sam9_idle;
|
|
|
+ at91_sam9260_pm_init();
|
|
|
}
|
|
|
|
|
|
-static const char *at91_dt_board_compat[] __initdata = {
|
|
|
+static const char *at91_dt_board_compat[] __initconst = {
|
|
|
"atmel,at91sam9",
|
|
|
NULL
|
|
|
};
|
|
@@ -45,8 +48,10 @@ MACHINE_END
|
|
|
|
|
|
static void __init sam9g45_dt_device_init(void)
|
|
|
{
|
|
|
- at91_sam9g45_pm_init();
|
|
|
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
|
+
|
|
|
+ arm_pm_idle = at91sam9_idle;
|
|
|
+ at91_sam9g45_pm_init();
|
|
|
}
|
|
|
|
|
|
static const char *at91_9g45_board_compat[] __initconst = {
|
|
@@ -61,3 +66,25 @@ DT_MACHINE_START(at91sam9g45_dt, "Atmel AT91SAM9G45")
|
|
|
.init_machine = sam9g45_dt_device_init,
|
|
|
.dt_compat = at91_9g45_board_compat,
|
|
|
MACHINE_END
|
|
|
+
|
|
|
+static void __init sam9x5_dt_device_init(void)
|
|
|
+{
|
|
|
+ of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
|
+
|
|
|
+ arm_pm_idle = at91sam9_idle;
|
|
|
+ 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_early = at91_dt_initialize,
|
|
|
+ .init_machine = sam9x5_dt_device_init,
|
|
|
+ .dt_compat = at91_9x5_board_compat,
|
|
|
+MACHINE_END
|