mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
eb0df9b7fb
Move SAM9X60's PM part under SoC config flag. This allows the building of SAM9X60 platform withouth depending on CONFIG_SOC_AT91SAM9 flag, allowing us to select only necessary config flags for SAM9X60. Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> Link: https://lore.kernel.org/r/1575035505-6310-4-git-send-email-claudiu.beznea@microchip.com Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
34 lines
710 B
C
34 lines
710 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Setup code for SAM9X60.
|
|
*
|
|
* Copyright (C) 2019 Microchip Technology Inc. and its subsidiaries
|
|
*
|
|
* Author: Claudiu Beznea <claudiu.beznea@microchip.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 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
|