Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 1 | #ifndef __ACPI_VIDEO_H |
| 2 | #define __ACPI_VIDEO_H |
| 3 | |
Chris Wilson | b72512e | 2010-09-05 14:51:49 +0100 | [diff] [blame] | 4 | #include <linux/errno.h> /* for ENODEV */ |
| 5 | |
| 6 | struct acpi_device; |
| 7 | |
Matthew Garrett | f5a3d0c | 2011-07-12 18:30:52 -0400 | [diff] [blame] | 8 | #define ACPI_VIDEO_CLASS "video" |
| 9 | |
Matthew Garrett | e92a716 | 2010-01-12 14:17:03 -0500 | [diff] [blame] | 10 | #define ACPI_VIDEO_DISPLAY_CRT 1 |
| 11 | #define ACPI_VIDEO_DISPLAY_TV 2 |
| 12 | #define ACPI_VIDEO_DISPLAY_DVI 3 |
| 13 | #define ACPI_VIDEO_DISPLAY_LCD 4 |
| 14 | |
| 15 | #define ACPI_VIDEO_DISPLAY_LEGACY_MONITOR 0x0100 |
| 16 | #define ACPI_VIDEO_DISPLAY_LEGACY_PANEL 0x0110 |
| 17 | #define ACPI_VIDEO_DISPLAY_LEGACY_TV 0x0200 |
| 18 | |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 19 | #if (defined CONFIG_ACPI_VIDEO || defined CONFIG_ACPI_VIDEO_MODULE) |
Rafael J. Wysocki | 8c5bd7a | 2013-07-18 02:08:06 +0200 | [diff] [blame] | 20 | extern int __acpi_video_register(bool backlight_quirks); |
| 21 | static inline int acpi_video_register(void) |
| 22 | { |
| 23 | return __acpi_video_register(false); |
| 24 | } |
| 25 | static inline int acpi_video_register_with_quirks(void) |
| 26 | { |
| 27 | return __acpi_video_register(true); |
| 28 | } |
Zhao Yakui | 86e437f | 2009-06-16 11:23:13 +0800 | [diff] [blame] | 29 | extern void acpi_video_unregister(void); |
Matthew Garrett | e92a716 | 2010-01-12 14:17:03 -0500 | [diff] [blame] | 30 | extern int acpi_video_get_edid(struct acpi_device *device, int type, |
| 31 | int device_id, void **edid); |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 32 | #else |
| 33 | static inline int acpi_video_register(void) { return 0; } |
Rafael J. Wysocki | 8c5bd7a | 2013-07-18 02:08:06 +0200 | [diff] [blame] | 34 | static inline int acpi_video_register_with_quirks(void) { return 0; } |
Zhao Yakui | 86e437f | 2009-06-16 11:23:13 +0800 | [diff] [blame] | 35 | static inline void acpi_video_unregister(void) { return; } |
Matthew Garrett | e92a716 | 2010-01-12 14:17:03 -0500 | [diff] [blame] | 36 | static inline int acpi_video_get_edid(struct acpi_device *device, int type, |
| 37 | int device_id, void **edid) |
| 38 | { |
| 39 | return -ENODEV; |
| 40 | } |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 41 | #endif |
| 42 | |
| 43 | #endif |