xref: /freebsd-src/sys/compat/linuxkpi/common/include/acpi/video.h (revision 745067c58514c4323dc16697e19f59dd08a8e963)
1dab39c11SEmmanuel Vadot /*-
24d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3dab39c11SEmmanuel Vadot  *
4dab39c11SEmmanuel Vadot  * Copyright (c) 2020 Vladimir Kondratyev <wulf@FreeBSD.org>
5dab39c11SEmmanuel Vadot  *
6dab39c11SEmmanuel Vadot  * Redistribution and use in source and binary forms, with or without
7dab39c11SEmmanuel Vadot  * modification, are permitted provided that the following conditions are
8dab39c11SEmmanuel Vadot  * met:
9dab39c11SEmmanuel Vadot  * 1. Redistributions of source code must retain the above copyright
10dab39c11SEmmanuel Vadot  *    notice, this list of conditions and the following disclaimer.
11dab39c11SEmmanuel Vadot  * 2. Redistributions in binary form must reproduce the above copyright
12dab39c11SEmmanuel Vadot  *    notice, this list of conditions and the following disclaimer in
13dab39c11SEmmanuel Vadot  *    the documentation and/or other materials provided with the
14dab39c11SEmmanuel Vadot  *    distribution.
15dab39c11SEmmanuel Vadot  *
16dab39c11SEmmanuel Vadot  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17dab39c11SEmmanuel Vadot  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18dab39c11SEmmanuel Vadot  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19dab39c11SEmmanuel Vadot  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20dab39c11SEmmanuel Vadot  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21dab39c11SEmmanuel Vadot  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22dab39c11SEmmanuel Vadot  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23dab39c11SEmmanuel Vadot  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24dab39c11SEmmanuel Vadot  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25dab39c11SEmmanuel Vadot  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26dab39c11SEmmanuel Vadot  * SUCH DAMAGE.
27dab39c11SEmmanuel Vadot  */
28dab39c11SEmmanuel Vadot 
29307f78f3SVladimir Kondratyev #ifndef _LINUXKPI_ACPI_VIDEO_H_
30307f78f3SVladimir Kondratyev #define _LINUXKPI_ACPI_VIDEO_H_
31dab39c11SEmmanuel Vadot 
32*745067c5SVladimir Kondratyev #include <sys/types.h>
338dfb5571SJean-Sébastien Pédron #include <sys/errno.h>
348dfb5571SJean-Sébastien Pédron 
35dab39c11SEmmanuel Vadot #define	ACPI_VIDEO_CLASS	"video"
36dab39c11SEmmanuel Vadot 
37dab39c11SEmmanuel Vadot #define	ACPI_VIDEO_NOTIFY_PROBE	0x81
38dab39c11SEmmanuel Vadot 
39afe53d7fSEmmanuel Vadot static inline int
acpi_video_register(void)40afe53d7fSEmmanuel Vadot acpi_video_register(void)
41afe53d7fSEmmanuel Vadot {
42afe53d7fSEmmanuel Vadot 
43afe53d7fSEmmanuel Vadot 	return (-ENODEV);
44afe53d7fSEmmanuel Vadot }
45afe53d7fSEmmanuel Vadot 
46afe53d7fSEmmanuel Vadot static inline void
acpi_video_unregister(void)47afe53d7fSEmmanuel Vadot acpi_video_unregister(void)
48afe53d7fSEmmanuel Vadot {
49afe53d7fSEmmanuel Vadot }
50afe53d7fSEmmanuel Vadot 
51*745067c5SVladimir Kondratyev static inline void
acpi_video_register_backlight(void)52*745067c5SVladimir Kondratyev acpi_video_register_backlight(void)
53*745067c5SVladimir Kondratyev {
54*745067c5SVladimir Kondratyev }
55*745067c5SVladimir Kondratyev 
56*745067c5SVladimir Kondratyev static inline bool
acpi_video_backlight_use_native(void)57*745067c5SVladimir Kondratyev acpi_video_backlight_use_native(void)
58*745067c5SVladimir Kondratyev {
59*745067c5SVladimir Kondratyev 	return (true);
60*745067c5SVladimir Kondratyev }
61*745067c5SVladimir Kondratyev 
62307f78f3SVladimir Kondratyev #endif	/* _LINUXKPI_ACPI_VIDEO_H_ */
63