blob: 843ef1adfbfab7ca736055f2333e2af8413ba7ef [file] [log] [blame]
Matthew Garrett74a365b2009-03-19 21:35:39 +00001#ifndef __ACPI_VIDEO_H
2#define __ACPI_VIDEO_H
3
Chris Wilsonb72512e2010-09-05 14:51:49 +01004#include <linux/errno.h> /* for ENODEV */
5
6struct acpi_device;
7
Matthew Garrettf5a3d0c2011-07-12 18:30:52 -04008#define ACPI_VIDEO_CLASS "video"
9
Matthew Garrette92a7162010-01-12 14:17:03 -050010#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 Garrett74a365b2009-03-19 21:35:39 +000019#if (defined CONFIG_ACPI_VIDEO || defined CONFIG_ACPI_VIDEO_MODULE)
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +020020extern int acpi_video_register(void);
Zhao Yakui86e437f2009-06-16 11:23:13 +080021extern void acpi_video_unregister(void);
Hans de Goede1b7f37e2014-05-17 10:48:01 +020022extern void acpi_video_unregister_backlight(void);
Matthew Garrette92a7162010-01-12 14:17:03 -050023extern int acpi_video_get_edid(struct acpi_device *device, int type,
24 int device_id, void **edid);
Aaron Lu0b9f7d92014-07-07 15:43:51 +080025extern bool acpi_video_verify_backlight_support(void);
Matthew Garrett74a365b2009-03-19 21:35:39 +000026#else
27static inline int acpi_video_register(void) { return 0; }
Zhao Yakui86e437f2009-06-16 11:23:13 +080028static inline void acpi_video_unregister(void) { return; }
Hans de Goede1b7f37e2014-05-17 10:48:01 +020029static inline void acpi_video_unregister_backlight(void) { return; }
Matthew Garrette92a7162010-01-12 14:17:03 -050030static inline int acpi_video_get_edid(struct acpi_device *device, int type,
31 int device_id, void **edid)
32{
33 return -ENODEV;
34}
Aaron Lu0b9f7d92014-07-07 15:43:51 +080035static inline bool acpi_video_verify_backlight_support(void) { return false; }
Matthew Garrett74a365b2009-03-19 21:35:39 +000036#endif
37
38#endif