sm501fb.txt 988 B

1234567891011121314151617181920212223242526272829303132
  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. Optional properties:
  11. - mode : select a video mode:
  12. <xres>x<yres>[-<bpp>][@<refresh>]
  13. - edid : verbatim EDID data block describing attached display.
  14. Data from the detailed timing descriptor will be used to
  15. program the display controller.
  16. - little-endian: available on big endian systems, to
  17. set different foreign endian.
  18. - big-endian: available on little endian systems, to
  19. set different foreign endian.
  20. Example for MPC5200:
  21. display@1,0 {
  22. compatible = "smi,sm501";
  23. reg = <1 0x00000000 0x00800000
  24. 1 0x03e00000 0x00200000>;
  25. interrupts = <1 1 3>;
  26. mode = "640x480-32@60";
  27. edid = [edid-data];
  28. };