blob: 2294911501e799353b5948f50835f3bba30d81bb [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass0662cf22017-07-25 08:29:58 -06002/*
3 * Copyright (C) 2017 Google, Inc
Simon Glass0662cf22017-07-25 08:29:58 -06004 */
5
Simon Glass0662cf22017-07-25 08:29:58 -06006#include <dm.h>
7#include <syscon.h>
8
9static const struct udevice_id tegra124_syscon_ids[] = {
10 { .compatible = "nvidia,tegra124-pmc", .data = TEGRA_SYSCON_PMC },
11};
12
13U_BOOT_DRIVER(syscon_tegra124) = {
14 .name = "tegra124_syscon",
15 .id = UCLASS_SYSCON,
16 .of_match = tegra124_syscon_ids,
17};