blob: e8498a8cda3d1c9850f386bb00bfef90622fa12c [file] [log] [blame]
Michal Wajdeczko3846a9b2017-12-21 21:57:31 +00001/*
2 * Copyright © 2008-2017 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
24
25#ifndef _INTEL_OPREGION_H_
26#define _INTEL_OPREGION_H_
27
28#include <linux/workqueue.h>
29#include <linux/pci.h>
30
31struct drm_i915_private;
32struct intel_encoder;
33
34struct opregion_header;
35struct opregion_acpi;
36struct opregion_swsci;
37struct opregion_asle;
38
39struct intel_opregion {
40 struct opregion_header *header;
41 struct opregion_acpi *acpi;
42 struct opregion_swsci *swsci;
43 u32 swsci_gbda_sub_functions;
44 u32 swsci_sbcb_sub_functions;
45 struct opregion_asle *asle;
46 void *rvda;
47 void *vbt_firmware;
48 const void *vbt;
49 u32 vbt_size;
50 u32 *lid_state;
51 struct work_struct asle_work;
Jani Nikula2e932b92018-06-13 14:39:27 +030052 struct notifier_block acpi_notifier;
Michal Wajdeczko3846a9b2017-12-21 21:57:31 +000053};
54
55#define OPREGION_SIZE (8 * 1024)
56
57#ifdef CONFIG_ACPI
58
59int intel_opregion_setup(struct drm_i915_private *dev_priv);
60void intel_opregion_register(struct drm_i915_private *dev_priv);
61void intel_opregion_unregister(struct drm_i915_private *dev_priv);
62void intel_opregion_asle_intr(struct drm_i915_private *dev_priv);
63int intel_opregion_notify_encoder(struct intel_encoder *intel_encoder,
64 bool enable);
65int intel_opregion_notify_adapter(struct drm_i915_private *dev_priv,
66 pci_power_t state);
67int intel_opregion_get_panel_type(struct drm_i915_private *dev_priv);
68
69#else /* CONFIG_ACPI*/
70
71static inline int intel_opregion_setup(struct drm_i915_private *dev_priv)
72{
73 return 0;
74}
75
76static inline void intel_opregion_register(struct drm_i915_private *dev_priv)
77{
78}
79
80static inline void intel_opregion_unregister(struct drm_i915_private *dev_priv)
81{
82}
83
84static inline void intel_opregion_asle_intr(struct drm_i915_private *dev_priv)
85{
86}
87
88static inline int
89intel_opregion_notify_encoder(struct intel_encoder *intel_encoder, bool enable)
90{
91 return 0;
92}
93
94static inline int
95intel_opregion_notify_adapter(struct drm_i915_private *dev, pci_power_t state)
96{
97 return 0;
98}
99
100static inline int intel_opregion_get_panel_type(struct drm_i915_private *dev)
101{
102 return -ENODEV;
103}
104
105#endif /* CONFIG_ACPI */
106
107#endif