guts.txt 801 B

12345678910111213141516171819202122232425
  1. * Global Utilities Block
  2. The global utilities block controls power management, I/O device
  3. enabling, power-on-reset configuration monitoring, general-purpose
  4. I/O signal configuration, alternate function selection for multiplexed
  5. signals, and clock control.
  6. Required properties:
  7. - compatible : Should define the compatible device type for
  8. global-utilities.
  9. - reg : Offset and length of the register set for the device.
  10. Recommended properties:
  11. - fsl,has-rstcr : Indicates that the global utilities register set
  12. contains a functioning "reset control register" (i.e. the board
  13. is wired to reset upon setting the HRESET_REQ bit in this register).
  14. Example:
  15. global-utilities@e0000 { /* global utilities block */
  16. compatible = "fsl,mpc8548-guts";
  17. reg = <e0000 1000>;
  18. fsl,has-rstcr;
  19. };