2011-06-21 16:59:34 +00:00
|
|
|
* ARM Primecell Peripherals
|
|
|
|
|
|
|
|
ARM, Ltd. Primecell peripherals have a standard id register that can be used to
|
|
|
|
identify the peripheral type, vendor, and revision. This value can be used for
|
|
|
|
driver matching.
|
|
|
|
|
|
|
|
Required properties:
|
|
|
|
|
2011-10-24 09:09:14 +00:00
|
|
|
- compatible : should be a specific name for the peripheral and
|
|
|
|
"arm,primecell". The specific name will match the ARM
|
|
|
|
engineering name for the logic block in the form: "arm,pl???"
|
2011-06-21 16:59:34 +00:00
|
|
|
|
|
|
|
Optional properties:
|
|
|
|
|
|
|
|
- arm,primecell-periphid : Value to override the h/w value with
|
2012-04-15 01:30:29 +00:00
|
|
|
- clocks : From common clock binding. First clock is phandle to clock for apb
|
|
|
|
pclk. Additional clocks are optional and specific to those peripherals.
|
|
|
|
- clock-names : From common clock binding. Shall be "apb_pclk" for first clock.
|
2011-06-21 16:59:34 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
serial@fff36000 {
|
|
|
|
compatible = "arm,pl011", "arm,primecell";
|
|
|
|
arm,primecell-periphid = <0x00341011>;
|
2012-04-15 01:30:29 +00:00
|
|
|
clocks = <&pclk>;
|
|
|
|
clock-names = "apb_pclk";
|
|
|
|
|
2011-06-21 16:59:34 +00:00
|
|
|
};
|
|
|
|
|