blob: b16e4ef7a5cab2c30771d9ff17fe7e59a212cedb [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 Zwislerc2ad2952015-07-10 11:06:13 -060023#include <linux/pmem.h>
Ross Zwisler047fc8a2015-06-25 04:21:02 -040024#include <linux/io.h>
Dan Williams1cf03c02016-02-17 13:01:23 -080025#include <linux/nd.h>
Dan Williams96601ad2015-08-24 18:29:38 -040026#include <asm/cacheflush.h>
Dan Williamsb94d5232015-05-19 22:54:31 -040027#include "nfit.h"
28
Ross Zwisler047fc8a2015-06-25 04:21:02 -040029/*
30 * For readq() and writeq() on 32-bit builds, the hi-lo, lo-hi order is
31 * irrelevant.
32 */
Christoph Hellwig2f8e2c82015-08-28 09:27:14 +020033#include <linux/io-64-nonatomic-hi-lo.h>
Ross Zwisler047fc8a2015-06-25 04:21:02 -040034
Dan Williams4d88a972015-05-31 14:41:48 -040035static bool force_enable_dimms;
36module_param(force_enable_dimms, bool, S_IRUGO|S_IWUSR);
37MODULE_PARM_DESC(force_enable_dimms, "Ignore _STA (ACPI DIMM device) status");
38
Dan Williams1cf03c02016-02-17 13:01:23 -080039static unsigned int scrub_timeout = NFIT_ARS_TIMEOUT;
40module_param(scrub_timeout, uint, S_IRUGO|S_IWUSR);
41MODULE_PARM_DESC(scrub_timeout, "Initial scrub timeout in seconds");
42
43/* after three payloads of overflow, it's dead jim */
44static unsigned int scrub_overflow_abort = 3;
45module_param(scrub_overflow_abort, uint, S_IRUGO|S_IWUSR);
46MODULE_PARM_DESC(scrub_overflow_abort,
47 "Number of times we overflow ARS results before abort");
48
Dan Williams87554092016-04-28 18:01:20 -070049static bool disable_vendor_specific;
50module_param(disable_vendor_specific, bool, S_IRUGO);
51MODULE_PARM_DESC(disable_vendor_specific,
Linda Knippersf2668fa2017-03-07 16:35:14 -050052 "Limit commands to the publicly specified set");
Dan Williams87554092016-04-28 18:01:20 -070053
Linda Knippers095ab4b2017-03-07 16:35:12 -050054static unsigned long override_dsm_mask;
55module_param(override_dsm_mask, ulong, S_IRUGO);
56MODULE_PARM_DESC(override_dsm_mask, "Bitmask of allowed NVDIMM DSM functions");
57
Linda Knippersba650cf2017-03-07 16:35:13 -050058static int default_dsm_family = -1;
59module_param(default_dsm_family, int, S_IRUGO);
60MODULE_PARM_DESC(default_dsm_family,
61 "Try this DSM type first when identifying NVDIMM family");
62
Vishal Verma6839a6d2016-07-23 21:51:21 -070063LIST_HEAD(acpi_descs);
64DEFINE_MUTEX(acpi_desc_lock);
65
Dan Williams7ae0fa432016-02-19 12:16:34 -080066static struct workqueue_struct *nfit_wq;
67
Vishal Verma20985162015-10-27 16:58:27 -060068struct nfit_table_prev {
69 struct list_head spas;
70 struct list_head memdevs;
71 struct list_head dcrs;
72 struct list_head bdws;
73 struct list_head idts;
74 struct list_head flushes;
75};
76
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +030077static guid_t nfit_uuid[NFIT_UUID_MAX];
Dan Williamsb94d5232015-05-19 22:54:31 -040078
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +030079const guid_t *to_nfit_uuid(enum nfit_uuids id)
Dan Williamsb94d5232015-05-19 22:54:31 -040080{
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +030081 return &nfit_uuid[id];
Dan Williamsb94d5232015-05-19 22:54:31 -040082}
Dan Williams6bc75612015-06-17 17:23:32 -040083EXPORT_SYMBOL(to_nfit_uuid);
Dan Williamsb94d5232015-05-19 22:54:31 -040084
Dan Williams62232e452015-06-08 14:27:06 -040085static struct acpi_nfit_desc *to_acpi_nfit_desc(
86 struct nvdimm_bus_descriptor *nd_desc)
87{
88 return container_of(nd_desc, struct acpi_nfit_desc, nd_desc);
89}
90
91static struct acpi_device *to_acpi_dev(struct acpi_nfit_desc *acpi_desc)
92{
93 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
94
95 /*
96 * If provider == 'ACPI.NFIT' we can assume 'dev' is a struct
97 * acpi_device.
98 */
99 if (!nd_desc->provider_name
100 || strcmp(nd_desc->provider_name, "ACPI.NFIT") != 0)
101 return NULL;
102
103 return to_acpi_device(acpi_desc->dev);
104}
105
Dan Williamsd6eb2702016-12-06 15:06:55 -0800106static int xlat_bus_status(void *buf, unsigned int cmd, u32 status)
Dan Williamsaef25332016-02-12 17:01:11 -0800107{
Dan Williamsd4f32362016-03-03 16:08:54 -0800108 struct nd_cmd_clear_error *clear_err;
Dan Williamsaef25332016-02-12 17:01:11 -0800109 struct nd_cmd_ars_status *ars_status;
Dan Williamsaef25332016-02-12 17:01:11 -0800110 u16 flags;
111
112 switch (cmd) {
113 case ND_CMD_ARS_CAP:
Dan Williams11294d62016-09-21 09:21:26 -0700114 if ((status & 0xffff) == NFIT_ARS_CAP_NONE)
Dan Williamsaef25332016-02-12 17:01:11 -0800115 return -ENOTTY;
116
117 /* Command failed */
Dan Williams11294d62016-09-21 09:21:26 -0700118 if (status & 0xffff)
Dan Williamsaef25332016-02-12 17:01:11 -0800119 return -EIO;
120
121 /* No supported scan types for this range */
122 flags = ND_ARS_PERSISTENT | ND_ARS_VOLATILE;
Dan Williams11294d62016-09-21 09:21:26 -0700123 if ((status >> 16 & flags) == 0)
Dan Williamsaef25332016-02-12 17:01:11 -0800124 return -ENOTTY;
Vishal Verma9a901f52016-12-05 17:00:37 -0700125 return 0;
Dan Williamsaef25332016-02-12 17:01:11 -0800126 case ND_CMD_ARS_START:
Dan Williamsaef25332016-02-12 17:01:11 -0800127 /* ARS is in progress */
Dan Williams11294d62016-09-21 09:21:26 -0700128 if ((status & 0xffff) == NFIT_ARS_START_BUSY)
Dan Williamsaef25332016-02-12 17:01:11 -0800129 return -EBUSY;
130
131 /* Command failed */
Dan Williams11294d62016-09-21 09:21:26 -0700132 if (status & 0xffff)
Dan Williamsaef25332016-02-12 17:01:11 -0800133 return -EIO;
Vishal Verma9a901f52016-12-05 17:00:37 -0700134 return 0;
Dan Williamsaef25332016-02-12 17:01:11 -0800135 case ND_CMD_ARS_STATUS:
136 ars_status = buf;
137 /* Command failed */
Dan Williams11294d62016-09-21 09:21:26 -0700138 if (status & 0xffff)
Dan Williamsaef25332016-02-12 17:01:11 -0800139 return -EIO;
140 /* Check extended status (Upper two bytes) */
Dan Williams11294d62016-09-21 09:21:26 -0700141 if (status == NFIT_ARS_STATUS_DONE)
Dan Williamsaef25332016-02-12 17:01:11 -0800142 return 0;
143
144 /* ARS is in progress */
Dan Williams11294d62016-09-21 09:21:26 -0700145 if (status == NFIT_ARS_STATUS_BUSY)
Dan Williamsaef25332016-02-12 17:01:11 -0800146 return -EBUSY;
147
148 /* No ARS performed for the current boot */
Dan Williams11294d62016-09-21 09:21:26 -0700149 if (status == NFIT_ARS_STATUS_NONE)
Dan Williamsaef25332016-02-12 17:01:11 -0800150 return -EAGAIN;
151
152 /*
153 * ARS interrupted, either we overflowed or some other
154 * agent wants the scan to stop. If we didn't overflow
155 * then just continue with the returned results.
156 */
Dan Williams11294d62016-09-21 09:21:26 -0700157 if (status == NFIT_ARS_STATUS_INTR) {
Dan Williams82aa37c2016-12-06 12:45:24 -0800158 if (ars_status->out_length >= 40 && (ars_status->flags
159 & NFIT_ARS_F_OVERFLOW))
Dan Williamsaef25332016-02-12 17:01:11 -0800160 return -ENOSPC;
161 return 0;
162 }
163
164 /* Unknown status */
Dan Williams11294d62016-09-21 09:21:26 -0700165 if (status >> 16)
Dan Williamsaef25332016-02-12 17:01:11 -0800166 return -EIO;
Vishal Verma9a901f52016-12-05 17:00:37 -0700167 return 0;
Dan Williamsd4f32362016-03-03 16:08:54 -0800168 case ND_CMD_CLEAR_ERROR:
169 clear_err = buf;
Dan Williams11294d62016-09-21 09:21:26 -0700170 if (status & 0xffff)
Dan Williamsd4f32362016-03-03 16:08:54 -0800171 return -EIO;
172 if (!clear_err->cleared)
173 return -EIO;
174 if (clear_err->length > clear_err->cleared)
175 return clear_err->cleared;
Vishal Verma9a901f52016-12-05 17:00:37 -0700176 return 0;
Dan Williamsaef25332016-02-12 17:01:11 -0800177 default:
178 break;
179 }
180
Dan Williams11294d62016-09-21 09:21:26 -0700181 /* all other non-zero status results in an error */
182 if (status)
183 return -EIO;
Dan Williamsaef25332016-02-12 17:01:11 -0800184 return 0;
185}
186
Dan Williams9d62ed92017-05-04 11:47:22 -0700187static int xlat_nvdimm_status(void *buf, unsigned int cmd, u32 status)
188{
189 switch (cmd) {
190 case ND_CMD_GET_CONFIG_SIZE:
191 if (status >> 16 & ND_CONFIG_LOCKED)
192 return -EACCES;
193 break;
194 default:
195 break;
196 }
197
198 /* all other non-zero status results in an error */
199 if (status)
200 return -EIO;
201 return 0;
202}
203
Dan Williamsd6eb2702016-12-06 15:06:55 -0800204static int xlat_status(struct nvdimm *nvdimm, void *buf, unsigned int cmd,
205 u32 status)
206{
207 if (!nvdimm)
208 return xlat_bus_status(buf, cmd, status);
Dan Williams9d62ed92017-05-04 11:47:22 -0700209 return xlat_nvdimm_status(buf, cmd, status);
Dan Williamsd6eb2702016-12-06 15:06:55 -0800210}
211
Dan Williamsa7de92d2016-12-05 13:43:25 -0800212int acpi_nfit_ctl(struct nvdimm_bus_descriptor *nd_desc, struct nvdimm *nvdimm,
213 unsigned int cmd, void *buf, unsigned int buf_len, int *cmd_rc)
Dan Williamsb94d5232015-05-19 22:54:31 -0400214{
Dan Williams62232e452015-06-08 14:27:06 -0400215 struct acpi_nfit_desc *acpi_desc = to_acpi_nfit_desc(nd_desc);
Dan Williams62232e452015-06-08 14:27:06 -0400216 union acpi_object in_obj, in_buf, *out_obj;
Dan Williams31eca762016-04-28 16:23:43 -0700217 const struct nd_cmd_desc *desc = NULL;
Dan Williams62232e452015-06-08 14:27:06 -0400218 struct device *dev = acpi_desc->dev;
Dan Williams31eca762016-04-28 16:23:43 -0700219 struct nd_cmd_pkg *call_pkg = NULL;
Dan Williams62232e452015-06-08 14:27:06 -0400220 const char *cmd_name, *dimm_name;
Dan Williams31eca762016-04-28 16:23:43 -0700221 unsigned long cmd_mask, dsm_mask;
Dan Williams11294d62016-09-21 09:21:26 -0700222 u32 offset, fw_status = 0;
Dan Williams62232e452015-06-08 14:27:06 -0400223 acpi_handle handle;
Dan Williams31eca762016-04-28 16:23:43 -0700224 unsigned int func;
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +0300225 const guid_t *guid;
Dan Williams62232e452015-06-08 14:27:06 -0400226 int rc, i;
227
Dan Williams31eca762016-04-28 16:23:43 -0700228 func = cmd;
229 if (cmd == ND_CMD_CALL) {
230 call_pkg = buf;
231 func = call_pkg->nd_command;
232 }
233
Dan Williams62232e452015-06-08 14:27:06 -0400234 if (nvdimm) {
235 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
236 struct acpi_device *adev = nfit_mem->adev;
237
238 if (!adev)
239 return -ENOTTY;
Dan Williams31eca762016-04-28 16:23:43 -0700240 if (call_pkg && nfit_mem->family != call_pkg->nd_family)
241 return -ENOTTY;
242
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400243 dimm_name = nvdimm_name(nvdimm);
Dan Williams62232e452015-06-08 14:27:06 -0400244 cmd_name = nvdimm_cmd_name(cmd);
Dan Williamse3654ec2016-04-28 16:17:07 -0700245 cmd_mask = nvdimm_cmd_mask(nvdimm);
Dan Williams62232e452015-06-08 14:27:06 -0400246 dsm_mask = nfit_mem->dsm_mask;
247 desc = nd_cmd_dimm_desc(cmd);
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +0300248 guid = to_nfit_uuid(nfit_mem->family);
Dan Williams62232e452015-06-08 14:27:06 -0400249 handle = adev->handle;
250 } else {
251 struct acpi_device *adev = to_acpi_dev(acpi_desc);
252
253 cmd_name = nvdimm_bus_cmd_name(cmd);
Dan Williamse3654ec2016-04-28 16:17:07 -0700254 cmd_mask = nd_desc->cmd_mask;
Dan Williams31eca762016-04-28 16:23:43 -0700255 dsm_mask = cmd_mask;
Dan Williams62232e452015-06-08 14:27:06 -0400256 desc = nd_cmd_bus_desc(cmd);
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +0300257 guid = to_nfit_uuid(NFIT_DEV_BUS);
Dan Williams62232e452015-06-08 14:27:06 -0400258 handle = adev->handle;
259 dimm_name = "bus";
260 }
261
262 if (!desc || (cmd && (desc->out_num + desc->in_num == 0)))
263 return -ENOTTY;
264
Dan Williams31eca762016-04-28 16:23:43 -0700265 if (!test_bit(cmd, &cmd_mask) || !test_bit(func, &dsm_mask))
Dan Williams62232e452015-06-08 14:27:06 -0400266 return -ENOTTY;
267
268 in_obj.type = ACPI_TYPE_PACKAGE;
269 in_obj.package.count = 1;
270 in_obj.package.elements = &in_buf;
271 in_buf.type = ACPI_TYPE_BUFFER;
272 in_buf.buffer.pointer = buf;
273 in_buf.buffer.length = 0;
274
275 /* libnvdimm has already validated the input envelope */
276 for (i = 0; i < desc->in_num; i++)
277 in_buf.buffer.length += nd_cmd_in_size(nvdimm, cmd, desc,
278 i, buf);
279
Dan Williams31eca762016-04-28 16:23:43 -0700280 if (call_pkg) {
281 /* skip over package wrapper */
282 in_buf.buffer.pointer = (void *) &call_pkg->nd_payload;
283 in_buf.buffer.length = call_pkg->nd_size_in;
Dan Williams62232e452015-06-08 14:27:06 -0400284 }
285
Dan Williams7699a6a2017-04-28 13:54:30 -0700286 dev_dbg(dev, "%s:%s cmd: %d: func: %d input length: %d\n",
287 __func__, dimm_name, cmd, func, in_buf.buffer.length);
288 print_hex_dump_debug("nvdimm in ", DUMP_PREFIX_OFFSET, 4, 4,
Dan Williams31eca762016-04-28 16:23:43 -0700289 in_buf.buffer.pointer,
290 min_t(u32, 256, in_buf.buffer.length), true);
Dan Williams31eca762016-04-28 16:23:43 -0700291
Andy Shevchenko94116f82017-06-05 19:40:46 +0300292 out_obj = acpi_evaluate_dsm(handle, guid, 1, func, &in_obj);
Dan Williams62232e452015-06-08 14:27:06 -0400293 if (!out_obj) {
294 dev_dbg(dev, "%s:%s _DSM failed cmd: %s\n", __func__, dimm_name,
295 cmd_name);
296 return -EINVAL;
297 }
298
Dan Williams31eca762016-04-28 16:23:43 -0700299 if (call_pkg) {
300 call_pkg->nd_fw_size = out_obj->buffer.length;
301 memcpy(call_pkg->nd_payload + call_pkg->nd_size_in,
302 out_obj->buffer.pointer,
303 min(call_pkg->nd_fw_size, call_pkg->nd_size_out));
304
305 ACPI_FREE(out_obj);
306 /*
307 * Need to support FW function w/o known size in advance.
308 * Caller can determine required size based upon nd_fw_size.
309 * If we return an error (like elsewhere) then caller wouldn't
310 * be able to rely upon data returned to make calculation.
311 */
312 return 0;
313 }
314
Dan Williams62232e452015-06-08 14:27:06 -0400315 if (out_obj->package.type != ACPI_TYPE_BUFFER) {
316 dev_dbg(dev, "%s:%s unexpected output object type cmd: %s type: %d\n",
317 __func__, dimm_name, cmd_name, out_obj->type);
318 rc = -EINVAL;
319 goto out;
320 }
321
Dan Williams7699a6a2017-04-28 13:54:30 -0700322 dev_dbg(dev, "%s:%s cmd: %s output length: %d\n", __func__, dimm_name,
323 cmd_name, out_obj->buffer.length);
324 print_hex_dump_debug(cmd_name, DUMP_PREFIX_OFFSET, 4, 4,
325 out_obj->buffer.pointer,
326 min_t(u32, 128, out_obj->buffer.length), true);
Dan Williams62232e452015-06-08 14:27:06 -0400327
328 for (i = 0, offset = 0; i < desc->out_num; i++) {
329 u32 out_size = nd_cmd_out_size(nvdimm, cmd, desc, i, buf,
Dan Williamsefda1b5d2016-12-06 09:10:12 -0800330 (u32 *) out_obj->buffer.pointer,
331 out_obj->buffer.length - offset);
Dan Williams62232e452015-06-08 14:27:06 -0400332
333 if (offset + out_size > out_obj->buffer.length) {
334 dev_dbg(dev, "%s:%s output object underflow cmd: %s field: %d\n",
335 __func__, dimm_name, cmd_name, i);
336 break;
337 }
338
339 if (in_buf.buffer.length + offset + out_size > buf_len) {
340 dev_dbg(dev, "%s:%s output overrun cmd: %s field: %d\n",
341 __func__, dimm_name, cmd_name, i);
342 rc = -ENXIO;
343 goto out;
344 }
345 memcpy(buf + in_buf.buffer.length + offset,
346 out_obj->buffer.pointer + offset, out_size);
347 offset += out_size;
348 }
Dan Williams11294d62016-09-21 09:21:26 -0700349
350 /*
351 * Set fw_status for all the commands with a known format to be
352 * later interpreted by xlat_status().
353 */
354 if (i >= 1 && ((cmd >= ND_CMD_ARS_CAP && cmd <= ND_CMD_CLEAR_ERROR)
355 || (cmd >= ND_CMD_SMART && cmd <= ND_CMD_VENDOR)))
356 fw_status = *(u32 *) out_obj->buffer.pointer;
357
Dan Williams62232e452015-06-08 14:27:06 -0400358 if (offset + in_buf.buffer.length < buf_len) {
359 if (i >= 1) {
360 /*
361 * status valid, return the number of bytes left
362 * unfilled in the output buffer
363 */
364 rc = buf_len - offset - in_buf.buffer.length;
Dan Williamsaef25332016-02-12 17:01:11 -0800365 if (cmd_rc)
Dan Williamsd6eb2702016-12-06 15:06:55 -0800366 *cmd_rc = xlat_status(nvdimm, buf, cmd,
367 fw_status);
Dan Williams62232e452015-06-08 14:27:06 -0400368 } else {
369 dev_err(dev, "%s:%s underrun cmd: %s buf_len: %d out_len: %d\n",
370 __func__, dimm_name, cmd_name, buf_len,
371 offset);
372 rc = -ENXIO;
373 }
Dan Williams2eea6582016-05-02 09:11:53 -0700374 } else {
Dan Williams62232e452015-06-08 14:27:06 -0400375 rc = 0;
Dan Williams2eea6582016-05-02 09:11:53 -0700376 if (cmd_rc)
Dan Williamsd6eb2702016-12-06 15:06:55 -0800377 *cmd_rc = xlat_status(nvdimm, buf, cmd, fw_status);
Dan Williams2eea6582016-05-02 09:11:53 -0700378 }
Dan Williams62232e452015-06-08 14:27:06 -0400379
380 out:
381 ACPI_FREE(out_obj);
382
383 return rc;
Dan Williamsb94d5232015-05-19 22:54:31 -0400384}
Dan Williamsa7de92d2016-12-05 13:43:25 -0800385EXPORT_SYMBOL_GPL(acpi_nfit_ctl);
Dan Williamsb94d5232015-05-19 22:54:31 -0400386
387static const char *spa_type_name(u16 type)
388{
389 static const char *to_name[] = {
390 [NFIT_SPA_VOLATILE] = "volatile",
391 [NFIT_SPA_PM] = "pmem",
392 [NFIT_SPA_DCR] = "dimm-control-region",
393 [NFIT_SPA_BDW] = "block-data-window",
394 [NFIT_SPA_VDISK] = "volatile-disk",
395 [NFIT_SPA_VCD] = "volatile-cd",
396 [NFIT_SPA_PDISK] = "persistent-disk",
397 [NFIT_SPA_PCD] = "persistent-cd",
398
399 };
400
401 if (type > NFIT_SPA_PCD)
402 return "unknown";
403
404 return to_name[type];
405}
406
Vishal Verma6839a6d2016-07-23 21:51:21 -0700407int nfit_spa_type(struct acpi_nfit_system_address *spa)
Dan Williamsb94d5232015-05-19 22:54:31 -0400408{
409 int i;
410
411 for (i = 0; i < NFIT_UUID_MAX; i++)
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +0300412 if (guid_equal(to_nfit_uuid(i), (guid_t *)&spa->range_guid))
Dan Williamsb94d5232015-05-19 22:54:31 -0400413 return i;
414 return -1;
415}
416
417static bool add_spa(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600418 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400419 struct acpi_nfit_system_address *spa)
420{
421 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600422 struct nfit_spa *nfit_spa;
Dan Williamsb94d5232015-05-19 22:54:31 -0400423
Dan Williams31932042016-07-14 17:22:48 -0700424 if (spa->header.length != sizeof(*spa))
425 return false;
426
Vishal Verma20985162015-10-27 16:58:27 -0600427 list_for_each_entry(nfit_spa, &prev->spas, list) {
Dan Williams31932042016-07-14 17:22:48 -0700428 if (memcmp(nfit_spa->spa, spa, sizeof(*spa)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600429 list_move_tail(&nfit_spa->list, &acpi_desc->spas);
430 return true;
431 }
432 }
433
Dan Williams31932042016-07-14 17:22:48 -0700434 nfit_spa = devm_kzalloc(dev, sizeof(*nfit_spa) + sizeof(*spa),
435 GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400436 if (!nfit_spa)
437 return false;
438 INIT_LIST_HEAD(&nfit_spa->list);
Dan Williams31932042016-07-14 17:22:48 -0700439 memcpy(nfit_spa->spa, spa, sizeof(*spa));
Dan Williamsb94d5232015-05-19 22:54:31 -0400440 list_add_tail(&nfit_spa->list, &acpi_desc->spas);
441 dev_dbg(dev, "%s: spa index: %d type: %s\n", __func__,
442 spa->range_index,
443 spa_type_name(nfit_spa_type(spa)));
444 return true;
445}
446
447static bool add_memdev(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600448 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400449 struct acpi_nfit_memory_map *memdev)
450{
451 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600452 struct nfit_memdev *nfit_memdev;
Dan Williamsb94d5232015-05-19 22:54:31 -0400453
Dan Williams31932042016-07-14 17:22:48 -0700454 if (memdev->header.length != sizeof(*memdev))
455 return false;
456
Vishal Verma20985162015-10-27 16:58:27 -0600457 list_for_each_entry(nfit_memdev, &prev->memdevs, list)
Dan Williams31932042016-07-14 17:22:48 -0700458 if (memcmp(nfit_memdev->memdev, memdev, sizeof(*memdev)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600459 list_move_tail(&nfit_memdev->list, &acpi_desc->memdevs);
460 return true;
461 }
462
Dan Williams31932042016-07-14 17:22:48 -0700463 nfit_memdev = devm_kzalloc(dev, sizeof(*nfit_memdev) + sizeof(*memdev),
464 GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400465 if (!nfit_memdev)
466 return false;
467 INIT_LIST_HEAD(&nfit_memdev->list);
Dan Williams31932042016-07-14 17:22:48 -0700468 memcpy(nfit_memdev->memdev, memdev, sizeof(*memdev));
Dan Williamsb94d5232015-05-19 22:54:31 -0400469 list_add_tail(&nfit_memdev->list, &acpi_desc->memdevs);
Dan Williamscaa603a2017-04-14 10:27:11 -0700470 dev_dbg(dev, "%s: memdev handle: %#x spa: %d dcr: %d flags: %#x\n",
Dan Williamsb94d5232015-05-19 22:54:31 -0400471 __func__, memdev->device_handle, memdev->range_index,
Dan Williamscaa603a2017-04-14 10:27:11 -0700472 memdev->region_index, memdev->flags);
Dan Williamsb94d5232015-05-19 22:54:31 -0400473 return true;
474}
475
Dan Williams31932042016-07-14 17:22:48 -0700476/*
477 * An implementation may provide a truncated control region if no block windows
478 * are defined.
479 */
480static size_t sizeof_dcr(struct acpi_nfit_control_region *dcr)
481{
482 if (dcr->header.length < offsetof(struct acpi_nfit_control_region,
483 window_size))
484 return 0;
485 if (dcr->windows)
486 return sizeof(*dcr);
487 return offsetof(struct acpi_nfit_control_region, window_size);
488}
489
Dan Williamsb94d5232015-05-19 22:54:31 -0400490static bool add_dcr(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600491 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400492 struct acpi_nfit_control_region *dcr)
493{
494 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600495 struct nfit_dcr *nfit_dcr;
Dan Williamsb94d5232015-05-19 22:54:31 -0400496
Dan Williams31932042016-07-14 17:22:48 -0700497 if (!sizeof_dcr(dcr))
498 return false;
499
Vishal Verma20985162015-10-27 16:58:27 -0600500 list_for_each_entry(nfit_dcr, &prev->dcrs, list)
Dan Williams31932042016-07-14 17:22:48 -0700501 if (memcmp(nfit_dcr->dcr, dcr, sizeof_dcr(dcr)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600502 list_move_tail(&nfit_dcr->list, &acpi_desc->dcrs);
503 return true;
504 }
505
Dan Williams31932042016-07-14 17:22:48 -0700506 nfit_dcr = devm_kzalloc(dev, sizeof(*nfit_dcr) + sizeof(*dcr),
507 GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400508 if (!nfit_dcr)
509 return false;
510 INIT_LIST_HEAD(&nfit_dcr->list);
Dan Williams31932042016-07-14 17:22:48 -0700511 memcpy(nfit_dcr->dcr, dcr, sizeof_dcr(dcr));
Dan Williamsb94d5232015-05-19 22:54:31 -0400512 list_add_tail(&nfit_dcr->list, &acpi_desc->dcrs);
513 dev_dbg(dev, "%s: dcr index: %d windows: %d\n", __func__,
514 dcr->region_index, dcr->windows);
515 return true;
516}
517
518static bool add_bdw(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600519 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400520 struct acpi_nfit_data_region *bdw)
521{
522 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600523 struct nfit_bdw *nfit_bdw;
Dan Williamsb94d5232015-05-19 22:54:31 -0400524
Dan Williams31932042016-07-14 17:22:48 -0700525 if (bdw->header.length != sizeof(*bdw))
526 return false;
Vishal Verma20985162015-10-27 16:58:27 -0600527 list_for_each_entry(nfit_bdw, &prev->bdws, list)
Dan Williams31932042016-07-14 17:22:48 -0700528 if (memcmp(nfit_bdw->bdw, bdw, sizeof(*bdw)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600529 list_move_tail(&nfit_bdw->list, &acpi_desc->bdws);
530 return true;
531 }
532
Dan Williams31932042016-07-14 17:22:48 -0700533 nfit_bdw = devm_kzalloc(dev, sizeof(*nfit_bdw) + sizeof(*bdw),
534 GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400535 if (!nfit_bdw)
536 return false;
537 INIT_LIST_HEAD(&nfit_bdw->list);
Dan Williams31932042016-07-14 17:22:48 -0700538 memcpy(nfit_bdw->bdw, bdw, sizeof(*bdw));
Dan Williamsb94d5232015-05-19 22:54:31 -0400539 list_add_tail(&nfit_bdw->list, &acpi_desc->bdws);
540 dev_dbg(dev, "%s: bdw dcr: %d windows: %d\n", __func__,
541 bdw->region_index, bdw->windows);
542 return true;
543}
544
Dan Williams31932042016-07-14 17:22:48 -0700545static size_t sizeof_idt(struct acpi_nfit_interleave *idt)
546{
547 if (idt->header.length < sizeof(*idt))
548 return 0;
549 return sizeof(*idt) + sizeof(u32) * (idt->line_count - 1);
550}
551
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400552static bool add_idt(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600553 struct nfit_table_prev *prev,
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400554 struct acpi_nfit_interleave *idt)
555{
556 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600557 struct nfit_idt *nfit_idt;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400558
Dan Williams31932042016-07-14 17:22:48 -0700559 if (!sizeof_idt(idt))
560 return false;
561
562 list_for_each_entry(nfit_idt, &prev->idts, list) {
563 if (sizeof_idt(nfit_idt->idt) != sizeof_idt(idt))
564 continue;
565
566 if (memcmp(nfit_idt->idt, idt, sizeof_idt(idt)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600567 list_move_tail(&nfit_idt->list, &acpi_desc->idts);
568 return true;
569 }
Dan Williams31932042016-07-14 17:22:48 -0700570 }
Vishal Verma20985162015-10-27 16:58:27 -0600571
Dan Williams31932042016-07-14 17:22:48 -0700572 nfit_idt = devm_kzalloc(dev, sizeof(*nfit_idt) + sizeof_idt(idt),
573 GFP_KERNEL);
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400574 if (!nfit_idt)
575 return false;
576 INIT_LIST_HEAD(&nfit_idt->list);
Dan Williams31932042016-07-14 17:22:48 -0700577 memcpy(nfit_idt->idt, idt, sizeof_idt(idt));
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400578 list_add_tail(&nfit_idt->list, &acpi_desc->idts);
579 dev_dbg(dev, "%s: idt index: %d num_lines: %d\n", __func__,
580 idt->interleave_index, idt->line_count);
581 return true;
582}
583
Dan Williams31932042016-07-14 17:22:48 -0700584static size_t sizeof_flush(struct acpi_nfit_flush_address *flush)
585{
586 if (flush->header.length < sizeof(*flush))
587 return 0;
588 return sizeof(*flush) + sizeof(u64) * (flush->hint_count - 1);
589}
590
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600591static bool add_flush(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600592 struct nfit_table_prev *prev,
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600593 struct acpi_nfit_flush_address *flush)
594{
595 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600596 struct nfit_flush *nfit_flush;
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600597
Dan Williams31932042016-07-14 17:22:48 -0700598 if (!sizeof_flush(flush))
599 return false;
600
601 list_for_each_entry(nfit_flush, &prev->flushes, list) {
602 if (sizeof_flush(nfit_flush->flush) != sizeof_flush(flush))
603 continue;
604
605 if (memcmp(nfit_flush->flush, flush,
606 sizeof_flush(flush)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600607 list_move_tail(&nfit_flush->list, &acpi_desc->flushes);
608 return true;
609 }
Dan Williams31932042016-07-14 17:22:48 -0700610 }
Vishal Verma20985162015-10-27 16:58:27 -0600611
Dan Williams31932042016-07-14 17:22:48 -0700612 nfit_flush = devm_kzalloc(dev, sizeof(*nfit_flush)
613 + sizeof_flush(flush), GFP_KERNEL);
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600614 if (!nfit_flush)
615 return false;
616 INIT_LIST_HEAD(&nfit_flush->list);
Dan Williams31932042016-07-14 17:22:48 -0700617 memcpy(nfit_flush->flush, flush, sizeof_flush(flush));
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600618 list_add_tail(&nfit_flush->list, &acpi_desc->flushes);
619 dev_dbg(dev, "%s: nfit_flush handle: %d hint_count: %d\n", __func__,
620 flush->device_handle, flush->hint_count);
621 return true;
622}
623
Vishal Verma20985162015-10-27 16:58:27 -0600624static void *add_table(struct acpi_nfit_desc *acpi_desc,
625 struct nfit_table_prev *prev, void *table, const void *end)
Dan Williamsb94d5232015-05-19 22:54:31 -0400626{
627 struct device *dev = acpi_desc->dev;
628 struct acpi_nfit_header *hdr;
629 void *err = ERR_PTR(-ENOMEM);
630
631 if (table >= end)
632 return NULL;
633
634 hdr = table;
Vishal Verma564d5012015-10-27 16:58:26 -0600635 if (!hdr->length) {
636 dev_warn(dev, "found a zero length table '%d' parsing nfit\n",
637 hdr->type);
638 return NULL;
639 }
640
Dan Williamsb94d5232015-05-19 22:54:31 -0400641 switch (hdr->type) {
642 case ACPI_NFIT_TYPE_SYSTEM_ADDRESS:
Vishal Verma20985162015-10-27 16:58:27 -0600643 if (!add_spa(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400644 return err;
645 break;
646 case ACPI_NFIT_TYPE_MEMORY_MAP:
Vishal Verma20985162015-10-27 16:58:27 -0600647 if (!add_memdev(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400648 return err;
649 break;
650 case ACPI_NFIT_TYPE_CONTROL_REGION:
Vishal Verma20985162015-10-27 16:58:27 -0600651 if (!add_dcr(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400652 return err;
653 break;
654 case ACPI_NFIT_TYPE_DATA_REGION:
Vishal Verma20985162015-10-27 16:58:27 -0600655 if (!add_bdw(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400656 return err;
657 break;
Dan Williamsb94d5232015-05-19 22:54:31 -0400658 case ACPI_NFIT_TYPE_INTERLEAVE:
Vishal Verma20985162015-10-27 16:58:27 -0600659 if (!add_idt(acpi_desc, prev, table))
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400660 return err;
Dan Williamsb94d5232015-05-19 22:54:31 -0400661 break;
662 case ACPI_NFIT_TYPE_FLUSH_ADDRESS:
Vishal Verma20985162015-10-27 16:58:27 -0600663 if (!add_flush(acpi_desc, prev, table))
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600664 return err;
Dan Williamsb94d5232015-05-19 22:54:31 -0400665 break;
666 case ACPI_NFIT_TYPE_SMBIOS:
667 dev_dbg(dev, "%s: smbios\n", __func__);
668 break;
669 default:
670 dev_err(dev, "unknown table '%d' parsing nfit\n", hdr->type);
671 break;
672 }
673
674 return table + hdr->length;
675}
676
677static void nfit_mem_find_spa_bdw(struct acpi_nfit_desc *acpi_desc,
678 struct nfit_mem *nfit_mem)
679{
680 u32 device_handle = __to_nfit_memdev(nfit_mem)->device_handle;
681 u16 dcr = nfit_mem->dcr->region_index;
682 struct nfit_spa *nfit_spa;
683
684 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
685 u16 range_index = nfit_spa->spa->range_index;
686 int type = nfit_spa_type(nfit_spa->spa);
687 struct nfit_memdev *nfit_memdev;
688
689 if (type != NFIT_SPA_BDW)
690 continue;
691
692 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
693 if (nfit_memdev->memdev->range_index != range_index)
694 continue;
695 if (nfit_memdev->memdev->device_handle != device_handle)
696 continue;
697 if (nfit_memdev->memdev->region_index != dcr)
698 continue;
699
700 nfit_mem->spa_bdw = nfit_spa->spa;
701 return;
702 }
703 }
704
705 dev_dbg(acpi_desc->dev, "SPA-BDW not found for SPA-DCR %d\n",
706 nfit_mem->spa_dcr->range_index);
707 nfit_mem->bdw = NULL;
708}
709
Dan Williams6697b2c2016-02-04 16:51:00 -0800710static void nfit_mem_init_bdw(struct acpi_nfit_desc *acpi_desc,
Dan Williamsb94d5232015-05-19 22:54:31 -0400711 struct nfit_mem *nfit_mem, struct acpi_nfit_system_address *spa)
712{
713 u16 dcr = __to_nfit_memdev(nfit_mem)->region_index;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400714 struct nfit_memdev *nfit_memdev;
Dan Williamsb94d5232015-05-19 22:54:31 -0400715 struct nfit_bdw *nfit_bdw;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400716 struct nfit_idt *nfit_idt;
717 u16 idt_idx, range_index;
Dan Williamsb94d5232015-05-19 22:54:31 -0400718
Dan Williamsb94d5232015-05-19 22:54:31 -0400719 list_for_each_entry(nfit_bdw, &acpi_desc->bdws, list) {
720 if (nfit_bdw->bdw->region_index != dcr)
721 continue;
722 nfit_mem->bdw = nfit_bdw->bdw;
723 break;
724 }
725
726 if (!nfit_mem->bdw)
Dan Williams6697b2c2016-02-04 16:51:00 -0800727 return;
Dan Williamsb94d5232015-05-19 22:54:31 -0400728
729 nfit_mem_find_spa_bdw(acpi_desc, nfit_mem);
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400730
731 if (!nfit_mem->spa_bdw)
Dan Williams6697b2c2016-02-04 16:51:00 -0800732 return;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400733
734 range_index = nfit_mem->spa_bdw->range_index;
735 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
736 if (nfit_memdev->memdev->range_index != range_index ||
737 nfit_memdev->memdev->region_index != dcr)
738 continue;
739 nfit_mem->memdev_bdw = nfit_memdev->memdev;
740 idt_idx = nfit_memdev->memdev->interleave_index;
741 list_for_each_entry(nfit_idt, &acpi_desc->idts, list) {
742 if (nfit_idt->idt->interleave_index != idt_idx)
743 continue;
744 nfit_mem->idt_bdw = nfit_idt->idt;
745 break;
746 }
747 break;
748 }
Dan Williamsb94d5232015-05-19 22:54:31 -0400749}
750
Dan Williams14999342017-04-13 19:46:36 -0700751static int __nfit_mem_init(struct acpi_nfit_desc *acpi_desc,
Dan Williamsb94d5232015-05-19 22:54:31 -0400752 struct acpi_nfit_system_address *spa)
753{
754 struct nfit_mem *nfit_mem, *found;
755 struct nfit_memdev *nfit_memdev;
Dan Williams14999342017-04-13 19:46:36 -0700756 int type = spa ? nfit_spa_type(spa) : 0;
Dan Williamsb94d5232015-05-19 22:54:31 -0400757
758 switch (type) {
759 case NFIT_SPA_DCR:
760 case NFIT_SPA_PM:
761 break;
762 default:
Dan Williams14999342017-04-13 19:46:36 -0700763 if (spa)
764 return 0;
Dan Williamsb94d5232015-05-19 22:54:31 -0400765 }
766
Dan Williams14999342017-04-13 19:46:36 -0700767 /*
768 * This loop runs in two modes, when a dimm is mapped the loop
769 * adds memdev associations to an existing dimm, or creates a
770 * dimm. In the unmapped dimm case this loop sweeps for memdev
771 * instances with an invalid / zero range_index and adds those
772 * dimms without spa associations.
773 */
Dan Williamsb94d5232015-05-19 22:54:31 -0400774 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700775 struct nfit_flush *nfit_flush;
Dan Williams6697b2c2016-02-04 16:51:00 -0800776 struct nfit_dcr *nfit_dcr;
777 u32 device_handle;
778 u16 dcr;
Dan Williamsb94d5232015-05-19 22:54:31 -0400779
Dan Williams14999342017-04-13 19:46:36 -0700780 if (spa && nfit_memdev->memdev->range_index != spa->range_index)
781 continue;
782 if (!spa && nfit_memdev->memdev->range_index)
Dan Williamsb94d5232015-05-19 22:54:31 -0400783 continue;
784 found = NULL;
785 dcr = nfit_memdev->memdev->region_index;
Dan Williams6697b2c2016-02-04 16:51:00 -0800786 device_handle = nfit_memdev->memdev->device_handle;
Dan Williamsb94d5232015-05-19 22:54:31 -0400787 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list)
Dan Williams6697b2c2016-02-04 16:51:00 -0800788 if (__to_nfit_memdev(nfit_mem)->device_handle
789 == device_handle) {
Dan Williamsb94d5232015-05-19 22:54:31 -0400790 found = nfit_mem;
791 break;
792 }
793
794 if (found)
795 nfit_mem = found;
796 else {
797 nfit_mem = devm_kzalloc(acpi_desc->dev,
798 sizeof(*nfit_mem), GFP_KERNEL);
799 if (!nfit_mem)
800 return -ENOMEM;
801 INIT_LIST_HEAD(&nfit_mem->list);
Dan Williams8cc6ddf2016-04-05 15:26:50 -0700802 nfit_mem->acpi_desc = acpi_desc;
Dan Williams6697b2c2016-02-04 16:51:00 -0800803 list_add(&nfit_mem->list, &acpi_desc->dimms);
804 }
805
806 list_for_each_entry(nfit_dcr, &acpi_desc->dcrs, list) {
807 if (nfit_dcr->dcr->region_index != dcr)
808 continue;
809 /*
810 * Record the control region for the dimm. For
811 * the ACPI 6.1 case, where there are separate
812 * control regions for the pmem vs blk
813 * interfaces, be sure to record the extended
814 * blk details.
815 */
816 if (!nfit_mem->dcr)
817 nfit_mem->dcr = nfit_dcr->dcr;
818 else if (nfit_mem->dcr->windows == 0
819 && nfit_dcr->dcr->windows)
820 nfit_mem->dcr = nfit_dcr->dcr;
821 break;
822 }
823
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700824 list_for_each_entry(nfit_flush, &acpi_desc->flushes, list) {
Dan Williamse5ae3b22016-06-07 17:00:04 -0700825 struct acpi_nfit_flush_address *flush;
826 u16 i;
827
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700828 if (nfit_flush->flush->device_handle != device_handle)
829 continue;
830 nfit_mem->nfit_flush = nfit_flush;
Dan Williamse5ae3b22016-06-07 17:00:04 -0700831 flush = nfit_flush->flush;
832 nfit_mem->flush_wpq = devm_kzalloc(acpi_desc->dev,
833 flush->hint_count
834 * sizeof(struct resource), GFP_KERNEL);
835 if (!nfit_mem->flush_wpq)
836 return -ENOMEM;
837 for (i = 0; i < flush->hint_count; i++) {
838 struct resource *res = &nfit_mem->flush_wpq[i];
839
840 res->start = flush->hint_address[i];
841 res->end = res->start + 8 - 1;
842 }
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700843 break;
844 }
845
Dan Williams6697b2c2016-02-04 16:51:00 -0800846 if (dcr && !nfit_mem->dcr) {
847 dev_err(acpi_desc->dev, "SPA %d missing DCR %d\n",
848 spa->range_index, dcr);
849 return -ENODEV;
Dan Williamsb94d5232015-05-19 22:54:31 -0400850 }
851
852 if (type == NFIT_SPA_DCR) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400853 struct nfit_idt *nfit_idt;
854 u16 idt_idx;
855
Dan Williamsb94d5232015-05-19 22:54:31 -0400856 /* multiple dimms may share a SPA when interleaved */
857 nfit_mem->spa_dcr = spa;
858 nfit_mem->memdev_dcr = nfit_memdev->memdev;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400859 idt_idx = nfit_memdev->memdev->interleave_index;
860 list_for_each_entry(nfit_idt, &acpi_desc->idts, list) {
861 if (nfit_idt->idt->interleave_index != idt_idx)
862 continue;
863 nfit_mem->idt_dcr = nfit_idt->idt;
864 break;
865 }
Dan Williams6697b2c2016-02-04 16:51:00 -0800866 nfit_mem_init_bdw(acpi_desc, nfit_mem, spa);
Dan Williams14999342017-04-13 19:46:36 -0700867 } else if (type == NFIT_SPA_PM) {
Dan Williamsb94d5232015-05-19 22:54:31 -0400868 /*
869 * A single dimm may belong to multiple SPA-PM
870 * ranges, record at least one in addition to
871 * any SPA-DCR range.
872 */
873 nfit_mem->memdev_pmem = nfit_memdev->memdev;
Dan Williams14999342017-04-13 19:46:36 -0700874 } else
875 nfit_mem->memdev_dcr = nfit_memdev->memdev;
Dan Williamsb94d5232015-05-19 22:54:31 -0400876 }
877
878 return 0;
879}
880
881static int nfit_mem_cmp(void *priv, struct list_head *_a, struct list_head *_b)
882{
883 struct nfit_mem *a = container_of(_a, typeof(*a), list);
884 struct nfit_mem *b = container_of(_b, typeof(*b), list);
885 u32 handleA, handleB;
886
887 handleA = __to_nfit_memdev(a)->device_handle;
888 handleB = __to_nfit_memdev(b)->device_handle;
889 if (handleA < handleB)
890 return -1;
891 else if (handleA > handleB)
892 return 1;
893 return 0;
894}
895
896static int nfit_mem_init(struct acpi_nfit_desc *acpi_desc)
897{
898 struct nfit_spa *nfit_spa;
Dan Williams14999342017-04-13 19:46:36 -0700899 int rc;
900
Dan Williamsb94d5232015-05-19 22:54:31 -0400901
902 /*
903 * For each SPA-DCR or SPA-PMEM address range find its
904 * corresponding MEMDEV(s). From each MEMDEV find the
905 * corresponding DCR. Then, if we're operating on a SPA-DCR,
906 * try to find a SPA-BDW and a corresponding BDW that references
907 * the DCR. Throw it all into an nfit_mem object. Note, that
908 * BDWs are optional.
909 */
910 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
Dan Williams14999342017-04-13 19:46:36 -0700911 rc = __nfit_mem_init(acpi_desc, nfit_spa->spa);
Dan Williamsb94d5232015-05-19 22:54:31 -0400912 if (rc)
913 return rc;
914 }
915
Dan Williams14999342017-04-13 19:46:36 -0700916 /*
917 * If a DIMM has failed to be mapped into SPA there will be no
918 * SPA entries above. Find and register all the unmapped DIMMs
919 * for reporting and recovery purposes.
920 */
921 rc = __nfit_mem_init(acpi_desc, NULL);
922 if (rc)
923 return rc;
924
Dan Williamsb94d5232015-05-19 22:54:31 -0400925 list_sort(NULL, &acpi_desc->dimms, nfit_mem_cmp);
926
927 return 0;
928}
929
Dan Williams45def222015-04-26 19:26:48 -0400930static ssize_t revision_show(struct device *dev,
931 struct device_attribute *attr, char *buf)
932{
933 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
934 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
935 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
936
Linda Knippers6b577c92015-11-20 19:05:49 -0500937 return sprintf(buf, "%d\n", acpi_desc->acpi_header.revision);
Dan Williams45def222015-04-26 19:26:48 -0400938}
939static DEVICE_ATTR_RO(revision);
940
Vishal Verma9ffd6352016-09-30 17:19:29 -0600941static ssize_t hw_error_scrub_show(struct device *dev,
942 struct device_attribute *attr, char *buf)
943{
944 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
945 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
946 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
947
948 return sprintf(buf, "%d\n", acpi_desc->scrub_mode);
949}
950
951/*
952 * The 'hw_error_scrub' attribute can have the following values written to it:
953 * '0': Switch to the default mode where an exception will only insert
954 * the address of the memory error into the poison and badblocks lists.
955 * '1': Enable a full scrub to happen if an exception for a memory error is
956 * received.
957 */
958static ssize_t hw_error_scrub_store(struct device *dev,
959 struct device_attribute *attr, const char *buf, size_t size)
960{
961 struct nvdimm_bus_descriptor *nd_desc;
962 ssize_t rc;
963 long val;
964
965 rc = kstrtol(buf, 0, &val);
966 if (rc)
967 return rc;
968
969 device_lock(dev);
970 nd_desc = dev_get_drvdata(dev);
971 if (nd_desc) {
972 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
973
974 switch (val) {
975 case HW_ERROR_SCRUB_ON:
976 acpi_desc->scrub_mode = HW_ERROR_SCRUB_ON;
977 break;
978 case HW_ERROR_SCRUB_OFF:
979 acpi_desc->scrub_mode = HW_ERROR_SCRUB_OFF;
980 break;
981 default:
982 rc = -EINVAL;
983 break;
984 }
985 }
986 device_unlock(dev);
987 if (rc)
988 return rc;
989 return size;
990}
991static DEVICE_ATTR_RW(hw_error_scrub);
992
Vishal Verma37b137f2016-07-23 21:51:42 -0700993/*
994 * This shows the number of full Address Range Scrubs that have been
995 * completed since driver load time. Userspace can wait on this using
996 * select/poll etc. A '+' at the end indicates an ARS is in progress
997 */
998static ssize_t scrub_show(struct device *dev,
999 struct device_attribute *attr, char *buf)
1000{
1001 struct nvdimm_bus_descriptor *nd_desc;
1002 ssize_t rc = -ENXIO;
1003
1004 device_lock(dev);
1005 nd_desc = dev_get_drvdata(dev);
1006 if (nd_desc) {
1007 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
1008
1009 rc = sprintf(buf, "%d%s", acpi_desc->scrub_count,
1010 (work_busy(&acpi_desc->work)) ? "+\n" : "\n");
1011 }
1012 device_unlock(dev);
1013 return rc;
1014}
1015
Vishal Verma37b137f2016-07-23 21:51:42 -07001016static ssize_t scrub_store(struct device *dev,
1017 struct device_attribute *attr, const char *buf, size_t size)
1018{
1019 struct nvdimm_bus_descriptor *nd_desc;
1020 ssize_t rc;
1021 long val;
1022
1023 rc = kstrtol(buf, 0, &val);
1024 if (rc)
1025 return rc;
1026 if (val != 1)
1027 return -EINVAL;
1028
1029 device_lock(dev);
1030 nd_desc = dev_get_drvdata(dev);
1031 if (nd_desc) {
1032 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
1033
1034 rc = acpi_nfit_ars_rescan(acpi_desc);
1035 }
1036 device_unlock(dev);
1037 if (rc)
1038 return rc;
1039 return size;
1040}
1041static DEVICE_ATTR_RW(scrub);
1042
1043static bool ars_supported(struct nvdimm_bus *nvdimm_bus)
1044{
1045 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
1046 const unsigned long mask = 1 << ND_CMD_ARS_CAP | 1 << ND_CMD_ARS_START
1047 | 1 << ND_CMD_ARS_STATUS;
1048
1049 return (nd_desc->cmd_mask & mask) == mask;
1050}
1051
1052static umode_t nfit_visible(struct kobject *kobj, struct attribute *a, int n)
1053{
1054 struct device *dev = container_of(kobj, struct device, kobj);
1055 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
1056
1057 if (a == &dev_attr_scrub.attr && !ars_supported(nvdimm_bus))
1058 return 0;
1059 return a->mode;
1060}
1061
Dan Williams45def222015-04-26 19:26:48 -04001062static struct attribute *acpi_nfit_attributes[] = {
1063 &dev_attr_revision.attr,
Vishal Verma37b137f2016-07-23 21:51:42 -07001064 &dev_attr_scrub.attr,
Vishal Verma9ffd6352016-09-30 17:19:29 -06001065 &dev_attr_hw_error_scrub.attr,
Dan Williams45def222015-04-26 19:26:48 -04001066 NULL,
1067};
1068
Arvind Yadav5e937462017-06-22 15:44:41 +05301069static const struct attribute_group acpi_nfit_attribute_group = {
Dan Williams45def222015-04-26 19:26:48 -04001070 .name = "nfit",
1071 .attrs = acpi_nfit_attributes,
Vishal Verma37b137f2016-07-23 21:51:42 -07001072 .is_visible = nfit_visible,
Dan Williams45def222015-04-26 19:26:48 -04001073};
1074
Dan Williamsa61fe6f2016-02-19 12:29:32 -08001075static const struct attribute_group *acpi_nfit_attribute_groups[] = {
Dan Williams45def222015-04-26 19:26:48 -04001076 &nvdimm_bus_attribute_group,
1077 &acpi_nfit_attribute_group,
1078 NULL,
1079};
1080
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001081static struct acpi_nfit_memory_map *to_nfit_memdev(struct device *dev)
1082{
1083 struct nvdimm *nvdimm = to_nvdimm(dev);
1084 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1085
1086 return __to_nfit_memdev(nfit_mem);
1087}
1088
1089static struct acpi_nfit_control_region *to_nfit_dcr(struct device *dev)
1090{
1091 struct nvdimm *nvdimm = to_nvdimm(dev);
1092 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1093
1094 return nfit_mem->dcr;
1095}
1096
1097static ssize_t handle_show(struct device *dev,
1098 struct device_attribute *attr, char *buf)
1099{
1100 struct acpi_nfit_memory_map *memdev = to_nfit_memdev(dev);
1101
1102 return sprintf(buf, "%#x\n", memdev->device_handle);
1103}
1104static DEVICE_ATTR_RO(handle);
1105
1106static ssize_t phys_id_show(struct device *dev,
1107 struct device_attribute *attr, char *buf)
1108{
1109 struct acpi_nfit_memory_map *memdev = to_nfit_memdev(dev);
1110
1111 return sprintf(buf, "%#x\n", memdev->physical_id);
1112}
1113static DEVICE_ATTR_RO(phys_id);
1114
1115static ssize_t vendor_show(struct device *dev,
1116 struct device_attribute *attr, char *buf)
1117{
1118 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1119
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001120 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->vendor_id));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001121}
1122static DEVICE_ATTR_RO(vendor);
1123
1124static ssize_t rev_id_show(struct device *dev,
1125 struct device_attribute *attr, char *buf)
1126{
1127 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1128
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001129 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->revision_id));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001130}
1131static DEVICE_ATTR_RO(rev_id);
1132
1133static ssize_t device_show(struct device *dev,
1134 struct device_attribute *attr, char *buf)
1135{
1136 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1137
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001138 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->device_id));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001139}
1140static DEVICE_ATTR_RO(device);
1141
Dan Williams6ca72082016-04-29 10:33:23 -07001142static ssize_t subsystem_vendor_show(struct device *dev,
1143 struct device_attribute *attr, char *buf)
1144{
1145 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1146
1147 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->subsystem_vendor_id));
1148}
1149static DEVICE_ATTR_RO(subsystem_vendor);
1150
1151static ssize_t subsystem_rev_id_show(struct device *dev,
1152 struct device_attribute *attr, char *buf)
1153{
1154 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1155
1156 return sprintf(buf, "0x%04x\n",
1157 be16_to_cpu(dcr->subsystem_revision_id));
1158}
1159static DEVICE_ATTR_RO(subsystem_rev_id);
1160
1161static ssize_t subsystem_device_show(struct device *dev,
1162 struct device_attribute *attr, char *buf)
1163{
1164 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1165
1166 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->subsystem_device_id));
1167}
1168static DEVICE_ATTR_RO(subsystem_device);
1169
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001170static int num_nvdimm_formats(struct nvdimm *nvdimm)
1171{
1172 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1173 int formats = 0;
1174
1175 if (nfit_mem->memdev_pmem)
1176 formats++;
1177 if (nfit_mem->memdev_bdw)
1178 formats++;
1179 return formats;
1180}
1181
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001182static ssize_t format_show(struct device *dev,
1183 struct device_attribute *attr, char *buf)
1184{
1185 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1186
Dan Williams1bcbf422016-06-29 11:19:32 -07001187 return sprintf(buf, "0x%04x\n", le16_to_cpu(dcr->code));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001188}
1189static DEVICE_ATTR_RO(format);
1190
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001191static ssize_t format1_show(struct device *dev,
1192 struct device_attribute *attr, char *buf)
1193{
1194 u32 handle;
1195 ssize_t rc = -ENXIO;
1196 struct nfit_mem *nfit_mem;
1197 struct nfit_memdev *nfit_memdev;
1198 struct acpi_nfit_desc *acpi_desc;
1199 struct nvdimm *nvdimm = to_nvdimm(dev);
1200 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1201
1202 nfit_mem = nvdimm_provider_data(nvdimm);
1203 acpi_desc = nfit_mem->acpi_desc;
1204 handle = to_nfit_memdev(dev)->device_handle;
1205
1206 /* assumes DIMMs have at most 2 published interface codes */
1207 mutex_lock(&acpi_desc->init_mutex);
1208 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
1209 struct acpi_nfit_memory_map *memdev = nfit_memdev->memdev;
1210 struct nfit_dcr *nfit_dcr;
1211
1212 if (memdev->device_handle != handle)
1213 continue;
1214
1215 list_for_each_entry(nfit_dcr, &acpi_desc->dcrs, list) {
1216 if (nfit_dcr->dcr->region_index != memdev->region_index)
1217 continue;
1218 if (nfit_dcr->dcr->code == dcr->code)
1219 continue;
Dan Williams1bcbf422016-06-29 11:19:32 -07001220 rc = sprintf(buf, "0x%04x\n",
1221 le16_to_cpu(nfit_dcr->dcr->code));
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001222 break;
1223 }
1224 if (rc != ENXIO)
1225 break;
1226 }
1227 mutex_unlock(&acpi_desc->init_mutex);
1228 return rc;
1229}
1230static DEVICE_ATTR_RO(format1);
1231
1232static ssize_t formats_show(struct device *dev,
1233 struct device_attribute *attr, char *buf)
1234{
1235 struct nvdimm *nvdimm = to_nvdimm(dev);
1236
1237 return sprintf(buf, "%d\n", num_nvdimm_formats(nvdimm));
1238}
1239static DEVICE_ATTR_RO(formats);
1240
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001241static ssize_t serial_show(struct device *dev,
1242 struct device_attribute *attr, char *buf)
1243{
1244 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1245
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001246 return sprintf(buf, "0x%08x\n", be32_to_cpu(dcr->serial_number));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001247}
1248static DEVICE_ATTR_RO(serial);
1249
Dan Williamsa94e3fb2016-04-28 18:18:05 -07001250static ssize_t family_show(struct device *dev,
1251 struct device_attribute *attr, char *buf)
1252{
1253 struct nvdimm *nvdimm = to_nvdimm(dev);
1254 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1255
1256 if (nfit_mem->family < 0)
1257 return -ENXIO;
1258 return sprintf(buf, "%d\n", nfit_mem->family);
1259}
1260static DEVICE_ATTR_RO(family);
1261
1262static ssize_t dsm_mask_show(struct device *dev,
1263 struct device_attribute *attr, char *buf)
1264{
1265 struct nvdimm *nvdimm = to_nvdimm(dev);
1266 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1267
1268 if (nfit_mem->family < 0)
1269 return -ENXIO;
1270 return sprintf(buf, "%#lx\n", nfit_mem->dsm_mask);
1271}
1272static DEVICE_ATTR_RO(dsm_mask);
1273
Dan Williams58138822015-06-23 20:08:34 -04001274static ssize_t flags_show(struct device *dev,
1275 struct device_attribute *attr, char *buf)
1276{
1277 u16 flags = to_nfit_memdev(dev)->flags;
1278
Dan Williamsffab9382017-04-13 15:05:30 -07001279 return sprintf(buf, "%s%s%s%s%s%s%s\n",
Toshi Kani402bae52015-08-26 10:20:23 -06001280 flags & ACPI_NFIT_MEM_SAVE_FAILED ? "save_fail " : "",
1281 flags & ACPI_NFIT_MEM_RESTORE_FAILED ? "restore_fail " : "",
1282 flags & ACPI_NFIT_MEM_FLUSH_FAILED ? "flush_fail " : "",
Bob Mooreca321d12015-10-19 10:24:52 +08001283 flags & ACPI_NFIT_MEM_NOT_ARMED ? "not_armed " : "",
Dan Williamsffab9382017-04-13 15:05:30 -07001284 flags & ACPI_NFIT_MEM_HEALTH_OBSERVED ? "smart_event " : "",
1285 flags & ACPI_NFIT_MEM_MAP_FAILED ? "map_fail " : "",
1286 flags & ACPI_NFIT_MEM_HEALTH_ENABLED ? "smart_notify " : "");
Dan Williams58138822015-06-23 20:08:34 -04001287}
1288static DEVICE_ATTR_RO(flags);
1289
Toshi Kani38a879b2016-04-25 15:34:59 -06001290static ssize_t id_show(struct device *dev,
1291 struct device_attribute *attr, char *buf)
1292{
1293 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1294
1295 if (dcr->valid_fields & ACPI_NFIT_CONTROL_MFG_INFO_VALID)
1296 return sprintf(buf, "%04x-%02x-%04x-%08x\n",
1297 be16_to_cpu(dcr->vendor_id),
1298 dcr->manufacturing_location,
1299 be16_to_cpu(dcr->manufacturing_date),
1300 be32_to_cpu(dcr->serial_number));
1301 else
1302 return sprintf(buf, "%04x-%08x\n",
1303 be16_to_cpu(dcr->vendor_id),
1304 be32_to_cpu(dcr->serial_number));
1305}
1306static DEVICE_ATTR_RO(id);
1307
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001308static struct attribute *acpi_nfit_dimm_attributes[] = {
1309 &dev_attr_handle.attr,
1310 &dev_attr_phys_id.attr,
1311 &dev_attr_vendor.attr,
1312 &dev_attr_device.attr,
Dan Williams6ca72082016-04-29 10:33:23 -07001313 &dev_attr_rev_id.attr,
1314 &dev_attr_subsystem_vendor.attr,
1315 &dev_attr_subsystem_device.attr,
1316 &dev_attr_subsystem_rev_id.attr,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001317 &dev_attr_format.attr,
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001318 &dev_attr_formats.attr,
1319 &dev_attr_format1.attr,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001320 &dev_attr_serial.attr,
Dan Williams58138822015-06-23 20:08:34 -04001321 &dev_attr_flags.attr,
Toshi Kani38a879b2016-04-25 15:34:59 -06001322 &dev_attr_id.attr,
Dan Williamsa94e3fb2016-04-28 18:18:05 -07001323 &dev_attr_family.attr,
1324 &dev_attr_dsm_mask.attr,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001325 NULL,
1326};
1327
1328static umode_t acpi_nfit_dimm_attr_visible(struct kobject *kobj,
1329 struct attribute *a, int n)
1330{
1331 struct device *dev = container_of(kobj, struct device, kobj);
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001332 struct nvdimm *nvdimm = to_nvdimm(dev);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001333
Dan Williams14999342017-04-13 19:46:36 -07001334 if (!to_nfit_dcr(dev)) {
1335 /* Without a dcr only the memdev attributes can be surfaced */
1336 if (a == &dev_attr_handle.attr || a == &dev_attr_phys_id.attr
1337 || a == &dev_attr_flags.attr
1338 || a == &dev_attr_family.attr
1339 || a == &dev_attr_dsm_mask.attr)
1340 return a->mode;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001341 return 0;
Dan Williams14999342017-04-13 19:46:36 -07001342 }
1343
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001344 if (a == &dev_attr_format1.attr && num_nvdimm_formats(nvdimm) <= 1)
1345 return 0;
1346 return a->mode;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001347}
1348
Arvind Yadav5e937462017-06-22 15:44:41 +05301349static const struct attribute_group acpi_nfit_dimm_attribute_group = {
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001350 .name = "nfit",
1351 .attrs = acpi_nfit_dimm_attributes,
1352 .is_visible = acpi_nfit_dimm_attr_visible,
1353};
1354
1355static const struct attribute_group *acpi_nfit_dimm_attribute_groups[] = {
Dan Williams62232e452015-06-08 14:27:06 -04001356 &nvdimm_attribute_group,
Dan Williams4d88a972015-05-31 14:41:48 -04001357 &nd_device_attribute_group,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001358 &acpi_nfit_dimm_attribute_group,
1359 NULL,
1360};
1361
1362static struct nvdimm *acpi_nfit_dimm_by_handle(struct acpi_nfit_desc *acpi_desc,
1363 u32 device_handle)
1364{
1365 struct nfit_mem *nfit_mem;
1366
1367 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list)
1368 if (__to_nfit_memdev(nfit_mem)->device_handle == device_handle)
1369 return nfit_mem->nvdimm;
1370
1371 return NULL;
1372}
1373
Dan Williams231bf112016-08-22 19:23:25 -07001374void __acpi_nvdimm_notify(struct device *dev, u32 event)
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001375{
1376 struct nfit_mem *nfit_mem;
1377 struct acpi_nfit_desc *acpi_desc;
1378
1379 dev_dbg(dev->parent, "%s: %s: event: %d\n", dev_name(dev), __func__,
1380 event);
1381
1382 if (event != NFIT_NOTIFY_DIMM_HEALTH) {
1383 dev_dbg(dev->parent, "%s: unknown event: %d\n", dev_name(dev),
1384 event);
1385 return;
1386 }
1387
1388 acpi_desc = dev_get_drvdata(dev->parent);
1389 if (!acpi_desc)
1390 return;
1391
1392 /*
1393 * If we successfully retrieved acpi_desc, then we know nfit_mem data
1394 * is still valid.
1395 */
1396 nfit_mem = dev_get_drvdata(dev);
1397 if (nfit_mem && nfit_mem->flags_attr)
1398 sysfs_notify_dirent(nfit_mem->flags_attr);
1399}
Dan Williams231bf112016-08-22 19:23:25 -07001400EXPORT_SYMBOL_GPL(__acpi_nvdimm_notify);
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001401
1402static void acpi_nvdimm_notify(acpi_handle handle, u32 event, void *data)
1403{
1404 struct acpi_device *adev = data;
1405 struct device *dev = &adev->dev;
1406
1407 device_lock(dev->parent);
1408 __acpi_nvdimm_notify(dev, event);
1409 device_unlock(dev->parent);
1410}
1411
Dan Williams62232e452015-06-08 14:27:06 -04001412static int acpi_nfit_add_dimm(struct acpi_nfit_desc *acpi_desc,
1413 struct nfit_mem *nfit_mem, u32 device_handle)
1414{
1415 struct acpi_device *adev, *adev_dimm;
1416 struct device *dev = acpi_desc->dev;
Dan Williams31eca762016-04-28 16:23:43 -07001417 unsigned long dsm_mask;
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +03001418 const guid_t *guid;
Linda Knippers60e95f42015-07-22 16:17:22 -04001419 int i;
Linda Knippersba650cf2017-03-07 16:35:13 -05001420 int family = -1;
Dan Williams62232e452015-06-08 14:27:06 -04001421
Dan Williamse3654ec2016-04-28 16:17:07 -07001422 /* nfit test assumes 1:1 relationship between commands and dsms */
1423 nfit_mem->dsm_mask = acpi_desc->dimm_cmd_force_en;
Dan Williams31eca762016-04-28 16:23:43 -07001424 nfit_mem->family = NVDIMM_FAMILY_INTEL;
Dan Williams62232e452015-06-08 14:27:06 -04001425 adev = to_acpi_dev(acpi_desc);
1426 if (!adev)
1427 return 0;
1428
1429 adev_dimm = acpi_find_child_device(adev, device_handle, false);
1430 nfit_mem->adev = adev_dimm;
1431 if (!adev_dimm) {
1432 dev_err(dev, "no ACPI.NFIT device with _ADR %#x, disabling...\n",
1433 device_handle);
Dan Williams4d88a972015-05-31 14:41:48 -04001434 return force_enable_dimms ? 0 : -ENODEV;
Dan Williams62232e452015-06-08 14:27:06 -04001435 }
1436
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001437 if (ACPI_FAILURE(acpi_install_notify_handler(adev_dimm->handle,
1438 ACPI_DEVICE_NOTIFY, acpi_nvdimm_notify, adev_dimm))) {
1439 dev_err(dev, "%s: notification registration failed\n",
1440 dev_name(&adev_dimm->dev));
1441 return -ENXIO;
1442 }
1443
Dan Williams31eca762016-04-28 16:23:43 -07001444 /*
stuart hayese02fb722016-05-26 11:38:41 -05001445 * Until standardization materializes we need to consider 4
Dan Williamsa7225592016-07-19 12:32:39 -07001446 * different command sets. Note, that checking for function0 (bit0)
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +03001447 * tells us if any commands are reachable through this GUID.
Dan Williams31eca762016-04-28 16:23:43 -07001448 */
stuart hayese02fb722016-05-26 11:38:41 -05001449 for (i = NVDIMM_FAMILY_INTEL; i <= NVDIMM_FAMILY_MSFT; i++)
Dan Williamsa7225592016-07-19 12:32:39 -07001450 if (acpi_check_dsm(adev_dimm->handle, to_nfit_uuid(i), 1, 1))
Linda Knippersba650cf2017-03-07 16:35:13 -05001451 if (family < 0 || i == default_dsm_family)
1452 family = i;
Dan Williams31eca762016-04-28 16:23:43 -07001453
1454 /* limit the supported commands to those that are publicly documented */
Linda Knippersba650cf2017-03-07 16:35:13 -05001455 nfit_mem->family = family;
Linda Knippers095ab4b2017-03-07 16:35:12 -05001456 if (override_dsm_mask && !disable_vendor_specific)
1457 dsm_mask = override_dsm_mask;
1458 else if (nfit_mem->family == NVDIMM_FAMILY_INTEL) {
Dan Williams31eca762016-04-28 16:23:43 -07001459 dsm_mask = 0x3fe;
Dan Williams87554092016-04-28 18:01:20 -07001460 if (disable_vendor_specific)
1461 dsm_mask &= ~(1 << ND_CMD_VENDOR);
stuart hayese02fb722016-05-26 11:38:41 -05001462 } else if (nfit_mem->family == NVDIMM_FAMILY_HPE1) {
Dan Williams31eca762016-04-28 16:23:43 -07001463 dsm_mask = 0x1c3c76;
stuart hayese02fb722016-05-26 11:38:41 -05001464 } else if (nfit_mem->family == NVDIMM_FAMILY_HPE2) {
Dan Williams31eca762016-04-28 16:23:43 -07001465 dsm_mask = 0x1fe;
Dan Williams87554092016-04-28 18:01:20 -07001466 if (disable_vendor_specific)
1467 dsm_mask &= ~(1 << 8);
stuart hayese02fb722016-05-26 11:38:41 -05001468 } else if (nfit_mem->family == NVDIMM_FAMILY_MSFT) {
1469 dsm_mask = 0xffffffff;
Dan Williams87554092016-04-28 18:01:20 -07001470 } else {
Dan Williamsa7225592016-07-19 12:32:39 -07001471 dev_dbg(dev, "unknown dimm command family\n");
Dan Williams31eca762016-04-28 16:23:43 -07001472 nfit_mem->family = -1;
Dan Williamsa7225592016-07-19 12:32:39 -07001473 /* DSMs are optional, continue loading the driver... */
1474 return 0;
Dan Williams31eca762016-04-28 16:23:43 -07001475 }
1476
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +03001477 guid = to_nfit_uuid(nfit_mem->family);
Dan Williams31eca762016-04-28 16:23:43 -07001478 for_each_set_bit(i, &dsm_mask, BITS_PER_LONG)
Andy Shevchenko94116f82017-06-05 19:40:46 +03001479 if (acpi_check_dsm(adev_dimm->handle, guid, 1, 1ULL << i))
Dan Williams62232e452015-06-08 14:27:06 -04001480 set_bit(i, &nfit_mem->dsm_mask);
1481
Linda Knippers60e95f42015-07-22 16:17:22 -04001482 return 0;
Dan Williams62232e452015-06-08 14:27:06 -04001483}
1484
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001485static void shutdown_dimm_notify(void *data)
1486{
1487 struct acpi_nfit_desc *acpi_desc = data;
1488 struct nfit_mem *nfit_mem;
1489
1490 mutex_lock(&acpi_desc->init_mutex);
1491 /*
1492 * Clear out the nfit_mem->flags_attr and shut down dimm event
1493 * notifications.
1494 */
1495 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list) {
Dan Williams231bf112016-08-22 19:23:25 -07001496 struct acpi_device *adev_dimm = nfit_mem->adev;
1497
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001498 if (nfit_mem->flags_attr) {
1499 sysfs_put(nfit_mem->flags_attr);
1500 nfit_mem->flags_attr = NULL;
1501 }
Dan Williams231bf112016-08-22 19:23:25 -07001502 if (adev_dimm)
1503 acpi_remove_notify_handler(adev_dimm->handle,
1504 ACPI_DEVICE_NOTIFY, acpi_nvdimm_notify);
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001505 }
1506 mutex_unlock(&acpi_desc->init_mutex);
1507}
1508
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001509static int acpi_nfit_register_dimms(struct acpi_nfit_desc *acpi_desc)
1510{
1511 struct nfit_mem *nfit_mem;
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001512 int dimm_count = 0, rc;
1513 struct nvdimm *nvdimm;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001514
1515 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list) {
Dan Williamse5ae3b22016-06-07 17:00:04 -07001516 struct acpi_nfit_flush_address *flush;
Dan Williams31eca762016-04-28 16:23:43 -07001517 unsigned long flags = 0, cmd_mask;
Dan Williamscaa603a2017-04-14 10:27:11 -07001518 struct nfit_memdev *nfit_memdev;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001519 u32 device_handle;
Dan Williams58138822015-06-23 20:08:34 -04001520 u16 mem_flags;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001521
1522 device_handle = __to_nfit_memdev(nfit_mem)->device_handle;
1523 nvdimm = acpi_nfit_dimm_by_handle(acpi_desc, device_handle);
1524 if (nvdimm) {
Vishal Verma20985162015-10-27 16:58:27 -06001525 dimm_count++;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001526 continue;
1527 }
1528
1529 if (nfit_mem->bdw && nfit_mem->memdev_pmem)
Dan Williams8f078b32017-05-04 14:01:24 -07001530 set_bit(NDD_ALIASING, &flags);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001531
Dan Williamscaa603a2017-04-14 10:27:11 -07001532 /* collate flags across all memdevs for this dimm */
1533 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
1534 struct acpi_nfit_memory_map *dimm_memdev;
1535
1536 dimm_memdev = __to_nfit_memdev(nfit_mem);
1537 if (dimm_memdev->device_handle
1538 != nfit_memdev->memdev->device_handle)
1539 continue;
1540 dimm_memdev->flags |= nfit_memdev->memdev->flags;
1541 }
1542
Dan Williams58138822015-06-23 20:08:34 -04001543 mem_flags = __to_nfit_memdev(nfit_mem)->flags;
Bob Mooreca321d12015-10-19 10:24:52 +08001544 if (mem_flags & ACPI_NFIT_MEM_NOT_ARMED)
Dan Williams8f078b32017-05-04 14:01:24 -07001545 set_bit(NDD_UNARMED, &flags);
Dan Williams58138822015-06-23 20:08:34 -04001546
Dan Williams62232e452015-06-08 14:27:06 -04001547 rc = acpi_nfit_add_dimm(acpi_desc, nfit_mem, device_handle);
1548 if (rc)
1549 continue;
1550
Dan Williamse3654ec2016-04-28 16:17:07 -07001551 /*
Dan Williams31eca762016-04-28 16:23:43 -07001552 * TODO: provide translation for non-NVDIMM_FAMILY_INTEL
1553 * devices (i.e. from nd_cmd to acpi_dsm) to standardize the
1554 * userspace interface.
Dan Williamse3654ec2016-04-28 16:17:07 -07001555 */
Dan Williams31eca762016-04-28 16:23:43 -07001556 cmd_mask = 1UL << ND_CMD_CALL;
1557 if (nfit_mem->family == NVDIMM_FAMILY_INTEL)
1558 cmd_mask |= nfit_mem->dsm_mask;
1559
Dan Williamse5ae3b22016-06-07 17:00:04 -07001560 flush = nfit_mem->nfit_flush ? nfit_mem->nfit_flush->flush
1561 : NULL;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001562 nvdimm = nvdimm_create(acpi_desc->nvdimm_bus, nfit_mem,
Dan Williams62232e452015-06-08 14:27:06 -04001563 acpi_nfit_dimm_attribute_groups,
Dan Williamse5ae3b22016-06-07 17:00:04 -07001564 flags, cmd_mask, flush ? flush->hint_count : 0,
1565 nfit_mem->flush_wpq);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001566 if (!nvdimm)
1567 return -ENOMEM;
1568
1569 nfit_mem->nvdimm = nvdimm;
Dan Williams4d88a972015-05-31 14:41:48 -04001570 dimm_count++;
Dan Williams58138822015-06-23 20:08:34 -04001571
1572 if ((mem_flags & ACPI_NFIT_MEM_FAILED_MASK) == 0)
1573 continue;
1574
Dan Williams14999342017-04-13 19:46:36 -07001575 dev_info(acpi_desc->dev, "%s flags:%s%s%s%s%s\n",
Dan Williams58138822015-06-23 20:08:34 -04001576 nvdimm_name(nvdimm),
Toshi Kani402bae52015-08-26 10:20:23 -06001577 mem_flags & ACPI_NFIT_MEM_SAVE_FAILED ? " save_fail" : "",
1578 mem_flags & ACPI_NFIT_MEM_RESTORE_FAILED ? " restore_fail":"",
1579 mem_flags & ACPI_NFIT_MEM_FLUSH_FAILED ? " flush_fail" : "",
Dan Williams14999342017-04-13 19:46:36 -07001580 mem_flags & ACPI_NFIT_MEM_NOT_ARMED ? " not_armed" : "",
1581 mem_flags & ACPI_NFIT_MEM_MAP_FAILED ? " map_fail" : "");
Dan Williams58138822015-06-23 20:08:34 -04001582
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001583 }
1584
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001585 rc = nvdimm_bus_check_dimm_count(acpi_desc->nvdimm_bus, dimm_count);
1586 if (rc)
1587 return rc;
1588
1589 /*
1590 * Now that dimms are successfully registered, and async registration
1591 * is flushed, attempt to enable event notification.
1592 */
1593 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list) {
1594 struct kernfs_node *nfit_kernfs;
1595
1596 nvdimm = nfit_mem->nvdimm;
1597 nfit_kernfs = sysfs_get_dirent(nvdimm_kobj(nvdimm)->sd, "nfit");
1598 if (nfit_kernfs)
1599 nfit_mem->flags_attr = sysfs_get_dirent(nfit_kernfs,
1600 "flags");
1601 sysfs_put(nfit_kernfs);
1602 if (!nfit_mem->flags_attr)
1603 dev_warn(acpi_desc->dev, "%s: notifications disabled\n",
1604 nvdimm_name(nvdimm));
1605 }
1606
1607 return devm_add_action_or_reset(acpi_desc->dev, shutdown_dimm_notify,
1608 acpi_desc);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001609}
1610
Dan Williams62232e452015-06-08 14:27:06 -04001611static void acpi_nfit_init_dsms(struct acpi_nfit_desc *acpi_desc)
1612{
1613 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +03001614 const guid_t *guid = to_nfit_uuid(NFIT_DEV_BUS);
Dan Williams62232e452015-06-08 14:27:06 -04001615 struct acpi_device *adev;
1616 int i;
1617
Dan Williamse3654ec2016-04-28 16:17:07 -07001618 nd_desc->cmd_mask = acpi_desc->bus_cmd_force_en;
Dan Williams62232e452015-06-08 14:27:06 -04001619 adev = to_acpi_dev(acpi_desc);
1620 if (!adev)
1621 return;
1622
Dan Williamsd4f32362016-03-03 16:08:54 -08001623 for (i = ND_CMD_ARS_CAP; i <= ND_CMD_CLEAR_ERROR; i++)
Andy Shevchenko94116f82017-06-05 19:40:46 +03001624 if (acpi_check_dsm(adev->handle, guid, 1, 1ULL << i))
Dan Williamse3654ec2016-04-28 16:17:07 -07001625 set_bit(i, &nd_desc->cmd_mask);
Jerry Hoemann37d74842017-06-30 20:41:24 -07001626 set_bit(ND_CMD_CALL, &nd_desc->cmd_mask);
Dan Williams62232e452015-06-08 14:27:06 -04001627}
1628
Dan Williams1f7df6f2015-06-09 20:13:14 -04001629static ssize_t range_index_show(struct device *dev,
1630 struct device_attribute *attr, char *buf)
1631{
1632 struct nd_region *nd_region = to_nd_region(dev);
1633 struct nfit_spa *nfit_spa = nd_region_provider_data(nd_region);
1634
1635 return sprintf(buf, "%d\n", nfit_spa->spa->range_index);
1636}
1637static DEVICE_ATTR_RO(range_index);
1638
1639static struct attribute *acpi_nfit_region_attributes[] = {
1640 &dev_attr_range_index.attr,
1641 NULL,
1642};
1643
Arvind Yadav5e937462017-06-22 15:44:41 +05301644static const struct attribute_group acpi_nfit_region_attribute_group = {
Dan Williams1f7df6f2015-06-09 20:13:14 -04001645 .name = "nfit",
1646 .attrs = acpi_nfit_region_attributes,
1647};
1648
1649static const struct attribute_group *acpi_nfit_region_attribute_groups[] = {
1650 &nd_region_attribute_group,
1651 &nd_mapping_attribute_group,
Dan Williams3d880022015-05-31 15:02:11 -04001652 &nd_device_attribute_group,
Toshi Kani74ae66c2015-06-19 12:18:34 -06001653 &nd_numa_attribute_group,
Dan Williams1f7df6f2015-06-09 20:13:14 -04001654 &acpi_nfit_region_attribute_group,
1655 NULL,
1656};
1657
Dan Williamseaf96152015-05-01 13:11:27 -04001658/* enough info to uniquely specify an interleave set */
1659struct nfit_set_info {
1660 struct nfit_set_info_map {
1661 u64 region_offset;
1662 u32 serial_number;
1663 u32 pad;
1664 } mapping[0];
1665};
1666
Dan Williamsc12c48c2017-06-04 10:59:15 +09001667struct nfit_set_info2 {
1668 struct nfit_set_info_map2 {
1669 u64 region_offset;
1670 u32 serial_number;
1671 u16 vendor_id;
1672 u16 manufacturing_date;
1673 u8 manufacturing_location;
1674 u8 reserved[31];
1675 } mapping[0];
1676};
1677
Dan Williamseaf96152015-05-01 13:11:27 -04001678static size_t sizeof_nfit_set_info(int num_mappings)
1679{
1680 return sizeof(struct nfit_set_info)
1681 + num_mappings * sizeof(struct nfit_set_info_map);
1682}
1683
Dan Williamsc12c48c2017-06-04 10:59:15 +09001684static size_t sizeof_nfit_set_info2(int num_mappings)
1685{
1686 return sizeof(struct nfit_set_info2)
1687 + num_mappings * sizeof(struct nfit_set_info_map2);
1688}
1689
Dan Williams86ef58a2017-02-28 18:32:48 -08001690static int cmp_map_compat(const void *m0, const void *m1)
Dan Williamseaf96152015-05-01 13:11:27 -04001691{
1692 const struct nfit_set_info_map *map0 = m0;
1693 const struct nfit_set_info_map *map1 = m1;
1694
1695 return memcmp(&map0->region_offset, &map1->region_offset,
1696 sizeof(u64));
1697}
1698
Dan Williams86ef58a2017-02-28 18:32:48 -08001699static int cmp_map(const void *m0, const void *m1)
1700{
1701 const struct nfit_set_info_map *map0 = m0;
1702 const struct nfit_set_info_map *map1 = m1;
1703
Dan Williamsb03b99a2017-03-27 21:53:38 -07001704 if (map0->region_offset < map1->region_offset)
1705 return -1;
1706 else if (map0->region_offset > map1->region_offset)
1707 return 1;
1708 return 0;
Dan Williams86ef58a2017-02-28 18:32:48 -08001709}
1710
Dan Williamsc12c48c2017-06-04 10:59:15 +09001711static int cmp_map2(const void *m0, const void *m1)
1712{
1713 const struct nfit_set_info_map2 *map0 = m0;
1714 const struct nfit_set_info_map2 *map1 = m1;
1715
1716 if (map0->region_offset < map1->region_offset)
1717 return -1;
1718 else if (map0->region_offset > map1->region_offset)
1719 return 1;
1720 return 0;
1721}
1722
Dan Williamseaf96152015-05-01 13:11:27 -04001723/* Retrieve the nth entry referencing this spa */
1724static struct acpi_nfit_memory_map *memdev_from_spa(
1725 struct acpi_nfit_desc *acpi_desc, u16 range_index, int n)
1726{
1727 struct nfit_memdev *nfit_memdev;
1728
1729 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list)
1730 if (nfit_memdev->memdev->range_index == range_index)
1731 if (n-- == 0)
1732 return nfit_memdev->memdev;
1733 return NULL;
1734}
1735
1736static int acpi_nfit_init_interleave_set(struct acpi_nfit_desc *acpi_desc,
1737 struct nd_region_desc *ndr_desc,
1738 struct acpi_nfit_system_address *spa)
1739{
Dan Williamseaf96152015-05-01 13:11:27 -04001740 struct device *dev = acpi_desc->dev;
1741 struct nd_interleave_set *nd_set;
1742 u16 nr = ndr_desc->num_mappings;
Dan Williamsc12c48c2017-06-04 10:59:15 +09001743 struct nfit_set_info2 *info2;
Dan Williamseaf96152015-05-01 13:11:27 -04001744 struct nfit_set_info *info;
Dan Williams8f2bc242017-06-06 11:39:30 -07001745 int i;
Dan Williamseaf96152015-05-01 13:11:27 -04001746
Dan Williamsfaec6f82017-06-06 11:10:51 -07001747 nd_set = devm_kzalloc(dev, sizeof(*nd_set), GFP_KERNEL);
1748 if (!nd_set)
1749 return -ENOMEM;
1750 ndr_desc->nd_set = nd_set;
1751 guid_copy(&nd_set->type_guid, (guid_t *) spa->range_guid);
1752
Dan Williamseaf96152015-05-01 13:11:27 -04001753 info = devm_kzalloc(dev, sizeof_nfit_set_info(nr), GFP_KERNEL);
1754 if (!info)
1755 return -ENOMEM;
Dan Williamsc12c48c2017-06-04 10:59:15 +09001756
1757 info2 = devm_kzalloc(dev, sizeof_nfit_set_info2(nr), GFP_KERNEL);
1758 if (!info2)
1759 return -ENOMEM;
1760
Dan Williamseaf96152015-05-01 13:11:27 -04001761 for (i = 0; i < nr; i++) {
Dan Williams44c462e2016-09-19 16:38:50 -07001762 struct nd_mapping_desc *mapping = &ndr_desc->mapping[i];
Dan Williamseaf96152015-05-01 13:11:27 -04001763 struct nfit_set_info_map *map = &info->mapping[i];
Dan Williamsc12c48c2017-06-04 10:59:15 +09001764 struct nfit_set_info_map2 *map2 = &info2->mapping[i];
Dan Williams44c462e2016-09-19 16:38:50 -07001765 struct nvdimm *nvdimm = mapping->nvdimm;
Dan Williamseaf96152015-05-01 13:11:27 -04001766 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1767 struct acpi_nfit_memory_map *memdev = memdev_from_spa(acpi_desc,
1768 spa->range_index, i);
1769
1770 if (!memdev || !nfit_mem->dcr) {
1771 dev_err(dev, "%s: failed to find DCR\n", __func__);
1772 return -ENODEV;
1773 }
1774
1775 map->region_offset = memdev->region_offset;
1776 map->serial_number = nfit_mem->dcr->serial_number;
Dan Williamsc12c48c2017-06-04 10:59:15 +09001777
1778 map2->region_offset = memdev->region_offset;
1779 map2->serial_number = nfit_mem->dcr->serial_number;
1780 map2->vendor_id = nfit_mem->dcr->vendor_id;
1781 map2->manufacturing_date = nfit_mem->dcr->manufacturing_date;
1782 map2->manufacturing_location = nfit_mem->dcr->manufacturing_location;
Dan Williamseaf96152015-05-01 13:11:27 -04001783 }
1784
Dan Williamsc12c48c2017-06-04 10:59:15 +09001785 /* v1.1 namespaces */
Dan Williamseaf96152015-05-01 13:11:27 -04001786 sort(&info->mapping[0], nr, sizeof(struct nfit_set_info_map),
1787 cmp_map, NULL);
Dan Williamsc12c48c2017-06-04 10:59:15 +09001788 nd_set->cookie1 = nd_fletcher64(info, sizeof_nfit_set_info(nr), 0);
Dan Williams86ef58a2017-02-28 18:32:48 -08001789
Dan Williamsc12c48c2017-06-04 10:59:15 +09001790 /* v1.2 namespaces */
1791 sort(&info2->mapping[0], nr, sizeof(struct nfit_set_info_map2),
1792 cmp_map2, NULL);
1793 nd_set->cookie2 = nd_fletcher64(info2, sizeof_nfit_set_info2(nr), 0);
1794
1795 /* support v1.1 namespaces created with the wrong sort order */
Dan Williams86ef58a2017-02-28 18:32:48 -08001796 sort(&info->mapping[0], nr, sizeof(struct nfit_set_info_map),
1797 cmp_map_compat, NULL);
1798 nd_set->altcookie = nd_fletcher64(info, sizeof_nfit_set_info(nr), 0);
1799
Dan Williamseaf96152015-05-01 13:11:27 -04001800 ndr_desc->nd_set = nd_set;
1801 devm_kfree(dev, info);
Dan Williamsc12c48c2017-06-04 10:59:15 +09001802 devm_kfree(dev, info2);
Dan Williamseaf96152015-05-01 13:11:27 -04001803
1804 return 0;
1805}
1806
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001807static u64 to_interleave_offset(u64 offset, struct nfit_blk_mmio *mmio)
1808{
1809 struct acpi_nfit_interleave *idt = mmio->idt;
1810 u32 sub_line_offset, line_index, line_offset;
1811 u64 line_no, table_skip_count, table_offset;
1812
1813 line_no = div_u64_rem(offset, mmio->line_size, &sub_line_offset);
1814 table_skip_count = div_u64_rem(line_no, mmio->num_lines, &line_index);
1815 line_offset = idt->line_offset[line_index]
1816 * mmio->line_size;
1817 table_offset = table_skip_count * mmio->table_size;
1818
1819 return mmio->base_offset + line_offset + table_offset + sub_line_offset;
1820}
1821
Ross Zwislerde4a1962015-08-20 16:27:38 -06001822static u32 read_blk_stat(struct nfit_blk *nfit_blk, unsigned int bw)
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001823{
1824 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[DCR];
1825 u64 offset = nfit_blk->stat_offset + mmio->size * bw;
Ross Zwisler68202c92016-07-29 14:59:12 -06001826 const u32 STATUS_MASK = 0x80000037;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001827
1828 if (mmio->num_lines)
1829 offset = to_interleave_offset(offset, mmio);
1830
Ross Zwisler68202c92016-07-29 14:59:12 -06001831 return readl(mmio->addr.base + offset) & STATUS_MASK;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001832}
1833
1834static void write_blk_ctl(struct nfit_blk *nfit_blk, unsigned int bw,
1835 resource_size_t dpa, unsigned int len, unsigned int write)
1836{
1837 u64 cmd, offset;
1838 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[DCR];
1839
1840 enum {
1841 BCW_OFFSET_MASK = (1ULL << 48)-1,
1842 BCW_LEN_SHIFT = 48,
1843 BCW_LEN_MASK = (1ULL << 8) - 1,
1844 BCW_CMD_SHIFT = 56,
1845 };
1846
1847 cmd = (dpa >> L1_CACHE_SHIFT) & BCW_OFFSET_MASK;
1848 len = len >> L1_CACHE_SHIFT;
1849 cmd |= ((u64) len & BCW_LEN_MASK) << BCW_LEN_SHIFT;
1850 cmd |= ((u64) write) << BCW_CMD_SHIFT;
1851
1852 offset = nfit_blk->cmd_offset + mmio->size * bw;
1853 if (mmio->num_lines)
1854 offset = to_interleave_offset(offset, mmio);
1855
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001856 writeq(cmd, mmio->addr.base + offset);
Dan Williamsf284a4f2016-07-07 19:44:50 -07001857 nvdimm_flush(nfit_blk->nd_region);
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001858
Dan Williamsaef25332016-02-12 17:01:11 -08001859 if (nfit_blk->dimm_flags & NFIT_BLK_DCR_LATCH)
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001860 readq(mmio->addr.base + offset);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001861}
1862
1863static int acpi_nfit_blk_single_io(struct nfit_blk *nfit_blk,
1864 resource_size_t dpa, void *iobuf, size_t len, int rw,
1865 unsigned int lane)
1866{
1867 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[BDW];
1868 unsigned int copied = 0;
1869 u64 base_offset;
1870 int rc;
1871
1872 base_offset = nfit_blk->bdw_offset + dpa % L1_CACHE_BYTES
1873 + lane * mmio->size;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001874 write_blk_ctl(nfit_blk, lane, dpa, len, rw);
1875 while (len) {
1876 unsigned int c;
1877 u64 offset;
1878
1879 if (mmio->num_lines) {
1880 u32 line_offset;
1881
1882 offset = to_interleave_offset(base_offset + copied,
1883 mmio);
1884 div_u64_rem(offset, mmio->line_size, &line_offset);
1885 c = min_t(size_t, len, mmio->line_size - line_offset);
1886 } else {
1887 offset = base_offset + nfit_blk->bdw_offset;
1888 c = len;
1889 }
1890
1891 if (rw)
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001892 memcpy_to_pmem(mmio->addr.aperture + offset,
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001893 iobuf + copied, c);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001894 else {
Dan Williamsaef25332016-02-12 17:01:11 -08001895 if (nfit_blk->dimm_flags & NFIT_BLK_READ_FLUSH)
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001896 mmio_flush_range((void __force *)
1897 mmio->addr.aperture + offset, c);
1898
Dan Williams6abccd12017-01-13 14:14:23 -08001899 memcpy(iobuf + copied, mmio->addr.aperture + offset, c);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001900 }
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001901
1902 copied += c;
1903 len -= c;
1904 }
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001905
1906 if (rw)
Dan Williamsf284a4f2016-07-07 19:44:50 -07001907 nvdimm_flush(nfit_blk->nd_region);
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001908
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001909 rc = read_blk_stat(nfit_blk, lane) ? -EIO : 0;
1910 return rc;
1911}
1912
1913static int acpi_nfit_blk_region_do_io(struct nd_blk_region *ndbr,
1914 resource_size_t dpa, void *iobuf, u64 len, int rw)
1915{
1916 struct nfit_blk *nfit_blk = nd_blk_region_provider_data(ndbr);
1917 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[BDW];
1918 struct nd_region *nd_region = nfit_blk->nd_region;
1919 unsigned int lane, copied = 0;
1920 int rc = 0;
1921
1922 lane = nd_region_acquire_lane(nd_region);
1923 while (len) {
1924 u64 c = min(len, mmio->size);
1925
1926 rc = acpi_nfit_blk_single_io(nfit_blk, dpa + copied,
1927 iobuf + copied, c, rw, lane);
1928 if (rc)
1929 break;
1930
1931 copied += c;
1932 len -= c;
1933 }
1934 nd_region_release_lane(nd_region, lane);
1935
1936 return rc;
1937}
1938
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001939static int nfit_blk_init_interleave(struct nfit_blk_mmio *mmio,
1940 struct acpi_nfit_interleave *idt, u16 interleave_ways)
1941{
1942 if (idt) {
1943 mmio->num_lines = idt->line_count;
1944 mmio->line_size = idt->line_size;
1945 if (interleave_ways == 0)
1946 return -ENXIO;
1947 mmio->table_size = mmio->num_lines * interleave_ways
1948 * mmio->line_size;
1949 }
1950
1951 return 0;
1952}
1953
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001954static int acpi_nfit_blk_get_flags(struct nvdimm_bus_descriptor *nd_desc,
1955 struct nvdimm *nvdimm, struct nfit_blk *nfit_blk)
1956{
1957 struct nd_cmd_dimm_flags flags;
1958 int rc;
1959
1960 memset(&flags, 0, sizeof(flags));
1961 rc = nd_desc->ndctl(nd_desc, nvdimm, ND_CMD_DIMM_FLAGS, &flags,
Dan Williamsaef25332016-02-12 17:01:11 -08001962 sizeof(flags), NULL);
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001963
1964 if (rc >= 0 && flags.status == 0)
1965 nfit_blk->dimm_flags = flags.flags;
1966 else if (rc == -ENOTTY) {
1967 /* fall back to a conservative default */
Dan Williamsaef25332016-02-12 17:01:11 -08001968 nfit_blk->dimm_flags = NFIT_BLK_DCR_LATCH | NFIT_BLK_READ_FLUSH;
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001969 rc = 0;
1970 } else
1971 rc = -ENXIO;
1972
1973 return rc;
1974}
1975
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001976static int acpi_nfit_blk_region_enable(struct nvdimm_bus *nvdimm_bus,
1977 struct device *dev)
1978{
1979 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001980 struct nd_blk_region *ndbr = to_nd_blk_region(dev);
1981 struct nfit_blk_mmio *mmio;
1982 struct nfit_blk *nfit_blk;
1983 struct nfit_mem *nfit_mem;
1984 struct nvdimm *nvdimm;
1985 int rc;
1986
1987 nvdimm = nd_blk_region_to_dimm(ndbr);
1988 nfit_mem = nvdimm_provider_data(nvdimm);
1989 if (!nfit_mem || !nfit_mem->dcr || !nfit_mem->bdw) {
1990 dev_dbg(dev, "%s: missing%s%s%s\n", __func__,
1991 nfit_mem ? "" : " nfit_mem",
Dan Williams193ccca2015-06-30 16:09:39 -04001992 (nfit_mem && nfit_mem->dcr) ? "" : " dcr",
1993 (nfit_mem && nfit_mem->bdw) ? "" : " bdw");
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001994 return -ENXIO;
1995 }
1996
1997 nfit_blk = devm_kzalloc(dev, sizeof(*nfit_blk), GFP_KERNEL);
1998 if (!nfit_blk)
1999 return -ENOMEM;
2000 nd_blk_region_set_provider_data(ndbr, nfit_blk);
2001 nfit_blk->nd_region = to_nd_region(dev);
2002
2003 /* map block aperture memory */
2004 nfit_blk->bdw_offset = nfit_mem->bdw->offset;
2005 mmio = &nfit_blk->mmio[BDW];
Dan Williams29b9aa02016-06-06 17:42:38 -07002006 mmio->addr.base = devm_nvdimm_memremap(dev, nfit_mem->spa_bdw->address,
2007 nfit_mem->spa_bdw->length, ARCH_MEMREMAP_PMEM);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06002008 if (!mmio->addr.base) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002009 dev_dbg(dev, "%s: %s failed to map bdw\n", __func__,
2010 nvdimm_name(nvdimm));
2011 return -ENOMEM;
2012 }
2013 mmio->size = nfit_mem->bdw->size;
2014 mmio->base_offset = nfit_mem->memdev_bdw->region_offset;
2015 mmio->idt = nfit_mem->idt_bdw;
2016 mmio->spa = nfit_mem->spa_bdw;
2017 rc = nfit_blk_init_interleave(mmio, nfit_mem->idt_bdw,
2018 nfit_mem->memdev_bdw->interleave_ways);
2019 if (rc) {
2020 dev_dbg(dev, "%s: %s failed to init bdw interleave\n",
2021 __func__, nvdimm_name(nvdimm));
2022 return rc;
2023 }
2024
2025 /* map block control memory */
2026 nfit_blk->cmd_offset = nfit_mem->dcr->command_offset;
2027 nfit_blk->stat_offset = nfit_mem->dcr->status_offset;
2028 mmio = &nfit_blk->mmio[DCR];
Dan Williams29b9aa02016-06-06 17:42:38 -07002029 mmio->addr.base = devm_nvdimm_ioremap(dev, nfit_mem->spa_dcr->address,
2030 nfit_mem->spa_dcr->length);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06002031 if (!mmio->addr.base) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002032 dev_dbg(dev, "%s: %s failed to map dcr\n", __func__,
2033 nvdimm_name(nvdimm));
2034 return -ENOMEM;
2035 }
2036 mmio->size = nfit_mem->dcr->window_size;
2037 mmio->base_offset = nfit_mem->memdev_dcr->region_offset;
2038 mmio->idt = nfit_mem->idt_dcr;
2039 mmio->spa = nfit_mem->spa_dcr;
2040 rc = nfit_blk_init_interleave(mmio, nfit_mem->idt_dcr,
2041 nfit_mem->memdev_dcr->interleave_ways);
2042 if (rc) {
2043 dev_dbg(dev, "%s: %s failed to init dcr interleave\n",
2044 __func__, nvdimm_name(nvdimm));
2045 return rc;
2046 }
2047
Ross Zwislerf0f2c072015-07-10 11:06:14 -06002048 rc = acpi_nfit_blk_get_flags(nd_desc, nvdimm, nfit_blk);
2049 if (rc < 0) {
2050 dev_dbg(dev, "%s: %s failed get DIMM flags\n",
2051 __func__, nvdimm_name(nvdimm));
2052 return rc;
2053 }
2054
Dan Williamsf284a4f2016-07-07 19:44:50 -07002055 if (nvdimm_has_flush(nfit_blk->nd_region) < 0)
Ross Zwislerc2ad2952015-07-10 11:06:13 -06002056 dev_warn(dev, "unable to guarantee persistence of writes\n");
2057
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002058 if (mmio->line_size == 0)
2059 return 0;
2060
2061 if ((u32) nfit_blk->cmd_offset % mmio->line_size
2062 + 8 > mmio->line_size) {
2063 dev_dbg(dev, "cmd_offset crosses interleave boundary\n");
2064 return -ENXIO;
2065 } else if ((u32) nfit_blk->stat_offset % mmio->line_size
2066 + 8 > mmio->line_size) {
2067 dev_dbg(dev, "stat_offset crosses interleave boundary\n");
2068 return -ENXIO;
2069 }
2070
2071 return 0;
2072}
2073
Dan Williamsaef25332016-02-12 17:01:11 -08002074static int ars_get_cap(struct acpi_nfit_desc *acpi_desc,
Dan Williams1cf03c02016-02-17 13:01:23 -08002075 struct nd_cmd_ars_cap *cmd, struct nfit_spa *nfit_spa)
Vishal Verma0caeef62015-12-24 19:21:43 -07002076{
Dan Williamsaef25332016-02-12 17:01:11 -08002077 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
Dan Williams1cf03c02016-02-17 13:01:23 -08002078 struct acpi_nfit_system_address *spa = nfit_spa->spa;
Dan Williamsaef25332016-02-12 17:01:11 -08002079 int cmd_rc, rc;
2080
Dan Williams1cf03c02016-02-17 13:01:23 -08002081 cmd->address = spa->address;
2082 cmd->length = spa->length;
Dan Williamsaef25332016-02-12 17:01:11 -08002083 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_CAP, cmd,
2084 sizeof(*cmd), &cmd_rc);
2085 if (rc < 0)
2086 return rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08002087 return cmd_rc;
Vishal Verma0caeef62015-12-24 19:21:43 -07002088}
2089
Dan Williams1cf03c02016-02-17 13:01:23 -08002090static int ars_start(struct acpi_nfit_desc *acpi_desc, struct nfit_spa *nfit_spa)
Vishal Verma0caeef62015-12-24 19:21:43 -07002091{
2092 int rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08002093 int cmd_rc;
2094 struct nd_cmd_ars_start ars_start;
2095 struct acpi_nfit_system_address *spa = nfit_spa->spa;
2096 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
Vishal Verma0caeef62015-12-24 19:21:43 -07002097
Dan Williams1cf03c02016-02-17 13:01:23 -08002098 memset(&ars_start, 0, sizeof(ars_start));
2099 ars_start.address = spa->address;
2100 ars_start.length = spa->length;
2101 if (nfit_spa_type(spa) == NFIT_SPA_PM)
2102 ars_start.type = ND_ARS_PERSISTENT;
2103 else if (nfit_spa_type(spa) == NFIT_SPA_VOLATILE)
2104 ars_start.type = ND_ARS_VOLATILE;
2105 else
2106 return -ENOTTY;
Vishal Verma0caeef62015-12-24 19:21:43 -07002107
Dan Williams1cf03c02016-02-17 13:01:23 -08002108 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_START, &ars_start,
2109 sizeof(ars_start), &cmd_rc);
Dan Williamsaef25332016-02-12 17:01:11 -08002110
Dan Williams1cf03c02016-02-17 13:01:23 -08002111 if (rc < 0)
2112 return rc;
2113 return cmd_rc;
Vishal Verma0caeef62015-12-24 19:21:43 -07002114}
2115
Dan Williams1cf03c02016-02-17 13:01:23 -08002116static int ars_continue(struct acpi_nfit_desc *acpi_desc)
Vishal Verma0caeef62015-12-24 19:21:43 -07002117{
Dan Williamsaef25332016-02-12 17:01:11 -08002118 int rc, cmd_rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08002119 struct nd_cmd_ars_start ars_start;
2120 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
2121 struct nd_cmd_ars_status *ars_status = acpi_desc->ars_status;
Vishal Verma0caeef62015-12-24 19:21:43 -07002122
Dan Williams1cf03c02016-02-17 13:01:23 -08002123 memset(&ars_start, 0, sizeof(ars_start));
2124 ars_start.address = ars_status->restart_address;
2125 ars_start.length = ars_status->restart_length;
2126 ars_start.type = ars_status->type;
2127 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_START, &ars_start,
2128 sizeof(ars_start), &cmd_rc);
2129 if (rc < 0)
2130 return rc;
2131 return cmd_rc;
2132}
Dan Williamsaef25332016-02-12 17:01:11 -08002133
Dan Williams1cf03c02016-02-17 13:01:23 -08002134static int ars_get_status(struct acpi_nfit_desc *acpi_desc)
2135{
2136 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
2137 struct nd_cmd_ars_status *ars_status = acpi_desc->ars_status;
2138 int rc, cmd_rc;
Dan Williamsaef25332016-02-12 17:01:11 -08002139
Dan Williams1cf03c02016-02-17 13:01:23 -08002140 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_STATUS, ars_status,
2141 acpi_desc->ars_status_size, &cmd_rc);
2142 if (rc < 0)
2143 return rc;
2144 return cmd_rc;
Vishal Verma0caeef62015-12-24 19:21:43 -07002145}
2146
Dan Williams82aa37c2016-12-06 12:45:24 -08002147static int ars_status_process_records(struct acpi_nfit_desc *acpi_desc,
Dan Williams1cf03c02016-02-17 13:01:23 -08002148 struct nd_cmd_ars_status *ars_status)
Vishal Verma0caeef62015-12-24 19:21:43 -07002149{
Dan Williams82aa37c2016-12-06 12:45:24 -08002150 struct nvdimm_bus *nvdimm_bus = acpi_desc->nvdimm_bus;
Vishal Verma0caeef62015-12-24 19:21:43 -07002151 int rc;
2152 u32 i;
2153
Dan Williams82aa37c2016-12-06 12:45:24 -08002154 /*
2155 * First record starts at 44 byte offset from the start of the
2156 * payload.
2157 */
2158 if (ars_status->out_length < 44)
2159 return 0;
Vishal Verma0caeef62015-12-24 19:21:43 -07002160 for (i = 0; i < ars_status->num_records; i++) {
Dan Williams82aa37c2016-12-06 12:45:24 -08002161 /* only process full records */
2162 if (ars_status->out_length
2163 < 44 + sizeof(struct nd_ars_record) * (i + 1))
2164 break;
Vishal Verma0caeef62015-12-24 19:21:43 -07002165 rc = nvdimm_bus_add_poison(nvdimm_bus,
2166 ars_status->records[i].err_address,
2167 ars_status->records[i].length);
2168 if (rc)
2169 return rc;
2170 }
Dan Williams82aa37c2016-12-06 12:45:24 -08002171 if (i < ars_status->num_records)
2172 dev_warn(acpi_desc->dev, "detected truncated ars results\n");
Vishal Verma0caeef62015-12-24 19:21:43 -07002173
2174 return 0;
2175}
2176
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002177static void acpi_nfit_remove_resource(void *data)
2178{
2179 struct resource *res = data;
2180
2181 remove_resource(res);
2182}
2183
2184static int acpi_nfit_insert_resource(struct acpi_nfit_desc *acpi_desc,
2185 struct nd_region_desc *ndr_desc)
2186{
2187 struct resource *res, *nd_res = ndr_desc->res;
2188 int is_pmem, ret;
2189
2190 /* No operation if the region is already registered as PMEM */
2191 is_pmem = region_intersects(nd_res->start, resource_size(nd_res),
2192 IORESOURCE_MEM, IORES_DESC_PERSISTENT_MEMORY);
2193 if (is_pmem == REGION_INTERSECTS)
2194 return 0;
2195
2196 res = devm_kzalloc(acpi_desc->dev, sizeof(*res), GFP_KERNEL);
2197 if (!res)
2198 return -ENOMEM;
2199
2200 res->name = "Persistent Memory";
2201 res->start = nd_res->start;
2202 res->end = nd_res->end;
2203 res->flags = IORESOURCE_MEM;
2204 res->desc = IORES_DESC_PERSISTENT_MEMORY;
2205
2206 ret = insert_resource(&iomem_resource, res);
2207 if (ret)
2208 return ret;
2209
Sajjan, Vikas Cd932dd22016-07-04 10:02:51 +05302210 ret = devm_add_action_or_reset(acpi_desc->dev,
2211 acpi_nfit_remove_resource,
2212 res);
2213 if (ret)
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002214 return ret;
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002215
2216 return 0;
2217}
2218
Dan Williams1f7df6f2015-06-09 20:13:14 -04002219static int acpi_nfit_init_mapping(struct acpi_nfit_desc *acpi_desc,
Dan Williams44c462e2016-09-19 16:38:50 -07002220 struct nd_mapping_desc *mapping, struct nd_region_desc *ndr_desc,
Dan Williams1f7df6f2015-06-09 20:13:14 -04002221 struct acpi_nfit_memory_map *memdev,
Dan Williams1cf03c02016-02-17 13:01:23 -08002222 struct nfit_spa *nfit_spa)
Dan Williams1f7df6f2015-06-09 20:13:14 -04002223{
2224 struct nvdimm *nvdimm = acpi_nfit_dimm_by_handle(acpi_desc,
2225 memdev->device_handle);
Dan Williams1cf03c02016-02-17 13:01:23 -08002226 struct acpi_nfit_system_address *spa = nfit_spa->spa;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002227 struct nd_blk_region_desc *ndbr_desc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002228 struct nfit_mem *nfit_mem;
Dan Williamsfaec6f82017-06-06 11:10:51 -07002229 int blk_valid = 0, rc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002230
2231 if (!nvdimm) {
2232 dev_err(acpi_desc->dev, "spa%d dimm: %#x not found\n",
2233 spa->range_index, memdev->device_handle);
2234 return -ENODEV;
2235 }
2236
Dan Williams44c462e2016-09-19 16:38:50 -07002237 mapping->nvdimm = nvdimm;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002238 switch (nfit_spa_type(spa)) {
2239 case NFIT_SPA_PM:
2240 case NFIT_SPA_VOLATILE:
Dan Williams44c462e2016-09-19 16:38:50 -07002241 mapping->start = memdev->address;
2242 mapping->size = memdev->region_size;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002243 break;
2244 case NFIT_SPA_DCR:
2245 nfit_mem = nvdimm_provider_data(nvdimm);
2246 if (!nfit_mem || !nfit_mem->bdw) {
2247 dev_dbg(acpi_desc->dev, "spa%d %s missing bdw\n",
2248 spa->range_index, nvdimm_name(nvdimm));
2249 } else {
Dan Williams44c462e2016-09-19 16:38:50 -07002250 mapping->size = nfit_mem->bdw->capacity;
2251 mapping->start = nfit_mem->bdw->start_address;
Vishal Verma5212e112015-06-25 04:20:32 -04002252 ndr_desc->num_lanes = nfit_mem->bdw->windows;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002253 blk_valid = 1;
2254 }
2255
Dan Williams44c462e2016-09-19 16:38:50 -07002256 ndr_desc->mapping = mapping;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002257 ndr_desc->num_mappings = blk_valid;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002258 ndbr_desc = to_blk_region_desc(ndr_desc);
2259 ndbr_desc->enable = acpi_nfit_blk_region_enable;
Dan Williams6bc75612015-06-17 17:23:32 -04002260 ndbr_desc->do_io = acpi_desc->blk_do_io;
Dan Williamsfaec6f82017-06-06 11:10:51 -07002261 rc = acpi_nfit_init_interleave_set(acpi_desc, ndr_desc, spa);
2262 if (rc)
2263 return rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08002264 nfit_spa->nd_region = nvdimm_blk_region_create(acpi_desc->nvdimm_bus,
2265 ndr_desc);
2266 if (!nfit_spa->nd_region)
Dan Williams1f7df6f2015-06-09 20:13:14 -04002267 return -ENOMEM;
2268 break;
2269 }
2270
2271 return 0;
2272}
2273
Lee, Chun-Yic2f32ac2016-07-15 12:05:35 +08002274static bool nfit_spa_is_virtual(struct acpi_nfit_system_address *spa)
2275{
2276 return (nfit_spa_type(spa) == NFIT_SPA_VDISK ||
2277 nfit_spa_type(spa) == NFIT_SPA_VCD ||
2278 nfit_spa_type(spa) == NFIT_SPA_PDISK ||
2279 nfit_spa_type(spa) == NFIT_SPA_PCD);
2280}
2281
Dan Williams1f7df6f2015-06-09 20:13:14 -04002282static int acpi_nfit_register_region(struct acpi_nfit_desc *acpi_desc,
2283 struct nfit_spa *nfit_spa)
2284{
Dan Williams44c462e2016-09-19 16:38:50 -07002285 static struct nd_mapping_desc mappings[ND_MAX_MAPPINGS];
Dan Williams1f7df6f2015-06-09 20:13:14 -04002286 struct acpi_nfit_system_address *spa = nfit_spa->spa;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002287 struct nd_blk_region_desc ndbr_desc;
2288 struct nd_region_desc *ndr_desc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002289 struct nfit_memdev *nfit_memdev;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002290 struct nvdimm_bus *nvdimm_bus;
2291 struct resource res;
Dan Williamseaf96152015-05-01 13:11:27 -04002292 int count = 0, rc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002293
Dan Williams1cf03c02016-02-17 13:01:23 -08002294 if (nfit_spa->nd_region)
Vishal Verma20985162015-10-27 16:58:27 -06002295 return 0;
2296
Lee, Chun-Yic2f32ac2016-07-15 12:05:35 +08002297 if (spa->range_index == 0 && !nfit_spa_is_virtual(spa)) {
Dan Williams1f7df6f2015-06-09 20:13:14 -04002298 dev_dbg(acpi_desc->dev, "%s: detected invalid spa index\n",
2299 __func__);
2300 return 0;
2301 }
2302
2303 memset(&res, 0, sizeof(res));
Dan Williams44c462e2016-09-19 16:38:50 -07002304 memset(&mappings, 0, sizeof(mappings));
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002305 memset(&ndbr_desc, 0, sizeof(ndbr_desc));
Dan Williams1f7df6f2015-06-09 20:13:14 -04002306 res.start = spa->address;
2307 res.end = res.start + spa->length - 1;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002308 ndr_desc = &ndbr_desc.ndr_desc;
2309 ndr_desc->res = &res;
2310 ndr_desc->provider_data = nfit_spa;
2311 ndr_desc->attr_groups = acpi_nfit_region_attribute_groups;
Toshi Kani41d7a6d2015-06-19 12:18:33 -06002312 if (spa->flags & ACPI_NFIT_PROXIMITY_VALID)
2313 ndr_desc->numa_node = acpi_map_pxm_to_online_node(
2314 spa->proximity_domain);
2315 else
2316 ndr_desc->numa_node = NUMA_NO_NODE;
2317
Dan Williams1f7df6f2015-06-09 20:13:14 -04002318 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
2319 struct acpi_nfit_memory_map *memdev = nfit_memdev->memdev;
Dan Williams44c462e2016-09-19 16:38:50 -07002320 struct nd_mapping_desc *mapping;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002321
2322 if (memdev->range_index != spa->range_index)
2323 continue;
2324 if (count >= ND_MAX_MAPPINGS) {
2325 dev_err(acpi_desc->dev, "spa%d exceeds max mappings %d\n",
2326 spa->range_index, ND_MAX_MAPPINGS);
2327 return -ENXIO;
2328 }
Dan Williams44c462e2016-09-19 16:38:50 -07002329 mapping = &mappings[count++];
2330 rc = acpi_nfit_init_mapping(acpi_desc, mapping, ndr_desc,
Dan Williams1cf03c02016-02-17 13:01:23 -08002331 memdev, nfit_spa);
Dan Williams1f7df6f2015-06-09 20:13:14 -04002332 if (rc)
Dan Williams1cf03c02016-02-17 13:01:23 -08002333 goto out;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002334 }
2335
Dan Williams44c462e2016-09-19 16:38:50 -07002336 ndr_desc->mapping = mappings;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002337 ndr_desc->num_mappings = count;
2338 rc = acpi_nfit_init_interleave_set(acpi_desc, ndr_desc, spa);
Dan Williamseaf96152015-05-01 13:11:27 -04002339 if (rc)
Dan Williams1cf03c02016-02-17 13:01:23 -08002340 goto out;
Dan Williamseaf96152015-05-01 13:11:27 -04002341
Dan Williams1f7df6f2015-06-09 20:13:14 -04002342 nvdimm_bus = acpi_desc->nvdimm_bus;
2343 if (nfit_spa_type(spa) == NFIT_SPA_PM) {
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002344 rc = acpi_nfit_insert_resource(acpi_desc, ndr_desc);
Dan Williams48901162016-03-09 17:15:43 -08002345 if (rc) {
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002346 dev_warn(acpi_desc->dev,
2347 "failed to insert pmem resource to iomem: %d\n",
2348 rc);
Dan Williams48901162016-03-09 17:15:43 -08002349 goto out;
Vishal Verma0caeef62015-12-24 19:21:43 -07002350 }
Dan Williams48901162016-03-09 17:15:43 -08002351
Dan Williams1cf03c02016-02-17 13:01:23 -08002352 nfit_spa->nd_region = nvdimm_pmem_region_create(nvdimm_bus,
2353 ndr_desc);
2354 if (!nfit_spa->nd_region)
2355 rc = -ENOMEM;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002356 } else if (nfit_spa_type(spa) == NFIT_SPA_VOLATILE) {
Dan Williams1cf03c02016-02-17 13:01:23 -08002357 nfit_spa->nd_region = nvdimm_volatile_region_create(nvdimm_bus,
2358 ndr_desc);
2359 if (!nfit_spa->nd_region)
2360 rc = -ENOMEM;
Lee, Chun-Yic2f32ac2016-07-15 12:05:35 +08002361 } else if (nfit_spa_is_virtual(spa)) {
2362 nfit_spa->nd_region = nvdimm_pmem_region_create(nvdimm_bus,
2363 ndr_desc);
2364 if (!nfit_spa->nd_region)
2365 rc = -ENOMEM;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002366 }
Vishal Verma20985162015-10-27 16:58:27 -06002367
Dan Williams1cf03c02016-02-17 13:01:23 -08002368 out:
2369 if (rc)
2370 dev_err(acpi_desc->dev, "failed to register spa range %d\n",
2371 nfit_spa->spa->range_index);
2372 return rc;
2373}
2374
2375static int ars_status_alloc(struct acpi_nfit_desc *acpi_desc,
2376 u32 max_ars)
2377{
2378 struct device *dev = acpi_desc->dev;
2379 struct nd_cmd_ars_status *ars_status;
2380
2381 if (acpi_desc->ars_status && acpi_desc->ars_status_size >= max_ars) {
2382 memset(acpi_desc->ars_status, 0, acpi_desc->ars_status_size);
2383 return 0;
2384 }
2385
2386 if (acpi_desc->ars_status)
2387 devm_kfree(dev, acpi_desc->ars_status);
2388 acpi_desc->ars_status = NULL;
2389 ars_status = devm_kzalloc(dev, max_ars, GFP_KERNEL);
2390 if (!ars_status)
2391 return -ENOMEM;
2392 acpi_desc->ars_status = ars_status;
2393 acpi_desc->ars_status_size = max_ars;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002394 return 0;
2395}
2396
Dan Williams1cf03c02016-02-17 13:01:23 -08002397static int acpi_nfit_query_poison(struct acpi_nfit_desc *acpi_desc,
2398 struct nfit_spa *nfit_spa)
2399{
2400 struct acpi_nfit_system_address *spa = nfit_spa->spa;
2401 int rc;
2402
2403 if (!nfit_spa->max_ars) {
2404 struct nd_cmd_ars_cap ars_cap;
2405
2406 memset(&ars_cap, 0, sizeof(ars_cap));
2407 rc = ars_get_cap(acpi_desc, &ars_cap, nfit_spa);
2408 if (rc < 0)
2409 return rc;
2410 nfit_spa->max_ars = ars_cap.max_ars_out;
2411 nfit_spa->clear_err_unit = ars_cap.clear_err_unit;
2412 /* check that the supported scrub types match the spa type */
2413 if (nfit_spa_type(spa) == NFIT_SPA_VOLATILE &&
2414 ((ars_cap.status >> 16) & ND_ARS_VOLATILE) == 0)
2415 return -ENOTTY;
2416 else if (nfit_spa_type(spa) == NFIT_SPA_PM &&
2417 ((ars_cap.status >> 16) & ND_ARS_PERSISTENT) == 0)
2418 return -ENOTTY;
2419 }
2420
2421 if (ars_status_alloc(acpi_desc, nfit_spa->max_ars))
2422 return -ENOMEM;
2423
2424 rc = ars_get_status(acpi_desc);
2425 if (rc < 0 && rc != -ENOSPC)
2426 return rc;
2427
Dan Williams82aa37c2016-12-06 12:45:24 -08002428 if (ars_status_process_records(acpi_desc, acpi_desc->ars_status))
Dan Williams1cf03c02016-02-17 13:01:23 -08002429 return -ENOMEM;
2430
2431 return 0;
2432}
2433
2434static void acpi_nfit_async_scrub(struct acpi_nfit_desc *acpi_desc,
2435 struct nfit_spa *nfit_spa)
2436{
2437 struct acpi_nfit_system_address *spa = nfit_spa->spa;
2438 unsigned int overflow_retry = scrub_overflow_abort;
2439 u64 init_ars_start = 0, init_ars_len = 0;
2440 struct device *dev = acpi_desc->dev;
2441 unsigned int tmo = scrub_timeout;
2442 int rc;
2443
Vishal Verma37b137f2016-07-23 21:51:42 -07002444 if (!nfit_spa->ars_required || !nfit_spa->nd_region)
Dan Williams1cf03c02016-02-17 13:01:23 -08002445 return;
2446
2447 rc = ars_start(acpi_desc, nfit_spa);
2448 /*
2449 * If we timed out the initial scan we'll still be busy here,
2450 * and will wait another timeout before giving up permanently.
2451 */
2452 if (rc < 0 && rc != -EBUSY)
2453 return;
2454
2455 do {
2456 u64 ars_start, ars_len;
2457
2458 if (acpi_desc->cancel)
2459 break;
2460 rc = acpi_nfit_query_poison(acpi_desc, nfit_spa);
2461 if (rc == -ENOTTY)
2462 break;
2463 if (rc == -EBUSY && !tmo) {
2464 dev_warn(dev, "range %d ars timeout, aborting\n",
2465 spa->range_index);
2466 break;
2467 }
2468
2469 if (rc == -EBUSY) {
2470 /*
2471 * Note, entries may be appended to the list
2472 * while the lock is dropped, but the workqueue
2473 * being active prevents entries being deleted /
2474 * freed.
2475 */
2476 mutex_unlock(&acpi_desc->init_mutex);
2477 ssleep(1);
2478 tmo--;
2479 mutex_lock(&acpi_desc->init_mutex);
2480 continue;
2481 }
2482
2483 /* we got some results, but there are more pending... */
2484 if (rc == -ENOSPC && overflow_retry--) {
2485 if (!init_ars_len) {
2486 init_ars_len = acpi_desc->ars_status->length;
2487 init_ars_start = acpi_desc->ars_status->address;
2488 }
2489 rc = ars_continue(acpi_desc);
2490 }
2491
2492 if (rc < 0) {
2493 dev_warn(dev, "range %d ars continuation failed\n",
2494 spa->range_index);
2495 break;
2496 }
2497
2498 if (init_ars_len) {
2499 ars_start = init_ars_start;
2500 ars_len = init_ars_len;
2501 } else {
2502 ars_start = acpi_desc->ars_status->address;
2503 ars_len = acpi_desc->ars_status->length;
2504 }
2505 dev_dbg(dev, "spa range: %d ars from %#llx + %#llx complete\n",
2506 spa->range_index, ars_start, ars_len);
2507 /* notify the region about new poison entries */
2508 nvdimm_region_notify(nfit_spa->nd_region,
2509 NVDIMM_REVALIDATE_POISON);
2510 break;
2511 } while (1);
2512}
2513
2514static void acpi_nfit_scrub(struct work_struct *work)
2515{
2516 struct device *dev;
2517 u64 init_scrub_length = 0;
2518 struct nfit_spa *nfit_spa;
2519 u64 init_scrub_address = 0;
2520 bool init_ars_done = false;
2521 struct acpi_nfit_desc *acpi_desc;
2522 unsigned int tmo = scrub_timeout;
2523 unsigned int overflow_retry = scrub_overflow_abort;
2524
2525 acpi_desc = container_of(work, typeof(*acpi_desc), work);
2526 dev = acpi_desc->dev;
2527
2528 /*
2529 * We scrub in 2 phases. The first phase waits for any platform
2530 * firmware initiated scrubs to complete and then we go search for the
2531 * affected spa regions to mark them scanned. In the second phase we
2532 * initiate a directed scrub for every range that was not scrubbed in
Vishal Verma37b137f2016-07-23 21:51:42 -07002533 * phase 1. If we're called for a 'rescan', we harmlessly pass through
2534 * the first phase, but really only care about running phase 2, where
2535 * regions can be notified of new poison.
Dan Williams1cf03c02016-02-17 13:01:23 -08002536 */
2537
2538 /* process platform firmware initiated scrubs */
2539 retry:
2540 mutex_lock(&acpi_desc->init_mutex);
2541 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
2542 struct nd_cmd_ars_status *ars_status;
2543 struct acpi_nfit_system_address *spa;
2544 u64 ars_start, ars_len;
2545 int rc;
2546
2547 if (acpi_desc->cancel)
2548 break;
2549
2550 if (nfit_spa->nd_region)
2551 continue;
2552
2553 if (init_ars_done) {
2554 /*
2555 * No need to re-query, we're now just
2556 * reconciling all the ranges covered by the
2557 * initial scrub
2558 */
2559 rc = 0;
2560 } else
2561 rc = acpi_nfit_query_poison(acpi_desc, nfit_spa);
2562
2563 if (rc == -ENOTTY) {
2564 /* no ars capability, just register spa and move on */
2565 acpi_nfit_register_region(acpi_desc, nfit_spa);
2566 continue;
2567 }
2568
2569 if (rc == -EBUSY && !tmo) {
2570 /* fallthrough to directed scrub in phase 2 */
2571 dev_warn(dev, "timeout awaiting ars results, continuing...\n");
2572 break;
2573 } else if (rc == -EBUSY) {
2574 mutex_unlock(&acpi_desc->init_mutex);
2575 ssleep(1);
2576 tmo--;
2577 goto retry;
2578 }
2579
2580 /* we got some results, but there are more pending... */
2581 if (rc == -ENOSPC && overflow_retry--) {
2582 ars_status = acpi_desc->ars_status;
2583 /*
2584 * Record the original scrub range, so that we
2585 * can recall all the ranges impacted by the
2586 * initial scrub.
2587 */
2588 if (!init_scrub_length) {
2589 init_scrub_length = ars_status->length;
2590 init_scrub_address = ars_status->address;
2591 }
2592 rc = ars_continue(acpi_desc);
2593 if (rc == 0) {
2594 mutex_unlock(&acpi_desc->init_mutex);
2595 goto retry;
2596 }
2597 }
2598
2599 if (rc < 0) {
2600 /*
2601 * Initial scrub failed, we'll give it one more
2602 * try below...
2603 */
2604 break;
2605 }
2606
2607 /* We got some final results, record completed ranges */
2608 ars_status = acpi_desc->ars_status;
2609 if (init_scrub_length) {
2610 ars_start = init_scrub_address;
2611 ars_len = ars_start + init_scrub_length;
2612 } else {
2613 ars_start = ars_status->address;
2614 ars_len = ars_status->length;
2615 }
2616 spa = nfit_spa->spa;
2617
2618 if (!init_ars_done) {
2619 init_ars_done = true;
2620 dev_dbg(dev, "init scrub %#llx + %#llx complete\n",
2621 ars_start, ars_len);
2622 }
2623 if (ars_start <= spa->address && ars_start + ars_len
2624 >= spa->address + spa->length)
2625 acpi_nfit_register_region(acpi_desc, nfit_spa);
2626 }
2627
2628 /*
2629 * For all the ranges not covered by an initial scrub we still
2630 * want to see if there are errors, but it's ok to discover them
2631 * asynchronously.
2632 */
2633 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
2634 /*
2635 * Flag all the ranges that still need scrubbing, but
2636 * register them now to make data available.
2637 */
Vishal Verma37b137f2016-07-23 21:51:42 -07002638 if (!nfit_spa->nd_region) {
2639 nfit_spa->ars_required = 1;
Dan Williams1cf03c02016-02-17 13:01:23 -08002640 acpi_nfit_register_region(acpi_desc, nfit_spa);
Vishal Verma37b137f2016-07-23 21:51:42 -07002641 }
Dan Williams1cf03c02016-02-17 13:01:23 -08002642 }
Dan Williams9ccaed42017-04-13 22:48:46 -07002643 acpi_desc->init_complete = 1;
Dan Williams1cf03c02016-02-17 13:01:23 -08002644
2645 list_for_each_entry(nfit_spa, &acpi_desc->spas, list)
2646 acpi_nfit_async_scrub(acpi_desc, nfit_spa);
Vishal Verma37b137f2016-07-23 21:51:42 -07002647 acpi_desc->scrub_count++;
2648 if (acpi_desc->scrub_count_state)
2649 sysfs_notify_dirent(acpi_desc->scrub_count_state);
Dan Williams1cf03c02016-02-17 13:01:23 -08002650 mutex_unlock(&acpi_desc->init_mutex);
2651}
2652
Dan Williams1f7df6f2015-06-09 20:13:14 -04002653static int acpi_nfit_register_regions(struct acpi_nfit_desc *acpi_desc)
2654{
2655 struct nfit_spa *nfit_spa;
Dan Williams1cf03c02016-02-17 13:01:23 -08002656 int rc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002657
Dan Williams1cf03c02016-02-17 13:01:23 -08002658 list_for_each_entry(nfit_spa, &acpi_desc->spas, list)
2659 if (nfit_spa_type(nfit_spa->spa) == NFIT_SPA_DCR) {
2660 /* BLK regions don't need to wait for ars results */
2661 rc = acpi_nfit_register_region(acpi_desc, nfit_spa);
2662 if (rc)
2663 return rc;
2664 }
Dan Williams1f7df6f2015-06-09 20:13:14 -04002665
Dan Williamsfbabd822017-04-18 09:56:31 -07002666 if (!acpi_desc->cancel)
2667 queue_work(nfit_wq, &acpi_desc->work);
Dan Williams1f7df6f2015-06-09 20:13:14 -04002668 return 0;
2669}
2670
Vishal Verma20985162015-10-27 16:58:27 -06002671static int acpi_nfit_check_deletions(struct acpi_nfit_desc *acpi_desc,
2672 struct nfit_table_prev *prev)
2673{
2674 struct device *dev = acpi_desc->dev;
2675
2676 if (!list_empty(&prev->spas) ||
2677 !list_empty(&prev->memdevs) ||
2678 !list_empty(&prev->dcrs) ||
2679 !list_empty(&prev->bdws) ||
2680 !list_empty(&prev->idts) ||
2681 !list_empty(&prev->flushes)) {
2682 dev_err(dev, "new nfit deletes entries (unsupported)\n");
2683 return -ENXIO;
2684 }
2685 return 0;
2686}
2687
Vishal Verma37b137f2016-07-23 21:51:42 -07002688static int acpi_nfit_desc_init_scrub_attr(struct acpi_nfit_desc *acpi_desc)
2689{
2690 struct device *dev = acpi_desc->dev;
2691 struct kernfs_node *nfit;
2692 struct device *bus_dev;
2693
2694 if (!ars_supported(acpi_desc->nvdimm_bus))
2695 return 0;
2696
2697 bus_dev = to_nvdimm_bus_dev(acpi_desc->nvdimm_bus);
2698 nfit = sysfs_get_dirent(bus_dev->kobj.sd, "nfit");
2699 if (!nfit) {
2700 dev_err(dev, "sysfs_get_dirent 'nfit' failed\n");
2701 return -ENODEV;
2702 }
2703 acpi_desc->scrub_count_state = sysfs_get_dirent(nfit, "scrub");
2704 sysfs_put(nfit);
2705 if (!acpi_desc->scrub_count_state) {
2706 dev_err(dev, "sysfs_get_dirent 'scrub' failed\n");
2707 return -ENODEV;
2708 }
2709
2710 return 0;
2711}
2712
Dan Williamsfbabd822017-04-18 09:56:31 -07002713static void acpi_nfit_unregister(void *data)
Dan Williams58cd71b2016-07-21 18:05:36 -07002714{
2715 struct acpi_nfit_desc *acpi_desc = data;
2716
Dan Williams58cd71b2016-07-21 18:05:36 -07002717 nvdimm_bus_unregister(acpi_desc->nvdimm_bus);
Dan Williams58cd71b2016-07-21 18:05:36 -07002718}
2719
Dan Williamse7a11b42016-07-14 16:19:55 -07002720int acpi_nfit_init(struct acpi_nfit_desc *acpi_desc, void *data, acpi_size sz)
Dan Williamsb94d5232015-05-19 22:54:31 -04002721{
2722 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -06002723 struct nfit_table_prev prev;
Dan Williamsb94d5232015-05-19 22:54:31 -04002724 const void *end;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002725 int rc;
Dan Williamsb94d5232015-05-19 22:54:31 -04002726
Dan Williams58cd71b2016-07-21 18:05:36 -07002727 if (!acpi_desc->nvdimm_bus) {
Vishal Verma37b137f2016-07-23 21:51:42 -07002728 acpi_nfit_init_dsms(acpi_desc);
2729
Dan Williams58cd71b2016-07-21 18:05:36 -07002730 acpi_desc->nvdimm_bus = nvdimm_bus_register(dev,
2731 &acpi_desc->nd_desc);
2732 if (!acpi_desc->nvdimm_bus)
2733 return -ENOMEM;
Vishal Verma37b137f2016-07-23 21:51:42 -07002734
Dan Williamsfbabd822017-04-18 09:56:31 -07002735 rc = devm_add_action_or_reset(dev, acpi_nfit_unregister,
Dan Williams58cd71b2016-07-21 18:05:36 -07002736 acpi_desc);
2737 if (rc)
2738 return rc;
Vishal Verma37b137f2016-07-23 21:51:42 -07002739
2740 rc = acpi_nfit_desc_init_scrub_attr(acpi_desc);
2741 if (rc)
2742 return rc;
Vishal Verma6839a6d2016-07-23 21:51:21 -07002743
2744 /* register this acpi_desc for mce notifications */
2745 mutex_lock(&acpi_desc_lock);
2746 list_add_tail(&acpi_desc->list, &acpi_descs);
2747 mutex_unlock(&acpi_desc_lock);
Dan Williams58cd71b2016-07-21 18:05:36 -07002748 }
2749
Vishal Verma20985162015-10-27 16:58:27 -06002750 mutex_lock(&acpi_desc->init_mutex);
2751
2752 INIT_LIST_HEAD(&prev.spas);
2753 INIT_LIST_HEAD(&prev.memdevs);
2754 INIT_LIST_HEAD(&prev.dcrs);
2755 INIT_LIST_HEAD(&prev.bdws);
2756 INIT_LIST_HEAD(&prev.idts);
2757 INIT_LIST_HEAD(&prev.flushes);
2758
2759 list_cut_position(&prev.spas, &acpi_desc->spas,
2760 acpi_desc->spas.prev);
2761 list_cut_position(&prev.memdevs, &acpi_desc->memdevs,
2762 acpi_desc->memdevs.prev);
2763 list_cut_position(&prev.dcrs, &acpi_desc->dcrs,
2764 acpi_desc->dcrs.prev);
2765 list_cut_position(&prev.bdws, &acpi_desc->bdws,
2766 acpi_desc->bdws.prev);
2767 list_cut_position(&prev.idts, &acpi_desc->idts,
2768 acpi_desc->idts.prev);
2769 list_cut_position(&prev.flushes, &acpi_desc->flushes,
2770 acpi_desc->flushes.prev);
2771
Vishal Verma20985162015-10-27 16:58:27 -06002772 end = data + sz;
Vishal Verma20985162015-10-27 16:58:27 -06002773 while (!IS_ERR_OR_NULL(data))
2774 data = add_table(acpi_desc, &prev, data, end);
2775
2776 if (IS_ERR(data)) {
2777 dev_dbg(dev, "%s: nfit table parsing error: %ld\n", __func__,
2778 PTR_ERR(data));
2779 rc = PTR_ERR(data);
2780 goto out_unlock;
2781 }
2782
2783 rc = acpi_nfit_check_deletions(acpi_desc, &prev);
2784 if (rc)
2785 goto out_unlock;
2786
Dan Williams81ed4e32016-06-10 18:20:53 -07002787 rc = nfit_mem_init(acpi_desc);
2788 if (rc)
Vishal Verma20985162015-10-27 16:58:27 -06002789 goto out_unlock;
Vishal Verma20985162015-10-27 16:58:27 -06002790
2791 rc = acpi_nfit_register_dimms(acpi_desc);
2792 if (rc)
2793 goto out_unlock;
2794
2795 rc = acpi_nfit_register_regions(acpi_desc);
2796
2797 out_unlock:
2798 mutex_unlock(&acpi_desc->init_mutex);
2799 return rc;
2800}
2801EXPORT_SYMBOL_GPL(acpi_nfit_init);
2802
Dan Williams7ae0fa432016-02-19 12:16:34 -08002803struct acpi_nfit_flush_work {
2804 struct work_struct work;
2805 struct completion cmp;
2806};
2807
2808static void flush_probe(struct work_struct *work)
2809{
2810 struct acpi_nfit_flush_work *flush;
2811
2812 flush = container_of(work, typeof(*flush), work);
2813 complete(&flush->cmp);
2814}
2815
2816static int acpi_nfit_flush_probe(struct nvdimm_bus_descriptor *nd_desc)
2817{
2818 struct acpi_nfit_desc *acpi_desc = to_acpi_nfit_desc(nd_desc);
2819 struct device *dev = acpi_desc->dev;
2820 struct acpi_nfit_flush_work flush;
Dan Williamse4714862017-02-02 10:31:00 -08002821 int rc;
Dan Williams7ae0fa432016-02-19 12:16:34 -08002822
2823 /* bounce the device lock to flush acpi_nfit_add / acpi_nfit_notify */
2824 device_lock(dev);
2825 device_unlock(dev);
2826
Dan Williams9ccaed42017-04-13 22:48:46 -07002827 /* bounce the init_mutex to make init_complete valid */
2828 mutex_lock(&acpi_desc->init_mutex);
Dan Williamsfbabd822017-04-18 09:56:31 -07002829 if (acpi_desc->cancel || acpi_desc->init_complete) {
2830 mutex_unlock(&acpi_desc->init_mutex);
Dan Williams9ccaed42017-04-13 22:48:46 -07002831 return 0;
Dan Williamsfbabd822017-04-18 09:56:31 -07002832 }
Dan Williams9ccaed42017-04-13 22:48:46 -07002833
Dan Williams7ae0fa432016-02-19 12:16:34 -08002834 /*
2835 * Scrub work could take 10s of seconds, userspace may give up so we
2836 * need to be interruptible while waiting.
2837 */
2838 INIT_WORK_ONSTACK(&flush.work, flush_probe);
2839 COMPLETION_INITIALIZER_ONSTACK(flush.cmp);
2840 queue_work(nfit_wq, &flush.work);
Dan Williamsfbabd822017-04-18 09:56:31 -07002841 mutex_unlock(&acpi_desc->init_mutex);
Dan Williamse4714862017-02-02 10:31:00 -08002842
2843 rc = wait_for_completion_interruptible(&flush.cmp);
2844 cancel_work_sync(&flush.work);
2845 return rc;
Dan Williams7ae0fa432016-02-19 12:16:34 -08002846}
2847
Dan Williams87bf5722016-02-22 21:50:31 -08002848static int acpi_nfit_clear_to_send(struct nvdimm_bus_descriptor *nd_desc,
2849 struct nvdimm *nvdimm, unsigned int cmd)
2850{
2851 struct acpi_nfit_desc *acpi_desc = to_acpi_nfit_desc(nd_desc);
2852
2853 if (nvdimm)
2854 return 0;
2855 if (cmd != ND_CMD_ARS_START)
2856 return 0;
2857
2858 /*
2859 * The kernel and userspace may race to initiate a scrub, but
2860 * the scrub thread is prepared to lose that initial race. It
2861 * just needs guarantees that any ars it initiates are not
2862 * interrupted by any intervening start reqeusts from userspace.
2863 */
2864 if (work_busy(&acpi_desc->work))
2865 return -EBUSY;
2866
2867 return 0;
2868}
2869
Vishal Verma6839a6d2016-07-23 21:51:21 -07002870int acpi_nfit_ars_rescan(struct acpi_nfit_desc *acpi_desc)
Vishal Verma37b137f2016-07-23 21:51:42 -07002871{
2872 struct device *dev = acpi_desc->dev;
2873 struct nfit_spa *nfit_spa;
2874
2875 if (work_busy(&acpi_desc->work))
2876 return -EBUSY;
2877
Vishal Verma37b137f2016-07-23 21:51:42 -07002878 mutex_lock(&acpi_desc->init_mutex);
Dan Williamsfbabd822017-04-18 09:56:31 -07002879 if (acpi_desc->cancel) {
2880 mutex_unlock(&acpi_desc->init_mutex);
2881 return 0;
2882 }
2883
Vishal Verma37b137f2016-07-23 21:51:42 -07002884 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
2885 struct acpi_nfit_system_address *spa = nfit_spa->spa;
2886
2887 if (nfit_spa_type(spa) != NFIT_SPA_PM)
2888 continue;
2889
2890 nfit_spa->ars_required = 1;
2891 }
2892 queue_work(nfit_wq, &acpi_desc->work);
2893 dev_dbg(dev, "%s: ars_scan triggered\n", __func__);
2894 mutex_unlock(&acpi_desc->init_mutex);
2895
2896 return 0;
2897}
2898
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002899void acpi_nfit_desc_init(struct acpi_nfit_desc *acpi_desc, struct device *dev)
Vishal Verma20985162015-10-27 16:58:27 -06002900{
2901 struct nvdimm_bus_descriptor *nd_desc;
Vishal Verma20985162015-10-27 16:58:27 -06002902
2903 dev_set_drvdata(dev, acpi_desc);
2904 acpi_desc->dev = dev;
2905 acpi_desc->blk_do_io = acpi_nfit_blk_region_do_io;
2906 nd_desc = &acpi_desc->nd_desc;
2907 nd_desc->provider_name = "ACPI.NFIT";
Dan Williamsbc9775d2016-07-21 20:03:19 -07002908 nd_desc->module = THIS_MODULE;
Vishal Verma20985162015-10-27 16:58:27 -06002909 nd_desc->ndctl = acpi_nfit_ctl;
Dan Williams7ae0fa432016-02-19 12:16:34 -08002910 nd_desc->flush_probe = acpi_nfit_flush_probe;
Dan Williams87bf5722016-02-22 21:50:31 -08002911 nd_desc->clear_to_send = acpi_nfit_clear_to_send;
Vishal Verma20985162015-10-27 16:58:27 -06002912 nd_desc->attr_groups = acpi_nfit_attribute_groups;
2913
Dan Williamsb94d5232015-05-19 22:54:31 -04002914 INIT_LIST_HEAD(&acpi_desc->spas);
2915 INIT_LIST_HEAD(&acpi_desc->dcrs);
2916 INIT_LIST_HEAD(&acpi_desc->bdws);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002917 INIT_LIST_HEAD(&acpi_desc->idts);
Ross Zwislerc2ad2952015-07-10 11:06:13 -06002918 INIT_LIST_HEAD(&acpi_desc->flushes);
Dan Williamsb94d5232015-05-19 22:54:31 -04002919 INIT_LIST_HEAD(&acpi_desc->memdevs);
2920 INIT_LIST_HEAD(&acpi_desc->dimms);
Vishal Verma6839a6d2016-07-23 21:51:21 -07002921 INIT_LIST_HEAD(&acpi_desc->list);
Vishal Verma20985162015-10-27 16:58:27 -06002922 mutex_init(&acpi_desc->init_mutex);
Dan Williams1cf03c02016-02-17 13:01:23 -08002923 INIT_WORK(&acpi_desc->work, acpi_nfit_scrub);
Dan Williamsb94d5232015-05-19 22:54:31 -04002924}
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002925EXPORT_SYMBOL_GPL(acpi_nfit_desc_init);
Dan Williamsb94d5232015-05-19 22:54:31 -04002926
Dan Williams3c87f372017-04-03 13:52:14 -07002927static void acpi_nfit_put_table(void *table)
2928{
2929 acpi_put_table(table);
2930}
2931
Dan Williamsfbabd822017-04-18 09:56:31 -07002932void acpi_nfit_shutdown(void *data)
2933{
2934 struct acpi_nfit_desc *acpi_desc = data;
2935 struct device *bus_dev = to_nvdimm_bus_dev(acpi_desc->nvdimm_bus);
2936
2937 /*
2938 * Destruct under acpi_desc_lock so that nfit_handle_mce does not
2939 * race teardown
2940 */
2941 mutex_lock(&acpi_desc_lock);
2942 list_del(&acpi_desc->list);
2943 mutex_unlock(&acpi_desc_lock);
2944
2945 mutex_lock(&acpi_desc->init_mutex);
2946 acpi_desc->cancel = 1;
2947 mutex_unlock(&acpi_desc->init_mutex);
2948
2949 /*
2950 * Bounce the nvdimm bus lock to make sure any in-flight
2951 * acpi_nfit_ars_rescan() submissions have had a chance to
2952 * either submit or see ->cancel set.
2953 */
2954 device_lock(bus_dev);
2955 device_unlock(bus_dev);
2956
2957 flush_workqueue(nfit_wq);
2958}
2959EXPORT_SYMBOL_GPL(acpi_nfit_shutdown);
2960
Dan Williamsb94d5232015-05-19 22:54:31 -04002961static int acpi_nfit_add(struct acpi_device *adev)
2962{
Vishal Verma20985162015-10-27 16:58:27 -06002963 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL };
Dan Williamsb94d5232015-05-19 22:54:31 -04002964 struct acpi_nfit_desc *acpi_desc;
2965 struct device *dev = &adev->dev;
2966 struct acpi_table_header *tbl;
2967 acpi_status status = AE_OK;
2968 acpi_size sz;
Dan Williams31932042016-07-14 17:22:48 -07002969 int rc = 0;
Dan Williamsb94d5232015-05-19 22:54:31 -04002970
Lv Zheng6b11d1d2016-12-14 15:04:39 +08002971 status = acpi_get_table(ACPI_SIG_NFIT, 0, &tbl);
Dan Williamsb94d5232015-05-19 22:54:31 -04002972 if (ACPI_FAILURE(status)) {
Vishal Verma20985162015-10-27 16:58:27 -06002973 /* This is ok, we could have an nvdimm hotplugged later */
2974 dev_dbg(dev, "failed to find NFIT at startup\n");
2975 return 0;
Dan Williamsb94d5232015-05-19 22:54:31 -04002976 }
Dan Williams3c87f372017-04-03 13:52:14 -07002977
2978 rc = devm_add_action_or_reset(dev, acpi_nfit_put_table, tbl);
2979 if (rc)
2980 return rc;
Lv Zheng6b11d1d2016-12-14 15:04:39 +08002981 sz = tbl->length;
Dan Williamsb94d5232015-05-19 22:54:31 -04002982
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002983 acpi_desc = devm_kzalloc(dev, sizeof(*acpi_desc), GFP_KERNEL);
2984 if (!acpi_desc)
2985 return -ENOMEM;
2986 acpi_nfit_desc_init(acpi_desc, &adev->dev);
Dan Williamsb94d5232015-05-19 22:54:31 -04002987
Dan Williamse7a11b42016-07-14 16:19:55 -07002988 /* Save the acpi header for exporting the revision via sysfs */
Linda Knippers6b577c92015-11-20 19:05:49 -05002989 acpi_desc->acpi_header = *tbl;
Dan Williamsb94d5232015-05-19 22:54:31 -04002990
Vishal Verma20985162015-10-27 16:58:27 -06002991 /* Evaluate _FIT and override with that if present */
2992 status = acpi_evaluate_object(adev->handle, "_FIT", NULL, &buf);
2993 if (ACPI_SUCCESS(status) && buf.length > 0) {
Dan Williamse7a11b42016-07-14 16:19:55 -07002994 union acpi_object *obj = buf.pointer;
2995
2996 if (obj->type == ACPI_TYPE_BUFFER)
2997 rc = acpi_nfit_init(acpi_desc, obj->buffer.pointer,
2998 obj->buffer.length);
2999 else
Linda Knippers6b577c92015-11-20 19:05:49 -05003000 dev_dbg(dev, "%s invalid type %d, ignoring _FIT\n",
3001 __func__, (int) obj->type);
Dan Williams31932042016-07-14 17:22:48 -07003002 kfree(buf.pointer);
3003 } else
Dan Williamse7a11b42016-07-14 16:19:55 -07003004 /* skip over the lead-in header table */
3005 rc = acpi_nfit_init(acpi_desc, (void *) tbl
3006 + sizeof(struct acpi_table_nfit),
3007 sz - sizeof(struct acpi_table_nfit));
Dan Williamsfbabd822017-04-18 09:56:31 -07003008
3009 if (rc)
3010 return rc;
3011 return devm_add_action_or_reset(dev, acpi_nfit_shutdown, acpi_desc);
Dan Williamsb94d5232015-05-19 22:54:31 -04003012}
3013
3014static int acpi_nfit_remove(struct acpi_device *adev)
3015{
Dan Williamsfbabd822017-04-18 09:56:31 -07003016 /* see acpi_nfit_unregister */
Dan Williamsb94d5232015-05-19 22:54:31 -04003017 return 0;
3018}
3019
Toshi Kani56b47fe2017-06-08 12:36:57 -06003020static void acpi_nfit_update_notify(struct device *dev, acpi_handle handle)
Vishal Verma20985162015-10-27 16:58:27 -06003021{
Dan Williamsc14a8682016-08-18 22:15:04 -07003022 struct acpi_nfit_desc *acpi_desc = dev_get_drvdata(dev);
Vishal Verma20985162015-10-27 16:58:27 -06003023 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL };
Dan Williamse7a11b42016-07-14 16:19:55 -07003024 union acpi_object *obj;
Vishal Verma20985162015-10-27 16:58:27 -06003025 acpi_status status;
3026 int ret;
3027
Vishal Verma20985162015-10-27 16:58:27 -06003028 if (!dev->driver) {
3029 /* dev->driver may be null if we're being removed */
3030 dev_dbg(dev, "%s: no driver found for dev\n", __func__);
Dan Williamsc14a8682016-08-18 22:15:04 -07003031 return;
Vishal Verma20985162015-10-27 16:58:27 -06003032 }
3033
3034 if (!acpi_desc) {
Dan Williamsa61fe6f2016-02-19 12:29:32 -08003035 acpi_desc = devm_kzalloc(dev, sizeof(*acpi_desc), GFP_KERNEL);
3036 if (!acpi_desc)
Dan Williamsc14a8682016-08-18 22:15:04 -07003037 return;
3038 acpi_nfit_desc_init(acpi_desc, dev);
Dan Williams7ae0fa432016-02-19 12:16:34 -08003039 } else {
3040 /*
3041 * Finish previous registration before considering new
3042 * regions.
3043 */
3044 flush_workqueue(nfit_wq);
Vishal Verma20985162015-10-27 16:58:27 -06003045 }
3046
3047 /* Evaluate _FIT */
Dan Williamsc14a8682016-08-18 22:15:04 -07003048 status = acpi_evaluate_object(handle, "_FIT", NULL, &buf);
Vishal Verma20985162015-10-27 16:58:27 -06003049 if (ACPI_FAILURE(status)) {
3050 dev_err(dev, "failed to evaluate _FIT\n");
Dan Williamsc14a8682016-08-18 22:15:04 -07003051 return;
Vishal Verma20985162015-10-27 16:58:27 -06003052 }
3053
Linda Knippers6b577c92015-11-20 19:05:49 -05003054 obj = buf.pointer;
3055 if (obj->type == ACPI_TYPE_BUFFER) {
Dan Williamse7a11b42016-07-14 16:19:55 -07003056 ret = acpi_nfit_init(acpi_desc, obj->buffer.pointer,
3057 obj->buffer.length);
Dan Williams31932042016-07-14 17:22:48 -07003058 if (ret)
Linda Knippers6b577c92015-11-20 19:05:49 -05003059 dev_err(dev, "failed to merge updated NFIT\n");
Dan Williams31932042016-07-14 17:22:48 -07003060 } else
Linda Knippers6b577c92015-11-20 19:05:49 -05003061 dev_err(dev, "Invalid _FIT\n");
Vishal Verma20985162015-10-27 16:58:27 -06003062 kfree(buf.pointer);
Dan Williamsc14a8682016-08-18 22:15:04 -07003063}
Toshi Kani56b47fe2017-06-08 12:36:57 -06003064
3065static void acpi_nfit_uc_error_notify(struct device *dev, acpi_handle handle)
3066{
3067 struct acpi_nfit_desc *acpi_desc = dev_get_drvdata(dev);
3068
3069 acpi_nfit_ars_rescan(acpi_desc);
3070}
3071
3072void __acpi_nfit_notify(struct device *dev, acpi_handle handle, u32 event)
3073{
3074 dev_dbg(dev, "%s: event: 0x%x\n", __func__, event);
3075
3076 switch (event) {
3077 case NFIT_NOTIFY_UPDATE:
3078 return acpi_nfit_update_notify(dev, handle);
3079 case NFIT_NOTIFY_UC_MEMORY_ERROR:
3080 return acpi_nfit_uc_error_notify(dev, handle);
3081 default:
3082 return;
3083 }
3084}
Dan Williamsc14a8682016-08-18 22:15:04 -07003085EXPORT_SYMBOL_GPL(__acpi_nfit_notify);
Vishal Verma20985162015-10-27 16:58:27 -06003086
Dan Williamsc14a8682016-08-18 22:15:04 -07003087static void acpi_nfit_notify(struct acpi_device *adev, u32 event)
3088{
3089 device_lock(&adev->dev);
3090 __acpi_nfit_notify(&adev->dev, adev->handle, event);
3091 device_unlock(&adev->dev);
Vishal Verma20985162015-10-27 16:58:27 -06003092}
3093
Dan Williamsb94d5232015-05-19 22:54:31 -04003094static const struct acpi_device_id acpi_nfit_ids[] = {
3095 { "ACPI0012", 0 },
3096 { "", 0 },
3097};
3098MODULE_DEVICE_TABLE(acpi, acpi_nfit_ids);
3099
3100static struct acpi_driver acpi_nfit_driver = {
3101 .name = KBUILD_MODNAME,
3102 .ids = acpi_nfit_ids,
3103 .ops = {
3104 .add = acpi_nfit_add,
3105 .remove = acpi_nfit_remove,
Vishal Verma20985162015-10-27 16:58:27 -06003106 .notify = acpi_nfit_notify,
Dan Williamsb94d5232015-05-19 22:54:31 -04003107 },
3108};
3109
3110static __init int nfit_init(void)
3111{
3112 BUILD_BUG_ON(sizeof(struct acpi_table_nfit) != 40);
3113 BUILD_BUG_ON(sizeof(struct acpi_nfit_system_address) != 56);
3114 BUILD_BUG_ON(sizeof(struct acpi_nfit_memory_map) != 48);
3115 BUILD_BUG_ON(sizeof(struct acpi_nfit_interleave) != 20);
3116 BUILD_BUG_ON(sizeof(struct acpi_nfit_smbios) != 9);
3117 BUILD_BUG_ON(sizeof(struct acpi_nfit_control_region) != 80);
3118 BUILD_BUG_ON(sizeof(struct acpi_nfit_data_region) != 40);
3119
Andy Shevchenko41c8bdb2017-06-05 19:40:42 +03003120 guid_parse(UUID_VOLATILE_MEMORY, &nfit_uuid[NFIT_SPA_VOLATILE]);
3121 guid_parse(UUID_PERSISTENT_MEMORY, &nfit_uuid[NFIT_SPA_PM]);
3122 guid_parse(UUID_CONTROL_REGION, &nfit_uuid[NFIT_SPA_DCR]);
3123 guid_parse(UUID_DATA_REGION, &nfit_uuid[NFIT_SPA_BDW]);
3124 guid_parse(UUID_VOLATILE_VIRTUAL_DISK, &nfit_uuid[NFIT_SPA_VDISK]);
3125 guid_parse(UUID_VOLATILE_VIRTUAL_CD, &nfit_uuid[NFIT_SPA_VCD]);
3126 guid_parse(UUID_PERSISTENT_VIRTUAL_DISK, &nfit_uuid[NFIT_SPA_PDISK]);
3127 guid_parse(UUID_PERSISTENT_VIRTUAL_CD, &nfit_uuid[NFIT_SPA_PCD]);
3128 guid_parse(UUID_NFIT_BUS, &nfit_uuid[NFIT_DEV_BUS]);
3129 guid_parse(UUID_NFIT_DIMM, &nfit_uuid[NFIT_DEV_DIMM]);
3130 guid_parse(UUID_NFIT_DIMM_N_HPE1, &nfit_uuid[NFIT_DEV_DIMM_N_HPE1]);
3131 guid_parse(UUID_NFIT_DIMM_N_HPE2, &nfit_uuid[NFIT_DEV_DIMM_N_HPE2]);
3132 guid_parse(UUID_NFIT_DIMM_N_MSFT, &nfit_uuid[NFIT_DEV_DIMM_N_MSFT]);
Dan Williamsb94d5232015-05-19 22:54:31 -04003133
Dan Williams7ae0fa432016-02-19 12:16:34 -08003134 nfit_wq = create_singlethread_workqueue("nfit");
3135 if (!nfit_wq)
3136 return -ENOMEM;
3137
Vishal Verma6839a6d2016-07-23 21:51:21 -07003138 nfit_mce_register();
3139
Dan Williamsb94d5232015-05-19 22:54:31 -04003140 return acpi_bus_register_driver(&acpi_nfit_driver);
3141}
3142
3143static __exit void nfit_exit(void)
3144{
Vishal Verma6839a6d2016-07-23 21:51:21 -07003145 nfit_mce_unregister();
Dan Williamsb94d5232015-05-19 22:54:31 -04003146 acpi_bus_unregister_driver(&acpi_nfit_driver);
Dan Williams7ae0fa432016-02-19 12:16:34 -08003147 destroy_workqueue(nfit_wq);
Vishal Verma6839a6d2016-07-23 21:51:21 -07003148 WARN_ON(!list_empty(&acpi_descs));
Dan Williamsb94d5232015-05-19 22:54:31 -04003149}
3150
3151module_init(nfit_init);
3152module_exit(nfit_exit);
3153MODULE_LICENSE("GPL v2");
3154MODULE_AUTHOR("Intel Corporation");