mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
6501330f9f
Add support for SAMA7G5 power management modes: standby, ulp0, ulp1, backup. Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com> Link: https://lore.kernel.org/r/20210415105010.569620-24-claudiu.beznea@microchip.com
33 lines
663 B
C
33 lines
663 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Setup code for SAMA7
|
|
*
|
|
* Copyright (C) 2021 Microchip Technology, Inc. and its subsidiaries
|
|
*
|
|
*/
|
|
|
|
#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 sama7_dt_device_init(void)
|
|
{
|
|
of_platform_default_populate(NULL, NULL, NULL);
|
|
sama7_pm_init();
|
|
}
|
|
|
|
static const char *const sama7_dt_board_compat[] __initconst = {
|
|
"microchip,sama7",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(sama7_dt, "Microchip SAMA7")
|
|
/* Maintainer: Microchip */
|
|
.init_machine = sama7_dt_device_init,
|
|
.dt_compat = sama7_dt_board_compat,
|
|
MACHINE_END
|
|
|