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