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