mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 10:36:45 +07:00
efdbd7345f
This is a quite large renaming to consolidate display related bindings into a single "display" directory from various scattered locations of video, drm, gpu, fb, mipi, and panel. The prior location was somewhat based on the Linux driver location, but bindings should be independent of that. Signed-off-by: Rob Herring <robh@kernel.org> Cc: Pawel Moll <pawel.moll@arm.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Ian Campbell <ijc+devicetree@hellion.org.uk> Cc: Kumar Gala <galak@codeaurora.org>
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
* SM SM501
|
|
|
|
The SM SM501 is a LCD controller, with proper hardware, it can also
|
|
drive DVI monitors.
|
|
|
|
Required properties:
|
|
- compatible : should be "smi,sm501".
|
|
- reg : contain two entries:
|
|
- First entry: System Configuration register
|
|
- Second entry: IO space (Display Controller register)
|
|
- interrupts : SMI interrupt to the cpu should be described here.
|
|
- interrupt-parent : the phandle for the interrupt controller that
|
|
services interrupts for this device.
|
|
|
|
Optional properties:
|
|
- mode : select a video mode:
|
|
<xres>x<yres>[-<bpp>][@<refresh>]
|
|
- edid : verbatim EDID data block describing attached display.
|
|
Data from the detailed timing descriptor will be used to
|
|
program the display controller.
|
|
- little-endian: available on big endian systems, to
|
|
set different foreign endian.
|
|
- big-endian: available on little endian systems, to
|
|
set different foreign endian.
|
|
|
|
Example for MPC5200:
|
|
display@1,0 {
|
|
compatible = "smi,sm501";
|
|
reg = <1 0x00000000 0x00800000
|
|
1 0x03e00000 0x00200000>;
|
|
interrupts = <1 1 3>;
|
|
mode = "640x480-32@60";
|
|
edid = [edid-data];
|
|
};
|