Nathan Barrett-Morrison | a215cfc | 2024-04-24 20:04:00 -0400 | [diff] [blame] | 1 | // 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 | |
| 13 | static const struct udevice_id adi_syscon_ids[] = { |
| 14 | { .compatible = "adi,reset-controller" }, |
| 15 | { } |
| 16 | }; |
| 17 | |
| 18 | U_BOOT_DRIVER(syscon_sc5xx_rcu) = { |
| 19 | .name = "sc5xx_rcu", |
| 20 | .id = UCLASS_SYSCON, |
| 21 | .of_match = adi_syscon_ids, |
| 22 | }; |