Blame view
Documentation/video-output.txt
1.07 KB
b03637b88 output: Add outpu... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
Video Output Switcher Control ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2006 luming.yu@intel.com The output sysfs class driver provides an abstract video output layer that can be used to hook platform specific methods to enable/disable video output device through common sysfs interface. For example, on my IBM ThinkPad T42 laptop, The ACPI video driver registered its output devices and read/write method for 'state' with output sysfs class. The user interface under sysfs is: linux:/sys/class/video_output # tree . . |-- CRT0 | |-- device -> ../../../devices/pci0000:00/0000:00:01.0 | |-- state | |-- subsystem -> ../../../class/video_output | `-- uevent |-- DVI0 | |-- device -> ../../../devices/pci0000:00/0000:00:01.0 | |-- state | |-- subsystem -> ../../../class/video_output | `-- uevent |-- LCD0 | |-- device -> ../../../devices/pci0000:00/0000:00:01.0 | |-- state | |-- subsystem -> ../../../class/video_output | `-- uevent `-- TV0 |-- device -> ../../../devices/pci0000:00/0000:00:01.0 |-- state |-- subsystem -> ../../../class/video_output `-- uevent |