omap2.dtsi 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Device Tree Source for OMAP2 SoC
  3. *
  4. * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
  5. *
  6. * This file is licensed under the terms of the GNU General Public License
  7. * version 2. This program is licensed "as is" without any warranty of any
  8. * kind, whether express or implied.
  9. */
  10. /include/ "skeleton.dtsi"
  11. / {
  12. compatible = "ti,omap2430", "ti,omap2420", "ti,omap2";
  13. aliases {
  14. serial0 = &uart1;
  15. serial1 = &uart2;
  16. serial2 = &uart3;
  17. };
  18. cpus {
  19. cpu@0 {
  20. compatible = "arm,arm1136jf-s";
  21. };
  22. };
  23. soc {
  24. compatible = "ti,omap-infra";
  25. mpu {
  26. compatible = "ti,omap2-mpu";
  27. ti,hwmods = "mpu";
  28. };
  29. };
  30. ocp {
  31. compatible = "simple-bus";
  32. #address-cells = <1>;
  33. #size-cells = <1>;
  34. ranges;
  35. ti,hwmods = "l3_main";
  36. intc: interrupt-controller@1 {
  37. compatible = "ti,omap2-intc";
  38. interrupt-controller;
  39. #interrupt-cells = <1>;
  40. };
  41. uart1: serial@4806a000 {
  42. compatible = "ti,omap2-uart";
  43. ti,hwmods = "uart1";
  44. clock-frequency = <48000000>;
  45. };
  46. uart2: serial@4806c000 {
  47. compatible = "ti,omap2-uart";
  48. ti,hwmods = "uart2";
  49. clock-frequency = <48000000>;
  50. };
  51. uart3: serial@4806e000 {
  52. compatible = "ti,omap2-uart";
  53. ti,hwmods = "uart3";
  54. clock-frequency = <48000000>;
  55. };
  56. };
  57. };