diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2015-11-23 03:04:05 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2015-11-23 03:04:05 -0500 |
commit | 92907cbbef8625bb3998d1eb385fc88f23c97a3f (patch) | |
tree | 15626ff9287e37c3cb81c7286d6db5a7fd77c854 /include/uapi/linux/mic_common.h | |
parent | 15fbfccfe92c62ae8d1ecc647c44157ed01ac02e (diff) | |
parent | 1ec218373b8ebda821aec00bb156a9c94fad9cd4 (diff) |
Merge tag 'v4.4-rc2' into drm-intel-next-queued
Linux 4.4-rc2
Backmerge to get at
commit 1b0e3a049efe471c399674fd954500ce97438d30
Author: Imre Deak <imre.deak@intel.com>
Date: Thu Nov 5 23:04:11 2015 +0200
drm/i915/skl: disable display side power well support for now
so that we can proplery re-eanble skl power wells in -next.
Conflicts are just adjacent lines changed, except for intel_fbdev.c
where we need to interleave the changs. Nothing nefarious.
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Diffstat (limited to 'include/uapi/linux/mic_common.h')
-rw-r--r-- | include/uapi/linux/mic_common.h | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/include/uapi/linux/mic_common.h b/include/uapi/linux/mic_common.h index 302a2ced373c..e9686372029d 100644 --- a/include/uapi/linux/mic_common.h +++ b/include/uapi/linux/mic_common.h | |||
@@ -75,12 +75,7 @@ struct mic_device_ctrl { | |||
75 | * struct mic_bootparam: Virtio device independent information in device page | 75 | * struct mic_bootparam: Virtio device independent information in device page |
76 | * | 76 | * |
77 | * @magic: A magic value used by the card to ensure it can see the host | 77 | * @magic: A magic value used by the card to ensure it can see the host |
78 | * @c2h_shutdown_db: Card to Host shutdown doorbell set by host | ||
79 | * @h2c_shutdown_db: Host to Card shutdown doorbell set by card | ||
80 | * @h2c_config_db: Host to Card Virtio config doorbell set by card | 78 | * @h2c_config_db: Host to Card Virtio config doorbell set by card |
81 | * @shutdown_status: Card shutdown status set by card | ||
82 | * @shutdown_card: Set to 1 by the host when a card shutdown is initiated | ||
83 | * @tot_nodes: Total number of nodes in the SCIF network | ||
84 | * @node_id: Unique id of the node | 79 | * @node_id: Unique id of the node |
85 | * @h2c_scif_db - Host to card SCIF doorbell set by card | 80 | * @h2c_scif_db - Host to card SCIF doorbell set by card |
86 | * @c2h_scif_db - Card to host SCIF doorbell set by host | 81 | * @c2h_scif_db - Card to host SCIF doorbell set by host |
@@ -89,12 +84,7 @@ struct mic_device_ctrl { | |||
89 | */ | 84 | */ |
90 | struct mic_bootparam { | 85 | struct mic_bootparam { |
91 | __le32 magic; | 86 | __le32 magic; |
92 | __s8 c2h_shutdown_db; | ||
93 | __s8 h2c_shutdown_db; | ||
94 | __s8 h2c_config_db; | 87 | __s8 h2c_config_db; |
95 | __u8 shutdown_status; | ||
96 | __u8 shutdown_card; | ||
97 | __u8 tot_nodes; | ||
98 | __u8 node_id; | 88 | __u8 node_id; |
99 | __u8 h2c_scif_db; | 89 | __u8 h2c_scif_db; |
100 | __u8 c2h_scif_db; | 90 | __u8 c2h_scif_db; |
@@ -219,12 +209,12 @@ static inline unsigned mic_total_desc_size(struct mic_device_desc *desc) | |||
219 | * enum mic_states - MIC states. | 209 | * enum mic_states - MIC states. |
220 | */ | 210 | */ |
221 | enum mic_states { | 211 | enum mic_states { |
222 | MIC_OFFLINE = 0, | 212 | MIC_READY = 0, |
213 | MIC_BOOTING, | ||
223 | MIC_ONLINE, | 214 | MIC_ONLINE, |
224 | MIC_SHUTTING_DOWN, | 215 | MIC_SHUTTING_DOWN, |
216 | MIC_RESETTING, | ||
225 | MIC_RESET_FAILED, | 217 | MIC_RESET_FAILED, |
226 | MIC_SUSPENDING, | ||
227 | MIC_SUSPENDED, | ||
228 | MIC_LAST | 218 | MIC_LAST |
229 | }; | 219 | }; |
230 | 220 | ||