|
@@ -25,12 +25,12 @@
|
|
|
|
|
|
#include "generic.h"
|
|
#include "generic.h"
|
|
|
|
|
|
-static void __init sam9_dt_device_init(void)
|
|
|
|
|
|
+static void __init at91sam9_dt_device_init(void)
|
|
{
|
|
{
|
|
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
|
|
|
|
arm_pm_idle = at91sam9_idle;
|
|
arm_pm_idle = at91sam9_idle;
|
|
- at91_sam9260_pm_init();
|
|
|
|
|
|
+ at91sam9260_pm_init();
|
|
}
|
|
}
|
|
|
|
|
|
static const char *at91_dt_board_compat[] __initconst = {
|
|
static const char *at91_dt_board_compat[] __initconst = {
|
|
@@ -38,22 +38,22 @@ static const char *at91_dt_board_compat[] __initconst = {
|
|
NULL
|
|
NULL
|
|
};
|
|
};
|
|
|
|
|
|
-DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM (Device Tree)")
|
|
|
|
|
|
+DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM9")
|
|
/* Maintainer: Atmel */
|
|
/* Maintainer: Atmel */
|
|
.map_io = at91_map_io,
|
|
.map_io = at91_map_io,
|
|
- .init_machine = sam9_dt_device_init,
|
|
|
|
|
|
+ .init_machine = at91sam9_dt_device_init,
|
|
.dt_compat = at91_dt_board_compat,
|
|
.dt_compat = at91_dt_board_compat,
|
|
MACHINE_END
|
|
MACHINE_END
|
|
|
|
|
|
-static void __init sam9g45_dt_device_init(void)
|
|
|
|
|
|
+static void __init at91sam9g45_dt_device_init(void)
|
|
{
|
|
{
|
|
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
|
|
|
|
arm_pm_idle = at91sam9_idle;
|
|
arm_pm_idle = at91sam9_idle;
|
|
- at91_sam9g45_pm_init();
|
|
|
|
|
|
+ at91sam9g45_pm_init();
|
|
}
|
|
}
|
|
|
|
|
|
-static const char *at91_9g45_board_compat[] __initconst = {
|
|
|
|
|
|
+static const char *at91sam9g45_board_compat[] __initconst = {
|
|
"atmel,at91sam9g45",
|
|
"atmel,at91sam9g45",
|
|
NULL
|
|
NULL
|
|
};
|
|
};
|
|
@@ -61,19 +61,19 @@ static const char *at91_9g45_board_compat[] __initconst = {
|
|
DT_MACHINE_START(at91sam9g45_dt, "Atmel AT91SAM9G45")
|
|
DT_MACHINE_START(at91sam9g45_dt, "Atmel AT91SAM9G45")
|
|
/* Maintainer: Atmel */
|
|
/* Maintainer: Atmel */
|
|
.map_io = at91_map_io,
|
|
.map_io = at91_map_io,
|
|
- .init_machine = sam9g45_dt_device_init,
|
|
|
|
- .dt_compat = at91_9g45_board_compat,
|
|
|
|
|
|
+ .init_machine = at91sam9g45_dt_device_init,
|
|
|
|
+ .dt_compat = at91sam9g45_board_compat,
|
|
MACHINE_END
|
|
MACHINE_END
|
|
|
|
|
|
-static void __init sam9x5_dt_device_init(void)
|
|
|
|
|
|
+static void __init at91sam9x5_dt_device_init(void)
|
|
{
|
|
{
|
|
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
|
|
|
|
arm_pm_idle = at91sam9_idle;
|
|
arm_pm_idle = at91sam9_idle;
|
|
- at91_sam9x5_pm_init();
|
|
|
|
|
|
+ at91sam9x5_pm_init();
|
|
}
|
|
}
|
|
|
|
|
|
-static const char *at91_9x5_board_compat[] __initconst = {
|
|
|
|
|
|
+static const char *at91sam9x5_board_compat[] __initconst = {
|
|
"atmel,at91sam9x5",
|
|
"atmel,at91sam9x5",
|
|
"atmel,at91sam9n12",
|
|
"atmel,at91sam9n12",
|
|
NULL
|
|
NULL
|
|
@@ -82,6 +82,6 @@ static const char *at91_9x5_board_compat[] __initconst = {
|
|
DT_MACHINE_START(at91sam9x5_dt, "Atmel AT91SAM9")
|
|
DT_MACHINE_START(at91sam9x5_dt, "Atmel AT91SAM9")
|
|
/* Maintainer: Atmel */
|
|
/* Maintainer: Atmel */
|
|
.map_io = at91_map_io,
|
|
.map_io = at91_map_io,
|
|
- .init_machine = sam9x5_dt_device_init,
|
|
|
|
- .dt_compat = at91_9x5_board_compat,
|
|
|
|
|
|
+ .init_machine = at91sam9x5_dt_device_init,
|
|
|
|
+ .dt_compat = at91sam9x5_board_compat,
|
|
MACHINE_END
|
|
MACHINE_END
|