sun50i-de2-bus.txt 1014 B

12345678910111213141516171819202122232425262728293031323334353637
  1. Device tree bindings for Allwinner A64 DE2 bus
  2. The Allwinner A64 DE2 is on a special bus, which needs a SRAM region (SRAM C)
  3. to be claimed for enabling the access.
  4. Required properties:
  5. - compatible: Should contain "allwinner,sun50i-a64-de2"
  6. - reg: A resource specifier for the register space
  7. - #address-cells: Must be set to 1
  8. - #size-cells: Must be set to 1
  9. - ranges: Must be set up to map the address space inside the
  10. DE2, for the sub-blocks of DE2.
  11. - allwinner,sram: the SRAM that needs to be claimed
  12. Example:
  13. de2@1000000 {
  14. compatible = "allwinner,sun50i-a64-de2";
  15. reg = <0x1000000 0x400000>;
  16. allwinner,sram = <&de2_sram 1>;
  17. #address-cells = <1>;
  18. #size-cells = <1>;
  19. ranges = <0 0x1000000 0x400000>;
  20. display_clocks: clock@0 {
  21. compatible = "allwinner,sun50i-a64-de2-clk";
  22. reg = <0x0 0x100000>;
  23. clocks = <&ccu CLK_DE>,
  24. <&ccu CLK_BUS_DE>;
  25. clock-names = "mod",
  26. "bus";
  27. resets = <&ccu RST_BUS_DE>;
  28. #clock-cells = <1>;
  29. #reset-cells = <1>;
  30. };
  31. };