Grant Likely | 5de1540 | 2011-06-21 10:59:34 -0600 | [diff] [blame^] | 1 | * ARM Primecell Peripherals |
| 2 | |
| 3 | ARM, Ltd. Primecell peripherals have a standard id register that can be used to |
| 4 | identify the peripheral type, vendor, and revision. This value can be used for |
| 5 | driver matching. |
| 6 | |
| 7 | Required properties: |
| 8 | |
| 9 | - compatible : should be a specific value for peripheral and "arm,primecell" |
| 10 | |
| 11 | Optional properties: |
| 12 | |
| 13 | - arm,primecell-periphid : Value to override the h/w value with |
| 14 | |
| 15 | Example: |
| 16 | |
| 17 | serial@fff36000 { |
| 18 | compatible = "arm,pl011", "arm,primecell"; |
| 19 | arm,primecell-periphid = <0x00341011>; |
| 20 | }; |
| 21 | |