sm501fb.txt 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. * SM SM501
  2. The SM SM501 is a LCD controller, with proper hardware, it can also
  3. drive DVI monitors.
  4. Required properties:
  5. - compatible : should be "smi,sm501".
  6. - reg : contain two entries:
  7. - First entry: System Configuration register
  8. - Second entry: IO space (Display Controller register)
  9. - interrupts : SMI interrupt to the cpu should be described here.
  10. - interrupt-parent : the phandle for the interrupt controller that
  11. services interrupts for this device.
  12. Optional properties:
  13. - mode : select a video mode:
  14. <xres>x<yres>[-<bpp>][@<refresh>]
  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. - little-endian: available on big endian systems, to
  19. set different foreign endian.
  20. - big-endian: available on little endian systems, to
  21. set different foreign endian.
  22. Example for MPC5200:
  23. display@1,0 {
  24. compatible = "smi,sm501";
  25. reg = <1 0x00000000 0x00800000
  26. 1 0x03e00000 0x00200000>;
  27. interrupts = <1 1 3>;
  28. mode = "640x480-32@60";
  29. edid = [edid-data];
  30. };