a636cd6c42
Based on 1 normalized pattern(s): licensed under gplv2 or later extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 118 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Jilayne Lovejoy <opensource@jilayne.com> Reviewed-by: Steve Winslow <swinslow@gmail.com> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190519154040.961286471@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
52 lines
1.0 KiB
C
52 lines
1.0 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Setup code for AT91SAM9
|
|
*
|
|
* Copyright (C) 2011 Atmel,
|
|
* 2011 Nicolas Ferre <nicolas.ferre@atmel.com>
|
|
*/
|
|
|
|
#include <linux/of.h>
|
|
#include <linux/of_platform.h>
|
|
|
|
#include <asm/mach/arch.h>
|
|
#include <asm/system_misc.h>
|
|
|
|
#include "generic.h"
|
|
|
|
static void __init at91sam9_init(void)
|
|
{
|
|
of_platform_default_populate(NULL, NULL, NULL);
|
|
|
|
at91sam9_pm_init();
|
|
}
|
|
|
|
static const char *const at91_dt_board_compat[] __initconst = {
|
|
"atmel,at91sam9",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM9")
|
|
/* Maintainer: Atmel */
|
|
.init_machine = at91sam9_init,
|
|
.dt_compat = at91_dt_board_compat,
|
|
MACHINE_END
|
|
|
|
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
|