1 /* SPDX-License-Identifier: GPL-2.0 */ 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __ACPI_VIDEO_H 2 #ifndef __ACPI_VIDEO_H 3 #define __ACPI_VIDEO_H 3 #define __ACPI_VIDEO_H 4 4 5 #include <linux/errno.h> /* for ENODEV */ 5 #include <linux/errno.h> /* for ENODEV */ 6 #include <linux/types.h> /* for bool */ 6 #include <linux/types.h> /* for bool */ 7 7 8 struct acpi_video_brightness_flags { 8 struct acpi_video_brightness_flags { 9 u8 _BCL_no_ac_battery_levels:1; /* no 9 u8 _BCL_no_ac_battery_levels:1; /* no AC/Battery levels in _BCL */ 10 u8 _BCL_reversed:1; /* _BC 10 u8 _BCL_reversed:1; /* _BCL package is in a reversed order */ 11 u8 _BQC_use_index:1; /* _BQ 11 u8 _BQC_use_index:1; /* _BQC returns an index value */ 12 }; 12 }; 13 13 14 struct acpi_video_device_brightness { 14 struct acpi_video_device_brightness { 15 int curr; 15 int curr; 16 int count; 16 int count; 17 int *levels; 17 int *levels; 18 struct acpi_video_brightness_flags fla 18 struct acpi_video_brightness_flags flags; 19 }; 19 }; 20 20 21 struct acpi_device; 21 struct acpi_device; 22 22 23 #define ACPI_VIDEO_CLASS "video" 23 #define ACPI_VIDEO_CLASS "video" 24 24 25 #define ACPI_VIDEO_DISPLAY_CRT 1 25 #define ACPI_VIDEO_DISPLAY_CRT 1 26 #define ACPI_VIDEO_DISPLAY_TV 2 26 #define ACPI_VIDEO_DISPLAY_TV 2 27 #define ACPI_VIDEO_DISPLAY_DVI 3 27 #define ACPI_VIDEO_DISPLAY_DVI 3 28 #define ACPI_VIDEO_DISPLAY_LCD 4 28 #define ACPI_VIDEO_DISPLAY_LCD 4 29 29 30 #define ACPI_VIDEO_DISPLAY_LEGACY_MONITOR 0x01 30 #define ACPI_VIDEO_DISPLAY_LEGACY_MONITOR 0x0100 31 #define ACPI_VIDEO_DISPLAY_LEGACY_PANEL 0x01 31 #define ACPI_VIDEO_DISPLAY_LEGACY_PANEL 0x0110 32 #define ACPI_VIDEO_DISPLAY_LEGACY_TV 0x02 32 #define ACPI_VIDEO_DISPLAY_LEGACY_TV 0x0200 33 33 34 #define ACPI_VIDEO_NOTIFY_SWITCH 34 #define ACPI_VIDEO_NOTIFY_SWITCH 0x80 35 #define ACPI_VIDEO_NOTIFY_PROBE 35 #define ACPI_VIDEO_NOTIFY_PROBE 0x81 36 #define ACPI_VIDEO_NOTIFY_CYCLE 36 #define ACPI_VIDEO_NOTIFY_CYCLE 0x82 37 #define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT 37 #define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT 0x83 38 #define ACPI_VIDEO_NOTIFY_PREV_OUTPUT 38 #define ACPI_VIDEO_NOTIFY_PREV_OUTPUT 0x84 39 #define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS 39 #define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS 0x85 40 #define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 40 #define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 0x86 41 #define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 41 #define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 0x87 42 #define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS 42 #define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS 0x88 43 #define ACPI_VIDEO_NOTIFY_DISPLAY_OFF 43 #define ACPI_VIDEO_NOTIFY_DISPLAY_OFF 0x89 44 44 45 enum acpi_backlight_type { 45 enum acpi_backlight_type { 46 acpi_backlight_undef = -1, 46 acpi_backlight_undef = -1, 47 acpi_backlight_none = 0, 47 acpi_backlight_none = 0, 48 acpi_backlight_video, 48 acpi_backlight_video, 49 acpi_backlight_vendor, 49 acpi_backlight_vendor, 50 acpi_backlight_native, 50 acpi_backlight_native, 51 acpi_backlight_nvidia_wmi_ec, 51 acpi_backlight_nvidia_wmi_ec, 52 acpi_backlight_apple_gmux, 52 acpi_backlight_apple_gmux, 53 acpi_backlight_dell_uart, << 54 }; 53 }; 55 54 56 #if IS_ENABLED(CONFIG_ACPI_VIDEO) 55 #if IS_ENABLED(CONFIG_ACPI_VIDEO) 57 extern int acpi_video_register(void); 56 extern int acpi_video_register(void); 58 extern void acpi_video_unregister(void); 57 extern void acpi_video_unregister(void); 59 extern void acpi_video_register_backlight(void 58 extern void acpi_video_register_backlight(void); 60 extern int acpi_video_get_edid(struct acpi_dev 59 extern int acpi_video_get_edid(struct acpi_device *device, int type, 61 int device_id, 60 int device_id, void **edid); 62 /* 61 /* 63 * Note: The value returned by acpi_video_hand 62 * Note: The value returned by acpi_video_handles_brightness_key_presses() 64 * may change over time and should not be cach 63 * may change over time and should not be cached. 65 */ 64 */ 66 extern bool acpi_video_handles_brightness_key_ 65 extern bool acpi_video_handles_brightness_key_presses(void); 67 extern int acpi_video_get_levels(struct acpi_d 66 extern int acpi_video_get_levels(struct acpi_device *device, 68 struct acpi_v 67 struct acpi_video_device_brightness **dev_br, 69 int *pmax_lev 68 int *pmax_level); 70 69 71 extern enum acpi_backlight_type __acpi_video_g 70 extern enum acpi_backlight_type __acpi_video_get_backlight_type(bool native, 72 71 bool *auto_detect); 73 72 74 static inline enum acpi_backlight_type acpi_vi 73 static inline enum acpi_backlight_type acpi_video_get_backlight_type(void) 75 { 74 { 76 return __acpi_video_get_backlight_type 75 return __acpi_video_get_backlight_type(false, NULL); 77 } 76 } 78 77 79 /* << 80 * This function MUST only be called by GPU dr << 81 * should register a backlight class device. T << 82 * if a GPU native backlight device should be << 83 * the ACPI video-detect code that native GPU << 84 * Therefor calling this from any place other << 85 * To check if GPU native backlight control is << 86 * if (acpi_video_get_backlight_type() == ac << 87 */ << 88 static inline bool acpi_video_backlight_use_na 78 static inline bool acpi_video_backlight_use_native(void) 89 { 79 { 90 return __acpi_video_get_backlight_type 80 return __acpi_video_get_backlight_type(true, NULL) == acpi_backlight_native; 91 } 81 } 92 #else 82 #else 93 static inline int acpi_video_register(void) { 83 static inline int acpi_video_register(void) { return -ENODEV; } 94 static inline void acpi_video_unregister(void) 84 static inline void acpi_video_unregister(void) { return; } 95 static inline void acpi_video_register_backlig 85 static inline void acpi_video_register_backlight(void) { return; } 96 static inline int acpi_video_get_edid(struct a 86 static inline int acpi_video_get_edid(struct acpi_device *device, int type, 97 int devi 87 int device_id, void **edid) 98 { 88 { 99 return -ENODEV; 89 return -ENODEV; 100 } 90 } 101 static inline enum acpi_backlight_type acpi_vi 91 static inline enum acpi_backlight_type acpi_video_get_backlight_type(void) 102 { 92 { 103 return acpi_backlight_vendor; 93 return acpi_backlight_vendor; 104 } 94 } 105 static inline bool acpi_video_backlight_use_na 95 static inline bool acpi_video_backlight_use_native(void) 106 { 96 { 107 return true; 97 return true; 108 } 98 } 109 static inline bool acpi_video_handles_brightne 99 static inline bool acpi_video_handles_brightness_key_presses(void) 110 { 100 { 111 return false; 101 return false; 112 } 102 } 113 static inline int acpi_video_get_levels(struct 103 static inline int acpi_video_get_levels(struct acpi_device *device, 114 struct acpi_video_devi 104 struct acpi_video_device_brightness **dev_br, 115 int *pmax_level) 105 int *pmax_level) 116 { 106 { 117 return -ENODEV; 107 return -ENODEV; 118 } 108 } 119 #endif 109 #endif 120 110 121 #endif 111 #endif 122 112
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.