summaryrefslogtreecommitdiff
path: root/arch/arm/mach-stm32mp/syscon.c
blob: eb7f435f10caefbdc9b7ee14952a9504c3da2ea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
/*
 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
 */

#include <common.h>
#include <dm.h>
#include <syscon.h>
#include <asm/arch/stm32.h>

static const struct udevice_id stm32mp_syscon_ids[] = {
	{ .compatible = "st,stm32-stgen",
	  .data = STM32MP_SYSCON_STGEN },
	{ .compatible = "st,stm32mp1-pwr",
	  .data = STM32MP_SYSCON_PWR },
	{ }
};

U_BOOT_DRIVER(syscon_stm32mp) = {
	.name = "stmp32mp_syscon",
	.id = UCLASS_SYSCON,
	.of_match = stm32mp_syscon_ids,
	.bind = dm_scan_fdt_dev,
};