pmc.c 387 B

123456789101112131415161718
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2017 Google, Inc
  4. */
  5. #include <common.h>
  6. #include <dm.h>
  7. #include <syscon.h>
  8. static const struct udevice_id tegra124_syscon_ids[] = {
  9. { .compatible = "nvidia,tegra124-pmc", .data = TEGRA_SYSCON_PMC },
  10. };
  11. U_BOOT_DRIVER(syscon_tegra124) = {
  12. .name = "tegra124_syscon",
  13. .id = UCLASS_SYSCON,
  14. .of_match = tegra124_syscon_ids,
  15. };