2019-05-19 21:51:34 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2011-10-11 00:29:24 +08:00
|
|
|
/*
|
2015-01-27 23:41:55 +08:00
|
|
|
* Setup code for AT91SAM9
|
2011-10-11 00:29:24 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Atmel,
|
|
|
|
* 2011 Nicolas Ferre <nicolas.ferre@atmel.com>
|
|
|
|
*/
|
|
|
|
|
2012-02-15 01:08:14 +08:00
|
|
|
#include <linux/of.h>
|
2015-01-15 22:59:27 +08:00
|
|
|
#include <linux/of_platform.h>
|
2011-10-11 00:29:24 +08:00
|
|
|
|
|
|
|
#include <asm/mach/arch.h>
|
2015-03-12 22:54:29 +08:00
|
|
|
#include <asm/system_misc.h>
|
2011-10-11 00:29:24 +08:00
|
|
|
|
|
|
|
#include "generic.h"
|
2015-03-12 22:54:29 +08:00
|
|
|
|
2017-02-02 06:43:03 +08:00
|
|
|
static void __init at91sam9_init(void)
|
2015-01-15 22:59:27 +08:00
|
|
|
{
|
2017-02-16 18:31:06 +08:00
|
|
|
of_platform_default_populate(NULL, NULL, NULL);
|
2015-03-12 22:54:29 +08:00
|
|
|
|
2017-02-02 06:43:03 +08:00
|
|
|
at91sam9_pm_init();
|
2015-01-15 22:59:27 +08:00
|
|
|
}
|
|
|
|
|
2015-07-28 06:27:52 +08:00
|
|
|
static const char *const at91_dt_board_compat[] __initconst = {
|
2012-03-01 14:47:44 +08:00
|
|
|
"atmel,at91sam9",
|
2011-10-11 00:29:24 +08:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2015-01-28 01:41:33 +08:00
|
|
|
DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM9")
|
2011-10-11 00:29:24 +08:00
|
|
|
/* Maintainer: Atmel */
|
2017-02-02 06:43:03 +08:00
|
|
|
.init_machine = at91sam9_init,
|
2011-10-11 00:29:24 +08:00
|
|
|
.dt_compat = at91_dt_board_compat,
|
|
|
|
MACHINE_END
|
2019-02-14 23:54:41 +08:00
|
|
|
|
|
|
|
static void __init sam9x60_init(void)
|
|
|
|
{
|
|
|
|
of_platform_default_populate(NULL, NULL, NULL);
|
|
|
|
|
|
|
|
sam9x60_pm_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *const sam9x60_dt_board_compat[] __initconst = {
|
|
|
|
"microchip,sam9x60",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(sam9x60_dt, "Microchip SAM9X60")
|
|
|
|
/* Maintainer: Microchip */
|
|
|
|
.init_machine = sam9x60_init,
|
|
|
|
.dt_compat = sam9x60_dt_board_compat,
|
|
|
|
MACHINE_END
|