Michal Wajdeczko | a16b431 | 2017-10-04 15:33:25 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
| 28 | struct drm_i915_private; |
| 29 | |
| 30 | enum 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 | |
| 37 | enum 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 | */ |
| 46 | struct 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 Wajdeczko | d9e2e01 | 2017-10-16 14:47:13 +0000 | [diff] [blame] | 53 | /* |
| 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 Lahtinen | faf6548 | 2017-10-06 11:49:40 +0300 | [diff] [blame] | 58 | u16 major_ver_wanted; |
| 59 | u16 minor_ver_wanted; |
| 60 | u16 major_ver_found; |
| 61 | u16 minor_ver_found; |
Michal Wajdeczko | a16b431 | 2017-10-04 15:33:25 +0000 | [diff] [blame] | 62 | |
| 63 | enum intel_uc_fw_type type; |
Joonas Lahtinen | faf6548 | 2017-10-06 11:49:40 +0300 | [diff] [blame] | 64 | u32 header_size; |
| 65 | u32 header_offset; |
| 66 | u32 rsa_size; |
| 67 | u32 rsa_offset; |
| 68 | u32 ucode_size; |
| 69 | u32 ucode_offset; |
Michal Wajdeczko | a16b431 | 2017-10-04 15:33:25 +0000 | [diff] [blame] | 70 | }; |
| 71 | |
| 72 | static inline |
| 73 | const 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 | |
| 88 | static 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 Wajdeczko | 959a3b6 | 2017-10-04 18:13:43 +0000 | [diff] [blame] | 99 | static inline |
| 100 | void 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 Wajdeczko | a16b431 | 2017-10-04 15:33:25 +0000 | [diff] [blame] | 108 | void intel_uc_fw_fetch(struct drm_i915_private *dev_priv, |
| 109 | struct intel_uc_fw *uc_fw); |
| 110 | void intel_uc_fw_fini(struct intel_uc_fw *uc_fw); |
| 111 | |
| 112 | #endif |