primecell.txt 922 B

1234567891011121314151617181920212223242526272829
  1. * ARM Primecell Peripherals
  2. ARM, Ltd. Primecell peripherals have a standard id register that can be used to
  3. identify the peripheral type, vendor, and revision. This value can be used for
  4. driver matching.
  5. Required properties:
  6. - compatible : should be a specific name for the peripheral and
  7. "arm,primecell". The specific name will match the ARM
  8. engineering name for the logic block in the form: "arm,pl???"
  9. Optional properties:
  10. - arm,primecell-periphid : Value to override the h/w value with
  11. - clocks : From common clock binding. First clock is phandle to clock for apb
  12. pclk. Additional clocks are optional and specific to those peripherals.
  13. - clock-names : From common clock binding. Shall be "apb_pclk" for first clock.
  14. Example:
  15. serial@fff36000 {
  16. compatible = "arm,pl011", "arm,primecell";
  17. arm,primecell-periphid = <0x00341011>;
  18. clocks = <&pclk>;
  19. clock-names = "apb_pclk";
  20. };