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