blob: 230d25c23bb969ce3cb22f197b31c090ef245249 [file] [log] [blame]
Simon Glass7d95f2a2014-02-27 13:26:19 -07001Sandbox LCD
2===========
3
4This uses the displaymode.txt binding except that only xres and yres are
Simon Glassa466db52020-02-03 07:36:14 -07005required properties. Also an additional optional property is defined:
6
7log2-depth: Log base 2 of the U-Boot display buffer depth (4=16bpp, 5=32bpp).
8 If not provided, a value of 4 is used.
Simon Glass7d95f2a2014-02-27 13:26:19 -07009
10Example:
11
12 lcd {
13 compatible = "sandbox,lcd-sdl";
14 xres = <800>;
15 yres = <600>;
Simon Glassa466db52020-02-03 07:36:14 -070016 log2-depth = <5>;
Simon Glass7d95f2a2014-02-27 13:26:19 -070017 };