blob: 5c018492ccdc2e9e793af552e35e5687d43fc466 [file] [log] [blame]
Michal Wajdeczkoa16b4312017-10-04 15:33:25 +00001/*
2 * Copyright © 2014-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_UC_FW_H_
26#define _INTEL_UC_FW_H_
27
28struct drm_i915_private;
29
30enum intel_uc_fw_status {
31 INTEL_UC_FIRMWARE_FAIL = -1,
32 INTEL_UC_FIRMWARE_NONE = 0,
33 INTEL_UC_FIRMWARE_PENDING,
34 INTEL_UC_FIRMWARE_SUCCESS
35};
36
37enum intel_uc_fw_type {
38 INTEL_UC_FW_TYPE_GUC,
39 INTEL_UC_FW_TYPE_HUC
40};
41
42/*
43 * This structure encapsulates all the data needed during the process
44 * of fetching, caching, and loading the firmware image into the uC.
45 */
46struct intel_uc_fw {
47 const char *path;
48 size_t size;
49 struct drm_i915_gem_object *obj;
50 enum intel_uc_fw_status fetch_status;
51 enum intel_uc_fw_status load_status;
52
Michal Wajdeczkod9e2e012017-10-16 14:47:13 +000053 /*
54 * The firmware build process will generate a version header file with major and
55 * minor version defined. The versions are built into CSS header of firmware.
56 * i915 kernel driver set the minimal firmware version required per platform.
57 */
Joonas Lahtinenfaf65482017-10-06 11:49:40 +030058 u16 major_ver_wanted;
59 u16 minor_ver_wanted;
60 u16 major_ver_found;
61 u16 minor_ver_found;
Michal Wajdeczkoa16b4312017-10-04 15:33:25 +000062
63 enum intel_uc_fw_type type;
Joonas Lahtinenfaf65482017-10-06 11:49:40 +030064 u32 header_size;
65 u32 header_offset;
66 u32 rsa_size;
67 u32 rsa_offset;
68 u32 ucode_size;
69 u32 ucode_offset;
Michal Wajdeczkoa16b4312017-10-04 15:33:25 +000070};
71
72static inline
73const char *intel_uc_fw_status_repr(enum intel_uc_fw_status status)
74{
75 switch (status) {
76 case INTEL_UC_FIRMWARE_FAIL:
77 return "FAIL";
78 case INTEL_UC_FIRMWARE_NONE:
79 return "NONE";
80 case INTEL_UC_FIRMWARE_PENDING:
81 return "PENDING";
82 case INTEL_UC_FIRMWARE_SUCCESS:
83 return "SUCCESS";
84 }
85 return "<invalid>";
86}
87
88static inline const char *intel_uc_fw_type_repr(enum intel_uc_fw_type type)
89{
90 switch (type) {
91 case INTEL_UC_FW_TYPE_GUC:
92 return "GuC";
93 case INTEL_UC_FW_TYPE_HUC:
94 return "HuC";
95 }
96 return "uC";
97}
98
Michal Wajdeczko959a3b62017-10-04 18:13:43 +000099static inline
100void intel_uc_fw_init(struct intel_uc_fw *uc_fw, enum intel_uc_fw_type type)
101{
102 uc_fw->path = NULL;
103 uc_fw->fetch_status = INTEL_UC_FIRMWARE_NONE;
104 uc_fw->load_status = INTEL_UC_FIRMWARE_NONE;
105 uc_fw->type = type;
106}
107
Michal Wajdeczkoa16b4312017-10-04 15:33:25 +0000108void intel_uc_fw_fetch(struct drm_i915_private *dev_priv,
109 struct intel_uc_fw *uc_fw);
110void intel_uc_fw_fini(struct intel_uc_fw *uc_fw);
111
112#endif