Kumar Gala | d0fc2ea | 2008-07-07 11:28:33 -0500 | [diff] [blame] | 1 | * Freescale Display Interface Unit |
| 2 | |
| 3 | The Freescale DIU is a LCD controller, with proper hardware, it can also |
| 4 | drive DVI monitors. |
| 5 | |
| 6 | Required properties: |
Anatolij Gustschin | a027b33 | 2010-07-23 04:00:38 +0000 | [diff] [blame] | 7 | - compatible : should be "fsl,diu" or "fsl,mpc5121-diu". |
Kumar Gala | d0fc2ea | 2008-07-07 11:28:33 -0500 | [diff] [blame] | 8 | - reg : should contain at least address and length of the DIU register |
| 9 | set. |
Anatolij Gustschin | a027b33 | 2010-07-23 04:00:38 +0000 | [diff] [blame] | 10 | - interrupts : one DIU interrupt should be described here. |
| 11 | - interrupt-parent : the phandle for the interrupt controller that |
| 12 | services interrupts for this device. |
Kumar Gala | d0fc2ea | 2008-07-07 11:28:33 -0500 | [diff] [blame] | 13 | |
Anatolij Gustschin | 8b856f0 | 2010-07-23 04:00:39 +0000 | [diff] [blame^] | 14 | Optional properties: |
| 15 | - edid : verbatim EDID data block describing attached display. |
| 16 | Data from the detailed timing descriptor will be used to |
| 17 | program the display controller. |
| 18 | |
Kumar Gala | d0fc2ea | 2008-07-07 11:28:33 -0500 | [diff] [blame] | 19 | Example (MPC8610HPCD): |
| 20 | display@2c000 { |
| 21 | compatible = "fsl,diu"; |
| 22 | reg = <0x2c000 100>; |
| 23 | interrupts = <72 2>; |
| 24 | interrupt-parent = <&mpic>; |
| 25 | }; |
Anatolij Gustschin | a027b33 | 2010-07-23 04:00:38 +0000 | [diff] [blame] | 26 | |
| 27 | Example for MPC5121: |
| 28 | display@2100 { |
| 29 | compatible = "fsl,mpc5121-diu"; |
| 30 | reg = <0x2100 0x100>; |
| 31 | interrupts = <64 0x8>; |
| 32 | interrupt-parent = <&ipic>; |
Anatolij Gustschin | 8b856f0 | 2010-07-23 04:00:39 +0000 | [diff] [blame^] | 33 | edid = [edid-data]; |
Anatolij Gustschin | a027b33 | 2010-07-23 04:00:38 +0000 | [diff] [blame] | 34 | }; |