/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ACPI_VIDEO_H #define __ACPI_VIDEO_H #include <linux/errno.h> /* for ENODEV */ #include <linux/types.h> /* for bool */ struct acpi_video_brightness_flags { u8 _BCL_no_ac_battery_levels:1; /* no AC/Battery levels in _BCL */ u8 _BCL_reversed:1; /* _BCL package is in a reversed order */ u8 _BQC_use_index:1; /* _BQC returns an index value */ }; struct acpi_video_device_brightness { int curr; int count; int *levels; struct acpi_video_brightness_flags flags; }; struct acpi_device; #define ACPI_VIDEO_CLASS "video" #define ACPI_VIDEO_DISPLAY_CRT 1 #define ACPI_VIDEO_DISPLAY_TV 2 #define ACPI_VIDEO_DISPLAY_DVI 3 #define ACPI_VIDEO_DISPLAY_LCD 4 #define ACPI_VIDEO_DISPLAY_LEGACY_MONITOR 0x0100 #define ACPI_VIDEO_DISPLAY_LEGACY_PANEL 0x0110 #define ACPI_VIDEO_DISPLAY_LEGACY_TV 0x0200 #define ACPI_VIDEO_NOTIFY_SWITCH 0x80 #define ACPI_VIDEO_NOTIFY_PROBE 0x81 #define ACPI_VIDEO_NOTIFY_CYCLE 0x82 #define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT 0x83 #define ACPI_VIDEO_NOTIFY_PREV_OUTPUT 0x84 #define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS 0x85 #define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 0x86 #define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 0x87 #define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS 0x88 #define ACPI_VIDEO_NOTIFY_DISPLAY_OFF 0x89 enum acpi_backlight_type { acpi_backlight_undef = -1, acpi_backlight_none = 0, acpi_backlight_video, acpi_backlight_vendor, acpi_backlight_native, }; #if IS_ENABLED(CONFIG_ACPI_VIDEO) extern int acpi_video_register(void); extern void acpi_video_unregister(void); extern int acpi_video_get_edid(struct acpi_device *device, int type, int device_id, void **edid); extern enum acpi_backlight_type acpi_video_get_backlight_type(void); extern void acpi_video_set_dmi_backlight_type(enum acpi_backlight_type type); /* * Note: The value returned by acpi_video_handles_brightness_key_presses() * may change over time and should not be cached. */ extern bool acpi_video_handles_brightness_key_presses(void); extern int acpi_video_get_levels(struct acpi_device *device, struct acpi_video_device_brightness **dev_br, int *pmax_level); #else static inline int acpi_video_register(void) { return -ENODEV; } static inline void acpi_video_unregister(void) { return; } static inline int acpi_video_get_edid(struct acpi_device *device, int type, int device_id, void **edid) { return -ENODEV; } static inline enum acpi_backlight_type acpi_video_get_backlight_type(void) { return acpi_backlight_vendor; } static inline void acpi_video_set_dmi_backlight_type(enum acpi_backlight_type type) { } static inline bool acpi_video_handles_brightness_key_presses(void) { return false; } static inline int acpi_video_get_levels(struct acpi_device *device, struct acpi_video_device_brightness **dev_br, int *pmax_level) { return -ENODEV; } #endif #endif
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
platform | Folder | 0755 |
|
|
acbuffer.h | File | 10.36 KB | 0644 |
|
acconfig.h | File | 8.69 KB | 0644 |
|
acexcep.h | File | 17.79 KB | 0644 |
|
acnames.h | File | 3.78 KB | 0644 |
|
acoutput.h | File | 17.69 KB | 0644 |
|
acpi.h | File | 3.07 KB | 0644 |
|
acpi_bus.h | File | 18.99 KB | 0644 |
|
acpi_drivers.h | File | 4.08 KB | 0644 |
|
acpi_io.h | File | 713 B | 0644 |
|
acpi_lpat.h | File | 1.55 KB | 0644 |
|
acpi_numa.h | File | 623 B | 0644 |
|
acpiosxf.h | File | 12.4 KB | 0644 |
|
acpixf.h | File | 31.5 KB | 0644 |
|
acrestyp.h | File | 20.57 KB | 0644 |
|
actbl.h | File | 20 KB | 0644 |
|
actbl1.h | File | 44.48 KB | 0644 |
|
actbl2.h | File | 42.98 KB | 0644 |
|
actbl3.h | File | 21.63 KB | 0644 |
|
actypes.h | File | 42.59 KB | 0644 |
|
acuuid.h | File | 4.17 KB | 0644 |
|
apei.h | File | 1.34 KB | 0644 |
|
button.h | File | 621 B | 0644 |
|
cppc_acpi.h | File | 2.93 KB | 0644 |
|
ghes.h | File | 2.88 KB | 0644 |
|
hed.h | File | 371 B | 0644 |
|
pcc.h | File | 816 B | 0644 |
|
pdc_intel.h | File | 1.02 KB | 0644 |
|
processor.h | File | 11.11 KB | 0644 |
|
reboot.h | File | 201 B | 0644 |
|
video.h | File | 2.8 KB | 0644 |
|