efi-x86_app.dts 419 B

12345678910111213141516171819202122232425262728293031
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (c) 2015 Google, Inc
  4. */
  5. /dts-v1/;
  6. /include/ "skeleton.dtsi"
  7. /include/ "tsc_timer.dtsi"
  8. / {
  9. model = "EFI x86 Application";
  10. compatible = "efi,x86-app";
  11. chosen {
  12. stdout-path = &serial;
  13. };
  14. tsc-timer {
  15. clock-frequency = <1000000000>;
  16. };
  17. serial: serial {
  18. compatible = "efi,uart";
  19. };
  20. reset {
  21. compatible = "efi,reset";
  22. u-boot,dm-pre-reloc;
  23. };
  24. };