dtoc_test_single_reg.dts 435 B

123456789101112131415161718192021222324252627282930
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Test device tree file for dtoc
  4. *
  5. * Copyright 2017 Google, Inc
  6. */
  7. /dts-v1/;
  8. / {
  9. #address-cells = <1>;
  10. #size-cells = <1>;
  11. i2c@0 {
  12. compatible = "sandbox,i2c";
  13. u-boot,dm-pre-reloc;
  14. #address-cells = <1>;
  15. #size-cells = <0>;
  16. pmic@9 {
  17. compatible = "sandbox,pmic";
  18. u-boot,dm-pre-reloc;
  19. reg = <9>;
  20. low-power;
  21. gpio {
  22. compatible = "sandbox,gpio";
  23. };
  24. };
  25. };
  26. };