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