nspire-clock.txt 696 B

123456789101112131415161718192021222324
  1. TI-NSPIRE Clocks
  2. Required properties:
  3. - compatible: Valid compatible properties include:
  4. "lsi,nspire-cx-ahb-divider" for the AHB divider in the CX model
  5. "lsi,nspire-classic-ahb-divider" for the AHB divider in the older model
  6. "lsi,nspire-cx-clock" for the base clock in the CX model
  7. "lsi,nspire-classic-clock" for the base clock in the older model
  8. - reg: Physical base address of the controller and length of memory mapped
  9. region.
  10. Optional:
  11. - clocks: For the "nspire-*-ahb-divider" compatible clocks, this is the parent
  12. clock where it divides the rate from.
  13. Example:
  14. ahb_clk {
  15. #clock-cells = <0>;
  16. compatible = "lsi,nspire-cx-clock";
  17. reg = <0x900B0000 0x4>;
  18. clocks = <&base_clk>;
  19. };