blob: 49357501a93b045d22efba06c5ccd136729efeab [file] [log] [blame]
Nathan Barrett-Morrisona215cfc2024-04-24 20:04:00 -04001// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * (C) Copyright 2024 - Analog Devices, Inc.
4 *
5 * Written and/or maintained by Timesys Corporation
6 *
7 * Contact: Ian Roberts <ian.roberts@timesys.com>
8 */
9
10#include <dm.h>
11#include <syscon.h>
12
13static const struct udevice_id adi_syscon_ids[] = {
14 { .compatible = "adi,reset-controller" },
15 { }
16};
17
18U_BOOT_DRIVER(syscon_sc5xx_rcu) = {
19 .name = "sc5xx_rcu",
20 .id = UCLASS_SYSCON,
21 .of_match = adi_syscon_ids,
22};