imx28-m28.dtsi 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Copyright (C) 2014 Marek Vasut <[email protected]>
  4. */
  5. #include "imx28.dtsi"
  6. / {
  7. model = "Aries/DENX M28";
  8. compatible = "aries,m28", "denx,m28", "fsl,imx28";
  9. memory@40000000 {
  10. device_type = "memory";
  11. reg = <0x40000000 0x08000000>;
  12. };
  13. apb@80000000 {
  14. apbh@80000000 {
  15. nand-controller@8000c000 {
  16. #address-cells = <1>;
  17. #size-cells = <1>;
  18. pinctrl-names = "default";
  19. pinctrl-0 = <&gpmi_pins_a &gpmi_status_cfg>;
  20. status = "okay";
  21. };
  22. };
  23. apbx@80040000 {
  24. i2c0: i2c@80058000 {
  25. pinctrl-names = "default";
  26. pinctrl-0 = <&i2c0_pins_a>;
  27. status = "okay";
  28. rtc: rtc@68 {
  29. compatible = "st,m41t62";
  30. reg = <0x68>;
  31. };
  32. };
  33. };
  34. };
  35. regulators {
  36. compatible = "simple-bus";
  37. #address-cells = <1>;
  38. #size-cells = <0>;
  39. reg_3p3v: regulator@0 {
  40. compatible = "regulator-fixed";
  41. reg = <0>;
  42. regulator-name = "3P3V";
  43. regulator-min-microvolt = <3300000>;
  44. regulator-max-microvolt = <3300000>;
  45. regulator-always-on;
  46. };
  47. };
  48. };