blob: 64fc82bc89283707924ff30707d445119ea07333 [file] [log] [blame]
Grant Likely5de15402011-06-21 10:59:34 -06001* ARM Primecell Peripherals
2
3ARM, Ltd. Primecell peripherals have a standard id register that can be used to
4identify the peripheral type, vendor, and revision. This value can be used for
5driver matching.
6
7Required properties:
8
Grant Likely2b0fce82011-10-24 11:09:14 +02009- compatible : should be a specific name for the peripheral and
10 "arm,primecell". The specific name will match the ARM
11 engineering name for the logic block in the form: "arm,pl???"
Grant Likely5de15402011-06-21 10:59:34 -060012
13Optional properties:
14
15- arm,primecell-periphid : Value to override the h/w value with
Rob Herring260b6aa2012-04-14 20:30:29 -050016- clocks : From common clock binding. First clock is phandle to clock for apb
17 pclk. Additional clocks are optional and specific to those peripherals.
18- clock-names : From common clock binding. Shall be "apb_pclk" for first clock.
Grant Likely5de15402011-06-21 10:59:34 -060019
20Example:
21
22serial@fff36000 {
23 compatible = "arm,pl011", "arm,primecell";
24 arm,primecell-periphid = <0x00341011>;
Rob Herring260b6aa2012-04-14 20:30:29 -050025 clocks = <&pclk>;
26 clock-names = "apb_pclk";
27
Grant Likely5de15402011-06-21 10:59:34 -060028};
29