blob: 2c5608b92578ee19398b8c837755e0b4db0e9fb5 [file] [log] [blame]
Dan Williamsb94d5232015-05-19 22:54:31 -04001/*
2 * Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 */
13#include <linux/list_sort.h>
14#include <linux/libnvdimm.h>
15#include <linux/module.h>
Ross Zwisler047fc8a2015-06-25 04:21:02 -040016#include <linux/mutex.h>
Dan Williams62232e452015-06-08 14:27:06 -040017#include <linux/ndctl.h>
Vishal Verma37b137f2016-07-23 21:51:42 -070018#include <linux/sysfs.h>
Vishal Verma0caeef62015-12-24 19:21:43 -070019#include <linux/delay.h>
Dan Williamsb94d5232015-05-19 22:54:31 -040020#include <linux/list.h>
21#include <linux/acpi.h>
Dan Williamseaf96152015-05-01 13:11:27 -040022#include <linux/sort.h>
Ross Zwisler047fc8a2015-06-25 04:21:02 -040023#include <linux/io.h>
Dan Williams1cf03c02016-02-17 13:01:23 -080024#include <linux/nd.h>
Dan Williams96601ad2015-08-24 18:29:38 -040025#include <asm/cacheflush.h>
Dan Williamsb94d5232015-05-19 22:54:31 -040026#include "nfit.h"
27
Ross Zwisler047fc8a2015-06-25 04:21:02 -040028/*
29 * For readq() and writeq() on 32-bit builds, the hi-lo, lo-hi order is
30 * irrelevant.
31 */
Christoph Hellwig2f8e2c82015-08-28 09:27:14 +020032#include <linux/io-64-nonatomic-hi-lo.h>
Ross Zwisler047fc8a2015-06-25 04:21:02 -040033
Dan Williams4d88a972015-05-31 14:41:48 -040034static bool force_enable_dimms;
35module_param(force_enable_dimms, bool, S_IRUGO|S_IWUSR);
36MODULE_PARM_DESC(force_enable_dimms, "Ignore _STA (ACPI DIMM device) status");
37
Dan Williams1cf03c02016-02-17 13:01:23 -080038static unsigned int scrub_timeout = NFIT_ARS_TIMEOUT;
39module_param(scrub_timeout, uint, S_IRUGO|S_IWUSR);
40MODULE_PARM_DESC(scrub_timeout, "Initial scrub timeout in seconds");
41
42/* after three payloads of overflow, it's dead jim */
43static unsigned int scrub_overflow_abort = 3;
44module_param(scrub_overflow_abort, uint, S_IRUGO|S_IWUSR);
45MODULE_PARM_DESC(scrub_overflow_abort,
46 "Number of times we overflow ARS results before abort");
47
Dan Williams87554092016-04-28 18:01:20 -070048static bool disable_vendor_specific;
49module_param(disable_vendor_specific, bool, S_IRUGO);
50MODULE_PARM_DESC(disable_vendor_specific,
Linda Knippersf2668fa2017-03-07 16:35:14 -050051 "Limit commands to the publicly specified set");
Dan Williams87554092016-04-28 18:01:20 -070052
Linda Knippers095ab4b2017-03-07 16:35:12 -050053static unsigned long override_dsm_mask;
54module_param(override_dsm_mask, ulong, S_IRUGO);
55MODULE_PARM_DESC(override_dsm_mask, "Bitmask of allowed NVDIMM DSM functions");
56
Linda Knippersba650cf2017-03-07 16:35:13 -050057static int default_dsm_family = -1;
58module_param(default_dsm_family, int, S_IRUGO);
59MODULE_PARM_DESC(default_dsm_family,
60 "Try this DSM type first when identifying NVDIMM family");
61
Vishal Verma6839a6d2016-07-23 21:51:21 -070062LIST_HEAD(acpi_descs);
63DEFINE_MUTEX(acpi_desc_lock);
64
Dan Williams7ae0fa432016-02-19 12:16:34 -080065static struct workqueue_struct *nfit_wq;
66
Vishal Verma20985162015-10-27 16:58:27 -060067struct nfit_table_prev {
68 struct list_head spas;
69 struct list_head memdevs;
70 struct list_head dcrs;
71 struct list_head bdws;
72 struct list_head idts;
73 struct list_head flushes;
74};
75
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +030076static guid_t nfit_uuid[NFIT_UUID_MAX];
Dan Williamsb94d5232015-05-19 22:54:31 -040077
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +030078const guid_t *to_nfit_uuid(enum nfit_uuids id)
Dan Williamsb94d5232015-05-19 22:54:31 -040079{
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +030080 return &nfit_uuid[id];
Dan Williamsb94d5232015-05-19 22:54:31 -040081}
Dan Williams6bc75612015-06-17 17:23:32 -040082EXPORT_SYMBOL(to_nfit_uuid);
Dan Williamsb94d5232015-05-19 22:54:31 -040083
Dan Williams62232e452015-06-08 14:27:06 -040084static struct acpi_nfit_desc *to_acpi_nfit_desc(
85 struct nvdimm_bus_descriptor *nd_desc)
86{
87 return container_of(nd_desc, struct acpi_nfit_desc, nd_desc);
88}
89
90static struct acpi_device *to_acpi_dev(struct acpi_nfit_desc *acpi_desc)
91{
92 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
93
94 /*
95 * If provider == 'ACPI.NFIT' we can assume 'dev' is a struct
96 * acpi_device.
97 */
98 if (!nd_desc->provider_name
99 || strcmp(nd_desc->provider_name, "ACPI.NFIT") != 0)
100 return NULL;
101
102 return to_acpi_device(acpi_desc->dev);
103}
104
Dan Williamsd6eb2702016-12-06 15:06:55 -0800105static int xlat_bus_status(void *buf, unsigned int cmd, u32 status)
Dan Williamsaef25332016-02-12 17:01:11 -0800106{
Dan Williamsd4f32362016-03-03 16:08:54 -0800107 struct nd_cmd_clear_error *clear_err;
Dan Williamsaef25332016-02-12 17:01:11 -0800108 struct nd_cmd_ars_status *ars_status;
Dan Williamsaef25332016-02-12 17:01:11 -0800109 u16 flags;
110
111 switch (cmd) {
112 case ND_CMD_ARS_CAP:
Dan Williams11294d62016-09-21 09:21:26 -0700113 if ((status & 0xffff) == NFIT_ARS_CAP_NONE)
Dan Williamsaef25332016-02-12 17:01:11 -0800114 return -ENOTTY;
115
116 /* Command failed */
Dan Williams11294d62016-09-21 09:21:26 -0700117 if (status & 0xffff)
Dan Williamsaef25332016-02-12 17:01:11 -0800118 return -EIO;
119
120 /* No supported scan types for this range */
121 flags = ND_ARS_PERSISTENT | ND_ARS_VOLATILE;
Dan Williams11294d62016-09-21 09:21:26 -0700122 if ((status >> 16 & flags) == 0)
Dan Williamsaef25332016-02-12 17:01:11 -0800123 return -ENOTTY;
Vishal Verma9a901f52016-12-05 17:00:37 -0700124 return 0;
Dan Williamsaef25332016-02-12 17:01:11 -0800125 case ND_CMD_ARS_START:
Dan Williamsaef25332016-02-12 17:01:11 -0800126 /* ARS is in progress */
Dan Williams11294d62016-09-21 09:21:26 -0700127 if ((status & 0xffff) == NFIT_ARS_START_BUSY)
Dan Williamsaef25332016-02-12 17:01:11 -0800128 return -EBUSY;
129
130 /* Command failed */
Dan Williams11294d62016-09-21 09:21:26 -0700131 if (status & 0xffff)
Dan Williamsaef25332016-02-12 17:01:11 -0800132 return -EIO;
Vishal Verma9a901f52016-12-05 17:00:37 -0700133 return 0;
Dan Williamsaef25332016-02-12 17:01:11 -0800134 case ND_CMD_ARS_STATUS:
135 ars_status = buf;
136 /* Command failed */
Dan Williams11294d62016-09-21 09:21:26 -0700137 if (status & 0xffff)
Dan Williamsaef25332016-02-12 17:01:11 -0800138 return -EIO;
139 /* Check extended status (Upper two bytes) */
Dan Williams11294d62016-09-21 09:21:26 -0700140 if (status == NFIT_ARS_STATUS_DONE)
Dan Williamsaef25332016-02-12 17:01:11 -0800141 return 0;
142
143 /* ARS is in progress */
Dan Williams11294d62016-09-21 09:21:26 -0700144 if (status == NFIT_ARS_STATUS_BUSY)
Dan Williamsaef25332016-02-12 17:01:11 -0800145 return -EBUSY;
146
147 /* No ARS performed for the current boot */
Dan Williams11294d62016-09-21 09:21:26 -0700148 if (status == NFIT_ARS_STATUS_NONE)
Dan Williamsaef25332016-02-12 17:01:11 -0800149 return -EAGAIN;
150
151 /*
152 * ARS interrupted, either we overflowed or some other
153 * agent wants the scan to stop. If we didn't overflow
154 * then just continue with the returned results.
155 */
Dan Williams11294d62016-09-21 09:21:26 -0700156 if (status == NFIT_ARS_STATUS_INTR) {
Dan Williams82aa37c2016-12-06 12:45:24 -0800157 if (ars_status->out_length >= 40 && (ars_status->flags
158 & NFIT_ARS_F_OVERFLOW))
Dan Williamsaef25332016-02-12 17:01:11 -0800159 return -ENOSPC;
160 return 0;
161 }
162
163 /* Unknown status */
Dan Williams11294d62016-09-21 09:21:26 -0700164 if (status >> 16)
Dan Williamsaef25332016-02-12 17:01:11 -0800165 return -EIO;
Vishal Verma9a901f52016-12-05 17:00:37 -0700166 return 0;
Dan Williamsd4f32362016-03-03 16:08:54 -0800167 case ND_CMD_CLEAR_ERROR:
168 clear_err = buf;
Dan Williams11294d62016-09-21 09:21:26 -0700169 if (status & 0xffff)
Dan Williamsd4f32362016-03-03 16:08:54 -0800170 return -EIO;
171 if (!clear_err->cleared)
172 return -EIO;
173 if (clear_err->length > clear_err->cleared)
174 return clear_err->cleared;
Vishal Verma9a901f52016-12-05 17:00:37 -0700175 return 0;
Dan Williamsaef25332016-02-12 17:01:11 -0800176 default:
177 break;
178 }
179
Dan Williams11294d62016-09-21 09:21:26 -0700180 /* all other non-zero status results in an error */
181 if (status)
182 return -EIO;
Dan Williamsaef25332016-02-12 17:01:11 -0800183 return 0;
184}
185
Dan Williams9d62ed92017-05-04 11:47:22 -0700186static int xlat_nvdimm_status(void *buf, unsigned int cmd, u32 status)
187{
188 switch (cmd) {
189 case ND_CMD_GET_CONFIG_SIZE:
190 if (status >> 16 & ND_CONFIG_LOCKED)
191 return -EACCES;
192 break;
193 default:
194 break;
195 }
196
197 /* all other non-zero status results in an error */
198 if (status)
199 return -EIO;
200 return 0;
201}
202
Dan Williamsd6eb2702016-12-06 15:06:55 -0800203static int xlat_status(struct nvdimm *nvdimm, void *buf, unsigned int cmd,
204 u32 status)
205{
206 if (!nvdimm)
207 return xlat_bus_status(buf, cmd, status);
Dan Williams9d62ed92017-05-04 11:47:22 -0700208 return xlat_nvdimm_status(buf, cmd, status);
Dan Williamsd6eb2702016-12-06 15:06:55 -0800209}
210
Dan Williamsa7de92d2016-12-05 13:43:25 -0800211int acpi_nfit_ctl(struct nvdimm_bus_descriptor *nd_desc, struct nvdimm *nvdimm,
212 unsigned int cmd, void *buf, unsigned int buf_len, int *cmd_rc)
Dan Williamsb94d5232015-05-19 22:54:31 -0400213{
Dan Williams62232e452015-06-08 14:27:06 -0400214 struct acpi_nfit_desc *acpi_desc = to_acpi_nfit_desc(nd_desc);
Dan Williams62232e452015-06-08 14:27:06 -0400215 union acpi_object in_obj, in_buf, *out_obj;
Dan Williams31eca762016-04-28 16:23:43 -0700216 const struct nd_cmd_desc *desc = NULL;
Dan Williams62232e452015-06-08 14:27:06 -0400217 struct device *dev = acpi_desc->dev;
Dan Williams31eca762016-04-28 16:23:43 -0700218 struct nd_cmd_pkg *call_pkg = NULL;
Dan Williams62232e452015-06-08 14:27:06 -0400219 const char *cmd_name, *dimm_name;
Dan Williams31eca762016-04-28 16:23:43 -0700220 unsigned long cmd_mask, dsm_mask;
Dan Williams11294d62016-09-21 09:21:26 -0700221 u32 offset, fw_status = 0;
Dan Williams62232e452015-06-08 14:27:06 -0400222 acpi_handle handle;
Dan Williams31eca762016-04-28 16:23:43 -0700223 unsigned int func;
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +0300224 const guid_t *guid;
Dan Williams62232e452015-06-08 14:27:06 -0400225 int rc, i;
226
Dan Williams31eca762016-04-28 16:23:43 -0700227 func = cmd;
228 if (cmd == ND_CMD_CALL) {
229 call_pkg = buf;
230 func = call_pkg->nd_command;
231 }
232
Dan Williams62232e452015-06-08 14:27:06 -0400233 if (nvdimm) {
234 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
235 struct acpi_device *adev = nfit_mem->adev;
236
237 if (!adev)
238 return -ENOTTY;
Dan Williams31eca762016-04-28 16:23:43 -0700239 if (call_pkg && nfit_mem->family != call_pkg->nd_family)
240 return -ENOTTY;
241
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400242 dimm_name = nvdimm_name(nvdimm);
Dan Williams62232e452015-06-08 14:27:06 -0400243 cmd_name = nvdimm_cmd_name(cmd);
Dan Williamse3654ec2016-04-28 16:17:07 -0700244 cmd_mask = nvdimm_cmd_mask(nvdimm);
Dan Williams62232e452015-06-08 14:27:06 -0400245 dsm_mask = nfit_mem->dsm_mask;
246 desc = nd_cmd_dimm_desc(cmd);
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +0300247 guid = to_nfit_uuid(nfit_mem->family);
Dan Williams62232e452015-06-08 14:27:06 -0400248 handle = adev->handle;
249 } else {
250 struct acpi_device *adev = to_acpi_dev(acpi_desc);
251
252 cmd_name = nvdimm_bus_cmd_name(cmd);
Dan Williamse3654ec2016-04-28 16:17:07 -0700253 cmd_mask = nd_desc->cmd_mask;
Dan Williams31eca762016-04-28 16:23:43 -0700254 dsm_mask = cmd_mask;
Jerry Hoemann7db5bb32017-06-30 20:53:24 -0700255 if (cmd == ND_CMD_CALL)
256 dsm_mask = nd_desc->bus_dsm_mask;
Dan Williams62232e452015-06-08 14:27:06 -0400257 desc = nd_cmd_bus_desc(cmd);
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +0300258 guid = to_nfit_uuid(NFIT_DEV_BUS);
Dan Williams62232e452015-06-08 14:27:06 -0400259 handle = adev->handle;
260 dimm_name = "bus";
261 }
262
263 if (!desc || (cmd && (desc->out_num + desc->in_num == 0)))
264 return -ENOTTY;
265
Dan Williams31eca762016-04-28 16:23:43 -0700266 if (!test_bit(cmd, &cmd_mask) || !test_bit(func, &dsm_mask))
Dan Williams62232e452015-06-08 14:27:06 -0400267 return -ENOTTY;
268
269 in_obj.type = ACPI_TYPE_PACKAGE;
270 in_obj.package.count = 1;
271 in_obj.package.elements = &in_buf;
272 in_buf.type = ACPI_TYPE_BUFFER;
273 in_buf.buffer.pointer = buf;
274 in_buf.buffer.length = 0;
275
276 /* libnvdimm has already validated the input envelope */
277 for (i = 0; i < desc->in_num; i++)
278 in_buf.buffer.length += nd_cmd_in_size(nvdimm, cmd, desc,
279 i, buf);
280
Dan Williams31eca762016-04-28 16:23:43 -0700281 if (call_pkg) {
282 /* skip over package wrapper */
283 in_buf.buffer.pointer = (void *) &call_pkg->nd_payload;
284 in_buf.buffer.length = call_pkg->nd_size_in;
Dan Williams62232e452015-06-08 14:27:06 -0400285 }
286
Dan Williams7699a6a2017-04-28 13:54:30 -0700287 dev_dbg(dev, "%s:%s cmd: %d: func: %d input length: %d\n",
288 __func__, dimm_name, cmd, func, in_buf.buffer.length);
289 print_hex_dump_debug("nvdimm in ", DUMP_PREFIX_OFFSET, 4, 4,
Dan Williams31eca762016-04-28 16:23:43 -0700290 in_buf.buffer.pointer,
291 min_t(u32, 256, in_buf.buffer.length), true);
Dan Williams31eca762016-04-28 16:23:43 -0700292
Andy Shevchenko94116f82017-06-05 19:40:46 +0300293 out_obj = acpi_evaluate_dsm(handle, guid, 1, func, &in_obj);
Dan Williams62232e452015-06-08 14:27:06 -0400294 if (!out_obj) {
295 dev_dbg(dev, "%s:%s _DSM failed cmd: %s\n", __func__, dimm_name,
296 cmd_name);
297 return -EINVAL;
298 }
299
Dan Williams31eca762016-04-28 16:23:43 -0700300 if (call_pkg) {
301 call_pkg->nd_fw_size = out_obj->buffer.length;
302 memcpy(call_pkg->nd_payload + call_pkg->nd_size_in,
303 out_obj->buffer.pointer,
304 min(call_pkg->nd_fw_size, call_pkg->nd_size_out));
305
306 ACPI_FREE(out_obj);
307 /*
308 * Need to support FW function w/o known size in advance.
309 * Caller can determine required size based upon nd_fw_size.
310 * If we return an error (like elsewhere) then caller wouldn't
311 * be able to rely upon data returned to make calculation.
312 */
313 return 0;
314 }
315
Dan Williams62232e452015-06-08 14:27:06 -0400316 if (out_obj->package.type != ACPI_TYPE_BUFFER) {
317 dev_dbg(dev, "%s:%s unexpected output object type cmd: %s type: %d\n",
318 __func__, dimm_name, cmd_name, out_obj->type);
319 rc = -EINVAL;
320 goto out;
321 }
322
Dan Williams7699a6a2017-04-28 13:54:30 -0700323 dev_dbg(dev, "%s:%s cmd: %s output length: %d\n", __func__, dimm_name,
324 cmd_name, out_obj->buffer.length);
325 print_hex_dump_debug(cmd_name, DUMP_PREFIX_OFFSET, 4, 4,
326 out_obj->buffer.pointer,
327 min_t(u32, 128, out_obj->buffer.length), true);
Dan Williams62232e452015-06-08 14:27:06 -0400328
329 for (i = 0, offset = 0; i < desc->out_num; i++) {
330 u32 out_size = nd_cmd_out_size(nvdimm, cmd, desc, i, buf,
Dan Williamsefda1b5d2016-12-06 09:10:12 -0800331 (u32 *) out_obj->buffer.pointer,
332 out_obj->buffer.length - offset);
Dan Williams62232e452015-06-08 14:27:06 -0400333
334 if (offset + out_size > out_obj->buffer.length) {
335 dev_dbg(dev, "%s:%s output object underflow cmd: %s field: %d\n",
336 __func__, dimm_name, cmd_name, i);
337 break;
338 }
339
340 if (in_buf.buffer.length + offset + out_size > buf_len) {
341 dev_dbg(dev, "%s:%s output overrun cmd: %s field: %d\n",
342 __func__, dimm_name, cmd_name, i);
343 rc = -ENXIO;
344 goto out;
345 }
346 memcpy(buf + in_buf.buffer.length + offset,
347 out_obj->buffer.pointer + offset, out_size);
348 offset += out_size;
349 }
Dan Williams11294d62016-09-21 09:21:26 -0700350
351 /*
352 * Set fw_status for all the commands with a known format to be
353 * later interpreted by xlat_status().
354 */
355 if (i >= 1 && ((cmd >= ND_CMD_ARS_CAP && cmd <= ND_CMD_CLEAR_ERROR)
356 || (cmd >= ND_CMD_SMART && cmd <= ND_CMD_VENDOR)))
357 fw_status = *(u32 *) out_obj->buffer.pointer;
358
Dan Williams62232e452015-06-08 14:27:06 -0400359 if (offset + in_buf.buffer.length < buf_len) {
360 if (i >= 1) {
361 /*
362 * status valid, return the number of bytes left
363 * unfilled in the output buffer
364 */
365 rc = buf_len - offset - in_buf.buffer.length;
Dan Williamsaef25332016-02-12 17:01:11 -0800366 if (cmd_rc)
Dan Williamsd6eb2702016-12-06 15:06:55 -0800367 *cmd_rc = xlat_status(nvdimm, buf, cmd,
368 fw_status);
Dan Williams62232e452015-06-08 14:27:06 -0400369 } else {
370 dev_err(dev, "%s:%s underrun cmd: %s buf_len: %d out_len: %d\n",
371 __func__, dimm_name, cmd_name, buf_len,
372 offset);
373 rc = -ENXIO;
374 }
Dan Williams2eea6582016-05-02 09:11:53 -0700375 } else {
Dan Williams62232e452015-06-08 14:27:06 -0400376 rc = 0;
Dan Williams2eea6582016-05-02 09:11:53 -0700377 if (cmd_rc)
Dan Williamsd6eb2702016-12-06 15:06:55 -0800378 *cmd_rc = xlat_status(nvdimm, buf, cmd, fw_status);
Dan Williams2eea6582016-05-02 09:11:53 -0700379 }
Dan Williams62232e452015-06-08 14:27:06 -0400380
381 out:
382 ACPI_FREE(out_obj);
383
384 return rc;
Dan Williamsb94d5232015-05-19 22:54:31 -0400385}
Dan Williamsa7de92d2016-12-05 13:43:25 -0800386EXPORT_SYMBOL_GPL(acpi_nfit_ctl);
Dan Williamsb94d5232015-05-19 22:54:31 -0400387
388static const char *spa_type_name(u16 type)
389{
390 static const char *to_name[] = {
391 [NFIT_SPA_VOLATILE] = "volatile",
392 [NFIT_SPA_PM] = "pmem",
393 [NFIT_SPA_DCR] = "dimm-control-region",
394 [NFIT_SPA_BDW] = "block-data-window",
395 [NFIT_SPA_VDISK] = "volatile-disk",
396 [NFIT_SPA_VCD] = "volatile-cd",
397 [NFIT_SPA_PDISK] = "persistent-disk",
398 [NFIT_SPA_PCD] = "persistent-cd",
399
400 };
401
402 if (type > NFIT_SPA_PCD)
403 return "unknown";
404
405 return to_name[type];
406}
407
Vishal Verma6839a6d2016-07-23 21:51:21 -0700408int nfit_spa_type(struct acpi_nfit_system_address *spa)
Dan Williamsb94d5232015-05-19 22:54:31 -0400409{
410 int i;
411
412 for (i = 0; i < NFIT_UUID_MAX; i++)
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +0300413 if (guid_equal(to_nfit_uuid(i), (guid_t *)&spa->range_guid))
Dan Williamsb94d5232015-05-19 22:54:31 -0400414 return i;
415 return -1;
416}
417
418static bool add_spa(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600419 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400420 struct acpi_nfit_system_address *spa)
421{
422 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600423 struct nfit_spa *nfit_spa;
Dan Williamsb94d5232015-05-19 22:54:31 -0400424
Dan Williams31932042016-07-14 17:22:48 -0700425 if (spa->header.length != sizeof(*spa))
426 return false;
427
Vishal Verma20985162015-10-27 16:58:27 -0600428 list_for_each_entry(nfit_spa, &prev->spas, list) {
Dan Williams31932042016-07-14 17:22:48 -0700429 if (memcmp(nfit_spa->spa, spa, sizeof(*spa)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600430 list_move_tail(&nfit_spa->list, &acpi_desc->spas);
431 return true;
432 }
433 }
434
Dan Williams31932042016-07-14 17:22:48 -0700435 nfit_spa = devm_kzalloc(dev, sizeof(*nfit_spa) + sizeof(*spa),
436 GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400437 if (!nfit_spa)
438 return false;
439 INIT_LIST_HEAD(&nfit_spa->list);
Dan Williams31932042016-07-14 17:22:48 -0700440 memcpy(nfit_spa->spa, spa, sizeof(*spa));
Dan Williamsb94d5232015-05-19 22:54:31 -0400441 list_add_tail(&nfit_spa->list, &acpi_desc->spas);
442 dev_dbg(dev, "%s: spa index: %d type: %s\n", __func__,
443 spa->range_index,
444 spa_type_name(nfit_spa_type(spa)));
445 return true;
446}
447
448static bool add_memdev(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600449 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400450 struct acpi_nfit_memory_map *memdev)
451{
452 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600453 struct nfit_memdev *nfit_memdev;
Dan Williamsb94d5232015-05-19 22:54:31 -0400454
Dan Williams31932042016-07-14 17:22:48 -0700455 if (memdev->header.length != sizeof(*memdev))
456 return false;
457
Vishal Verma20985162015-10-27 16:58:27 -0600458 list_for_each_entry(nfit_memdev, &prev->memdevs, list)
Dan Williams31932042016-07-14 17:22:48 -0700459 if (memcmp(nfit_memdev->memdev, memdev, sizeof(*memdev)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600460 list_move_tail(&nfit_memdev->list, &acpi_desc->memdevs);
461 return true;
462 }
463
Dan Williams31932042016-07-14 17:22:48 -0700464 nfit_memdev = devm_kzalloc(dev, sizeof(*nfit_memdev) + sizeof(*memdev),
465 GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400466 if (!nfit_memdev)
467 return false;
468 INIT_LIST_HEAD(&nfit_memdev->list);
Dan Williams31932042016-07-14 17:22:48 -0700469 memcpy(nfit_memdev->memdev, memdev, sizeof(*memdev));
Dan Williamsb94d5232015-05-19 22:54:31 -0400470 list_add_tail(&nfit_memdev->list, &acpi_desc->memdevs);
Dan Williamscaa603a2017-04-14 10:27:11 -0700471 dev_dbg(dev, "%s: memdev handle: %#x spa: %d dcr: %d flags: %#x\n",
Dan Williamsb94d5232015-05-19 22:54:31 -0400472 __func__, memdev->device_handle, memdev->range_index,
Dan Williamscaa603a2017-04-14 10:27:11 -0700473 memdev->region_index, memdev->flags);
Dan Williamsb94d5232015-05-19 22:54:31 -0400474 return true;
475}
476
Dan Williams31932042016-07-14 17:22:48 -0700477/*
478 * An implementation may provide a truncated control region if no block windows
479 * are defined.
480 */
481static size_t sizeof_dcr(struct acpi_nfit_control_region *dcr)
482{
483 if (dcr->header.length < offsetof(struct acpi_nfit_control_region,
484 window_size))
485 return 0;
486 if (dcr->windows)
487 return sizeof(*dcr);
488 return offsetof(struct acpi_nfit_control_region, window_size);
489}
490
Dan Williamsb94d5232015-05-19 22:54:31 -0400491static bool add_dcr(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600492 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400493 struct acpi_nfit_control_region *dcr)
494{
495 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600496 struct nfit_dcr *nfit_dcr;
Dan Williamsb94d5232015-05-19 22:54:31 -0400497
Dan Williams31932042016-07-14 17:22:48 -0700498 if (!sizeof_dcr(dcr))
499 return false;
500
Vishal Verma20985162015-10-27 16:58:27 -0600501 list_for_each_entry(nfit_dcr, &prev->dcrs, list)
Dan Williams31932042016-07-14 17:22:48 -0700502 if (memcmp(nfit_dcr->dcr, dcr, sizeof_dcr(dcr)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600503 list_move_tail(&nfit_dcr->list, &acpi_desc->dcrs);
504 return true;
505 }
506
Dan Williams31932042016-07-14 17:22:48 -0700507 nfit_dcr = devm_kzalloc(dev, sizeof(*nfit_dcr) + sizeof(*dcr),
508 GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400509 if (!nfit_dcr)
510 return false;
511 INIT_LIST_HEAD(&nfit_dcr->list);
Dan Williams31932042016-07-14 17:22:48 -0700512 memcpy(nfit_dcr->dcr, dcr, sizeof_dcr(dcr));
Dan Williamsb94d5232015-05-19 22:54:31 -0400513 list_add_tail(&nfit_dcr->list, &acpi_desc->dcrs);
514 dev_dbg(dev, "%s: dcr index: %d windows: %d\n", __func__,
515 dcr->region_index, dcr->windows);
516 return true;
517}
518
519static bool add_bdw(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600520 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400521 struct acpi_nfit_data_region *bdw)
522{
523 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600524 struct nfit_bdw *nfit_bdw;
Dan Williamsb94d5232015-05-19 22:54:31 -0400525
Dan Williams31932042016-07-14 17:22:48 -0700526 if (bdw->header.length != sizeof(*bdw))
527 return false;
Vishal Verma20985162015-10-27 16:58:27 -0600528 list_for_each_entry(nfit_bdw, &prev->bdws, list)
Dan Williams31932042016-07-14 17:22:48 -0700529 if (memcmp(nfit_bdw->bdw, bdw, sizeof(*bdw)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600530 list_move_tail(&nfit_bdw->list, &acpi_desc->bdws);
531 return true;
532 }
533
Dan Williams31932042016-07-14 17:22:48 -0700534 nfit_bdw = devm_kzalloc(dev, sizeof(*nfit_bdw) + sizeof(*bdw),
535 GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400536 if (!nfit_bdw)
537 return false;
538 INIT_LIST_HEAD(&nfit_bdw->list);
Dan Williams31932042016-07-14 17:22:48 -0700539 memcpy(nfit_bdw->bdw, bdw, sizeof(*bdw));
Dan Williamsb94d5232015-05-19 22:54:31 -0400540 list_add_tail(&nfit_bdw->list, &acpi_desc->bdws);
541 dev_dbg(dev, "%s: bdw dcr: %d windows: %d\n", __func__,
542 bdw->region_index, bdw->windows);
543 return true;
544}
545
Dan Williams31932042016-07-14 17:22:48 -0700546static size_t sizeof_idt(struct acpi_nfit_interleave *idt)
547{
548 if (idt->header.length < sizeof(*idt))
549 return 0;
550 return sizeof(*idt) + sizeof(u32) * (idt->line_count - 1);
551}
552
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400553static bool add_idt(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600554 struct nfit_table_prev *prev,
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400555 struct acpi_nfit_interleave *idt)
556{
557 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600558 struct nfit_idt *nfit_idt;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400559
Dan Williams31932042016-07-14 17:22:48 -0700560 if (!sizeof_idt(idt))
561 return false;
562
563 list_for_each_entry(nfit_idt, &prev->idts, list) {
564 if (sizeof_idt(nfit_idt->idt) != sizeof_idt(idt))
565 continue;
566
567 if (memcmp(nfit_idt->idt, idt, sizeof_idt(idt)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600568 list_move_tail(&nfit_idt->list, &acpi_desc->idts);
569 return true;
570 }
Dan Williams31932042016-07-14 17:22:48 -0700571 }
Vishal Verma20985162015-10-27 16:58:27 -0600572
Dan Williams31932042016-07-14 17:22:48 -0700573 nfit_idt = devm_kzalloc(dev, sizeof(*nfit_idt) + sizeof_idt(idt),
574 GFP_KERNEL);
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400575 if (!nfit_idt)
576 return false;
577 INIT_LIST_HEAD(&nfit_idt->list);
Dan Williams31932042016-07-14 17:22:48 -0700578 memcpy(nfit_idt->idt, idt, sizeof_idt(idt));
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400579 list_add_tail(&nfit_idt->list, &acpi_desc->idts);
580 dev_dbg(dev, "%s: idt index: %d num_lines: %d\n", __func__,
581 idt->interleave_index, idt->line_count);
582 return true;
583}
584
Dan Williams31932042016-07-14 17:22:48 -0700585static size_t sizeof_flush(struct acpi_nfit_flush_address *flush)
586{
587 if (flush->header.length < sizeof(*flush))
588 return 0;
589 return sizeof(*flush) + sizeof(u64) * (flush->hint_count - 1);
590}
591
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600592static bool add_flush(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600593 struct nfit_table_prev *prev,
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600594 struct acpi_nfit_flush_address *flush)
595{
596 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600597 struct nfit_flush *nfit_flush;
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600598
Dan Williams31932042016-07-14 17:22:48 -0700599 if (!sizeof_flush(flush))
600 return false;
601
602 list_for_each_entry(nfit_flush, &prev->flushes, list) {
603 if (sizeof_flush(nfit_flush->flush) != sizeof_flush(flush))
604 continue;
605
606 if (memcmp(nfit_flush->flush, flush,
607 sizeof_flush(flush)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600608 list_move_tail(&nfit_flush->list, &acpi_desc->flushes);
609 return true;
610 }
Dan Williams31932042016-07-14 17:22:48 -0700611 }
Vishal Verma20985162015-10-27 16:58:27 -0600612
Dan Williams31932042016-07-14 17:22:48 -0700613 nfit_flush = devm_kzalloc(dev, sizeof(*nfit_flush)
614 + sizeof_flush(flush), GFP_KERNEL);
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600615 if (!nfit_flush)
616 return false;
617 INIT_LIST_HEAD(&nfit_flush->list);
Dan Williams31932042016-07-14 17:22:48 -0700618 memcpy(nfit_flush->flush, flush, sizeof_flush(flush));
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600619 list_add_tail(&nfit_flush->list, &acpi_desc->flushes);
620 dev_dbg(dev, "%s: nfit_flush handle: %d hint_count: %d\n", __func__,
621 flush->device_handle, flush->hint_count);
622 return true;
623}
624
Vishal Verma20985162015-10-27 16:58:27 -0600625static void *add_table(struct acpi_nfit_desc *acpi_desc,
626 struct nfit_table_prev *prev, void *table, const void *end)
Dan Williamsb94d5232015-05-19 22:54:31 -0400627{
628 struct device *dev = acpi_desc->dev;
629 struct acpi_nfit_header *hdr;
630 void *err = ERR_PTR(-ENOMEM);
631
632 if (table >= end)
633 return NULL;
634
635 hdr = table;
Vishal Verma564d5012015-10-27 16:58:26 -0600636 if (!hdr->length) {
637 dev_warn(dev, "found a zero length table '%d' parsing nfit\n",
638 hdr->type);
639 return NULL;
640 }
641
Dan Williamsb94d5232015-05-19 22:54:31 -0400642 switch (hdr->type) {
643 case ACPI_NFIT_TYPE_SYSTEM_ADDRESS:
Vishal Verma20985162015-10-27 16:58:27 -0600644 if (!add_spa(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400645 return err;
646 break;
647 case ACPI_NFIT_TYPE_MEMORY_MAP:
Vishal Verma20985162015-10-27 16:58:27 -0600648 if (!add_memdev(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400649 return err;
650 break;
651 case ACPI_NFIT_TYPE_CONTROL_REGION:
Vishal Verma20985162015-10-27 16:58:27 -0600652 if (!add_dcr(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400653 return err;
654 break;
655 case ACPI_NFIT_TYPE_DATA_REGION:
Vishal Verma20985162015-10-27 16:58:27 -0600656 if (!add_bdw(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400657 return err;
658 break;
Dan Williamsb94d5232015-05-19 22:54:31 -0400659 case ACPI_NFIT_TYPE_INTERLEAVE:
Vishal Verma20985162015-10-27 16:58:27 -0600660 if (!add_idt(acpi_desc, prev, table))
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400661 return err;
Dan Williamsb94d5232015-05-19 22:54:31 -0400662 break;
663 case ACPI_NFIT_TYPE_FLUSH_ADDRESS:
Vishal Verma20985162015-10-27 16:58:27 -0600664 if (!add_flush(acpi_desc, prev, table))
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600665 return err;
Dan Williamsb94d5232015-05-19 22:54:31 -0400666 break;
667 case ACPI_NFIT_TYPE_SMBIOS:
668 dev_dbg(dev, "%s: smbios\n", __func__);
669 break;
670 default:
671 dev_err(dev, "unknown table '%d' parsing nfit\n", hdr->type);
672 break;
673 }
674
675 return table + hdr->length;
676}
677
678static void nfit_mem_find_spa_bdw(struct acpi_nfit_desc *acpi_desc,
679 struct nfit_mem *nfit_mem)
680{
681 u32 device_handle = __to_nfit_memdev(nfit_mem)->device_handle;
682 u16 dcr = nfit_mem->dcr->region_index;
683 struct nfit_spa *nfit_spa;
684
685 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
686 u16 range_index = nfit_spa->spa->range_index;
687 int type = nfit_spa_type(nfit_spa->spa);
688 struct nfit_memdev *nfit_memdev;
689
690 if (type != NFIT_SPA_BDW)
691 continue;
692
693 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
694 if (nfit_memdev->memdev->range_index != range_index)
695 continue;
696 if (nfit_memdev->memdev->device_handle != device_handle)
697 continue;
698 if (nfit_memdev->memdev->region_index != dcr)
699 continue;
700
701 nfit_mem->spa_bdw = nfit_spa->spa;
702 return;
703 }
704 }
705
706 dev_dbg(acpi_desc->dev, "SPA-BDW not found for SPA-DCR %d\n",
707 nfit_mem->spa_dcr->range_index);
708 nfit_mem->bdw = NULL;
709}
710
Dan Williams6697b2c2016-02-04 16:51:00 -0800711static void nfit_mem_init_bdw(struct acpi_nfit_desc *acpi_desc,
Dan Williamsb94d5232015-05-19 22:54:31 -0400712 struct nfit_mem *nfit_mem, struct acpi_nfit_system_address *spa)
713{
714 u16 dcr = __to_nfit_memdev(nfit_mem)->region_index;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400715 struct nfit_memdev *nfit_memdev;
Dan Williamsb94d5232015-05-19 22:54:31 -0400716 struct nfit_bdw *nfit_bdw;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400717 struct nfit_idt *nfit_idt;
718 u16 idt_idx, range_index;
Dan Williamsb94d5232015-05-19 22:54:31 -0400719
Dan Williamsb94d5232015-05-19 22:54:31 -0400720 list_for_each_entry(nfit_bdw, &acpi_desc->bdws, list) {
721 if (nfit_bdw->bdw->region_index != dcr)
722 continue;
723 nfit_mem->bdw = nfit_bdw->bdw;
724 break;
725 }
726
727 if (!nfit_mem->bdw)
Dan Williams6697b2c2016-02-04 16:51:00 -0800728 return;
Dan Williamsb94d5232015-05-19 22:54:31 -0400729
730 nfit_mem_find_spa_bdw(acpi_desc, nfit_mem);
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400731
732 if (!nfit_mem->spa_bdw)
Dan Williams6697b2c2016-02-04 16:51:00 -0800733 return;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400734
735 range_index = nfit_mem->spa_bdw->range_index;
736 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
737 if (nfit_memdev->memdev->range_index != range_index ||
738 nfit_memdev->memdev->region_index != dcr)
739 continue;
740 nfit_mem->memdev_bdw = nfit_memdev->memdev;
741 idt_idx = nfit_memdev->memdev->interleave_index;
742 list_for_each_entry(nfit_idt, &acpi_desc->idts, list) {
743 if (nfit_idt->idt->interleave_index != idt_idx)
744 continue;
745 nfit_mem->idt_bdw = nfit_idt->idt;
746 break;
747 }
748 break;
749 }
Dan Williamsb94d5232015-05-19 22:54:31 -0400750}
751
Dan Williams14999342017-04-13 19:46:36 -0700752static int __nfit_mem_init(struct acpi_nfit_desc *acpi_desc,
Dan Williamsb94d5232015-05-19 22:54:31 -0400753 struct acpi_nfit_system_address *spa)
754{
755 struct nfit_mem *nfit_mem, *found;
756 struct nfit_memdev *nfit_memdev;
Dan Williams14999342017-04-13 19:46:36 -0700757 int type = spa ? nfit_spa_type(spa) : 0;
Dan Williamsb94d5232015-05-19 22:54:31 -0400758
759 switch (type) {
760 case NFIT_SPA_DCR:
761 case NFIT_SPA_PM:
762 break;
763 default:
Dan Williams14999342017-04-13 19:46:36 -0700764 if (spa)
765 return 0;
Dan Williamsb94d5232015-05-19 22:54:31 -0400766 }
767
Dan Williams14999342017-04-13 19:46:36 -0700768 /*
769 * This loop runs in two modes, when a dimm is mapped the loop
770 * adds memdev associations to an existing dimm, or creates a
771 * dimm. In the unmapped dimm case this loop sweeps for memdev
772 * instances with an invalid / zero range_index and adds those
773 * dimms without spa associations.
774 */
Dan Williamsb94d5232015-05-19 22:54:31 -0400775 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700776 struct nfit_flush *nfit_flush;
Dan Williams6697b2c2016-02-04 16:51:00 -0800777 struct nfit_dcr *nfit_dcr;
778 u32 device_handle;
779 u16 dcr;
Dan Williamsb94d5232015-05-19 22:54:31 -0400780
Dan Williams14999342017-04-13 19:46:36 -0700781 if (spa && nfit_memdev->memdev->range_index != spa->range_index)
782 continue;
783 if (!spa && nfit_memdev->memdev->range_index)
Dan Williamsb94d5232015-05-19 22:54:31 -0400784 continue;
785 found = NULL;
786 dcr = nfit_memdev->memdev->region_index;
Dan Williams6697b2c2016-02-04 16:51:00 -0800787 device_handle = nfit_memdev->memdev->device_handle;
Dan Williamsb94d5232015-05-19 22:54:31 -0400788 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list)
Dan Williams6697b2c2016-02-04 16:51:00 -0800789 if (__to_nfit_memdev(nfit_mem)->device_handle
790 == device_handle) {
Dan Williamsb94d5232015-05-19 22:54:31 -0400791 found = nfit_mem;
792 break;
793 }
794
795 if (found)
796 nfit_mem = found;
797 else {
798 nfit_mem = devm_kzalloc(acpi_desc->dev,
799 sizeof(*nfit_mem), GFP_KERNEL);
800 if (!nfit_mem)
801 return -ENOMEM;
802 INIT_LIST_HEAD(&nfit_mem->list);
Dan Williams8cc6ddf2016-04-05 15:26:50 -0700803 nfit_mem->acpi_desc = acpi_desc;
Dan Williams6697b2c2016-02-04 16:51:00 -0800804 list_add(&nfit_mem->list, &acpi_desc->dimms);
805 }
806
807 list_for_each_entry(nfit_dcr, &acpi_desc->dcrs, list) {
808 if (nfit_dcr->dcr->region_index != dcr)
809 continue;
810 /*
811 * Record the control region for the dimm. For
812 * the ACPI 6.1 case, where there are separate
813 * control regions for the pmem vs blk
814 * interfaces, be sure to record the extended
815 * blk details.
816 */
817 if (!nfit_mem->dcr)
818 nfit_mem->dcr = nfit_dcr->dcr;
819 else if (nfit_mem->dcr->windows == 0
820 && nfit_dcr->dcr->windows)
821 nfit_mem->dcr = nfit_dcr->dcr;
822 break;
823 }
824
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700825 list_for_each_entry(nfit_flush, &acpi_desc->flushes, list) {
Dan Williamse5ae3b22016-06-07 17:00:04 -0700826 struct acpi_nfit_flush_address *flush;
827 u16 i;
828
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700829 if (nfit_flush->flush->device_handle != device_handle)
830 continue;
831 nfit_mem->nfit_flush = nfit_flush;
Dan Williamse5ae3b22016-06-07 17:00:04 -0700832 flush = nfit_flush->flush;
833 nfit_mem->flush_wpq = devm_kzalloc(acpi_desc->dev,
834 flush->hint_count
835 * sizeof(struct resource), GFP_KERNEL);
836 if (!nfit_mem->flush_wpq)
837 return -ENOMEM;
838 for (i = 0; i < flush->hint_count; i++) {
839 struct resource *res = &nfit_mem->flush_wpq[i];
840
841 res->start = flush->hint_address[i];
842 res->end = res->start + 8 - 1;
843 }
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700844 break;
845 }
846
Dan Williams6697b2c2016-02-04 16:51:00 -0800847 if (dcr && !nfit_mem->dcr) {
848 dev_err(acpi_desc->dev, "SPA %d missing DCR %d\n",
849 spa->range_index, dcr);
850 return -ENODEV;
Dan Williamsb94d5232015-05-19 22:54:31 -0400851 }
852
853 if (type == NFIT_SPA_DCR) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400854 struct nfit_idt *nfit_idt;
855 u16 idt_idx;
856
Dan Williamsb94d5232015-05-19 22:54:31 -0400857 /* multiple dimms may share a SPA when interleaved */
858 nfit_mem->spa_dcr = spa;
859 nfit_mem->memdev_dcr = nfit_memdev->memdev;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400860 idt_idx = nfit_memdev->memdev->interleave_index;
861 list_for_each_entry(nfit_idt, &acpi_desc->idts, list) {
862 if (nfit_idt->idt->interleave_index != idt_idx)
863 continue;
864 nfit_mem->idt_dcr = nfit_idt->idt;
865 break;
866 }
Dan Williams6697b2c2016-02-04 16:51:00 -0800867 nfit_mem_init_bdw(acpi_desc, nfit_mem, spa);
Dan Williams14999342017-04-13 19:46:36 -0700868 } else if (type == NFIT_SPA_PM) {
Dan Williamsb94d5232015-05-19 22:54:31 -0400869 /*
870 * A single dimm may belong to multiple SPA-PM
871 * ranges, record at least one in addition to
872 * any SPA-DCR range.
873 */
874 nfit_mem->memdev_pmem = nfit_memdev->memdev;
Dan Williams14999342017-04-13 19:46:36 -0700875 } else
876 nfit_mem->memdev_dcr = nfit_memdev->memdev;
Dan Williamsb94d5232015-05-19 22:54:31 -0400877 }
878
879 return 0;
880}
881
882static int nfit_mem_cmp(void *priv, struct list_head *_a, struct list_head *_b)
883{
884 struct nfit_mem *a = container_of(_a, typeof(*a), list);
885 struct nfit_mem *b = container_of(_b, typeof(*b), list);
886 u32 handleA, handleB;
887
888 handleA = __to_nfit_memdev(a)->device_handle;
889 handleB = __to_nfit_memdev(b)->device_handle;
890 if (handleA < handleB)
891 return -1;
892 else if (handleA > handleB)
893 return 1;
894 return 0;
895}
896
897static int nfit_mem_init(struct acpi_nfit_desc *acpi_desc)
898{
899 struct nfit_spa *nfit_spa;
Dan Williams14999342017-04-13 19:46:36 -0700900 int rc;
901
Dan Williamsb94d5232015-05-19 22:54:31 -0400902
903 /*
904 * For each SPA-DCR or SPA-PMEM address range find its
905 * corresponding MEMDEV(s). From each MEMDEV find the
906 * corresponding DCR. Then, if we're operating on a SPA-DCR,
907 * try to find a SPA-BDW and a corresponding BDW that references
908 * the DCR. Throw it all into an nfit_mem object. Note, that
909 * BDWs are optional.
910 */
911 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
Dan Williams14999342017-04-13 19:46:36 -0700912 rc = __nfit_mem_init(acpi_desc, nfit_spa->spa);
Dan Williamsb94d5232015-05-19 22:54:31 -0400913 if (rc)
914 return rc;
915 }
916
Dan Williams14999342017-04-13 19:46:36 -0700917 /*
918 * If a DIMM has failed to be mapped into SPA there will be no
919 * SPA entries above. Find and register all the unmapped DIMMs
920 * for reporting and recovery purposes.
921 */
922 rc = __nfit_mem_init(acpi_desc, NULL);
923 if (rc)
924 return rc;
925
Dan Williamsb94d5232015-05-19 22:54:31 -0400926 list_sort(NULL, &acpi_desc->dimms, nfit_mem_cmp);
927
928 return 0;
929}
930
Jerry Hoemann41f95db2017-06-30 20:41:28 -0700931static ssize_t bus_dsm_mask_show(struct device *dev,
932 struct device_attribute *attr, char *buf)
933{
934 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
935 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
936
937 return sprintf(buf, "%#lx\n", nd_desc->bus_dsm_mask);
938}
939static struct device_attribute dev_attr_bus_dsm_mask =
940 __ATTR(dsm_mask, 0444, bus_dsm_mask_show, NULL);
941
Dan Williams45def222015-04-26 19:26:48 -0400942static ssize_t revision_show(struct device *dev,
943 struct device_attribute *attr, char *buf)
944{
945 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
946 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
947 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
948
Linda Knippers6b577c92015-11-20 19:05:49 -0500949 return sprintf(buf, "%d\n", acpi_desc->acpi_header.revision);
Dan Williams45def222015-04-26 19:26:48 -0400950}
951static DEVICE_ATTR_RO(revision);
952
Vishal Verma9ffd6352016-09-30 17:19:29 -0600953static ssize_t hw_error_scrub_show(struct device *dev,
954 struct device_attribute *attr, char *buf)
955{
956 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
957 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
958 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
959
960 return sprintf(buf, "%d\n", acpi_desc->scrub_mode);
961}
962
963/*
964 * The 'hw_error_scrub' attribute can have the following values written to it:
965 * '0': Switch to the default mode where an exception will only insert
966 * the address of the memory error into the poison and badblocks lists.
967 * '1': Enable a full scrub to happen if an exception for a memory error is
968 * received.
969 */
970static ssize_t hw_error_scrub_store(struct device *dev,
971 struct device_attribute *attr, const char *buf, size_t size)
972{
973 struct nvdimm_bus_descriptor *nd_desc;
974 ssize_t rc;
975 long val;
976
977 rc = kstrtol(buf, 0, &val);
978 if (rc)
979 return rc;
980
981 device_lock(dev);
982 nd_desc = dev_get_drvdata(dev);
983 if (nd_desc) {
984 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
985
986 switch (val) {
987 case HW_ERROR_SCRUB_ON:
988 acpi_desc->scrub_mode = HW_ERROR_SCRUB_ON;
989 break;
990 case HW_ERROR_SCRUB_OFF:
991 acpi_desc->scrub_mode = HW_ERROR_SCRUB_OFF;
992 break;
993 default:
994 rc = -EINVAL;
995 break;
996 }
997 }
998 device_unlock(dev);
999 if (rc)
1000 return rc;
1001 return size;
1002}
1003static DEVICE_ATTR_RW(hw_error_scrub);
1004
Vishal Verma37b137f2016-07-23 21:51:42 -07001005/*
1006 * This shows the number of full Address Range Scrubs that have been
1007 * completed since driver load time. Userspace can wait on this using
1008 * select/poll etc. A '+' at the end indicates an ARS is in progress
1009 */
1010static ssize_t scrub_show(struct device *dev,
1011 struct device_attribute *attr, char *buf)
1012{
1013 struct nvdimm_bus_descriptor *nd_desc;
1014 ssize_t rc = -ENXIO;
1015
1016 device_lock(dev);
1017 nd_desc = dev_get_drvdata(dev);
1018 if (nd_desc) {
1019 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
1020
1021 rc = sprintf(buf, "%d%s", acpi_desc->scrub_count,
1022 (work_busy(&acpi_desc->work)) ? "+\n" : "\n");
1023 }
1024 device_unlock(dev);
1025 return rc;
1026}
1027
Vishal Verma37b137f2016-07-23 21:51:42 -07001028static ssize_t scrub_store(struct device *dev,
1029 struct device_attribute *attr, const char *buf, size_t size)
1030{
1031 struct nvdimm_bus_descriptor *nd_desc;
1032 ssize_t rc;
1033 long val;
1034
1035 rc = kstrtol(buf, 0, &val);
1036 if (rc)
1037 return rc;
1038 if (val != 1)
1039 return -EINVAL;
1040
1041 device_lock(dev);
1042 nd_desc = dev_get_drvdata(dev);
1043 if (nd_desc) {
1044 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
1045
Toshi Kani80790032017-06-29 20:41:30 -06001046 rc = acpi_nfit_ars_rescan(acpi_desc, 0);
Vishal Verma37b137f2016-07-23 21:51:42 -07001047 }
1048 device_unlock(dev);
1049 if (rc)
1050 return rc;
1051 return size;
1052}
1053static DEVICE_ATTR_RW(scrub);
1054
1055static bool ars_supported(struct nvdimm_bus *nvdimm_bus)
1056{
1057 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
1058 const unsigned long mask = 1 << ND_CMD_ARS_CAP | 1 << ND_CMD_ARS_START
1059 | 1 << ND_CMD_ARS_STATUS;
1060
1061 return (nd_desc->cmd_mask & mask) == mask;
1062}
1063
1064static umode_t nfit_visible(struct kobject *kobj, struct attribute *a, int n)
1065{
1066 struct device *dev = container_of(kobj, struct device, kobj);
1067 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
1068
1069 if (a == &dev_attr_scrub.attr && !ars_supported(nvdimm_bus))
1070 return 0;
1071 return a->mode;
1072}
1073
Dan Williams45def222015-04-26 19:26:48 -04001074static struct attribute *acpi_nfit_attributes[] = {
1075 &dev_attr_revision.attr,
Vishal Verma37b137f2016-07-23 21:51:42 -07001076 &dev_attr_scrub.attr,
Vishal Verma9ffd6352016-09-30 17:19:29 -06001077 &dev_attr_hw_error_scrub.attr,
Jerry Hoemann41f95db2017-06-30 20:41:28 -07001078 &dev_attr_bus_dsm_mask.attr,
Dan Williams45def222015-04-26 19:26:48 -04001079 NULL,
1080};
1081
Arvind Yadav5e937462017-06-22 15:44:41 +05301082static const struct attribute_group acpi_nfit_attribute_group = {
Dan Williams45def222015-04-26 19:26:48 -04001083 .name = "nfit",
1084 .attrs = acpi_nfit_attributes,
Vishal Verma37b137f2016-07-23 21:51:42 -07001085 .is_visible = nfit_visible,
Dan Williams45def222015-04-26 19:26:48 -04001086};
1087
Dan Williamsa61fe6f2016-02-19 12:29:32 -08001088static const struct attribute_group *acpi_nfit_attribute_groups[] = {
Dan Williams45def222015-04-26 19:26:48 -04001089 &nvdimm_bus_attribute_group,
1090 &acpi_nfit_attribute_group,
1091 NULL,
1092};
1093
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001094static struct acpi_nfit_memory_map *to_nfit_memdev(struct device *dev)
1095{
1096 struct nvdimm *nvdimm = to_nvdimm(dev);
1097 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1098
1099 return __to_nfit_memdev(nfit_mem);
1100}
1101
1102static struct acpi_nfit_control_region *to_nfit_dcr(struct device *dev)
1103{
1104 struct nvdimm *nvdimm = to_nvdimm(dev);
1105 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1106
1107 return nfit_mem->dcr;
1108}
1109
1110static ssize_t handle_show(struct device *dev,
1111 struct device_attribute *attr, char *buf)
1112{
1113 struct acpi_nfit_memory_map *memdev = to_nfit_memdev(dev);
1114
1115 return sprintf(buf, "%#x\n", memdev->device_handle);
1116}
1117static DEVICE_ATTR_RO(handle);
1118
1119static ssize_t phys_id_show(struct device *dev,
1120 struct device_attribute *attr, char *buf)
1121{
1122 struct acpi_nfit_memory_map *memdev = to_nfit_memdev(dev);
1123
1124 return sprintf(buf, "%#x\n", memdev->physical_id);
1125}
1126static DEVICE_ATTR_RO(phys_id);
1127
1128static ssize_t vendor_show(struct device *dev,
1129 struct device_attribute *attr, char *buf)
1130{
1131 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1132
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001133 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->vendor_id));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001134}
1135static DEVICE_ATTR_RO(vendor);
1136
1137static ssize_t rev_id_show(struct device *dev,
1138 struct device_attribute *attr, char *buf)
1139{
1140 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1141
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001142 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->revision_id));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001143}
1144static DEVICE_ATTR_RO(rev_id);
1145
1146static ssize_t device_show(struct device *dev,
1147 struct device_attribute *attr, char *buf)
1148{
1149 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1150
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001151 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->device_id));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001152}
1153static DEVICE_ATTR_RO(device);
1154
Dan Williams6ca72082016-04-29 10:33:23 -07001155static ssize_t subsystem_vendor_show(struct device *dev,
1156 struct device_attribute *attr, char *buf)
1157{
1158 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1159
1160 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->subsystem_vendor_id));
1161}
1162static DEVICE_ATTR_RO(subsystem_vendor);
1163
1164static ssize_t subsystem_rev_id_show(struct device *dev,
1165 struct device_attribute *attr, char *buf)
1166{
1167 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1168
1169 return sprintf(buf, "0x%04x\n",
1170 be16_to_cpu(dcr->subsystem_revision_id));
1171}
1172static DEVICE_ATTR_RO(subsystem_rev_id);
1173
1174static ssize_t subsystem_device_show(struct device *dev,
1175 struct device_attribute *attr, char *buf)
1176{
1177 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1178
1179 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->subsystem_device_id));
1180}
1181static DEVICE_ATTR_RO(subsystem_device);
1182
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001183static int num_nvdimm_formats(struct nvdimm *nvdimm)
1184{
1185 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1186 int formats = 0;
1187
1188 if (nfit_mem->memdev_pmem)
1189 formats++;
1190 if (nfit_mem->memdev_bdw)
1191 formats++;
1192 return formats;
1193}
1194
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001195static ssize_t format_show(struct device *dev,
1196 struct device_attribute *attr, char *buf)
1197{
1198 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1199
Dan Williams1bcbf422016-06-29 11:19:32 -07001200 return sprintf(buf, "0x%04x\n", le16_to_cpu(dcr->code));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001201}
1202static DEVICE_ATTR_RO(format);
1203
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001204static ssize_t format1_show(struct device *dev,
1205 struct device_attribute *attr, char *buf)
1206{
1207 u32 handle;
1208 ssize_t rc = -ENXIO;
1209 struct nfit_mem *nfit_mem;
1210 struct nfit_memdev *nfit_memdev;
1211 struct acpi_nfit_desc *acpi_desc;
1212 struct nvdimm *nvdimm = to_nvdimm(dev);
1213 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1214
1215 nfit_mem = nvdimm_provider_data(nvdimm);
1216 acpi_desc = nfit_mem->acpi_desc;
1217 handle = to_nfit_memdev(dev)->device_handle;
1218
1219 /* assumes DIMMs have at most 2 published interface codes */
1220 mutex_lock(&acpi_desc->init_mutex);
1221 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
1222 struct acpi_nfit_memory_map *memdev = nfit_memdev->memdev;
1223 struct nfit_dcr *nfit_dcr;
1224
1225 if (memdev->device_handle != handle)
1226 continue;
1227
1228 list_for_each_entry(nfit_dcr, &acpi_desc->dcrs, list) {
1229 if (nfit_dcr->dcr->region_index != memdev->region_index)
1230 continue;
1231 if (nfit_dcr->dcr->code == dcr->code)
1232 continue;
Dan Williams1bcbf422016-06-29 11:19:32 -07001233 rc = sprintf(buf, "0x%04x\n",
1234 le16_to_cpu(nfit_dcr->dcr->code));
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001235 break;
1236 }
1237 if (rc != ENXIO)
1238 break;
1239 }
1240 mutex_unlock(&acpi_desc->init_mutex);
1241 return rc;
1242}
1243static DEVICE_ATTR_RO(format1);
1244
1245static ssize_t formats_show(struct device *dev,
1246 struct device_attribute *attr, char *buf)
1247{
1248 struct nvdimm *nvdimm = to_nvdimm(dev);
1249
1250 return sprintf(buf, "%d\n", num_nvdimm_formats(nvdimm));
1251}
1252static DEVICE_ATTR_RO(formats);
1253
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001254static ssize_t serial_show(struct device *dev,
1255 struct device_attribute *attr, char *buf)
1256{
1257 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1258
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001259 return sprintf(buf, "0x%08x\n", be32_to_cpu(dcr->serial_number));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001260}
1261static DEVICE_ATTR_RO(serial);
1262
Dan Williamsa94e3fb2016-04-28 18:18:05 -07001263static ssize_t family_show(struct device *dev,
1264 struct device_attribute *attr, char *buf)
1265{
1266 struct nvdimm *nvdimm = to_nvdimm(dev);
1267 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1268
1269 if (nfit_mem->family < 0)
1270 return -ENXIO;
1271 return sprintf(buf, "%d\n", nfit_mem->family);
1272}
1273static DEVICE_ATTR_RO(family);
1274
1275static ssize_t dsm_mask_show(struct device *dev,
1276 struct device_attribute *attr, char *buf)
1277{
1278 struct nvdimm *nvdimm = to_nvdimm(dev);
1279 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1280
1281 if (nfit_mem->family < 0)
1282 return -ENXIO;
1283 return sprintf(buf, "%#lx\n", nfit_mem->dsm_mask);
1284}
1285static DEVICE_ATTR_RO(dsm_mask);
1286
Dan Williams58138822015-06-23 20:08:34 -04001287static ssize_t flags_show(struct device *dev,
1288 struct device_attribute *attr, char *buf)
1289{
1290 u16 flags = to_nfit_memdev(dev)->flags;
1291
Dan Williamsffab9382017-04-13 15:05:30 -07001292 return sprintf(buf, "%s%s%s%s%s%s%s\n",
Toshi Kani402bae52015-08-26 10:20:23 -06001293 flags & ACPI_NFIT_MEM_SAVE_FAILED ? "save_fail " : "",
1294 flags & ACPI_NFIT_MEM_RESTORE_FAILED ? "restore_fail " : "",
1295 flags & ACPI_NFIT_MEM_FLUSH_FAILED ? "flush_fail " : "",
Bob Mooreca321d12015-10-19 10:24:52 +08001296 flags & ACPI_NFIT_MEM_NOT_ARMED ? "not_armed " : "",
Dan Williamsffab9382017-04-13 15:05:30 -07001297 flags & ACPI_NFIT_MEM_HEALTH_OBSERVED ? "smart_event " : "",
1298 flags & ACPI_NFIT_MEM_MAP_FAILED ? "map_fail " : "",
1299 flags & ACPI_NFIT_MEM_HEALTH_ENABLED ? "smart_notify " : "");
Dan Williams58138822015-06-23 20:08:34 -04001300}
1301static DEVICE_ATTR_RO(flags);
1302
Toshi Kani38a879b2016-04-25 15:34:59 -06001303static ssize_t id_show(struct device *dev,
1304 struct device_attribute *attr, char *buf)
1305{
1306 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1307
1308 if (dcr->valid_fields & ACPI_NFIT_CONTROL_MFG_INFO_VALID)
1309 return sprintf(buf, "%04x-%02x-%04x-%08x\n",
1310 be16_to_cpu(dcr->vendor_id),
1311 dcr->manufacturing_location,
1312 be16_to_cpu(dcr->manufacturing_date),
1313 be32_to_cpu(dcr->serial_number));
1314 else
1315 return sprintf(buf, "%04x-%08x\n",
1316 be16_to_cpu(dcr->vendor_id),
1317 be32_to_cpu(dcr->serial_number));
1318}
1319static DEVICE_ATTR_RO(id);
1320
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001321static struct attribute *acpi_nfit_dimm_attributes[] = {
1322 &dev_attr_handle.attr,
1323 &dev_attr_phys_id.attr,
1324 &dev_attr_vendor.attr,
1325 &dev_attr_device.attr,
Dan Williams6ca72082016-04-29 10:33:23 -07001326 &dev_attr_rev_id.attr,
1327 &dev_attr_subsystem_vendor.attr,
1328 &dev_attr_subsystem_device.attr,
1329 &dev_attr_subsystem_rev_id.attr,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001330 &dev_attr_format.attr,
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001331 &dev_attr_formats.attr,
1332 &dev_attr_format1.attr,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001333 &dev_attr_serial.attr,
Dan Williams58138822015-06-23 20:08:34 -04001334 &dev_attr_flags.attr,
Toshi Kani38a879b2016-04-25 15:34:59 -06001335 &dev_attr_id.attr,
Dan Williamsa94e3fb2016-04-28 18:18:05 -07001336 &dev_attr_family.attr,
1337 &dev_attr_dsm_mask.attr,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001338 NULL,
1339};
1340
1341static umode_t acpi_nfit_dimm_attr_visible(struct kobject *kobj,
1342 struct attribute *a, int n)
1343{
1344 struct device *dev = container_of(kobj, struct device, kobj);
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001345 struct nvdimm *nvdimm = to_nvdimm(dev);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001346
Dan Williams14999342017-04-13 19:46:36 -07001347 if (!to_nfit_dcr(dev)) {
1348 /* Without a dcr only the memdev attributes can be surfaced */
1349 if (a == &dev_attr_handle.attr || a == &dev_attr_phys_id.attr
1350 || a == &dev_attr_flags.attr
1351 || a == &dev_attr_family.attr
1352 || a == &dev_attr_dsm_mask.attr)
1353 return a->mode;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001354 return 0;
Dan Williams14999342017-04-13 19:46:36 -07001355 }
1356
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001357 if (a == &dev_attr_format1.attr && num_nvdimm_formats(nvdimm) <= 1)
1358 return 0;
1359 return a->mode;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001360}
1361
Arvind Yadav5e937462017-06-22 15:44:41 +05301362static const struct attribute_group acpi_nfit_dimm_attribute_group = {
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001363 .name = "nfit",
1364 .attrs = acpi_nfit_dimm_attributes,
1365 .is_visible = acpi_nfit_dimm_attr_visible,
1366};
1367
1368static const struct attribute_group *acpi_nfit_dimm_attribute_groups[] = {
Dan Williams62232e452015-06-08 14:27:06 -04001369 &nvdimm_attribute_group,
Dan Williams4d88a972015-05-31 14:41:48 -04001370 &nd_device_attribute_group,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001371 &acpi_nfit_dimm_attribute_group,
1372 NULL,
1373};
1374
1375static struct nvdimm *acpi_nfit_dimm_by_handle(struct acpi_nfit_desc *acpi_desc,
1376 u32 device_handle)
1377{
1378 struct nfit_mem *nfit_mem;
1379
1380 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list)
1381 if (__to_nfit_memdev(nfit_mem)->device_handle == device_handle)
1382 return nfit_mem->nvdimm;
1383
1384 return NULL;
1385}
1386
Dan Williams231bf112016-08-22 19:23:25 -07001387void __acpi_nvdimm_notify(struct device *dev, u32 event)
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001388{
1389 struct nfit_mem *nfit_mem;
1390 struct acpi_nfit_desc *acpi_desc;
1391
1392 dev_dbg(dev->parent, "%s: %s: event: %d\n", dev_name(dev), __func__,
1393 event);
1394
1395 if (event != NFIT_NOTIFY_DIMM_HEALTH) {
1396 dev_dbg(dev->parent, "%s: unknown event: %d\n", dev_name(dev),
1397 event);
1398 return;
1399 }
1400
1401 acpi_desc = dev_get_drvdata(dev->parent);
1402 if (!acpi_desc)
1403 return;
1404
1405 /*
1406 * If we successfully retrieved acpi_desc, then we know nfit_mem data
1407 * is still valid.
1408 */
1409 nfit_mem = dev_get_drvdata(dev);
1410 if (nfit_mem && nfit_mem->flags_attr)
1411 sysfs_notify_dirent(nfit_mem->flags_attr);
1412}
Dan Williams231bf112016-08-22 19:23:25 -07001413EXPORT_SYMBOL_GPL(__acpi_nvdimm_notify);
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001414
1415static void acpi_nvdimm_notify(acpi_handle handle, u32 event, void *data)
1416{
1417 struct acpi_device *adev = data;
1418 struct device *dev = &adev->dev;
1419
1420 device_lock(dev->parent);
1421 __acpi_nvdimm_notify(dev, event);
1422 device_unlock(dev->parent);
1423}
1424
Dan Williams62232e452015-06-08 14:27:06 -04001425static int acpi_nfit_add_dimm(struct acpi_nfit_desc *acpi_desc,
1426 struct nfit_mem *nfit_mem, u32 device_handle)
1427{
1428 struct acpi_device *adev, *adev_dimm;
1429 struct device *dev = acpi_desc->dev;
Dan Williams31eca762016-04-28 16:23:43 -07001430 unsigned long dsm_mask;
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +03001431 const guid_t *guid;
Linda Knippers60e95f432015-07-22 16:17:22 -04001432 int i;
Linda Knippersba650cf2017-03-07 16:35:13 -05001433 int family = -1;
Dan Williams62232e452015-06-08 14:27:06 -04001434
Dan Williamse3654ec2016-04-28 16:17:07 -07001435 /* nfit test assumes 1:1 relationship between commands and dsms */
1436 nfit_mem->dsm_mask = acpi_desc->dimm_cmd_force_en;
Dan Williams31eca762016-04-28 16:23:43 -07001437 nfit_mem->family = NVDIMM_FAMILY_INTEL;
Dan Williams62232e452015-06-08 14:27:06 -04001438 adev = to_acpi_dev(acpi_desc);
1439 if (!adev)
1440 return 0;
1441
1442 adev_dimm = acpi_find_child_device(adev, device_handle, false);
1443 nfit_mem->adev = adev_dimm;
1444 if (!adev_dimm) {
1445 dev_err(dev, "no ACPI.NFIT device with _ADR %#x, disabling...\n",
1446 device_handle);
Dan Williams4d88a972015-05-31 14:41:48 -04001447 return force_enable_dimms ? 0 : -ENODEV;
Dan Williams62232e452015-06-08 14:27:06 -04001448 }
1449
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001450 if (ACPI_FAILURE(acpi_install_notify_handler(adev_dimm->handle,
1451 ACPI_DEVICE_NOTIFY, acpi_nvdimm_notify, adev_dimm))) {
1452 dev_err(dev, "%s: notification registration failed\n",
1453 dev_name(&adev_dimm->dev));
1454 return -ENXIO;
1455 }
1456
Dan Williams31eca762016-04-28 16:23:43 -07001457 /*
stuart hayese02fb722016-05-26 11:38:41 -05001458 * Until standardization materializes we need to consider 4
Dan Williamsa7225592016-07-19 12:32:39 -07001459 * different command sets. Note, that checking for function0 (bit0)
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +03001460 * tells us if any commands are reachable through this GUID.
Dan Williams31eca762016-04-28 16:23:43 -07001461 */
stuart hayese02fb722016-05-26 11:38:41 -05001462 for (i = NVDIMM_FAMILY_INTEL; i <= NVDIMM_FAMILY_MSFT; i++)
Dan Williamsa7225592016-07-19 12:32:39 -07001463 if (acpi_check_dsm(adev_dimm->handle, to_nfit_uuid(i), 1, 1))
Linda Knippersba650cf2017-03-07 16:35:13 -05001464 if (family < 0 || i == default_dsm_family)
1465 family = i;
Dan Williams31eca762016-04-28 16:23:43 -07001466
1467 /* limit the supported commands to those that are publicly documented */
Linda Knippersba650cf2017-03-07 16:35:13 -05001468 nfit_mem->family = family;
Linda Knippers095ab4b2017-03-07 16:35:12 -05001469 if (override_dsm_mask && !disable_vendor_specific)
1470 dsm_mask = override_dsm_mask;
1471 else if (nfit_mem->family == NVDIMM_FAMILY_INTEL) {
Dan Williams31eca762016-04-28 16:23:43 -07001472 dsm_mask = 0x3fe;
Dan Williams87554092016-04-28 18:01:20 -07001473 if (disable_vendor_specific)
1474 dsm_mask &= ~(1 << ND_CMD_VENDOR);
stuart hayese02fb722016-05-26 11:38:41 -05001475 } else if (nfit_mem->family == NVDIMM_FAMILY_HPE1) {
Dan Williams31eca762016-04-28 16:23:43 -07001476 dsm_mask = 0x1c3c76;
stuart hayese02fb722016-05-26 11:38:41 -05001477 } else if (nfit_mem->family == NVDIMM_FAMILY_HPE2) {
Dan Williams31eca762016-04-28 16:23:43 -07001478 dsm_mask = 0x1fe;
Dan Williams87554092016-04-28 18:01:20 -07001479 if (disable_vendor_specific)
1480 dsm_mask &= ~(1 << 8);
stuart hayese02fb722016-05-26 11:38:41 -05001481 } else if (nfit_mem->family == NVDIMM_FAMILY_MSFT) {
1482 dsm_mask = 0xffffffff;
Dan Williams87554092016-04-28 18:01:20 -07001483 } else {
Dan Williamsa7225592016-07-19 12:32:39 -07001484 dev_dbg(dev, "unknown dimm command family\n");
Dan Williams31eca762016-04-28 16:23:43 -07001485 nfit_mem->family = -1;
Dan Williamsa7225592016-07-19 12:32:39 -07001486 /* DSMs are optional, continue loading the driver... */
1487 return 0;
Dan Williams31eca762016-04-28 16:23:43 -07001488 }
1489
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +03001490 guid = to_nfit_uuid(nfit_mem->family);
Dan Williams31eca762016-04-28 16:23:43 -07001491 for_each_set_bit(i, &dsm_mask, BITS_PER_LONG)
Andy Shevchenko94116f82017-06-05 19:40:46 +03001492 if (acpi_check_dsm(adev_dimm->handle, guid, 1, 1ULL << i))
Dan Williams62232e452015-06-08 14:27:06 -04001493 set_bit(i, &nfit_mem->dsm_mask);
1494
Linda Knippers60e95f432015-07-22 16:17:22 -04001495 return 0;
Dan Williams62232e452015-06-08 14:27:06 -04001496}
1497
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001498static void shutdown_dimm_notify(void *data)
1499{
1500 struct acpi_nfit_desc *acpi_desc = data;
1501 struct nfit_mem *nfit_mem;
1502
1503 mutex_lock(&acpi_desc->init_mutex);
1504 /*
1505 * Clear out the nfit_mem->flags_attr and shut down dimm event
1506 * notifications.
1507 */
1508 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list) {
Dan Williams231bf112016-08-22 19:23:25 -07001509 struct acpi_device *adev_dimm = nfit_mem->adev;
1510
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001511 if (nfit_mem->flags_attr) {
1512 sysfs_put(nfit_mem->flags_attr);
1513 nfit_mem->flags_attr = NULL;
1514 }
Dan Williams231bf112016-08-22 19:23:25 -07001515 if (adev_dimm)
1516 acpi_remove_notify_handler(adev_dimm->handle,
1517 ACPI_DEVICE_NOTIFY, acpi_nvdimm_notify);
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001518 }
1519 mutex_unlock(&acpi_desc->init_mutex);
1520}
1521
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001522static int acpi_nfit_register_dimms(struct acpi_nfit_desc *acpi_desc)
1523{
1524 struct nfit_mem *nfit_mem;
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001525 int dimm_count = 0, rc;
1526 struct nvdimm *nvdimm;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001527
1528 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list) {
Dan Williamse5ae3b22016-06-07 17:00:04 -07001529 struct acpi_nfit_flush_address *flush;
Dan Williams31eca762016-04-28 16:23:43 -07001530 unsigned long flags = 0, cmd_mask;
Dan Williamscaa603a2017-04-14 10:27:11 -07001531 struct nfit_memdev *nfit_memdev;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001532 u32 device_handle;
Dan Williams58138822015-06-23 20:08:34 -04001533 u16 mem_flags;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001534
1535 device_handle = __to_nfit_memdev(nfit_mem)->device_handle;
1536 nvdimm = acpi_nfit_dimm_by_handle(acpi_desc, device_handle);
1537 if (nvdimm) {
Vishal Verma20985162015-10-27 16:58:27 -06001538 dimm_count++;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001539 continue;
1540 }
1541
1542 if (nfit_mem->bdw && nfit_mem->memdev_pmem)
Dan Williams8f078b32017-05-04 14:01:24 -07001543 set_bit(NDD_ALIASING, &flags);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001544
Dan Williamscaa603a2017-04-14 10:27:11 -07001545 /* collate flags across all memdevs for this dimm */
1546 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
1547 struct acpi_nfit_memory_map *dimm_memdev;
1548
1549 dimm_memdev = __to_nfit_memdev(nfit_mem);
1550 if (dimm_memdev->device_handle
1551 != nfit_memdev->memdev->device_handle)
1552 continue;
1553 dimm_memdev->flags |= nfit_memdev->memdev->flags;
1554 }
1555
Dan Williams58138822015-06-23 20:08:34 -04001556 mem_flags = __to_nfit_memdev(nfit_mem)->flags;
Bob Mooreca321d12015-10-19 10:24:52 +08001557 if (mem_flags & ACPI_NFIT_MEM_NOT_ARMED)
Dan Williams8f078b32017-05-04 14:01:24 -07001558 set_bit(NDD_UNARMED, &flags);
Dan Williams58138822015-06-23 20:08:34 -04001559
Dan Williams62232e452015-06-08 14:27:06 -04001560 rc = acpi_nfit_add_dimm(acpi_desc, nfit_mem, device_handle);
1561 if (rc)
1562 continue;
1563
Dan Williamse3654ec2016-04-28 16:17:07 -07001564 /*
Dan Williams31eca762016-04-28 16:23:43 -07001565 * TODO: provide translation for non-NVDIMM_FAMILY_INTEL
1566 * devices (i.e. from nd_cmd to acpi_dsm) to standardize the
1567 * userspace interface.
Dan Williamse3654ec2016-04-28 16:17:07 -07001568 */
Dan Williams31eca762016-04-28 16:23:43 -07001569 cmd_mask = 1UL << ND_CMD_CALL;
1570 if (nfit_mem->family == NVDIMM_FAMILY_INTEL)
1571 cmd_mask |= nfit_mem->dsm_mask;
1572
Dan Williamse5ae3b22016-06-07 17:00:04 -07001573 flush = nfit_mem->nfit_flush ? nfit_mem->nfit_flush->flush
1574 : NULL;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001575 nvdimm = nvdimm_create(acpi_desc->nvdimm_bus, nfit_mem,
Dan Williams62232e452015-06-08 14:27:06 -04001576 acpi_nfit_dimm_attribute_groups,
Dan Williamse5ae3b22016-06-07 17:00:04 -07001577 flags, cmd_mask, flush ? flush->hint_count : 0,
1578 nfit_mem->flush_wpq);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001579 if (!nvdimm)
1580 return -ENOMEM;
1581
1582 nfit_mem->nvdimm = nvdimm;
Dan Williams4d88a972015-05-31 14:41:48 -04001583 dimm_count++;
Dan Williams58138822015-06-23 20:08:34 -04001584
1585 if ((mem_flags & ACPI_NFIT_MEM_FAILED_MASK) == 0)
1586 continue;
1587
Dan Williams14999342017-04-13 19:46:36 -07001588 dev_info(acpi_desc->dev, "%s flags:%s%s%s%s%s\n",
Dan Williams58138822015-06-23 20:08:34 -04001589 nvdimm_name(nvdimm),
Toshi Kani402bae52015-08-26 10:20:23 -06001590 mem_flags & ACPI_NFIT_MEM_SAVE_FAILED ? " save_fail" : "",
1591 mem_flags & ACPI_NFIT_MEM_RESTORE_FAILED ? " restore_fail":"",
1592 mem_flags & ACPI_NFIT_MEM_FLUSH_FAILED ? " flush_fail" : "",
Dan Williams14999342017-04-13 19:46:36 -07001593 mem_flags & ACPI_NFIT_MEM_NOT_ARMED ? " not_armed" : "",
1594 mem_flags & ACPI_NFIT_MEM_MAP_FAILED ? " map_fail" : "");
Dan Williams58138822015-06-23 20:08:34 -04001595
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001596 }
1597
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001598 rc = nvdimm_bus_check_dimm_count(acpi_desc->nvdimm_bus, dimm_count);
1599 if (rc)
1600 return rc;
1601
1602 /*
1603 * Now that dimms are successfully registered, and async registration
1604 * is flushed, attempt to enable event notification.
1605 */
1606 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list) {
1607 struct kernfs_node *nfit_kernfs;
1608
1609 nvdimm = nfit_mem->nvdimm;
1610 nfit_kernfs = sysfs_get_dirent(nvdimm_kobj(nvdimm)->sd, "nfit");
1611 if (nfit_kernfs)
1612 nfit_mem->flags_attr = sysfs_get_dirent(nfit_kernfs,
1613 "flags");
1614 sysfs_put(nfit_kernfs);
1615 if (!nfit_mem->flags_attr)
1616 dev_warn(acpi_desc->dev, "%s: notifications disabled\n",
1617 nvdimm_name(nvdimm));
1618 }
1619
1620 return devm_add_action_or_reset(acpi_desc->dev, shutdown_dimm_notify,
1621 acpi_desc);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001622}
1623
Jerry Hoemann7db5bb32017-06-30 20:53:24 -07001624/*
1625 * These constants are private because there are no kernel consumers of
1626 * these commands.
1627 */
1628enum nfit_aux_cmds {
1629 NFIT_CMD_TRANSLATE_SPA = 5,
1630 NFIT_CMD_ARS_INJECT_SET = 7,
1631 NFIT_CMD_ARS_INJECT_CLEAR = 8,
1632 NFIT_CMD_ARS_INJECT_GET = 9,
1633};
1634
Dan Williams62232e452015-06-08 14:27:06 -04001635static void acpi_nfit_init_dsms(struct acpi_nfit_desc *acpi_desc)
1636{
1637 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +03001638 const guid_t *guid = to_nfit_uuid(NFIT_DEV_BUS);
Dan Williams62232e452015-06-08 14:27:06 -04001639 struct acpi_device *adev;
Jerry Hoemann7db5bb32017-06-30 20:53:24 -07001640 unsigned long dsm_mask;
Dan Williams62232e452015-06-08 14:27:06 -04001641 int i;
1642
Dan Williamse3654ec2016-04-28 16:17:07 -07001643 nd_desc->cmd_mask = acpi_desc->bus_cmd_force_en;
Dan Williams62232e452015-06-08 14:27:06 -04001644 adev = to_acpi_dev(acpi_desc);
1645 if (!adev)
1646 return;
1647
Dan Williamsd4f32362016-03-03 16:08:54 -08001648 for (i = ND_CMD_ARS_CAP; i <= ND_CMD_CLEAR_ERROR; i++)
Andy Shevchenko94116f82017-06-05 19:40:46 +03001649 if (acpi_check_dsm(adev->handle, guid, 1, 1ULL << i))
Dan Williamse3654ec2016-04-28 16:17:07 -07001650 set_bit(i, &nd_desc->cmd_mask);
Jerry Hoemann37d74842017-06-30 20:41:24 -07001651 set_bit(ND_CMD_CALL, &nd_desc->cmd_mask);
Jerry Hoemann7db5bb32017-06-30 20:53:24 -07001652
1653 dsm_mask =
1654 (1 << ND_CMD_ARS_CAP) |
1655 (1 << ND_CMD_ARS_START) |
1656 (1 << ND_CMD_ARS_STATUS) |
1657 (1 << ND_CMD_CLEAR_ERROR) |
1658 (1 << NFIT_CMD_TRANSLATE_SPA) |
1659 (1 << NFIT_CMD_ARS_INJECT_SET) |
1660 (1 << NFIT_CMD_ARS_INJECT_CLEAR) |
1661 (1 << NFIT_CMD_ARS_INJECT_GET);
1662 for_each_set_bit(i, &dsm_mask, BITS_PER_LONG)
1663 if (acpi_check_dsm(adev->handle, guid, 1, 1ULL << i))
1664 set_bit(i, &nd_desc->bus_dsm_mask);
Dan Williams62232e452015-06-08 14:27:06 -04001665}
1666
Dan Williams1f7df6f2015-06-09 20:13:14 -04001667static ssize_t range_index_show(struct device *dev,
1668 struct device_attribute *attr, char *buf)
1669{
1670 struct nd_region *nd_region = to_nd_region(dev);
1671 struct nfit_spa *nfit_spa = nd_region_provider_data(nd_region);
1672
1673 return sprintf(buf, "%d\n", nfit_spa->spa->range_index);
1674}
1675static DEVICE_ATTR_RO(range_index);
1676
1677static struct attribute *acpi_nfit_region_attributes[] = {
1678 &dev_attr_range_index.attr,
1679 NULL,
1680};
1681
Arvind Yadav5e937462017-06-22 15:44:41 +05301682static const struct attribute_group acpi_nfit_region_attribute_group = {
Dan Williams1f7df6f2015-06-09 20:13:14 -04001683 .name = "nfit",
1684 .attrs = acpi_nfit_region_attributes,
1685};
1686
1687static const struct attribute_group *acpi_nfit_region_attribute_groups[] = {
1688 &nd_region_attribute_group,
1689 &nd_mapping_attribute_group,
Dan Williams3d880022015-05-31 15:02:11 -04001690 &nd_device_attribute_group,
Toshi Kani74ae66c2015-06-19 12:18:34 -06001691 &nd_numa_attribute_group,
Dan Williams1f7df6f2015-06-09 20:13:14 -04001692 &acpi_nfit_region_attribute_group,
1693 NULL,
1694};
1695
Dan Williamseaf96152015-05-01 13:11:27 -04001696/* enough info to uniquely specify an interleave set */
1697struct nfit_set_info {
1698 struct nfit_set_info_map {
1699 u64 region_offset;
1700 u32 serial_number;
1701 u32 pad;
1702 } mapping[0];
1703};
1704
Dan Williamsc12c48c2017-06-04 10:59:15 +09001705struct nfit_set_info2 {
1706 struct nfit_set_info_map2 {
1707 u64 region_offset;
1708 u32 serial_number;
1709 u16 vendor_id;
1710 u16 manufacturing_date;
1711 u8 manufacturing_location;
1712 u8 reserved[31];
1713 } mapping[0];
1714};
1715
Dan Williamseaf96152015-05-01 13:11:27 -04001716static size_t sizeof_nfit_set_info(int num_mappings)
1717{
1718 return sizeof(struct nfit_set_info)
1719 + num_mappings * sizeof(struct nfit_set_info_map);
1720}
1721
Dan Williamsc12c48c2017-06-04 10:59:15 +09001722static size_t sizeof_nfit_set_info2(int num_mappings)
1723{
1724 return sizeof(struct nfit_set_info2)
1725 + num_mappings * sizeof(struct nfit_set_info_map2);
1726}
1727
Dan Williams86ef58a2017-02-28 18:32:48 -08001728static int cmp_map_compat(const void *m0, const void *m1)
Dan Williamseaf96152015-05-01 13:11:27 -04001729{
1730 const struct nfit_set_info_map *map0 = m0;
1731 const struct nfit_set_info_map *map1 = m1;
1732
1733 return memcmp(&map0->region_offset, &map1->region_offset,
1734 sizeof(u64));
1735}
1736
Dan Williams86ef58a2017-02-28 18:32:48 -08001737static int cmp_map(const void *m0, const void *m1)
1738{
1739 const struct nfit_set_info_map *map0 = m0;
1740 const struct nfit_set_info_map *map1 = m1;
1741
Dan Williamsb03b99a2017-03-27 21:53:38 -07001742 if (map0->region_offset < map1->region_offset)
1743 return -1;
1744 else if (map0->region_offset > map1->region_offset)
1745 return 1;
1746 return 0;
Dan Williams86ef58a2017-02-28 18:32:48 -08001747}
1748
Dan Williamsc12c48c2017-06-04 10:59:15 +09001749static int cmp_map2(const void *m0, const void *m1)
1750{
1751 const struct nfit_set_info_map2 *map0 = m0;
1752 const struct nfit_set_info_map2 *map1 = m1;
1753
1754 if (map0->region_offset < map1->region_offset)
1755 return -1;
1756 else if (map0->region_offset > map1->region_offset)
1757 return 1;
1758 return 0;
1759}
1760
Dan Williamseaf96152015-05-01 13:11:27 -04001761/* Retrieve the nth entry referencing this spa */
1762static struct acpi_nfit_memory_map *memdev_from_spa(
1763 struct acpi_nfit_desc *acpi_desc, u16 range_index, int n)
1764{
1765 struct nfit_memdev *nfit_memdev;
1766
1767 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list)
1768 if (nfit_memdev->memdev->range_index == range_index)
1769 if (n-- == 0)
1770 return nfit_memdev->memdev;
1771 return NULL;
1772}
1773
1774static int acpi_nfit_init_interleave_set(struct acpi_nfit_desc *acpi_desc,
1775 struct nd_region_desc *ndr_desc,
1776 struct acpi_nfit_system_address *spa)
1777{
Dan Williamseaf96152015-05-01 13:11:27 -04001778 struct device *dev = acpi_desc->dev;
1779 struct nd_interleave_set *nd_set;
1780 u16 nr = ndr_desc->num_mappings;
Dan Williamsc12c48c2017-06-04 10:59:15 +09001781 struct nfit_set_info2 *info2;
Dan Williamseaf96152015-05-01 13:11:27 -04001782 struct nfit_set_info *info;
Dan Williams8f2bc242017-06-06 11:39:30 -07001783 int i;
Dan Williamseaf96152015-05-01 13:11:27 -04001784
Dan Williamsfaec6f82017-06-06 11:10:51 -07001785 nd_set = devm_kzalloc(dev, sizeof(*nd_set), GFP_KERNEL);
1786 if (!nd_set)
1787 return -ENOMEM;
1788 ndr_desc->nd_set = nd_set;
1789 guid_copy(&nd_set->type_guid, (guid_t *) spa->range_guid);
1790
Dan Williamseaf96152015-05-01 13:11:27 -04001791 info = devm_kzalloc(dev, sizeof_nfit_set_info(nr), GFP_KERNEL);
1792 if (!info)
1793 return -ENOMEM;
Dan Williamsc12c48c2017-06-04 10:59:15 +09001794
1795 info2 = devm_kzalloc(dev, sizeof_nfit_set_info2(nr), GFP_KERNEL);
1796 if (!info2)
1797 return -ENOMEM;
1798
Dan Williamseaf96152015-05-01 13:11:27 -04001799 for (i = 0; i < nr; i++) {
Dan Williams44c462e2016-09-19 16:38:50 -07001800 struct nd_mapping_desc *mapping = &ndr_desc->mapping[i];
Dan Williamseaf96152015-05-01 13:11:27 -04001801 struct nfit_set_info_map *map = &info->mapping[i];
Dan Williamsc12c48c2017-06-04 10:59:15 +09001802 struct nfit_set_info_map2 *map2 = &info2->mapping[i];
Dan Williams44c462e2016-09-19 16:38:50 -07001803 struct nvdimm *nvdimm = mapping->nvdimm;
Dan Williamseaf96152015-05-01 13:11:27 -04001804 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1805 struct acpi_nfit_memory_map *memdev = memdev_from_spa(acpi_desc,
1806 spa->range_index, i);
Dan Williamsdcb79b12017-08-07 14:27:57 -07001807 struct acpi_nfit_control_region *dcr = nfit_mem->dcr;
Dan Williamseaf96152015-05-01 13:11:27 -04001808
1809 if (!memdev || !nfit_mem->dcr) {
1810 dev_err(dev, "%s: failed to find DCR\n", __func__);
1811 return -ENODEV;
1812 }
1813
1814 map->region_offset = memdev->region_offset;
Dan Williamsdcb79b12017-08-07 14:27:57 -07001815 map->serial_number = dcr->serial_number;
Dan Williamsc12c48c2017-06-04 10:59:15 +09001816
1817 map2->region_offset = memdev->region_offset;
Dan Williamsdcb79b12017-08-07 14:27:57 -07001818 map2->serial_number = dcr->serial_number;
1819 map2->vendor_id = dcr->vendor_id;
1820 map2->manufacturing_date = dcr->manufacturing_date;
1821 map2->manufacturing_location = dcr->manufacturing_location;
Dan Williamseaf96152015-05-01 13:11:27 -04001822 }
1823
Dan Williamsc12c48c2017-06-04 10:59:15 +09001824 /* v1.1 namespaces */
Dan Williamseaf96152015-05-01 13:11:27 -04001825 sort(&info->mapping[0], nr, sizeof(struct nfit_set_info_map),
1826 cmp_map, NULL);
Dan Williamsc12c48c2017-06-04 10:59:15 +09001827 nd_set->cookie1 = nd_fletcher64(info, sizeof_nfit_set_info(nr), 0);
Dan Williams86ef58a2017-02-28 18:32:48 -08001828
Dan Williamsc12c48c2017-06-04 10:59:15 +09001829 /* v1.2 namespaces */
1830 sort(&info2->mapping[0], nr, sizeof(struct nfit_set_info_map2),
1831 cmp_map2, NULL);
1832 nd_set->cookie2 = nd_fletcher64(info2, sizeof_nfit_set_info2(nr), 0);
1833
1834 /* support v1.1 namespaces created with the wrong sort order */
Dan Williams86ef58a2017-02-28 18:32:48 -08001835 sort(&info->mapping[0], nr, sizeof(struct nfit_set_info_map),
1836 cmp_map_compat, NULL);
1837 nd_set->altcookie = nd_fletcher64(info, sizeof_nfit_set_info(nr), 0);
1838
Dan Williams401c0a12017-08-04 17:20:16 -07001839 /* record the result of the sort for the mapping position */
1840 for (i = 0; i < nr; i++) {
1841 struct nfit_set_info_map2 *map2 = &info2->mapping[i];
1842 int j;
1843
1844 for (j = 0; j < nr; j++) {
1845 struct nd_mapping_desc *mapping = &ndr_desc->mapping[j];
1846 struct nvdimm *nvdimm = mapping->nvdimm;
1847 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
Dan Williamsdcb79b12017-08-07 14:27:57 -07001848 struct acpi_nfit_control_region *dcr = nfit_mem->dcr;
Dan Williams401c0a12017-08-04 17:20:16 -07001849
Dan Williamsdcb79b12017-08-07 14:27:57 -07001850 if (map2->serial_number == dcr->serial_number &&
1851 map2->vendor_id == dcr->vendor_id &&
1852 map2->manufacturing_date == dcr->manufacturing_date &&
Dan Williams401c0a12017-08-04 17:20:16 -07001853 map2->manufacturing_location
Dan Williamsdcb79b12017-08-07 14:27:57 -07001854 == dcr->manufacturing_location) {
Dan Williams401c0a12017-08-04 17:20:16 -07001855 mapping->position = i;
1856 break;
1857 }
1858 }
1859 }
1860
Dan Williamseaf96152015-05-01 13:11:27 -04001861 ndr_desc->nd_set = nd_set;
1862 devm_kfree(dev, info);
Dan Williamsc12c48c2017-06-04 10:59:15 +09001863 devm_kfree(dev, info2);
Dan Williamseaf96152015-05-01 13:11:27 -04001864
1865 return 0;
1866}
1867
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001868static u64 to_interleave_offset(u64 offset, struct nfit_blk_mmio *mmio)
1869{
1870 struct acpi_nfit_interleave *idt = mmio->idt;
1871 u32 sub_line_offset, line_index, line_offset;
1872 u64 line_no, table_skip_count, table_offset;
1873
1874 line_no = div_u64_rem(offset, mmio->line_size, &sub_line_offset);
1875 table_skip_count = div_u64_rem(line_no, mmio->num_lines, &line_index);
1876 line_offset = idt->line_offset[line_index]
1877 * mmio->line_size;
1878 table_offset = table_skip_count * mmio->table_size;
1879
1880 return mmio->base_offset + line_offset + table_offset + sub_line_offset;
1881}
1882
Ross Zwislerde4a1962015-08-20 16:27:38 -06001883static u32 read_blk_stat(struct nfit_blk *nfit_blk, unsigned int bw)
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001884{
1885 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[DCR];
1886 u64 offset = nfit_blk->stat_offset + mmio->size * bw;
Ross Zwisler68202c92016-07-29 14:59:12 -06001887 const u32 STATUS_MASK = 0x80000037;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001888
1889 if (mmio->num_lines)
1890 offset = to_interleave_offset(offset, mmio);
1891
Ross Zwisler68202c92016-07-29 14:59:12 -06001892 return readl(mmio->addr.base + offset) & STATUS_MASK;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001893}
1894
1895static void write_blk_ctl(struct nfit_blk *nfit_blk, unsigned int bw,
1896 resource_size_t dpa, unsigned int len, unsigned int write)
1897{
1898 u64 cmd, offset;
1899 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[DCR];
1900
1901 enum {
1902 BCW_OFFSET_MASK = (1ULL << 48)-1,
1903 BCW_LEN_SHIFT = 48,
1904 BCW_LEN_MASK = (1ULL << 8) - 1,
1905 BCW_CMD_SHIFT = 56,
1906 };
1907
1908 cmd = (dpa >> L1_CACHE_SHIFT) & BCW_OFFSET_MASK;
1909 len = len >> L1_CACHE_SHIFT;
1910 cmd |= ((u64) len & BCW_LEN_MASK) << BCW_LEN_SHIFT;
1911 cmd |= ((u64) write) << BCW_CMD_SHIFT;
1912
1913 offset = nfit_blk->cmd_offset + mmio->size * bw;
1914 if (mmio->num_lines)
1915 offset = to_interleave_offset(offset, mmio);
1916
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001917 writeq(cmd, mmio->addr.base + offset);
Dan Williamsf284a4f2016-07-07 19:44:50 -07001918 nvdimm_flush(nfit_blk->nd_region);
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001919
Dan Williamsaef25332016-02-12 17:01:11 -08001920 if (nfit_blk->dimm_flags & NFIT_BLK_DCR_LATCH)
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001921 readq(mmio->addr.base + offset);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001922}
1923
1924static int acpi_nfit_blk_single_io(struct nfit_blk *nfit_blk,
1925 resource_size_t dpa, void *iobuf, size_t len, int rw,
1926 unsigned int lane)
1927{
1928 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[BDW];
1929 unsigned int copied = 0;
1930 u64 base_offset;
1931 int rc;
1932
1933 base_offset = nfit_blk->bdw_offset + dpa % L1_CACHE_BYTES
1934 + lane * mmio->size;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001935 write_blk_ctl(nfit_blk, lane, dpa, len, rw);
1936 while (len) {
1937 unsigned int c;
1938 u64 offset;
1939
1940 if (mmio->num_lines) {
1941 u32 line_offset;
1942
1943 offset = to_interleave_offset(base_offset + copied,
1944 mmio);
1945 div_u64_rem(offset, mmio->line_size, &line_offset);
1946 c = min_t(size_t, len, mmio->line_size - line_offset);
1947 } else {
1948 offset = base_offset + nfit_blk->bdw_offset;
1949 c = len;
1950 }
1951
1952 if (rw)
Dan Williams0aed55a2017-05-29 12:22:50 -07001953 memcpy_flushcache(mmio->addr.aperture + offset, iobuf + copied, c);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001954 else {
Dan Williamsaef25332016-02-12 17:01:11 -08001955 if (nfit_blk->dimm_flags & NFIT_BLK_READ_FLUSH)
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001956 mmio_flush_range((void __force *)
1957 mmio->addr.aperture + offset, c);
1958
Dan Williams6abccd12017-01-13 14:14:23 -08001959 memcpy(iobuf + copied, mmio->addr.aperture + offset, c);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001960 }
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001961
1962 copied += c;
1963 len -= c;
1964 }
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001965
1966 if (rw)
Dan Williamsf284a4f2016-07-07 19:44:50 -07001967 nvdimm_flush(nfit_blk->nd_region);
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001968
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001969 rc = read_blk_stat(nfit_blk, lane) ? -EIO : 0;
1970 return rc;
1971}
1972
1973static int acpi_nfit_blk_region_do_io(struct nd_blk_region *ndbr,
1974 resource_size_t dpa, void *iobuf, u64 len, int rw)
1975{
1976 struct nfit_blk *nfit_blk = nd_blk_region_provider_data(ndbr);
1977 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[BDW];
1978 struct nd_region *nd_region = nfit_blk->nd_region;
1979 unsigned int lane, copied = 0;
1980 int rc = 0;
1981
1982 lane = nd_region_acquire_lane(nd_region);
1983 while (len) {
1984 u64 c = min(len, mmio->size);
1985
1986 rc = acpi_nfit_blk_single_io(nfit_blk, dpa + copied,
1987 iobuf + copied, c, rw, lane);
1988 if (rc)
1989 break;
1990
1991 copied += c;
1992 len -= c;
1993 }
1994 nd_region_release_lane(nd_region, lane);
1995
1996 return rc;
1997}
1998
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001999static int nfit_blk_init_interleave(struct nfit_blk_mmio *mmio,
2000 struct acpi_nfit_interleave *idt, u16 interleave_ways)
2001{
2002 if (idt) {
2003 mmio->num_lines = idt->line_count;
2004 mmio->line_size = idt->line_size;
2005 if (interleave_ways == 0)
2006 return -ENXIO;
2007 mmio->table_size = mmio->num_lines * interleave_ways
2008 * mmio->line_size;
2009 }
2010
2011 return 0;
2012}
2013
Ross Zwislerf0f2c072015-07-10 11:06:14 -06002014static int acpi_nfit_blk_get_flags(struct nvdimm_bus_descriptor *nd_desc,
2015 struct nvdimm *nvdimm, struct nfit_blk *nfit_blk)
2016{
2017 struct nd_cmd_dimm_flags flags;
2018 int rc;
2019
2020 memset(&flags, 0, sizeof(flags));
2021 rc = nd_desc->ndctl(nd_desc, nvdimm, ND_CMD_DIMM_FLAGS, &flags,
Dan Williamsaef25332016-02-12 17:01:11 -08002022 sizeof(flags), NULL);
Ross Zwislerf0f2c072015-07-10 11:06:14 -06002023
2024 if (rc >= 0 && flags.status == 0)
2025 nfit_blk->dimm_flags = flags.flags;
2026 else if (rc == -ENOTTY) {
2027 /* fall back to a conservative default */
Dan Williamsaef25332016-02-12 17:01:11 -08002028 nfit_blk->dimm_flags = NFIT_BLK_DCR_LATCH | NFIT_BLK_READ_FLUSH;
Ross Zwislerf0f2c072015-07-10 11:06:14 -06002029 rc = 0;
2030 } else
2031 rc = -ENXIO;
2032
2033 return rc;
2034}
2035
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002036static int acpi_nfit_blk_region_enable(struct nvdimm_bus *nvdimm_bus,
2037 struct device *dev)
2038{
2039 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002040 struct nd_blk_region *ndbr = to_nd_blk_region(dev);
2041 struct nfit_blk_mmio *mmio;
2042 struct nfit_blk *nfit_blk;
2043 struct nfit_mem *nfit_mem;
2044 struct nvdimm *nvdimm;
2045 int rc;
2046
2047 nvdimm = nd_blk_region_to_dimm(ndbr);
2048 nfit_mem = nvdimm_provider_data(nvdimm);
2049 if (!nfit_mem || !nfit_mem->dcr || !nfit_mem->bdw) {
2050 dev_dbg(dev, "%s: missing%s%s%s\n", __func__,
2051 nfit_mem ? "" : " nfit_mem",
Dan Williams193ccca2015-06-30 16:09:39 -04002052 (nfit_mem && nfit_mem->dcr) ? "" : " dcr",
2053 (nfit_mem && nfit_mem->bdw) ? "" : " bdw");
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002054 return -ENXIO;
2055 }
2056
2057 nfit_blk = devm_kzalloc(dev, sizeof(*nfit_blk), GFP_KERNEL);
2058 if (!nfit_blk)
2059 return -ENOMEM;
2060 nd_blk_region_set_provider_data(ndbr, nfit_blk);
2061 nfit_blk->nd_region = to_nd_region(dev);
2062
2063 /* map block aperture memory */
2064 nfit_blk->bdw_offset = nfit_mem->bdw->offset;
2065 mmio = &nfit_blk->mmio[BDW];
Dan Williams29b9aa02016-06-06 17:42:38 -07002066 mmio->addr.base = devm_nvdimm_memremap(dev, nfit_mem->spa_bdw->address,
Dan Williamsca6a4652017-01-13 20:36:58 -08002067 nfit_mem->spa_bdw->length, nd_blk_memremap_flags(ndbr));
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06002068 if (!mmio->addr.base) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002069 dev_dbg(dev, "%s: %s failed to map bdw\n", __func__,
2070 nvdimm_name(nvdimm));
2071 return -ENOMEM;
2072 }
2073 mmio->size = nfit_mem->bdw->size;
2074 mmio->base_offset = nfit_mem->memdev_bdw->region_offset;
2075 mmio->idt = nfit_mem->idt_bdw;
2076 mmio->spa = nfit_mem->spa_bdw;
2077 rc = nfit_blk_init_interleave(mmio, nfit_mem->idt_bdw,
2078 nfit_mem->memdev_bdw->interleave_ways);
2079 if (rc) {
2080 dev_dbg(dev, "%s: %s failed to init bdw interleave\n",
2081 __func__, nvdimm_name(nvdimm));
2082 return rc;
2083 }
2084
2085 /* map block control memory */
2086 nfit_blk->cmd_offset = nfit_mem->dcr->command_offset;
2087 nfit_blk->stat_offset = nfit_mem->dcr->status_offset;
2088 mmio = &nfit_blk->mmio[DCR];
Dan Williams29b9aa02016-06-06 17:42:38 -07002089 mmio->addr.base = devm_nvdimm_ioremap(dev, nfit_mem->spa_dcr->address,
2090 nfit_mem->spa_dcr->length);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06002091 if (!mmio->addr.base) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002092 dev_dbg(dev, "%s: %s failed to map dcr\n", __func__,
2093 nvdimm_name(nvdimm));
2094 return -ENOMEM;
2095 }
2096 mmio->size = nfit_mem->dcr->window_size;
2097 mmio->base_offset = nfit_mem->memdev_dcr->region_offset;
2098 mmio->idt = nfit_mem->idt_dcr;
2099 mmio->spa = nfit_mem->spa_dcr;
2100 rc = nfit_blk_init_interleave(mmio, nfit_mem->idt_dcr,
2101 nfit_mem->memdev_dcr->interleave_ways);
2102 if (rc) {
2103 dev_dbg(dev, "%s: %s failed to init dcr interleave\n",
2104 __func__, nvdimm_name(nvdimm));
2105 return rc;
2106 }
2107
Ross Zwislerf0f2c072015-07-10 11:06:14 -06002108 rc = acpi_nfit_blk_get_flags(nd_desc, nvdimm, nfit_blk);
2109 if (rc < 0) {
2110 dev_dbg(dev, "%s: %s failed get DIMM flags\n",
2111 __func__, nvdimm_name(nvdimm));
2112 return rc;
2113 }
2114
Dan Williamsf284a4f2016-07-07 19:44:50 -07002115 if (nvdimm_has_flush(nfit_blk->nd_region) < 0)
Ross Zwislerc2ad2952015-07-10 11:06:13 -06002116 dev_warn(dev, "unable to guarantee persistence of writes\n");
2117
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002118 if (mmio->line_size == 0)
2119 return 0;
2120
2121 if ((u32) nfit_blk->cmd_offset % mmio->line_size
2122 + 8 > mmio->line_size) {
2123 dev_dbg(dev, "cmd_offset crosses interleave boundary\n");
2124 return -ENXIO;
2125 } else if ((u32) nfit_blk->stat_offset % mmio->line_size
2126 + 8 > mmio->line_size) {
2127 dev_dbg(dev, "stat_offset crosses interleave boundary\n");
2128 return -ENXIO;
2129 }
2130
2131 return 0;
2132}
2133
Dan Williamsaef25332016-02-12 17:01:11 -08002134static int ars_get_cap(struct acpi_nfit_desc *acpi_desc,
Dan Williams1cf03c02016-02-17 13:01:23 -08002135 struct nd_cmd_ars_cap *cmd, struct nfit_spa *nfit_spa)
Vishal Verma0caeef62015-12-24 19:21:43 -07002136{
Dan Williamsaef25332016-02-12 17:01:11 -08002137 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
Dan Williams1cf03c02016-02-17 13:01:23 -08002138 struct acpi_nfit_system_address *spa = nfit_spa->spa;
Dan Williamsaef25332016-02-12 17:01:11 -08002139 int cmd_rc, rc;
2140
Dan Williams1cf03c02016-02-17 13:01:23 -08002141 cmd->address = spa->address;
2142 cmd->length = spa->length;
Dan Williamsaef25332016-02-12 17:01:11 -08002143 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_CAP, cmd,
2144 sizeof(*cmd), &cmd_rc);
2145 if (rc < 0)
2146 return rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08002147 return cmd_rc;
Vishal Verma0caeef62015-12-24 19:21:43 -07002148}
2149
Dan Williams1cf03c02016-02-17 13:01:23 -08002150static int ars_start(struct acpi_nfit_desc *acpi_desc, struct nfit_spa *nfit_spa)
Vishal Verma0caeef62015-12-24 19:21:43 -07002151{
2152 int rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08002153 int cmd_rc;
2154 struct nd_cmd_ars_start ars_start;
2155 struct acpi_nfit_system_address *spa = nfit_spa->spa;
2156 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
Vishal Verma0caeef62015-12-24 19:21:43 -07002157
Dan Williams1cf03c02016-02-17 13:01:23 -08002158 memset(&ars_start, 0, sizeof(ars_start));
2159 ars_start.address = spa->address;
2160 ars_start.length = spa->length;
Toshi Kani80790032017-06-29 20:41:30 -06002161 ars_start.flags = acpi_desc->ars_start_flags;
Dan Williams1cf03c02016-02-17 13:01:23 -08002162 if (nfit_spa_type(spa) == NFIT_SPA_PM)
2163 ars_start.type = ND_ARS_PERSISTENT;
2164 else if (nfit_spa_type(spa) == NFIT_SPA_VOLATILE)
2165 ars_start.type = ND_ARS_VOLATILE;
2166 else
2167 return -ENOTTY;
Vishal Verma0caeef62015-12-24 19:21:43 -07002168
Dan Williams1cf03c02016-02-17 13:01:23 -08002169 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_START, &ars_start,
2170 sizeof(ars_start), &cmd_rc);
Dan Williamsaef25332016-02-12 17:01:11 -08002171
Dan Williams1cf03c02016-02-17 13:01:23 -08002172 if (rc < 0)
2173 return rc;
2174 return cmd_rc;
Vishal Verma0caeef62015-12-24 19:21:43 -07002175}
2176
Dan Williams1cf03c02016-02-17 13:01:23 -08002177static int ars_continue(struct acpi_nfit_desc *acpi_desc)
Vishal Verma0caeef62015-12-24 19:21:43 -07002178{
Dan Williamsaef25332016-02-12 17:01:11 -08002179 int rc, cmd_rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08002180 struct nd_cmd_ars_start ars_start;
2181 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
2182 struct nd_cmd_ars_status *ars_status = acpi_desc->ars_status;
Vishal Verma0caeef62015-12-24 19:21:43 -07002183
Dan Williams1cf03c02016-02-17 13:01:23 -08002184 memset(&ars_start, 0, sizeof(ars_start));
2185 ars_start.address = ars_status->restart_address;
2186 ars_start.length = ars_status->restart_length;
2187 ars_start.type = ars_status->type;
Toshi Kani80790032017-06-29 20:41:30 -06002188 ars_start.flags = acpi_desc->ars_start_flags;
Dan Williams1cf03c02016-02-17 13:01:23 -08002189 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_START, &ars_start,
2190 sizeof(ars_start), &cmd_rc);
2191 if (rc < 0)
2192 return rc;
2193 return cmd_rc;
2194}
Dan Williamsaef25332016-02-12 17:01:11 -08002195
Dan Williams1cf03c02016-02-17 13:01:23 -08002196static int ars_get_status(struct acpi_nfit_desc *acpi_desc)
2197{
2198 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
2199 struct nd_cmd_ars_status *ars_status = acpi_desc->ars_status;
2200 int rc, cmd_rc;
Dan Williamsaef25332016-02-12 17:01:11 -08002201
Dan Williams1cf03c02016-02-17 13:01:23 -08002202 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_STATUS, ars_status,
2203 acpi_desc->ars_status_size, &cmd_rc);
2204 if (rc < 0)
2205 return rc;
2206 return cmd_rc;
Vishal Verma0caeef62015-12-24 19:21:43 -07002207}
2208
Dan Williams82aa37c2016-12-06 12:45:24 -08002209static int ars_status_process_records(struct acpi_nfit_desc *acpi_desc,
Dan Williams1cf03c02016-02-17 13:01:23 -08002210 struct nd_cmd_ars_status *ars_status)
Vishal Verma0caeef62015-12-24 19:21:43 -07002211{
Dan Williams82aa37c2016-12-06 12:45:24 -08002212 struct nvdimm_bus *nvdimm_bus = acpi_desc->nvdimm_bus;
Vishal Verma0caeef62015-12-24 19:21:43 -07002213 int rc;
2214 u32 i;
2215
Dan Williams82aa37c2016-12-06 12:45:24 -08002216 /*
2217 * First record starts at 44 byte offset from the start of the
2218 * payload.
2219 */
2220 if (ars_status->out_length < 44)
2221 return 0;
Vishal Verma0caeef62015-12-24 19:21:43 -07002222 for (i = 0; i < ars_status->num_records; i++) {
Dan Williams82aa37c2016-12-06 12:45:24 -08002223 /* only process full records */
2224 if (ars_status->out_length
2225 < 44 + sizeof(struct nd_ars_record) * (i + 1))
2226 break;
Vishal Verma0caeef62015-12-24 19:21:43 -07002227 rc = nvdimm_bus_add_poison(nvdimm_bus,
2228 ars_status->records[i].err_address,
2229 ars_status->records[i].length);
2230 if (rc)
2231 return rc;
2232 }
Dan Williams82aa37c2016-12-06 12:45:24 -08002233 if (i < ars_status->num_records)
2234 dev_warn(acpi_desc->dev, "detected truncated ars results\n");
Vishal Verma0caeef62015-12-24 19:21:43 -07002235
2236 return 0;
2237}
2238
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002239static void acpi_nfit_remove_resource(void *data)
2240{
2241 struct resource *res = data;
2242
2243 remove_resource(res);
2244}
2245
2246static int acpi_nfit_insert_resource(struct acpi_nfit_desc *acpi_desc,
2247 struct nd_region_desc *ndr_desc)
2248{
2249 struct resource *res, *nd_res = ndr_desc->res;
2250 int is_pmem, ret;
2251
2252 /* No operation if the region is already registered as PMEM */
2253 is_pmem = region_intersects(nd_res->start, resource_size(nd_res),
2254 IORESOURCE_MEM, IORES_DESC_PERSISTENT_MEMORY);
2255 if (is_pmem == REGION_INTERSECTS)
2256 return 0;
2257
2258 res = devm_kzalloc(acpi_desc->dev, sizeof(*res), GFP_KERNEL);
2259 if (!res)
2260 return -ENOMEM;
2261
2262 res->name = "Persistent Memory";
2263 res->start = nd_res->start;
2264 res->end = nd_res->end;
2265 res->flags = IORESOURCE_MEM;
2266 res->desc = IORES_DESC_PERSISTENT_MEMORY;
2267
2268 ret = insert_resource(&iomem_resource, res);
2269 if (ret)
2270 return ret;
2271
Sajjan, Vikas Cd932dd22016-07-04 10:02:51 +05302272 ret = devm_add_action_or_reset(acpi_desc->dev,
2273 acpi_nfit_remove_resource,
2274 res);
2275 if (ret)
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002276 return ret;
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002277
2278 return 0;
2279}
2280
Dan Williams1f7df6f2015-06-09 20:13:14 -04002281static int acpi_nfit_init_mapping(struct acpi_nfit_desc *acpi_desc,
Dan Williams44c462e2016-09-19 16:38:50 -07002282 struct nd_mapping_desc *mapping, struct nd_region_desc *ndr_desc,
Dan Williams1f7df6f2015-06-09 20:13:14 -04002283 struct acpi_nfit_memory_map *memdev,
Dan Williams1cf03c02016-02-17 13:01:23 -08002284 struct nfit_spa *nfit_spa)
Dan Williams1f7df6f2015-06-09 20:13:14 -04002285{
2286 struct nvdimm *nvdimm = acpi_nfit_dimm_by_handle(acpi_desc,
2287 memdev->device_handle);
Dan Williams1cf03c02016-02-17 13:01:23 -08002288 struct acpi_nfit_system_address *spa = nfit_spa->spa;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002289 struct nd_blk_region_desc *ndbr_desc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002290 struct nfit_mem *nfit_mem;
Dan Williamsfaec6f82017-06-06 11:10:51 -07002291 int blk_valid = 0, rc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002292
2293 if (!nvdimm) {
2294 dev_err(acpi_desc->dev, "spa%d dimm: %#x not found\n",
2295 spa->range_index, memdev->device_handle);
2296 return -ENODEV;
2297 }
2298
Dan Williams44c462e2016-09-19 16:38:50 -07002299 mapping->nvdimm = nvdimm;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002300 switch (nfit_spa_type(spa)) {
2301 case NFIT_SPA_PM:
2302 case NFIT_SPA_VOLATILE:
Dan Williams44c462e2016-09-19 16:38:50 -07002303 mapping->start = memdev->address;
2304 mapping->size = memdev->region_size;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002305 break;
2306 case NFIT_SPA_DCR:
2307 nfit_mem = nvdimm_provider_data(nvdimm);
2308 if (!nfit_mem || !nfit_mem->bdw) {
2309 dev_dbg(acpi_desc->dev, "spa%d %s missing bdw\n",
2310 spa->range_index, nvdimm_name(nvdimm));
2311 } else {
Dan Williams44c462e2016-09-19 16:38:50 -07002312 mapping->size = nfit_mem->bdw->capacity;
2313 mapping->start = nfit_mem->bdw->start_address;
Vishal Verma5212e112015-06-25 04:20:32 -04002314 ndr_desc->num_lanes = nfit_mem->bdw->windows;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002315 blk_valid = 1;
2316 }
2317
Dan Williams44c462e2016-09-19 16:38:50 -07002318 ndr_desc->mapping = mapping;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002319 ndr_desc->num_mappings = blk_valid;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002320 ndbr_desc = to_blk_region_desc(ndr_desc);
2321 ndbr_desc->enable = acpi_nfit_blk_region_enable;
Dan Williams6bc75612015-06-17 17:23:32 -04002322 ndbr_desc->do_io = acpi_desc->blk_do_io;
Dan Williamsfaec6f82017-06-06 11:10:51 -07002323 rc = acpi_nfit_init_interleave_set(acpi_desc, ndr_desc, spa);
2324 if (rc)
2325 return rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08002326 nfit_spa->nd_region = nvdimm_blk_region_create(acpi_desc->nvdimm_bus,
2327 ndr_desc);
2328 if (!nfit_spa->nd_region)
Dan Williams1f7df6f2015-06-09 20:13:14 -04002329 return -ENOMEM;
2330 break;
2331 }
2332
2333 return 0;
2334}
2335
Lee, Chun-Yic2f32ac2016-07-15 12:05:35 +08002336static bool nfit_spa_is_virtual(struct acpi_nfit_system_address *spa)
2337{
2338 return (nfit_spa_type(spa) == NFIT_SPA_VDISK ||
2339 nfit_spa_type(spa) == NFIT_SPA_VCD ||
2340 nfit_spa_type(spa) == NFIT_SPA_PDISK ||
2341 nfit_spa_type(spa) == NFIT_SPA_PCD);
2342}
2343
Dan Williamsc9e582a2017-05-29 23:12:19 -07002344static bool nfit_spa_is_volatile(struct acpi_nfit_system_address *spa)
2345{
2346 return (nfit_spa_type(spa) == NFIT_SPA_VDISK ||
2347 nfit_spa_type(spa) == NFIT_SPA_VCD ||
2348 nfit_spa_type(spa) == NFIT_SPA_VOLATILE);
2349}
2350
Dan Williams1f7df6f2015-06-09 20:13:14 -04002351static int acpi_nfit_register_region(struct acpi_nfit_desc *acpi_desc,
2352 struct nfit_spa *nfit_spa)
2353{
Dan Williams44c462e2016-09-19 16:38:50 -07002354 static struct nd_mapping_desc mappings[ND_MAX_MAPPINGS];
Dan Williams1f7df6f2015-06-09 20:13:14 -04002355 struct acpi_nfit_system_address *spa = nfit_spa->spa;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002356 struct nd_blk_region_desc ndbr_desc;
2357 struct nd_region_desc *ndr_desc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002358 struct nfit_memdev *nfit_memdev;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002359 struct nvdimm_bus *nvdimm_bus;
2360 struct resource res;
Dan Williamseaf96152015-05-01 13:11:27 -04002361 int count = 0, rc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002362
Dan Williams1cf03c02016-02-17 13:01:23 -08002363 if (nfit_spa->nd_region)
Vishal Verma20985162015-10-27 16:58:27 -06002364 return 0;
2365
Lee, Chun-Yic2f32ac2016-07-15 12:05:35 +08002366 if (spa->range_index == 0 && !nfit_spa_is_virtual(spa)) {
Dan Williams1f7df6f2015-06-09 20:13:14 -04002367 dev_dbg(acpi_desc->dev, "%s: detected invalid spa index\n",
2368 __func__);
2369 return 0;
2370 }
2371
2372 memset(&res, 0, sizeof(res));
Dan Williams44c462e2016-09-19 16:38:50 -07002373 memset(&mappings, 0, sizeof(mappings));
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002374 memset(&ndbr_desc, 0, sizeof(ndbr_desc));
Dan Williams1f7df6f2015-06-09 20:13:14 -04002375 res.start = spa->address;
2376 res.end = res.start + spa->length - 1;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002377 ndr_desc = &ndbr_desc.ndr_desc;
2378 ndr_desc->res = &res;
2379 ndr_desc->provider_data = nfit_spa;
2380 ndr_desc->attr_groups = acpi_nfit_region_attribute_groups;
Toshi Kani41d7a6d2015-06-19 12:18:33 -06002381 if (spa->flags & ACPI_NFIT_PROXIMITY_VALID)
2382 ndr_desc->numa_node = acpi_map_pxm_to_online_node(
2383 spa->proximity_domain);
2384 else
2385 ndr_desc->numa_node = NUMA_NO_NODE;
2386
Dan Williams1f7df6f2015-06-09 20:13:14 -04002387 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
2388 struct acpi_nfit_memory_map *memdev = nfit_memdev->memdev;
Dan Williams44c462e2016-09-19 16:38:50 -07002389 struct nd_mapping_desc *mapping;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002390
2391 if (memdev->range_index != spa->range_index)
2392 continue;
2393 if (count >= ND_MAX_MAPPINGS) {
2394 dev_err(acpi_desc->dev, "spa%d exceeds max mappings %d\n",
2395 spa->range_index, ND_MAX_MAPPINGS);
2396 return -ENXIO;
2397 }
Dan Williams44c462e2016-09-19 16:38:50 -07002398 mapping = &mappings[count++];
2399 rc = acpi_nfit_init_mapping(acpi_desc, mapping, ndr_desc,
Dan Williams1cf03c02016-02-17 13:01:23 -08002400 memdev, nfit_spa);
Dan Williams1f7df6f2015-06-09 20:13:14 -04002401 if (rc)
Dan Williams1cf03c02016-02-17 13:01:23 -08002402 goto out;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002403 }
2404
Dan Williams44c462e2016-09-19 16:38:50 -07002405 ndr_desc->mapping = mappings;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002406 ndr_desc->num_mappings = count;
2407 rc = acpi_nfit_init_interleave_set(acpi_desc, ndr_desc, spa);
Dan Williamseaf96152015-05-01 13:11:27 -04002408 if (rc)
Dan Williams1cf03c02016-02-17 13:01:23 -08002409 goto out;
Dan Williamseaf96152015-05-01 13:11:27 -04002410
Dan Williams1f7df6f2015-06-09 20:13:14 -04002411 nvdimm_bus = acpi_desc->nvdimm_bus;
2412 if (nfit_spa_type(spa) == NFIT_SPA_PM) {
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002413 rc = acpi_nfit_insert_resource(acpi_desc, ndr_desc);
Dan Williams48901162016-03-09 17:15:43 -08002414 if (rc) {
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002415 dev_warn(acpi_desc->dev,
2416 "failed to insert pmem resource to iomem: %d\n",
2417 rc);
Dan Williams48901162016-03-09 17:15:43 -08002418 goto out;
Vishal Verma0caeef62015-12-24 19:21:43 -07002419 }
Dan Williams48901162016-03-09 17:15:43 -08002420
Dan Williams1cf03c02016-02-17 13:01:23 -08002421 nfit_spa->nd_region = nvdimm_pmem_region_create(nvdimm_bus,
2422 ndr_desc);
2423 if (!nfit_spa->nd_region)
2424 rc = -ENOMEM;
Dan Williamsc9e582a2017-05-29 23:12:19 -07002425 } else if (nfit_spa_is_volatile(spa)) {
Dan Williams1cf03c02016-02-17 13:01:23 -08002426 nfit_spa->nd_region = nvdimm_volatile_region_create(nvdimm_bus,
2427 ndr_desc);
2428 if (!nfit_spa->nd_region)
2429 rc = -ENOMEM;
Lee, Chun-Yic2f32ac2016-07-15 12:05:35 +08002430 } else if (nfit_spa_is_virtual(spa)) {
2431 nfit_spa->nd_region = nvdimm_pmem_region_create(nvdimm_bus,
2432 ndr_desc);
2433 if (!nfit_spa->nd_region)
2434 rc = -ENOMEM;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002435 }
Vishal Verma20985162015-10-27 16:58:27 -06002436
Dan Williams1cf03c02016-02-17 13:01:23 -08002437 out:
2438 if (rc)
2439 dev_err(acpi_desc->dev, "failed to register spa range %d\n",
2440 nfit_spa->spa->range_index);
2441 return rc;
2442}
2443
2444static int ars_status_alloc(struct acpi_nfit_desc *acpi_desc,
2445 u32 max_ars)
2446{
2447 struct device *dev = acpi_desc->dev;
2448 struct nd_cmd_ars_status *ars_status;
2449
2450 if (acpi_desc->ars_status && acpi_desc->ars_status_size >= max_ars) {
2451 memset(acpi_desc->ars_status, 0, acpi_desc->ars_status_size);
2452 return 0;
2453 }
2454
2455 if (acpi_desc->ars_status)
2456 devm_kfree(dev, acpi_desc->ars_status);
2457 acpi_desc->ars_status = NULL;
2458 ars_status = devm_kzalloc(dev, max_ars, GFP_KERNEL);
2459 if (!ars_status)
2460 return -ENOMEM;
2461 acpi_desc->ars_status = ars_status;
2462 acpi_desc->ars_status_size = max_ars;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002463 return 0;
2464}
2465
Dan Williams1cf03c02016-02-17 13:01:23 -08002466static int acpi_nfit_query_poison(struct acpi_nfit_desc *acpi_desc,
2467 struct nfit_spa *nfit_spa)
2468{
2469 struct acpi_nfit_system_address *spa = nfit_spa->spa;
2470 int rc;
2471
2472 if (!nfit_spa->max_ars) {
2473 struct nd_cmd_ars_cap ars_cap;
2474
2475 memset(&ars_cap, 0, sizeof(ars_cap));
2476 rc = ars_get_cap(acpi_desc, &ars_cap, nfit_spa);
2477 if (rc < 0)
2478 return rc;
2479 nfit_spa->max_ars = ars_cap.max_ars_out;
2480 nfit_spa->clear_err_unit = ars_cap.clear_err_unit;
2481 /* check that the supported scrub types match the spa type */
2482 if (nfit_spa_type(spa) == NFIT_SPA_VOLATILE &&
2483 ((ars_cap.status >> 16) & ND_ARS_VOLATILE) == 0)
2484 return -ENOTTY;
2485 else if (nfit_spa_type(spa) == NFIT_SPA_PM &&
2486 ((ars_cap.status >> 16) & ND_ARS_PERSISTENT) == 0)
2487 return -ENOTTY;
2488 }
2489
2490 if (ars_status_alloc(acpi_desc, nfit_spa->max_ars))
2491 return -ENOMEM;
2492
2493 rc = ars_get_status(acpi_desc);
2494 if (rc < 0 && rc != -ENOSPC)
2495 return rc;
2496
Dan Williams82aa37c2016-12-06 12:45:24 -08002497 if (ars_status_process_records(acpi_desc, acpi_desc->ars_status))
Dan Williams1cf03c02016-02-17 13:01:23 -08002498 return -ENOMEM;
2499
2500 return 0;
2501}
2502
2503static void acpi_nfit_async_scrub(struct acpi_nfit_desc *acpi_desc,
2504 struct nfit_spa *nfit_spa)
2505{
2506 struct acpi_nfit_system_address *spa = nfit_spa->spa;
2507 unsigned int overflow_retry = scrub_overflow_abort;
2508 u64 init_ars_start = 0, init_ars_len = 0;
2509 struct device *dev = acpi_desc->dev;
2510 unsigned int tmo = scrub_timeout;
2511 int rc;
2512
Vishal Verma37b137f2016-07-23 21:51:42 -07002513 if (!nfit_spa->ars_required || !nfit_spa->nd_region)
Dan Williams1cf03c02016-02-17 13:01:23 -08002514 return;
2515
2516 rc = ars_start(acpi_desc, nfit_spa);
2517 /*
2518 * If we timed out the initial scan we'll still be busy here,
2519 * and will wait another timeout before giving up permanently.
2520 */
2521 if (rc < 0 && rc != -EBUSY)
2522 return;
2523
2524 do {
2525 u64 ars_start, ars_len;
2526
2527 if (acpi_desc->cancel)
2528 break;
2529 rc = acpi_nfit_query_poison(acpi_desc, nfit_spa);
2530 if (rc == -ENOTTY)
2531 break;
2532 if (rc == -EBUSY && !tmo) {
2533 dev_warn(dev, "range %d ars timeout, aborting\n",
2534 spa->range_index);
2535 break;
2536 }
2537
2538 if (rc == -EBUSY) {
2539 /*
2540 * Note, entries may be appended to the list
2541 * while the lock is dropped, but the workqueue
2542 * being active prevents entries being deleted /
2543 * freed.
2544 */
2545 mutex_unlock(&acpi_desc->init_mutex);
2546 ssleep(1);
2547 tmo--;
2548 mutex_lock(&acpi_desc->init_mutex);
2549 continue;
2550 }
2551
2552 /* we got some results, but there are more pending... */
2553 if (rc == -ENOSPC && overflow_retry--) {
2554 if (!init_ars_len) {
2555 init_ars_len = acpi_desc->ars_status->length;
2556 init_ars_start = acpi_desc->ars_status->address;
2557 }
2558 rc = ars_continue(acpi_desc);
2559 }
2560
2561 if (rc < 0) {
2562 dev_warn(dev, "range %d ars continuation failed\n",
2563 spa->range_index);
2564 break;
2565 }
2566
2567 if (init_ars_len) {
2568 ars_start = init_ars_start;
2569 ars_len = init_ars_len;
2570 } else {
2571 ars_start = acpi_desc->ars_status->address;
2572 ars_len = acpi_desc->ars_status->length;
2573 }
2574 dev_dbg(dev, "spa range: %d ars from %#llx + %#llx complete\n",
2575 spa->range_index, ars_start, ars_len);
2576 /* notify the region about new poison entries */
2577 nvdimm_region_notify(nfit_spa->nd_region,
2578 NVDIMM_REVALIDATE_POISON);
2579 break;
2580 } while (1);
2581}
2582
2583static void acpi_nfit_scrub(struct work_struct *work)
2584{
2585 struct device *dev;
2586 u64 init_scrub_length = 0;
2587 struct nfit_spa *nfit_spa;
2588 u64 init_scrub_address = 0;
2589 bool init_ars_done = false;
2590 struct acpi_nfit_desc *acpi_desc;
2591 unsigned int tmo = scrub_timeout;
2592 unsigned int overflow_retry = scrub_overflow_abort;
2593
2594 acpi_desc = container_of(work, typeof(*acpi_desc), work);
2595 dev = acpi_desc->dev;
2596
2597 /*
2598 * We scrub in 2 phases. The first phase waits for any platform
2599 * firmware initiated scrubs to complete and then we go search for the
2600 * affected spa regions to mark them scanned. In the second phase we
2601 * initiate a directed scrub for every range that was not scrubbed in
Vishal Verma37b137f2016-07-23 21:51:42 -07002602 * phase 1. If we're called for a 'rescan', we harmlessly pass through
2603 * the first phase, but really only care about running phase 2, where
2604 * regions can be notified of new poison.
Dan Williams1cf03c02016-02-17 13:01:23 -08002605 */
2606
2607 /* process platform firmware initiated scrubs */
2608 retry:
2609 mutex_lock(&acpi_desc->init_mutex);
2610 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
2611 struct nd_cmd_ars_status *ars_status;
2612 struct acpi_nfit_system_address *spa;
2613 u64 ars_start, ars_len;
2614 int rc;
2615
2616 if (acpi_desc->cancel)
2617 break;
2618
2619 if (nfit_spa->nd_region)
2620 continue;
2621
2622 if (init_ars_done) {
2623 /*
2624 * No need to re-query, we're now just
2625 * reconciling all the ranges covered by the
2626 * initial scrub
2627 */
2628 rc = 0;
2629 } else
2630 rc = acpi_nfit_query_poison(acpi_desc, nfit_spa);
2631
2632 if (rc == -ENOTTY) {
2633 /* no ars capability, just register spa and move on */
2634 acpi_nfit_register_region(acpi_desc, nfit_spa);
2635 continue;
2636 }
2637
2638 if (rc == -EBUSY && !tmo) {
2639 /* fallthrough to directed scrub in phase 2 */
2640 dev_warn(dev, "timeout awaiting ars results, continuing...\n");
2641 break;
2642 } else if (rc == -EBUSY) {
2643 mutex_unlock(&acpi_desc->init_mutex);
2644 ssleep(1);
2645 tmo--;
2646 goto retry;
2647 }
2648
2649 /* we got some results, but there are more pending... */
2650 if (rc == -ENOSPC && overflow_retry--) {
2651 ars_status = acpi_desc->ars_status;
2652 /*
2653 * Record the original scrub range, so that we
2654 * can recall all the ranges impacted by the
2655 * initial scrub.
2656 */
2657 if (!init_scrub_length) {
2658 init_scrub_length = ars_status->length;
2659 init_scrub_address = ars_status->address;
2660 }
2661 rc = ars_continue(acpi_desc);
2662 if (rc == 0) {
2663 mutex_unlock(&acpi_desc->init_mutex);
2664 goto retry;
2665 }
2666 }
2667
2668 if (rc < 0) {
2669 /*
2670 * Initial scrub failed, we'll give it one more
2671 * try below...
2672 */
2673 break;
2674 }
2675
2676 /* We got some final results, record completed ranges */
2677 ars_status = acpi_desc->ars_status;
2678 if (init_scrub_length) {
2679 ars_start = init_scrub_address;
2680 ars_len = ars_start + init_scrub_length;
2681 } else {
2682 ars_start = ars_status->address;
2683 ars_len = ars_status->length;
2684 }
2685 spa = nfit_spa->spa;
2686
2687 if (!init_ars_done) {
2688 init_ars_done = true;
2689 dev_dbg(dev, "init scrub %#llx + %#llx complete\n",
2690 ars_start, ars_len);
2691 }
2692 if (ars_start <= spa->address && ars_start + ars_len
2693 >= spa->address + spa->length)
2694 acpi_nfit_register_region(acpi_desc, nfit_spa);
2695 }
2696
2697 /*
2698 * For all the ranges not covered by an initial scrub we still
2699 * want to see if there are errors, but it's ok to discover them
2700 * asynchronously.
2701 */
2702 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
2703 /*
2704 * Flag all the ranges that still need scrubbing, but
2705 * register them now to make data available.
2706 */
Vishal Verma37b137f2016-07-23 21:51:42 -07002707 if (!nfit_spa->nd_region) {
2708 nfit_spa->ars_required = 1;
Dan Williams1cf03c02016-02-17 13:01:23 -08002709 acpi_nfit_register_region(acpi_desc, nfit_spa);
Vishal Verma37b137f2016-07-23 21:51:42 -07002710 }
Dan Williams1cf03c02016-02-17 13:01:23 -08002711 }
Dan Williams9ccaed42017-04-13 22:48:46 -07002712 acpi_desc->init_complete = 1;
Dan Williams1cf03c02016-02-17 13:01:23 -08002713
2714 list_for_each_entry(nfit_spa, &acpi_desc->spas, list)
2715 acpi_nfit_async_scrub(acpi_desc, nfit_spa);
Vishal Verma37b137f2016-07-23 21:51:42 -07002716 acpi_desc->scrub_count++;
Toshi Kani80790032017-06-29 20:41:30 -06002717 acpi_desc->ars_start_flags = 0;
Vishal Verma37b137f2016-07-23 21:51:42 -07002718 if (acpi_desc->scrub_count_state)
2719 sysfs_notify_dirent(acpi_desc->scrub_count_state);
Dan Williams1cf03c02016-02-17 13:01:23 -08002720 mutex_unlock(&acpi_desc->init_mutex);
2721}
2722
Dan Williams1f7df6f2015-06-09 20:13:14 -04002723static int acpi_nfit_register_regions(struct acpi_nfit_desc *acpi_desc)
2724{
2725 struct nfit_spa *nfit_spa;
Dan Williams1cf03c02016-02-17 13:01:23 -08002726 int rc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002727
Dan Williams1cf03c02016-02-17 13:01:23 -08002728 list_for_each_entry(nfit_spa, &acpi_desc->spas, list)
2729 if (nfit_spa_type(nfit_spa->spa) == NFIT_SPA_DCR) {
2730 /* BLK regions don't need to wait for ars results */
2731 rc = acpi_nfit_register_region(acpi_desc, nfit_spa);
2732 if (rc)
2733 return rc;
2734 }
Dan Williams1f7df6f2015-06-09 20:13:14 -04002735
Toshi Kani80790032017-06-29 20:41:30 -06002736 acpi_desc->ars_start_flags = 0;
Dan Williamsfbabd822017-04-18 09:56:31 -07002737 if (!acpi_desc->cancel)
2738 queue_work(nfit_wq, &acpi_desc->work);
Dan Williams1f7df6f2015-06-09 20:13:14 -04002739 return 0;
2740}
2741
Vishal Verma20985162015-10-27 16:58:27 -06002742static int acpi_nfit_check_deletions(struct acpi_nfit_desc *acpi_desc,
2743 struct nfit_table_prev *prev)
2744{
2745 struct device *dev = acpi_desc->dev;
2746
2747 if (!list_empty(&prev->spas) ||
2748 !list_empty(&prev->memdevs) ||
2749 !list_empty(&prev->dcrs) ||
2750 !list_empty(&prev->bdws) ||
2751 !list_empty(&prev->idts) ||
2752 !list_empty(&prev->flushes)) {
2753 dev_err(dev, "new nfit deletes entries (unsupported)\n");
2754 return -ENXIO;
2755 }
2756 return 0;
2757}
2758
Vishal Verma37b137f2016-07-23 21:51:42 -07002759static int acpi_nfit_desc_init_scrub_attr(struct acpi_nfit_desc *acpi_desc)
2760{
2761 struct device *dev = acpi_desc->dev;
2762 struct kernfs_node *nfit;
2763 struct device *bus_dev;
2764
2765 if (!ars_supported(acpi_desc->nvdimm_bus))
2766 return 0;
2767
2768 bus_dev = to_nvdimm_bus_dev(acpi_desc->nvdimm_bus);
2769 nfit = sysfs_get_dirent(bus_dev->kobj.sd, "nfit");
2770 if (!nfit) {
2771 dev_err(dev, "sysfs_get_dirent 'nfit' failed\n");
2772 return -ENODEV;
2773 }
2774 acpi_desc->scrub_count_state = sysfs_get_dirent(nfit, "scrub");
2775 sysfs_put(nfit);
2776 if (!acpi_desc->scrub_count_state) {
2777 dev_err(dev, "sysfs_get_dirent 'scrub' failed\n");
2778 return -ENODEV;
2779 }
2780
2781 return 0;
2782}
2783
Dan Williamsfbabd822017-04-18 09:56:31 -07002784static void acpi_nfit_unregister(void *data)
Dan Williams58cd71b2016-07-21 18:05:36 -07002785{
2786 struct acpi_nfit_desc *acpi_desc = data;
2787
Dan Williams58cd71b2016-07-21 18:05:36 -07002788 nvdimm_bus_unregister(acpi_desc->nvdimm_bus);
Dan Williams58cd71b2016-07-21 18:05:36 -07002789}
2790
Dan Williamse7a11b42016-07-14 16:19:55 -07002791int acpi_nfit_init(struct acpi_nfit_desc *acpi_desc, void *data, acpi_size sz)
Dan Williamsb94d5232015-05-19 22:54:31 -04002792{
2793 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -06002794 struct nfit_table_prev prev;
Dan Williamsb94d5232015-05-19 22:54:31 -04002795 const void *end;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002796 int rc;
Dan Williamsb94d5232015-05-19 22:54:31 -04002797
Dan Williams58cd71b2016-07-21 18:05:36 -07002798 if (!acpi_desc->nvdimm_bus) {
Vishal Verma37b137f2016-07-23 21:51:42 -07002799 acpi_nfit_init_dsms(acpi_desc);
2800
Dan Williams58cd71b2016-07-21 18:05:36 -07002801 acpi_desc->nvdimm_bus = nvdimm_bus_register(dev,
2802 &acpi_desc->nd_desc);
2803 if (!acpi_desc->nvdimm_bus)
2804 return -ENOMEM;
Vishal Verma37b137f2016-07-23 21:51:42 -07002805
Dan Williamsfbabd822017-04-18 09:56:31 -07002806 rc = devm_add_action_or_reset(dev, acpi_nfit_unregister,
Dan Williams58cd71b2016-07-21 18:05:36 -07002807 acpi_desc);
2808 if (rc)
2809 return rc;
Vishal Verma37b137f2016-07-23 21:51:42 -07002810
2811 rc = acpi_nfit_desc_init_scrub_attr(acpi_desc);
2812 if (rc)
2813 return rc;
Vishal Verma6839a6d2016-07-23 21:51:21 -07002814
2815 /* register this acpi_desc for mce notifications */
2816 mutex_lock(&acpi_desc_lock);
2817 list_add_tail(&acpi_desc->list, &acpi_descs);
2818 mutex_unlock(&acpi_desc_lock);
Dan Williams58cd71b2016-07-21 18:05:36 -07002819 }
2820
Vishal Verma20985162015-10-27 16:58:27 -06002821 mutex_lock(&acpi_desc->init_mutex);
2822
2823 INIT_LIST_HEAD(&prev.spas);
2824 INIT_LIST_HEAD(&prev.memdevs);
2825 INIT_LIST_HEAD(&prev.dcrs);
2826 INIT_LIST_HEAD(&prev.bdws);
2827 INIT_LIST_HEAD(&prev.idts);
2828 INIT_LIST_HEAD(&prev.flushes);
2829
2830 list_cut_position(&prev.spas, &acpi_desc->spas,
2831 acpi_desc->spas.prev);
2832 list_cut_position(&prev.memdevs, &acpi_desc->memdevs,
2833 acpi_desc->memdevs.prev);
2834 list_cut_position(&prev.dcrs, &acpi_desc->dcrs,
2835 acpi_desc->dcrs.prev);
2836 list_cut_position(&prev.bdws, &acpi_desc->bdws,
2837 acpi_desc->bdws.prev);
2838 list_cut_position(&prev.idts, &acpi_desc->idts,
2839 acpi_desc->idts.prev);
2840 list_cut_position(&prev.flushes, &acpi_desc->flushes,
2841 acpi_desc->flushes.prev);
2842
Vishal Verma20985162015-10-27 16:58:27 -06002843 end = data + sz;
Vishal Verma20985162015-10-27 16:58:27 -06002844 while (!IS_ERR_OR_NULL(data))
2845 data = add_table(acpi_desc, &prev, data, end);
2846
2847 if (IS_ERR(data)) {
2848 dev_dbg(dev, "%s: nfit table parsing error: %ld\n", __func__,
2849 PTR_ERR(data));
2850 rc = PTR_ERR(data);
2851 goto out_unlock;
2852 }
2853
2854 rc = acpi_nfit_check_deletions(acpi_desc, &prev);
2855 if (rc)
2856 goto out_unlock;
2857
Dan Williams81ed4e32016-06-10 18:20:53 -07002858 rc = nfit_mem_init(acpi_desc);
2859 if (rc)
Vishal Verma20985162015-10-27 16:58:27 -06002860 goto out_unlock;
Vishal Verma20985162015-10-27 16:58:27 -06002861
2862 rc = acpi_nfit_register_dimms(acpi_desc);
2863 if (rc)
2864 goto out_unlock;
2865
2866 rc = acpi_nfit_register_regions(acpi_desc);
2867
2868 out_unlock:
2869 mutex_unlock(&acpi_desc->init_mutex);
2870 return rc;
2871}
2872EXPORT_SYMBOL_GPL(acpi_nfit_init);
2873
Dan Williams7ae0fa432016-02-19 12:16:34 -08002874struct acpi_nfit_flush_work {
2875 struct work_struct work;
2876 struct completion cmp;
2877};
2878
2879static void flush_probe(struct work_struct *work)
2880{
2881 struct acpi_nfit_flush_work *flush;
2882
2883 flush = container_of(work, typeof(*flush), work);
2884 complete(&flush->cmp);
2885}
2886
2887static int acpi_nfit_flush_probe(struct nvdimm_bus_descriptor *nd_desc)
2888{
2889 struct acpi_nfit_desc *acpi_desc = to_acpi_nfit_desc(nd_desc);
2890 struct device *dev = acpi_desc->dev;
2891 struct acpi_nfit_flush_work flush;
Dan Williamse4714862017-02-02 10:31:00 -08002892 int rc;
Dan Williams7ae0fa432016-02-19 12:16:34 -08002893
2894 /* bounce the device lock to flush acpi_nfit_add / acpi_nfit_notify */
2895 device_lock(dev);
2896 device_unlock(dev);
2897
Dan Williams9ccaed42017-04-13 22:48:46 -07002898 /* bounce the init_mutex to make init_complete valid */
2899 mutex_lock(&acpi_desc->init_mutex);
Dan Williamsfbabd822017-04-18 09:56:31 -07002900 if (acpi_desc->cancel || acpi_desc->init_complete) {
2901 mutex_unlock(&acpi_desc->init_mutex);
Dan Williams9ccaed42017-04-13 22:48:46 -07002902 return 0;
Dan Williamsfbabd822017-04-18 09:56:31 -07002903 }
Dan Williams9ccaed42017-04-13 22:48:46 -07002904
Dan Williams7ae0fa432016-02-19 12:16:34 -08002905 /*
2906 * Scrub work could take 10s of seconds, userspace may give up so we
2907 * need to be interruptible while waiting.
2908 */
2909 INIT_WORK_ONSTACK(&flush.work, flush_probe);
2910 COMPLETION_INITIALIZER_ONSTACK(flush.cmp);
2911 queue_work(nfit_wq, &flush.work);
Dan Williamsfbabd822017-04-18 09:56:31 -07002912 mutex_unlock(&acpi_desc->init_mutex);
Dan Williamse4714862017-02-02 10:31:00 -08002913
2914 rc = wait_for_completion_interruptible(&flush.cmp);
2915 cancel_work_sync(&flush.work);
2916 return rc;
Dan Williams7ae0fa432016-02-19 12:16:34 -08002917}
2918
Dan Williams87bf5722016-02-22 21:50:31 -08002919static int acpi_nfit_clear_to_send(struct nvdimm_bus_descriptor *nd_desc,
2920 struct nvdimm *nvdimm, unsigned int cmd)
2921{
2922 struct acpi_nfit_desc *acpi_desc = to_acpi_nfit_desc(nd_desc);
2923
2924 if (nvdimm)
2925 return 0;
2926 if (cmd != ND_CMD_ARS_START)
2927 return 0;
2928
2929 /*
2930 * The kernel and userspace may race to initiate a scrub, but
2931 * the scrub thread is prepared to lose that initial race. It
2932 * just needs guarantees that any ars it initiates are not
2933 * interrupted by any intervening start reqeusts from userspace.
2934 */
2935 if (work_busy(&acpi_desc->work))
2936 return -EBUSY;
2937
2938 return 0;
2939}
2940
Toshi Kani80790032017-06-29 20:41:30 -06002941int acpi_nfit_ars_rescan(struct acpi_nfit_desc *acpi_desc, u8 flags)
Vishal Verma37b137f2016-07-23 21:51:42 -07002942{
2943 struct device *dev = acpi_desc->dev;
2944 struct nfit_spa *nfit_spa;
2945
2946 if (work_busy(&acpi_desc->work))
2947 return -EBUSY;
2948
Vishal Verma37b137f2016-07-23 21:51:42 -07002949 mutex_lock(&acpi_desc->init_mutex);
Dan Williamsfbabd822017-04-18 09:56:31 -07002950 if (acpi_desc->cancel) {
2951 mutex_unlock(&acpi_desc->init_mutex);
2952 return 0;
2953 }
2954
Vishal Verma37b137f2016-07-23 21:51:42 -07002955 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
2956 struct acpi_nfit_system_address *spa = nfit_spa->spa;
2957
2958 if (nfit_spa_type(spa) != NFIT_SPA_PM)
2959 continue;
2960
2961 nfit_spa->ars_required = 1;
2962 }
Toshi Kani80790032017-06-29 20:41:30 -06002963 acpi_desc->ars_start_flags = flags;
Vishal Verma37b137f2016-07-23 21:51:42 -07002964 queue_work(nfit_wq, &acpi_desc->work);
2965 dev_dbg(dev, "%s: ars_scan triggered\n", __func__);
2966 mutex_unlock(&acpi_desc->init_mutex);
2967
2968 return 0;
2969}
2970
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002971void acpi_nfit_desc_init(struct acpi_nfit_desc *acpi_desc, struct device *dev)
Vishal Verma20985162015-10-27 16:58:27 -06002972{
2973 struct nvdimm_bus_descriptor *nd_desc;
Vishal Verma20985162015-10-27 16:58:27 -06002974
2975 dev_set_drvdata(dev, acpi_desc);
2976 acpi_desc->dev = dev;
2977 acpi_desc->blk_do_io = acpi_nfit_blk_region_do_io;
2978 nd_desc = &acpi_desc->nd_desc;
2979 nd_desc->provider_name = "ACPI.NFIT";
Dan Williamsbc9775d2016-07-21 20:03:19 -07002980 nd_desc->module = THIS_MODULE;
Vishal Verma20985162015-10-27 16:58:27 -06002981 nd_desc->ndctl = acpi_nfit_ctl;
Dan Williams7ae0fa432016-02-19 12:16:34 -08002982 nd_desc->flush_probe = acpi_nfit_flush_probe;
Dan Williams87bf5722016-02-22 21:50:31 -08002983 nd_desc->clear_to_send = acpi_nfit_clear_to_send;
Vishal Verma20985162015-10-27 16:58:27 -06002984 nd_desc->attr_groups = acpi_nfit_attribute_groups;
2985
Dan Williamsb94d5232015-05-19 22:54:31 -04002986 INIT_LIST_HEAD(&acpi_desc->spas);
2987 INIT_LIST_HEAD(&acpi_desc->dcrs);
2988 INIT_LIST_HEAD(&acpi_desc->bdws);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002989 INIT_LIST_HEAD(&acpi_desc->idts);
Ross Zwislerc2ad2952015-07-10 11:06:13 -06002990 INIT_LIST_HEAD(&acpi_desc->flushes);
Dan Williamsb94d5232015-05-19 22:54:31 -04002991 INIT_LIST_HEAD(&acpi_desc->memdevs);
2992 INIT_LIST_HEAD(&acpi_desc->dimms);
Vishal Verma6839a6d2016-07-23 21:51:21 -07002993 INIT_LIST_HEAD(&acpi_desc->list);
Vishal Verma20985162015-10-27 16:58:27 -06002994 mutex_init(&acpi_desc->init_mutex);
Dan Williams1cf03c02016-02-17 13:01:23 -08002995 INIT_WORK(&acpi_desc->work, acpi_nfit_scrub);
Dan Williamsb94d5232015-05-19 22:54:31 -04002996}
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002997EXPORT_SYMBOL_GPL(acpi_nfit_desc_init);
Dan Williamsb94d5232015-05-19 22:54:31 -04002998
Dan Williams3c87f372017-04-03 13:52:14 -07002999static void acpi_nfit_put_table(void *table)
3000{
3001 acpi_put_table(table);
3002}
3003
Dan Williamsfbabd822017-04-18 09:56:31 -07003004void acpi_nfit_shutdown(void *data)
3005{
3006 struct acpi_nfit_desc *acpi_desc = data;
3007 struct device *bus_dev = to_nvdimm_bus_dev(acpi_desc->nvdimm_bus);
3008
3009 /*
3010 * Destruct under acpi_desc_lock so that nfit_handle_mce does not
3011 * race teardown
3012 */
3013 mutex_lock(&acpi_desc_lock);
3014 list_del(&acpi_desc->list);
3015 mutex_unlock(&acpi_desc_lock);
3016
3017 mutex_lock(&acpi_desc->init_mutex);
3018 acpi_desc->cancel = 1;
3019 mutex_unlock(&acpi_desc->init_mutex);
3020
3021 /*
3022 * Bounce the nvdimm bus lock to make sure any in-flight
3023 * acpi_nfit_ars_rescan() submissions have had a chance to
3024 * either submit or see ->cancel set.
3025 */
3026 device_lock(bus_dev);
3027 device_unlock(bus_dev);
3028
3029 flush_workqueue(nfit_wq);
3030}
3031EXPORT_SYMBOL_GPL(acpi_nfit_shutdown);
3032
Dan Williamsb94d5232015-05-19 22:54:31 -04003033static int acpi_nfit_add(struct acpi_device *adev)
3034{
Vishal Verma20985162015-10-27 16:58:27 -06003035 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL };
Dan Williamsb94d5232015-05-19 22:54:31 -04003036 struct acpi_nfit_desc *acpi_desc;
3037 struct device *dev = &adev->dev;
3038 struct acpi_table_header *tbl;
3039 acpi_status status = AE_OK;
3040 acpi_size sz;
Dan Williams31932042016-07-14 17:22:48 -07003041 int rc = 0;
Dan Williamsb94d5232015-05-19 22:54:31 -04003042
Lv Zheng6b11d1d2016-12-14 15:04:39 +08003043 status = acpi_get_table(ACPI_SIG_NFIT, 0, &tbl);
Dan Williamsb94d5232015-05-19 22:54:31 -04003044 if (ACPI_FAILURE(status)) {
Vishal Verma20985162015-10-27 16:58:27 -06003045 /* This is ok, we could have an nvdimm hotplugged later */
3046 dev_dbg(dev, "failed to find NFIT at startup\n");
3047 return 0;
Dan Williamsb94d5232015-05-19 22:54:31 -04003048 }
Dan Williams3c87f372017-04-03 13:52:14 -07003049
3050 rc = devm_add_action_or_reset(dev, acpi_nfit_put_table, tbl);
3051 if (rc)
3052 return rc;
Lv Zheng6b11d1d2016-12-14 15:04:39 +08003053 sz = tbl->length;
Dan Williamsb94d5232015-05-19 22:54:31 -04003054
Dan Williamsa61fe6f2016-02-19 12:29:32 -08003055 acpi_desc = devm_kzalloc(dev, sizeof(*acpi_desc), GFP_KERNEL);
3056 if (!acpi_desc)
3057 return -ENOMEM;
3058 acpi_nfit_desc_init(acpi_desc, &adev->dev);
Dan Williamsb94d5232015-05-19 22:54:31 -04003059
Dan Williamse7a11b42016-07-14 16:19:55 -07003060 /* Save the acpi header for exporting the revision via sysfs */
Linda Knippers6b577c92015-11-20 19:05:49 -05003061 acpi_desc->acpi_header = *tbl;
Dan Williamsb94d5232015-05-19 22:54:31 -04003062
Vishal Verma20985162015-10-27 16:58:27 -06003063 /* Evaluate _FIT and override with that if present */
3064 status = acpi_evaluate_object(adev->handle, "_FIT", NULL, &buf);
3065 if (ACPI_SUCCESS(status) && buf.length > 0) {
Dan Williamse7a11b42016-07-14 16:19:55 -07003066 union acpi_object *obj = buf.pointer;
3067
3068 if (obj->type == ACPI_TYPE_BUFFER)
3069 rc = acpi_nfit_init(acpi_desc, obj->buffer.pointer,
3070 obj->buffer.length);
3071 else
Linda Knippers6b577c92015-11-20 19:05:49 -05003072 dev_dbg(dev, "%s invalid type %d, ignoring _FIT\n",
3073 __func__, (int) obj->type);
Dan Williams31932042016-07-14 17:22:48 -07003074 kfree(buf.pointer);
3075 } else
Dan Williamse7a11b42016-07-14 16:19:55 -07003076 /* skip over the lead-in header table */
3077 rc = acpi_nfit_init(acpi_desc, (void *) tbl
3078 + sizeof(struct acpi_table_nfit),
3079 sz - sizeof(struct acpi_table_nfit));
Dan Williamsfbabd822017-04-18 09:56:31 -07003080
3081 if (rc)
3082 return rc;
3083 return devm_add_action_or_reset(dev, acpi_nfit_shutdown, acpi_desc);
Dan Williamsb94d5232015-05-19 22:54:31 -04003084}
3085
3086static int acpi_nfit_remove(struct acpi_device *adev)
3087{
Dan Williamsfbabd822017-04-18 09:56:31 -07003088 /* see acpi_nfit_unregister */
Dan Williamsb94d5232015-05-19 22:54:31 -04003089 return 0;
3090}
3091
Toshi Kani56b47fe2017-06-08 12:36:57 -06003092static void acpi_nfit_update_notify(struct device *dev, acpi_handle handle)
Vishal Verma20985162015-10-27 16:58:27 -06003093{
Dan Williamsc14a8682016-08-18 22:15:04 -07003094 struct acpi_nfit_desc *acpi_desc = dev_get_drvdata(dev);
Vishal Verma20985162015-10-27 16:58:27 -06003095 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL };
Dan Williamse7a11b42016-07-14 16:19:55 -07003096 union acpi_object *obj;
Vishal Verma20985162015-10-27 16:58:27 -06003097 acpi_status status;
3098 int ret;
3099
Vishal Verma20985162015-10-27 16:58:27 -06003100 if (!dev->driver) {
3101 /* dev->driver may be null if we're being removed */
3102 dev_dbg(dev, "%s: no driver found for dev\n", __func__);
Dan Williamsc14a8682016-08-18 22:15:04 -07003103 return;
Vishal Verma20985162015-10-27 16:58:27 -06003104 }
3105
3106 if (!acpi_desc) {
Dan Williamsa61fe6f2016-02-19 12:29:32 -08003107 acpi_desc = devm_kzalloc(dev, sizeof(*acpi_desc), GFP_KERNEL);
3108 if (!acpi_desc)
Dan Williamsc14a8682016-08-18 22:15:04 -07003109 return;
3110 acpi_nfit_desc_init(acpi_desc, dev);
Dan Williams7ae0fa432016-02-19 12:16:34 -08003111 } else {
3112 /*
3113 * Finish previous registration before considering new
3114 * regions.
3115 */
3116 flush_workqueue(nfit_wq);
Vishal Verma20985162015-10-27 16:58:27 -06003117 }
3118
3119 /* Evaluate _FIT */
Dan Williamsc14a8682016-08-18 22:15:04 -07003120 status = acpi_evaluate_object(handle, "_FIT", NULL, &buf);
Vishal Verma20985162015-10-27 16:58:27 -06003121 if (ACPI_FAILURE(status)) {
3122 dev_err(dev, "failed to evaluate _FIT\n");
Dan Williamsc14a8682016-08-18 22:15:04 -07003123 return;
Vishal Verma20985162015-10-27 16:58:27 -06003124 }
3125
Linda Knippers6b577c92015-11-20 19:05:49 -05003126 obj = buf.pointer;
3127 if (obj->type == ACPI_TYPE_BUFFER) {
Dan Williamse7a11b42016-07-14 16:19:55 -07003128 ret = acpi_nfit_init(acpi_desc, obj->buffer.pointer,
3129 obj->buffer.length);
Dan Williams31932042016-07-14 17:22:48 -07003130 if (ret)
Linda Knippers6b577c92015-11-20 19:05:49 -05003131 dev_err(dev, "failed to merge updated NFIT\n");
Dan Williams31932042016-07-14 17:22:48 -07003132 } else
Linda Knippers6b577c92015-11-20 19:05:49 -05003133 dev_err(dev, "Invalid _FIT\n");
Vishal Verma20985162015-10-27 16:58:27 -06003134 kfree(buf.pointer);
Dan Williamsc14a8682016-08-18 22:15:04 -07003135}
Toshi Kani56b47fe2017-06-08 12:36:57 -06003136
3137static void acpi_nfit_uc_error_notify(struct device *dev, acpi_handle handle)
3138{
3139 struct acpi_nfit_desc *acpi_desc = dev_get_drvdata(dev);
Toshi Kani80790032017-06-29 20:41:30 -06003140 u8 flags = (acpi_desc->scrub_mode == HW_ERROR_SCRUB_ON) ?
3141 0 : ND_ARS_RETURN_PREV_DATA;
Toshi Kani56b47fe2017-06-08 12:36:57 -06003142
Toshi Kani80790032017-06-29 20:41:30 -06003143 acpi_nfit_ars_rescan(acpi_desc, flags);
Toshi Kani56b47fe2017-06-08 12:36:57 -06003144}
3145
3146void __acpi_nfit_notify(struct device *dev, acpi_handle handle, u32 event)
3147{
3148 dev_dbg(dev, "%s: event: 0x%x\n", __func__, event);
3149
3150 switch (event) {
3151 case NFIT_NOTIFY_UPDATE:
3152 return acpi_nfit_update_notify(dev, handle);
3153 case NFIT_NOTIFY_UC_MEMORY_ERROR:
3154 return acpi_nfit_uc_error_notify(dev, handle);
3155 default:
3156 return;
3157 }
3158}
Dan Williamsc14a8682016-08-18 22:15:04 -07003159EXPORT_SYMBOL_GPL(__acpi_nfit_notify);
Vishal Verma20985162015-10-27 16:58:27 -06003160
Dan Williamsc14a8682016-08-18 22:15:04 -07003161static void acpi_nfit_notify(struct acpi_device *adev, u32 event)
3162{
3163 device_lock(&adev->dev);
3164 __acpi_nfit_notify(&adev->dev, adev->handle, event);
3165 device_unlock(&adev->dev);
Vishal Verma20985162015-10-27 16:58:27 -06003166}
3167
Dan Williamsb94d5232015-05-19 22:54:31 -04003168static const struct acpi_device_id acpi_nfit_ids[] = {
3169 { "ACPI0012", 0 },
3170 { "", 0 },
3171};
3172MODULE_DEVICE_TABLE(acpi, acpi_nfit_ids);
3173
3174static struct acpi_driver acpi_nfit_driver = {
3175 .name = KBUILD_MODNAME,
3176 .ids = acpi_nfit_ids,
3177 .ops = {
3178 .add = acpi_nfit_add,
3179 .remove = acpi_nfit_remove,
Vishal Verma20985162015-10-27 16:58:27 -06003180 .notify = acpi_nfit_notify,
Dan Williamsb94d5232015-05-19 22:54:31 -04003181 },
3182};
3183
3184static __init int nfit_init(void)
3185{
Prarit Bhargava7e700d22017-05-31 13:32:00 -04003186 int ret;
3187
Dan Williamsb94d5232015-05-19 22:54:31 -04003188 BUILD_BUG_ON(sizeof(struct acpi_table_nfit) != 40);
3189 BUILD_BUG_ON(sizeof(struct acpi_nfit_system_address) != 56);
3190 BUILD_BUG_ON(sizeof(struct acpi_nfit_memory_map) != 48);
3191 BUILD_BUG_ON(sizeof(struct acpi_nfit_interleave) != 20);
3192 BUILD_BUG_ON(sizeof(struct acpi_nfit_smbios) != 9);
3193 BUILD_BUG_ON(sizeof(struct acpi_nfit_control_region) != 80);
3194 BUILD_BUG_ON(sizeof(struct acpi_nfit_data_region) != 40);
3195
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +03003196 guid_parse(UUID_VOLATILE_MEMORY, &nfit_uuid[NFIT_SPA_VOLATILE]);
3197 guid_parse(UUID_PERSISTENT_MEMORY, &nfit_uuid[NFIT_SPA_PM]);
3198 guid_parse(UUID_CONTROL_REGION, &nfit_uuid[NFIT_SPA_DCR]);
3199 guid_parse(UUID_DATA_REGION, &nfit_uuid[NFIT_SPA_BDW]);
3200 guid_parse(UUID_VOLATILE_VIRTUAL_DISK, &nfit_uuid[NFIT_SPA_VDISK]);
3201 guid_parse(UUID_VOLATILE_VIRTUAL_CD, &nfit_uuid[NFIT_SPA_VCD]);
3202 guid_parse(UUID_PERSISTENT_VIRTUAL_DISK, &nfit_uuid[NFIT_SPA_PDISK]);
3203 guid_parse(UUID_PERSISTENT_VIRTUAL_CD, &nfit_uuid[NFIT_SPA_PCD]);
3204 guid_parse(UUID_NFIT_BUS, &nfit_uuid[NFIT_DEV_BUS]);
3205 guid_parse(UUID_NFIT_DIMM, &nfit_uuid[NFIT_DEV_DIMM]);
3206 guid_parse(UUID_NFIT_DIMM_N_HPE1, &nfit_uuid[NFIT_DEV_DIMM_N_HPE1]);
3207 guid_parse(UUID_NFIT_DIMM_N_HPE2, &nfit_uuid[NFIT_DEV_DIMM_N_HPE2]);
3208 guid_parse(UUID_NFIT_DIMM_N_MSFT, &nfit_uuid[NFIT_DEV_DIMM_N_MSFT]);
Dan Williamsb94d5232015-05-19 22:54:31 -04003209
Dan Williams7ae0fa432016-02-19 12:16:34 -08003210 nfit_wq = create_singlethread_workqueue("nfit");
3211 if (!nfit_wq)
3212 return -ENOMEM;
3213
Vishal Verma6839a6d2016-07-23 21:51:21 -07003214 nfit_mce_register();
Prarit Bhargava7e700d22017-05-31 13:32:00 -04003215 ret = acpi_bus_register_driver(&acpi_nfit_driver);
3216 if (ret) {
3217 nfit_mce_unregister();
3218 destroy_workqueue(nfit_wq);
3219 }
Vishal Verma6839a6d2016-07-23 21:51:21 -07003220
Prarit Bhargava7e700d22017-05-31 13:32:00 -04003221 return ret;
3222
Dan Williamsb94d5232015-05-19 22:54:31 -04003223}
3224
3225static __exit void nfit_exit(void)
3226{
Vishal Verma6839a6d2016-07-23 21:51:21 -07003227 nfit_mce_unregister();
Dan Williamsb94d5232015-05-19 22:54:31 -04003228 acpi_bus_unregister_driver(&acpi_nfit_driver);
Dan Williams7ae0fa432016-02-19 12:16:34 -08003229 destroy_workqueue(nfit_wq);
Vishal Verma6839a6d2016-07-23 21:51:21 -07003230 WARN_ON(!list_empty(&acpi_descs));
Dan Williamsb94d5232015-05-19 22:54:31 -04003231}
3232
3233module_init(nfit_init);
3234module_exit(nfit_exit);
3235MODULE_LICENSE("GPL v2");
3236MODULE_AUTHOR("Intel Corporation");