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