opp.txt 587 B

1234567891011121314151617181920212223242526
  1. * Generic OPP Interface
  2. SoCs have a standard set of tuples consisting of frequency and
  3. voltage pairs that the device will support per voltage domain. These
  4. are called Operating Performance Points or OPPs.
  5. Properties:
  6. - operating-points: An array of 2-tuples items, and each item consists
  7. of frequency and voltage like <freq-kHz vol-uV>.
  8. freq: clock frequency in kHz
  9. vol: voltage in microvolt
  10. Examples:
  11. cpu@0 {
  12. compatible = "arm,cortex-a9";
  13. reg = <0>;
  14. next-level-cache = <&L2>;
  15. operating-points = <
  16. /* kHz uV */
  17. 792000 1100000
  18. 396000 950000
  19. 198000 850000
  20. >;
  21. };