1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
5 #ifndef __NFIT_TEST_H__
6 #define __NFIT_TEST_H__
7 #include <linux/acpi.h>
8 #include <linux/list.h>
9 #include <linux/uuid.h>
10 #include <linux/ioport.h>
11 #include <linux/spinlock_types.h>
13 struct nfit_test_request
{
14 struct list_head list
;
18 struct nfit_test_resource
{
19 struct list_head requests
;
20 struct list_head list
;
28 #define ND_TRANSLATE_SPA_STATUS_INVALID_SPA 2
29 #define NFIT_ARS_INJECT_INVALID 2
31 enum err_inj_options
{
32 ND_ARS_ERR_INJ_OPT_NOTIFY
= 0,
37 NFIT_CMD_TRANSLATE_SPA
= 5,
38 NFIT_CMD_ARS_INJECT_SET
= 7,
39 NFIT_CMD_ARS_INJECT_CLEAR
= 8,
40 NFIT_CMD_ARS_INJECT_GET
= 9,
43 struct nd_cmd_translate_spa
{
48 __u64 translate_length
;
50 struct nd_nvdimm_device
{
51 __u32 nfit_device_handle
;
58 struct nd_cmd_ars_err_inj
{
59 __u64 err_inj_spa_range_base
;
60 __u64 err_inj_spa_range_length
;
65 struct nd_cmd_ars_err_inj_clr
{
66 __u64 err_inj_clr_spa_range_base
;
67 __u64 err_inj_clr_spa_range_length
;
71 struct nd_cmd_ars_err_inj_stat
{
73 __u32 inj_err_rec_count
;
74 struct nd_error_stat_query_record
{
75 __u64 err_inj_stat_spa_range_base
;
76 __u64 err_inj_stat_spa_range_length
;
80 #define ND_INTEL_SMART 1
81 #define ND_INTEL_SMART_THRESHOLD 2
82 #define ND_INTEL_ENABLE_LSS_STATUS 10
83 #define ND_INTEL_FW_GET_INFO 12
84 #define ND_INTEL_FW_START_UPDATE 13
85 #define ND_INTEL_FW_SEND_DATA 14
86 #define ND_INTEL_FW_FINISH_UPDATE 15
87 #define ND_INTEL_FW_FINISH_QUERY 16
88 #define ND_INTEL_SMART_SET_THRESHOLD 17
89 #define ND_INTEL_SMART_INJECT 18
91 #define ND_INTEL_SMART_HEALTH_VALID (1 << 0)
92 #define ND_INTEL_SMART_SPARES_VALID (1 << 1)
93 #define ND_INTEL_SMART_USED_VALID (1 << 2)
94 #define ND_INTEL_SMART_MTEMP_VALID (1 << 3)
95 #define ND_INTEL_SMART_CTEMP_VALID (1 << 4)
96 #define ND_INTEL_SMART_SHUTDOWN_COUNT_VALID (1 << 5)
97 #define ND_INTEL_SMART_AIT_STATUS_VALID (1 << 6)
98 #define ND_INTEL_SMART_PTEMP_VALID (1 << 7)
99 #define ND_INTEL_SMART_ALARM_VALID (1 << 9)
100 #define ND_INTEL_SMART_SHUTDOWN_VALID (1 << 10)
101 #define ND_INTEL_SMART_VENDOR_VALID (1 << 11)
102 #define ND_INTEL_SMART_SPARE_TRIP (1 << 0)
103 #define ND_INTEL_SMART_TEMP_TRIP (1 << 1)
104 #define ND_INTEL_SMART_CTEMP_TRIP (1 << 2)
105 #define ND_INTEL_SMART_NON_CRITICAL_HEALTH (1 << 0)
106 #define ND_INTEL_SMART_CRITICAL_HEALTH (1 << 1)
107 #define ND_INTEL_SMART_FATAL_HEALTH (1 << 2)
108 #define ND_INTEL_SMART_INJECT_MTEMP (1 << 0)
109 #define ND_INTEL_SMART_INJECT_SPARE (1 << 1)
110 #define ND_INTEL_SMART_INJECT_FATAL (1 << 2)
111 #define ND_INTEL_SMART_INJECT_SHUTDOWN (1 << 3)
113 struct nd_intel_smart_threshold
{
119 __u16 media_temperature
;
120 __u16 ctrl_temperature
;
127 struct nd_intel_smart_set_threshold
{
130 __u16 media_temperature
;
131 __u16 ctrl_temperature
;
135 struct nd_intel_smart_inject
{
138 __u16 media_temperature
;
142 __u8 unsafe_shutdown_enable
;
146 #define INTEL_FW_STORAGE_SIZE 0x100000
147 #define INTEL_FW_MAX_SEND_LEN 0xFFEC
148 #define INTEL_FW_QUERY_INTERVAL 250000
149 #define INTEL_FW_QUERY_MAX_TIME 3000000
150 #define INTEL_FW_FIS_VERSION 0x0105
151 #define INTEL_FW_FAKE_VERSION 0xffffffffabcd
153 enum intel_fw_update_state
{
155 FW_STATE_IN_PROGRESS
,
160 struct nd_intel_fw_info
{
164 __u32 query_interval
;
165 __u32 max_query_time
;
170 __u64 updated_version
;
173 struct nd_intel_fw_start
{
178 /* this one has the output first because the variable input data size */
179 struct nd_intel_fw_send_data
{
184 /* this field is not declared due ot variable data from input */
188 struct nd_intel_fw_finish_update
{
195 struct nd_intel_fw_finish_query
{
198 __u64 updated_fw_rev
;
201 struct nd_intel_lss
{
206 typedef struct nfit_test_resource
*(*nfit_test_lookup_fn
)(resource_size_t
);
207 typedef union acpi_object
*(*nfit_test_evaluate_dsm_fn
)(acpi_handle handle
,
208 const guid_t
*guid
, u64 rev
, u64 func
,
209 union acpi_object
*argv4
);
210 void __wrap_iounmap(volatile void __iomem
*addr
);
211 void nfit_test_setup(nfit_test_lookup_fn lookup
,
212 nfit_test_evaluate_dsm_fn evaluate
);
213 void nfit_test_teardown(void);
214 struct nfit_test_resource
*get_nfit_res(resource_size_t resource
);