Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
33 lines
988 B
Plaintext
33 lines
988 B
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.
|
|
|
|
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];
|
|
};
|