blob: f3bc901ac930c9b61edb2b65b5d0e55d32236ecf [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,
52 "Limit commands to the publicly specified set\n");
53
Vishal Verma6839a6d2016-07-23 21:51:21 -070054LIST_HEAD(acpi_descs);
55DEFINE_MUTEX(acpi_desc_lock);
56
Dan Williams7ae0fa432016-02-19 12:16:34 -080057static struct workqueue_struct *nfit_wq;
58
Vishal Verma20985162015-10-27 16:58:27 -060059struct nfit_table_prev {
60 struct list_head spas;
61 struct list_head memdevs;
62 struct list_head dcrs;
63 struct list_head bdws;
64 struct list_head idts;
65 struct list_head flushes;
66};
67
Dan Williamsb94d5232015-05-19 22:54:31 -040068static u8 nfit_uuid[NFIT_UUID_MAX][16];
69
Dan Williams6bc75612015-06-17 17:23:32 -040070const u8 *to_nfit_uuid(enum nfit_uuids id)
Dan Williamsb94d5232015-05-19 22:54:31 -040071{
72 return nfit_uuid[id];
73}
Dan Williams6bc75612015-06-17 17:23:32 -040074EXPORT_SYMBOL(to_nfit_uuid);
Dan Williamsb94d5232015-05-19 22:54:31 -040075
Dan Williams62232e452015-06-08 14:27:06 -040076static struct acpi_nfit_desc *to_acpi_nfit_desc(
77 struct nvdimm_bus_descriptor *nd_desc)
78{
79 return container_of(nd_desc, struct acpi_nfit_desc, nd_desc);
80}
81
82static struct acpi_device *to_acpi_dev(struct acpi_nfit_desc *acpi_desc)
83{
84 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
85
86 /*
87 * If provider == 'ACPI.NFIT' we can assume 'dev' is a struct
88 * acpi_device.
89 */
90 if (!nd_desc->provider_name
91 || strcmp(nd_desc->provider_name, "ACPI.NFIT") != 0)
92 return NULL;
93
94 return to_acpi_device(acpi_desc->dev);
95}
96
Dan Williamsd6eb2702016-12-06 15:06:55 -080097static int xlat_bus_status(void *buf, unsigned int cmd, u32 status)
Dan Williamsaef25332016-02-12 17:01:11 -080098{
Dan Williamsd4f32362016-03-03 16:08:54 -080099 struct nd_cmd_clear_error *clear_err;
Dan Williamsaef25332016-02-12 17:01:11 -0800100 struct nd_cmd_ars_status *ars_status;
Dan Williamsaef25332016-02-12 17:01:11 -0800101 u16 flags;
102
103 switch (cmd) {
104 case ND_CMD_ARS_CAP:
Dan Williams11294d62016-09-21 09:21:26 -0700105 if ((status & 0xffff) == NFIT_ARS_CAP_NONE)
Dan Williamsaef25332016-02-12 17:01:11 -0800106 return -ENOTTY;
107
108 /* Command failed */
Dan Williams11294d62016-09-21 09:21:26 -0700109 if (status & 0xffff)
Dan Williamsaef25332016-02-12 17:01:11 -0800110 return -EIO;
111
112 /* No supported scan types for this range */
113 flags = ND_ARS_PERSISTENT | ND_ARS_VOLATILE;
Dan Williams11294d62016-09-21 09:21:26 -0700114 if ((status >> 16 & flags) == 0)
Dan Williamsaef25332016-02-12 17:01:11 -0800115 return -ENOTTY;
Vishal Verma9a901f52016-12-05 17:00:37 -0700116 return 0;
Dan Williamsaef25332016-02-12 17:01:11 -0800117 case ND_CMD_ARS_START:
Dan Williamsaef25332016-02-12 17:01:11 -0800118 /* ARS is in progress */
Dan Williams11294d62016-09-21 09:21:26 -0700119 if ((status & 0xffff) == NFIT_ARS_START_BUSY)
Dan Williamsaef25332016-02-12 17:01:11 -0800120 return -EBUSY;
121
122 /* Command failed */
Dan Williams11294d62016-09-21 09:21:26 -0700123 if (status & 0xffff)
Dan Williamsaef25332016-02-12 17:01:11 -0800124 return -EIO;
Vishal Verma9a901f52016-12-05 17:00:37 -0700125 return 0;
Dan Williamsaef25332016-02-12 17:01:11 -0800126 case ND_CMD_ARS_STATUS:
127 ars_status = buf;
128 /* Command failed */
Dan Williams11294d62016-09-21 09:21:26 -0700129 if (status & 0xffff)
Dan Williamsaef25332016-02-12 17:01:11 -0800130 return -EIO;
131 /* Check extended status (Upper two bytes) */
Dan Williams11294d62016-09-21 09:21:26 -0700132 if (status == NFIT_ARS_STATUS_DONE)
Dan Williamsaef25332016-02-12 17:01:11 -0800133 return 0;
134
135 /* ARS is in progress */
Dan Williams11294d62016-09-21 09:21:26 -0700136 if (status == NFIT_ARS_STATUS_BUSY)
Dan Williamsaef25332016-02-12 17:01:11 -0800137 return -EBUSY;
138
139 /* No ARS performed for the current boot */
Dan Williams11294d62016-09-21 09:21:26 -0700140 if (status == NFIT_ARS_STATUS_NONE)
Dan Williamsaef25332016-02-12 17:01:11 -0800141 return -EAGAIN;
142
143 /*
144 * ARS interrupted, either we overflowed or some other
145 * agent wants the scan to stop. If we didn't overflow
146 * then just continue with the returned results.
147 */
Dan Williams11294d62016-09-21 09:21:26 -0700148 if (status == NFIT_ARS_STATUS_INTR) {
Dan Williams82aa37c2016-12-06 12:45:24 -0800149 if (ars_status->out_length >= 40 && (ars_status->flags
150 & NFIT_ARS_F_OVERFLOW))
Dan Williamsaef25332016-02-12 17:01:11 -0800151 return -ENOSPC;
152 return 0;
153 }
154
155 /* Unknown status */
Dan Williams11294d62016-09-21 09:21:26 -0700156 if (status >> 16)
Dan Williamsaef25332016-02-12 17:01:11 -0800157 return -EIO;
Vishal Verma9a901f52016-12-05 17:00:37 -0700158 return 0;
Dan Williamsd4f32362016-03-03 16:08:54 -0800159 case ND_CMD_CLEAR_ERROR:
160 clear_err = buf;
Dan Williams11294d62016-09-21 09:21:26 -0700161 if (status & 0xffff)
Dan Williamsd4f32362016-03-03 16:08:54 -0800162 return -EIO;
163 if (!clear_err->cleared)
164 return -EIO;
165 if (clear_err->length > clear_err->cleared)
166 return clear_err->cleared;
Vishal Verma9a901f52016-12-05 17:00:37 -0700167 return 0;
Dan Williamsaef25332016-02-12 17:01:11 -0800168 default:
169 break;
170 }
171
Dan Williams11294d62016-09-21 09:21:26 -0700172 /* all other non-zero status results in an error */
173 if (status)
174 return -EIO;
Dan Williamsaef25332016-02-12 17:01:11 -0800175 return 0;
176}
177
Dan Williamsd6eb2702016-12-06 15:06:55 -0800178static int xlat_status(struct nvdimm *nvdimm, void *buf, unsigned int cmd,
179 u32 status)
180{
181 if (!nvdimm)
182 return xlat_bus_status(buf, cmd, status);
183 if (status)
184 return -EIO;
185 return 0;
186}
187
Dan Williamsa7de92d2016-12-05 13:43:25 -0800188int acpi_nfit_ctl(struct nvdimm_bus_descriptor *nd_desc, struct nvdimm *nvdimm,
189 unsigned int cmd, void *buf, unsigned int buf_len, int *cmd_rc)
Dan Williamsb94d5232015-05-19 22:54:31 -0400190{
Dan Williams62232e452015-06-08 14:27:06 -0400191 struct acpi_nfit_desc *acpi_desc = to_acpi_nfit_desc(nd_desc);
Dan Williams62232e452015-06-08 14:27:06 -0400192 union acpi_object in_obj, in_buf, *out_obj;
Dan Williams31eca762016-04-28 16:23:43 -0700193 const struct nd_cmd_desc *desc = NULL;
Dan Williams62232e452015-06-08 14:27:06 -0400194 struct device *dev = acpi_desc->dev;
Dan Williams31eca762016-04-28 16:23:43 -0700195 struct nd_cmd_pkg *call_pkg = NULL;
Dan Williams62232e452015-06-08 14:27:06 -0400196 const char *cmd_name, *dimm_name;
Dan Williams31eca762016-04-28 16:23:43 -0700197 unsigned long cmd_mask, dsm_mask;
Dan Williams11294d62016-09-21 09:21:26 -0700198 u32 offset, fw_status = 0;
Dan Williams62232e452015-06-08 14:27:06 -0400199 acpi_handle handle;
Dan Williams31eca762016-04-28 16:23:43 -0700200 unsigned int func;
Dan Williams62232e452015-06-08 14:27:06 -0400201 const u8 *uuid;
Dan Williams62232e452015-06-08 14:27:06 -0400202 int rc, i;
203
Dan Williams31eca762016-04-28 16:23:43 -0700204 func = cmd;
205 if (cmd == ND_CMD_CALL) {
206 call_pkg = buf;
207 func = call_pkg->nd_command;
208 }
209
Dan Williams62232e452015-06-08 14:27:06 -0400210 if (nvdimm) {
211 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
212 struct acpi_device *adev = nfit_mem->adev;
213
214 if (!adev)
215 return -ENOTTY;
Dan Williams31eca762016-04-28 16:23:43 -0700216 if (call_pkg && nfit_mem->family != call_pkg->nd_family)
217 return -ENOTTY;
218
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400219 dimm_name = nvdimm_name(nvdimm);
Dan Williams62232e452015-06-08 14:27:06 -0400220 cmd_name = nvdimm_cmd_name(cmd);
Dan Williamse3654ec2016-04-28 16:17:07 -0700221 cmd_mask = nvdimm_cmd_mask(nvdimm);
Dan Williams62232e452015-06-08 14:27:06 -0400222 dsm_mask = nfit_mem->dsm_mask;
223 desc = nd_cmd_dimm_desc(cmd);
Dan Williams31eca762016-04-28 16:23:43 -0700224 uuid = to_nfit_uuid(nfit_mem->family);
Dan Williams62232e452015-06-08 14:27:06 -0400225 handle = adev->handle;
226 } else {
227 struct acpi_device *adev = to_acpi_dev(acpi_desc);
228
229 cmd_name = nvdimm_bus_cmd_name(cmd);
Dan Williamse3654ec2016-04-28 16:17:07 -0700230 cmd_mask = nd_desc->cmd_mask;
Dan Williams31eca762016-04-28 16:23:43 -0700231 dsm_mask = cmd_mask;
Dan Williams62232e452015-06-08 14:27:06 -0400232 desc = nd_cmd_bus_desc(cmd);
233 uuid = to_nfit_uuid(NFIT_DEV_BUS);
234 handle = adev->handle;
235 dimm_name = "bus";
236 }
237
238 if (!desc || (cmd && (desc->out_num + desc->in_num == 0)))
239 return -ENOTTY;
240
Dan Williams31eca762016-04-28 16:23:43 -0700241 if (!test_bit(cmd, &cmd_mask) || !test_bit(func, &dsm_mask))
Dan Williams62232e452015-06-08 14:27:06 -0400242 return -ENOTTY;
243
244 in_obj.type = ACPI_TYPE_PACKAGE;
245 in_obj.package.count = 1;
246 in_obj.package.elements = &in_buf;
247 in_buf.type = ACPI_TYPE_BUFFER;
248 in_buf.buffer.pointer = buf;
249 in_buf.buffer.length = 0;
250
251 /* libnvdimm has already validated the input envelope */
252 for (i = 0; i < desc->in_num; i++)
253 in_buf.buffer.length += nd_cmd_in_size(nvdimm, cmd, desc,
254 i, buf);
255
Dan Williams31eca762016-04-28 16:23:43 -0700256 if (call_pkg) {
257 /* skip over package wrapper */
258 in_buf.buffer.pointer = (void *) &call_pkg->nd_payload;
259 in_buf.buffer.length = call_pkg->nd_size_in;
Dan Williams62232e452015-06-08 14:27:06 -0400260 }
261
Dan Williams31eca762016-04-28 16:23:43 -0700262 if (IS_ENABLED(CONFIG_ACPI_NFIT_DEBUG)) {
263 dev_dbg(dev, "%s:%s cmd: %d: func: %d input length: %d\n",
264 __func__, dimm_name, cmd, func,
265 in_buf.buffer.length);
266 print_hex_dump_debug("nvdimm in ", DUMP_PREFIX_OFFSET, 4, 4,
267 in_buf.buffer.pointer,
268 min_t(u32, 256, in_buf.buffer.length), true);
269 }
270
271 out_obj = acpi_evaluate_dsm(handle, uuid, 1, func, &in_obj);
Dan Williams62232e452015-06-08 14:27:06 -0400272 if (!out_obj) {
273 dev_dbg(dev, "%s:%s _DSM failed cmd: %s\n", __func__, dimm_name,
274 cmd_name);
275 return -EINVAL;
276 }
277
Dan Williams31eca762016-04-28 16:23:43 -0700278 if (call_pkg) {
279 call_pkg->nd_fw_size = out_obj->buffer.length;
280 memcpy(call_pkg->nd_payload + call_pkg->nd_size_in,
281 out_obj->buffer.pointer,
282 min(call_pkg->nd_fw_size, call_pkg->nd_size_out));
283
284 ACPI_FREE(out_obj);
285 /*
286 * Need to support FW function w/o known size in advance.
287 * Caller can determine required size based upon nd_fw_size.
288 * If we return an error (like elsewhere) then caller wouldn't
289 * be able to rely upon data returned to make calculation.
290 */
291 return 0;
292 }
293
Dan Williams62232e452015-06-08 14:27:06 -0400294 if (out_obj->package.type != ACPI_TYPE_BUFFER) {
295 dev_dbg(dev, "%s:%s unexpected output object type cmd: %s type: %d\n",
296 __func__, dimm_name, cmd_name, out_obj->type);
297 rc = -EINVAL;
298 goto out;
299 }
300
301 if (IS_ENABLED(CONFIG_ACPI_NFIT_DEBUG)) {
302 dev_dbg(dev, "%s:%s cmd: %s output length: %d\n", __func__,
303 dimm_name, cmd_name, out_obj->buffer.length);
304 print_hex_dump_debug(cmd_name, DUMP_PREFIX_OFFSET, 4,
305 4, out_obj->buffer.pointer, min_t(u32, 128,
306 out_obj->buffer.length), true);
307 }
308
309 for (i = 0, offset = 0; i < desc->out_num; i++) {
310 u32 out_size = nd_cmd_out_size(nvdimm, cmd, desc, i, buf,
Dan Williamsefda1b5d2016-12-06 09:10:12 -0800311 (u32 *) out_obj->buffer.pointer,
312 out_obj->buffer.length - offset);
Dan Williams62232e452015-06-08 14:27:06 -0400313
314 if (offset + out_size > out_obj->buffer.length) {
315 dev_dbg(dev, "%s:%s output object underflow cmd: %s field: %d\n",
316 __func__, dimm_name, cmd_name, i);
317 break;
318 }
319
320 if (in_buf.buffer.length + offset + out_size > buf_len) {
321 dev_dbg(dev, "%s:%s output overrun cmd: %s field: %d\n",
322 __func__, dimm_name, cmd_name, i);
323 rc = -ENXIO;
324 goto out;
325 }
326 memcpy(buf + in_buf.buffer.length + offset,
327 out_obj->buffer.pointer + offset, out_size);
328 offset += out_size;
329 }
Dan Williams11294d62016-09-21 09:21:26 -0700330
331 /*
332 * Set fw_status for all the commands with a known format to be
333 * later interpreted by xlat_status().
334 */
335 if (i >= 1 && ((cmd >= ND_CMD_ARS_CAP && cmd <= ND_CMD_CLEAR_ERROR)
336 || (cmd >= ND_CMD_SMART && cmd <= ND_CMD_VENDOR)))
337 fw_status = *(u32 *) out_obj->buffer.pointer;
338
Dan Williams62232e452015-06-08 14:27:06 -0400339 if (offset + in_buf.buffer.length < buf_len) {
340 if (i >= 1) {
341 /*
342 * status valid, return the number of bytes left
343 * unfilled in the output buffer
344 */
345 rc = buf_len - offset - in_buf.buffer.length;
Dan Williamsaef25332016-02-12 17:01:11 -0800346 if (cmd_rc)
Dan Williamsd6eb2702016-12-06 15:06:55 -0800347 *cmd_rc = xlat_status(nvdimm, buf, cmd,
348 fw_status);
Dan Williams62232e452015-06-08 14:27:06 -0400349 } else {
350 dev_err(dev, "%s:%s underrun cmd: %s buf_len: %d out_len: %d\n",
351 __func__, dimm_name, cmd_name, buf_len,
352 offset);
353 rc = -ENXIO;
354 }
Dan Williams2eea6582016-05-02 09:11:53 -0700355 } else {
Dan Williams62232e452015-06-08 14:27:06 -0400356 rc = 0;
Dan Williams2eea6582016-05-02 09:11:53 -0700357 if (cmd_rc)
Dan Williamsd6eb2702016-12-06 15:06:55 -0800358 *cmd_rc = xlat_status(nvdimm, buf, cmd, fw_status);
Dan Williams2eea6582016-05-02 09:11:53 -0700359 }
Dan Williams62232e452015-06-08 14:27:06 -0400360
361 out:
362 ACPI_FREE(out_obj);
363
364 return rc;
Dan Williamsb94d5232015-05-19 22:54:31 -0400365}
Dan Williamsa7de92d2016-12-05 13:43:25 -0800366EXPORT_SYMBOL_GPL(acpi_nfit_ctl);
Dan Williamsb94d5232015-05-19 22:54:31 -0400367
368static const char *spa_type_name(u16 type)
369{
370 static const char *to_name[] = {
371 [NFIT_SPA_VOLATILE] = "volatile",
372 [NFIT_SPA_PM] = "pmem",
373 [NFIT_SPA_DCR] = "dimm-control-region",
374 [NFIT_SPA_BDW] = "block-data-window",
375 [NFIT_SPA_VDISK] = "volatile-disk",
376 [NFIT_SPA_VCD] = "volatile-cd",
377 [NFIT_SPA_PDISK] = "persistent-disk",
378 [NFIT_SPA_PCD] = "persistent-cd",
379
380 };
381
382 if (type > NFIT_SPA_PCD)
383 return "unknown";
384
385 return to_name[type];
386}
387
Vishal Verma6839a6d2016-07-23 21:51:21 -0700388int nfit_spa_type(struct acpi_nfit_system_address *spa)
Dan Williamsb94d5232015-05-19 22:54:31 -0400389{
390 int i;
391
392 for (i = 0; i < NFIT_UUID_MAX; i++)
393 if (memcmp(to_nfit_uuid(i), spa->range_guid, 16) == 0)
394 return i;
395 return -1;
396}
397
398static bool add_spa(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600399 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400400 struct acpi_nfit_system_address *spa)
401{
402 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600403 struct nfit_spa *nfit_spa;
Dan Williamsb94d5232015-05-19 22:54:31 -0400404
Dan Williams31932042016-07-14 17:22:48 -0700405 if (spa->header.length != sizeof(*spa))
406 return false;
407
Vishal Verma20985162015-10-27 16:58:27 -0600408 list_for_each_entry(nfit_spa, &prev->spas, list) {
Dan Williams31932042016-07-14 17:22:48 -0700409 if (memcmp(nfit_spa->spa, spa, sizeof(*spa)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600410 list_move_tail(&nfit_spa->list, &acpi_desc->spas);
411 return true;
412 }
413 }
414
Dan Williams31932042016-07-14 17:22:48 -0700415 nfit_spa = devm_kzalloc(dev, sizeof(*nfit_spa) + sizeof(*spa),
416 GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400417 if (!nfit_spa)
418 return false;
419 INIT_LIST_HEAD(&nfit_spa->list);
Dan Williams31932042016-07-14 17:22:48 -0700420 memcpy(nfit_spa->spa, spa, sizeof(*spa));
Dan Williamsb94d5232015-05-19 22:54:31 -0400421 list_add_tail(&nfit_spa->list, &acpi_desc->spas);
422 dev_dbg(dev, "%s: spa index: %d type: %s\n", __func__,
423 spa->range_index,
424 spa_type_name(nfit_spa_type(spa)));
425 return true;
426}
427
428static bool add_memdev(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600429 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400430 struct acpi_nfit_memory_map *memdev)
431{
432 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600433 struct nfit_memdev *nfit_memdev;
Dan Williamsb94d5232015-05-19 22:54:31 -0400434
Dan Williams31932042016-07-14 17:22:48 -0700435 if (memdev->header.length != sizeof(*memdev))
436 return false;
437
Vishal Verma20985162015-10-27 16:58:27 -0600438 list_for_each_entry(nfit_memdev, &prev->memdevs, list)
Dan Williams31932042016-07-14 17:22:48 -0700439 if (memcmp(nfit_memdev->memdev, memdev, sizeof(*memdev)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600440 list_move_tail(&nfit_memdev->list, &acpi_desc->memdevs);
441 return true;
442 }
443
Dan Williams31932042016-07-14 17:22:48 -0700444 nfit_memdev = devm_kzalloc(dev, sizeof(*nfit_memdev) + sizeof(*memdev),
445 GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400446 if (!nfit_memdev)
447 return false;
448 INIT_LIST_HEAD(&nfit_memdev->list);
Dan Williams31932042016-07-14 17:22:48 -0700449 memcpy(nfit_memdev->memdev, memdev, sizeof(*memdev));
Dan Williamsb94d5232015-05-19 22:54:31 -0400450 list_add_tail(&nfit_memdev->list, &acpi_desc->memdevs);
451 dev_dbg(dev, "%s: memdev handle: %#x spa: %d dcr: %d\n",
452 __func__, memdev->device_handle, memdev->range_index,
453 memdev->region_index);
454 return true;
455}
456
Dan Williams31932042016-07-14 17:22:48 -0700457/*
458 * An implementation may provide a truncated control region if no block windows
459 * are defined.
460 */
461static size_t sizeof_dcr(struct acpi_nfit_control_region *dcr)
462{
463 if (dcr->header.length < offsetof(struct acpi_nfit_control_region,
464 window_size))
465 return 0;
466 if (dcr->windows)
467 return sizeof(*dcr);
468 return offsetof(struct acpi_nfit_control_region, window_size);
469}
470
Dan Williamsb94d5232015-05-19 22:54:31 -0400471static bool add_dcr(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600472 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400473 struct acpi_nfit_control_region *dcr)
474{
475 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600476 struct nfit_dcr *nfit_dcr;
Dan Williamsb94d5232015-05-19 22:54:31 -0400477
Dan Williams31932042016-07-14 17:22:48 -0700478 if (!sizeof_dcr(dcr))
479 return false;
480
Vishal Verma20985162015-10-27 16:58:27 -0600481 list_for_each_entry(nfit_dcr, &prev->dcrs, list)
Dan Williams31932042016-07-14 17:22:48 -0700482 if (memcmp(nfit_dcr->dcr, dcr, sizeof_dcr(dcr)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600483 list_move_tail(&nfit_dcr->list, &acpi_desc->dcrs);
484 return true;
485 }
486
Dan Williams31932042016-07-14 17:22:48 -0700487 nfit_dcr = devm_kzalloc(dev, sizeof(*nfit_dcr) + sizeof(*dcr),
488 GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400489 if (!nfit_dcr)
490 return false;
491 INIT_LIST_HEAD(&nfit_dcr->list);
Dan Williams31932042016-07-14 17:22:48 -0700492 memcpy(nfit_dcr->dcr, dcr, sizeof_dcr(dcr));
Dan Williamsb94d5232015-05-19 22:54:31 -0400493 list_add_tail(&nfit_dcr->list, &acpi_desc->dcrs);
494 dev_dbg(dev, "%s: dcr index: %d windows: %d\n", __func__,
495 dcr->region_index, dcr->windows);
496 return true;
497}
498
499static bool add_bdw(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600500 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400501 struct acpi_nfit_data_region *bdw)
502{
503 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600504 struct nfit_bdw *nfit_bdw;
Dan Williamsb94d5232015-05-19 22:54:31 -0400505
Dan Williams31932042016-07-14 17:22:48 -0700506 if (bdw->header.length != sizeof(*bdw))
507 return false;
Vishal Verma20985162015-10-27 16:58:27 -0600508 list_for_each_entry(nfit_bdw, &prev->bdws, list)
Dan Williams31932042016-07-14 17:22:48 -0700509 if (memcmp(nfit_bdw->bdw, bdw, sizeof(*bdw)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600510 list_move_tail(&nfit_bdw->list, &acpi_desc->bdws);
511 return true;
512 }
513
Dan Williams31932042016-07-14 17:22:48 -0700514 nfit_bdw = devm_kzalloc(dev, sizeof(*nfit_bdw) + sizeof(*bdw),
515 GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400516 if (!nfit_bdw)
517 return false;
518 INIT_LIST_HEAD(&nfit_bdw->list);
Dan Williams31932042016-07-14 17:22:48 -0700519 memcpy(nfit_bdw->bdw, bdw, sizeof(*bdw));
Dan Williamsb94d5232015-05-19 22:54:31 -0400520 list_add_tail(&nfit_bdw->list, &acpi_desc->bdws);
521 dev_dbg(dev, "%s: bdw dcr: %d windows: %d\n", __func__,
522 bdw->region_index, bdw->windows);
523 return true;
524}
525
Dan Williams31932042016-07-14 17:22:48 -0700526static size_t sizeof_idt(struct acpi_nfit_interleave *idt)
527{
528 if (idt->header.length < sizeof(*idt))
529 return 0;
530 return sizeof(*idt) + sizeof(u32) * (idt->line_count - 1);
531}
532
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400533static bool add_idt(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600534 struct nfit_table_prev *prev,
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400535 struct acpi_nfit_interleave *idt)
536{
537 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600538 struct nfit_idt *nfit_idt;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400539
Dan Williams31932042016-07-14 17:22:48 -0700540 if (!sizeof_idt(idt))
541 return false;
542
543 list_for_each_entry(nfit_idt, &prev->idts, list) {
544 if (sizeof_idt(nfit_idt->idt) != sizeof_idt(idt))
545 continue;
546
547 if (memcmp(nfit_idt->idt, idt, sizeof_idt(idt)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600548 list_move_tail(&nfit_idt->list, &acpi_desc->idts);
549 return true;
550 }
Dan Williams31932042016-07-14 17:22:48 -0700551 }
Vishal Verma20985162015-10-27 16:58:27 -0600552
Dan Williams31932042016-07-14 17:22:48 -0700553 nfit_idt = devm_kzalloc(dev, sizeof(*nfit_idt) + sizeof_idt(idt),
554 GFP_KERNEL);
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400555 if (!nfit_idt)
556 return false;
557 INIT_LIST_HEAD(&nfit_idt->list);
Dan Williams31932042016-07-14 17:22:48 -0700558 memcpy(nfit_idt->idt, idt, sizeof_idt(idt));
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400559 list_add_tail(&nfit_idt->list, &acpi_desc->idts);
560 dev_dbg(dev, "%s: idt index: %d num_lines: %d\n", __func__,
561 idt->interleave_index, idt->line_count);
562 return true;
563}
564
Dan Williams31932042016-07-14 17:22:48 -0700565static size_t sizeof_flush(struct acpi_nfit_flush_address *flush)
566{
567 if (flush->header.length < sizeof(*flush))
568 return 0;
569 return sizeof(*flush) + sizeof(u64) * (flush->hint_count - 1);
570}
571
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600572static bool add_flush(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600573 struct nfit_table_prev *prev,
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600574 struct acpi_nfit_flush_address *flush)
575{
576 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600577 struct nfit_flush *nfit_flush;
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600578
Dan Williams31932042016-07-14 17:22:48 -0700579 if (!sizeof_flush(flush))
580 return false;
581
582 list_for_each_entry(nfit_flush, &prev->flushes, list) {
583 if (sizeof_flush(nfit_flush->flush) != sizeof_flush(flush))
584 continue;
585
586 if (memcmp(nfit_flush->flush, flush,
587 sizeof_flush(flush)) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600588 list_move_tail(&nfit_flush->list, &acpi_desc->flushes);
589 return true;
590 }
Dan Williams31932042016-07-14 17:22:48 -0700591 }
Vishal Verma20985162015-10-27 16:58:27 -0600592
Dan Williams31932042016-07-14 17:22:48 -0700593 nfit_flush = devm_kzalloc(dev, sizeof(*nfit_flush)
594 + sizeof_flush(flush), GFP_KERNEL);
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600595 if (!nfit_flush)
596 return false;
597 INIT_LIST_HEAD(&nfit_flush->list);
Dan Williams31932042016-07-14 17:22:48 -0700598 memcpy(nfit_flush->flush, flush, sizeof_flush(flush));
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600599 list_add_tail(&nfit_flush->list, &acpi_desc->flushes);
600 dev_dbg(dev, "%s: nfit_flush handle: %d hint_count: %d\n", __func__,
601 flush->device_handle, flush->hint_count);
602 return true;
603}
604
Vishal Verma20985162015-10-27 16:58:27 -0600605static void *add_table(struct acpi_nfit_desc *acpi_desc,
606 struct nfit_table_prev *prev, void *table, const void *end)
Dan Williamsb94d5232015-05-19 22:54:31 -0400607{
608 struct device *dev = acpi_desc->dev;
609 struct acpi_nfit_header *hdr;
610 void *err = ERR_PTR(-ENOMEM);
611
612 if (table >= end)
613 return NULL;
614
615 hdr = table;
Vishal Verma564d5012015-10-27 16:58:26 -0600616 if (!hdr->length) {
617 dev_warn(dev, "found a zero length table '%d' parsing nfit\n",
618 hdr->type);
619 return NULL;
620 }
621
Dan Williamsb94d5232015-05-19 22:54:31 -0400622 switch (hdr->type) {
623 case ACPI_NFIT_TYPE_SYSTEM_ADDRESS:
Vishal Verma20985162015-10-27 16:58:27 -0600624 if (!add_spa(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400625 return err;
626 break;
627 case ACPI_NFIT_TYPE_MEMORY_MAP:
Vishal Verma20985162015-10-27 16:58:27 -0600628 if (!add_memdev(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400629 return err;
630 break;
631 case ACPI_NFIT_TYPE_CONTROL_REGION:
Vishal Verma20985162015-10-27 16:58:27 -0600632 if (!add_dcr(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400633 return err;
634 break;
635 case ACPI_NFIT_TYPE_DATA_REGION:
Vishal Verma20985162015-10-27 16:58:27 -0600636 if (!add_bdw(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400637 return err;
638 break;
Dan Williamsb94d5232015-05-19 22:54:31 -0400639 case ACPI_NFIT_TYPE_INTERLEAVE:
Vishal Verma20985162015-10-27 16:58:27 -0600640 if (!add_idt(acpi_desc, prev, table))
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400641 return err;
Dan Williamsb94d5232015-05-19 22:54:31 -0400642 break;
643 case ACPI_NFIT_TYPE_FLUSH_ADDRESS:
Vishal Verma20985162015-10-27 16:58:27 -0600644 if (!add_flush(acpi_desc, prev, table))
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600645 return err;
Dan Williamsb94d5232015-05-19 22:54:31 -0400646 break;
647 case ACPI_NFIT_TYPE_SMBIOS:
648 dev_dbg(dev, "%s: smbios\n", __func__);
649 break;
650 default:
651 dev_err(dev, "unknown table '%d' parsing nfit\n", hdr->type);
652 break;
653 }
654
655 return table + hdr->length;
656}
657
658static void nfit_mem_find_spa_bdw(struct acpi_nfit_desc *acpi_desc,
659 struct nfit_mem *nfit_mem)
660{
661 u32 device_handle = __to_nfit_memdev(nfit_mem)->device_handle;
662 u16 dcr = nfit_mem->dcr->region_index;
663 struct nfit_spa *nfit_spa;
664
665 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
666 u16 range_index = nfit_spa->spa->range_index;
667 int type = nfit_spa_type(nfit_spa->spa);
668 struct nfit_memdev *nfit_memdev;
669
670 if (type != NFIT_SPA_BDW)
671 continue;
672
673 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
674 if (nfit_memdev->memdev->range_index != range_index)
675 continue;
676 if (nfit_memdev->memdev->device_handle != device_handle)
677 continue;
678 if (nfit_memdev->memdev->region_index != dcr)
679 continue;
680
681 nfit_mem->spa_bdw = nfit_spa->spa;
682 return;
683 }
684 }
685
686 dev_dbg(acpi_desc->dev, "SPA-BDW not found for SPA-DCR %d\n",
687 nfit_mem->spa_dcr->range_index);
688 nfit_mem->bdw = NULL;
689}
690
Dan Williams6697b2c2016-02-04 16:51:00 -0800691static void nfit_mem_init_bdw(struct acpi_nfit_desc *acpi_desc,
Dan Williamsb94d5232015-05-19 22:54:31 -0400692 struct nfit_mem *nfit_mem, struct acpi_nfit_system_address *spa)
693{
694 u16 dcr = __to_nfit_memdev(nfit_mem)->region_index;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400695 struct nfit_memdev *nfit_memdev;
Dan Williamsb94d5232015-05-19 22:54:31 -0400696 struct nfit_bdw *nfit_bdw;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400697 struct nfit_idt *nfit_idt;
698 u16 idt_idx, range_index;
Dan Williamsb94d5232015-05-19 22:54:31 -0400699
Dan Williamsb94d5232015-05-19 22:54:31 -0400700 list_for_each_entry(nfit_bdw, &acpi_desc->bdws, list) {
701 if (nfit_bdw->bdw->region_index != dcr)
702 continue;
703 nfit_mem->bdw = nfit_bdw->bdw;
704 break;
705 }
706
707 if (!nfit_mem->bdw)
Dan Williams6697b2c2016-02-04 16:51:00 -0800708 return;
Dan Williamsb94d5232015-05-19 22:54:31 -0400709
710 nfit_mem_find_spa_bdw(acpi_desc, nfit_mem);
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400711
712 if (!nfit_mem->spa_bdw)
Dan Williams6697b2c2016-02-04 16:51:00 -0800713 return;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400714
715 range_index = nfit_mem->spa_bdw->range_index;
716 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
717 if (nfit_memdev->memdev->range_index != range_index ||
718 nfit_memdev->memdev->region_index != dcr)
719 continue;
720 nfit_mem->memdev_bdw = nfit_memdev->memdev;
721 idt_idx = nfit_memdev->memdev->interleave_index;
722 list_for_each_entry(nfit_idt, &acpi_desc->idts, list) {
723 if (nfit_idt->idt->interleave_index != idt_idx)
724 continue;
725 nfit_mem->idt_bdw = nfit_idt->idt;
726 break;
727 }
728 break;
729 }
Dan Williamsb94d5232015-05-19 22:54:31 -0400730}
731
732static int nfit_mem_dcr_init(struct acpi_nfit_desc *acpi_desc,
733 struct acpi_nfit_system_address *spa)
734{
735 struct nfit_mem *nfit_mem, *found;
736 struct nfit_memdev *nfit_memdev;
737 int type = nfit_spa_type(spa);
Dan Williamsb94d5232015-05-19 22:54:31 -0400738
739 switch (type) {
740 case NFIT_SPA_DCR:
741 case NFIT_SPA_PM:
742 break;
743 default:
744 return 0;
745 }
746
747 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700748 struct nfit_flush *nfit_flush;
Dan Williams6697b2c2016-02-04 16:51:00 -0800749 struct nfit_dcr *nfit_dcr;
750 u32 device_handle;
751 u16 dcr;
Dan Williamsb94d5232015-05-19 22:54:31 -0400752
753 if (nfit_memdev->memdev->range_index != spa->range_index)
754 continue;
755 found = NULL;
756 dcr = nfit_memdev->memdev->region_index;
Dan Williams6697b2c2016-02-04 16:51:00 -0800757 device_handle = nfit_memdev->memdev->device_handle;
Dan Williamsb94d5232015-05-19 22:54:31 -0400758 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list)
Dan Williams6697b2c2016-02-04 16:51:00 -0800759 if (__to_nfit_memdev(nfit_mem)->device_handle
760 == device_handle) {
Dan Williamsb94d5232015-05-19 22:54:31 -0400761 found = nfit_mem;
762 break;
763 }
764
765 if (found)
766 nfit_mem = found;
767 else {
768 nfit_mem = devm_kzalloc(acpi_desc->dev,
769 sizeof(*nfit_mem), GFP_KERNEL);
770 if (!nfit_mem)
771 return -ENOMEM;
772 INIT_LIST_HEAD(&nfit_mem->list);
Dan Williams8cc6ddf2016-04-05 15:26:50 -0700773 nfit_mem->acpi_desc = acpi_desc;
Dan Williams6697b2c2016-02-04 16:51:00 -0800774 list_add(&nfit_mem->list, &acpi_desc->dimms);
775 }
776
777 list_for_each_entry(nfit_dcr, &acpi_desc->dcrs, list) {
778 if (nfit_dcr->dcr->region_index != dcr)
779 continue;
780 /*
781 * Record the control region for the dimm. For
782 * the ACPI 6.1 case, where there are separate
783 * control regions for the pmem vs blk
784 * interfaces, be sure to record the extended
785 * blk details.
786 */
787 if (!nfit_mem->dcr)
788 nfit_mem->dcr = nfit_dcr->dcr;
789 else if (nfit_mem->dcr->windows == 0
790 && nfit_dcr->dcr->windows)
791 nfit_mem->dcr = nfit_dcr->dcr;
792 break;
793 }
794
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700795 list_for_each_entry(nfit_flush, &acpi_desc->flushes, list) {
Dan Williamse5ae3b22016-06-07 17:00:04 -0700796 struct acpi_nfit_flush_address *flush;
797 u16 i;
798
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700799 if (nfit_flush->flush->device_handle != device_handle)
800 continue;
801 nfit_mem->nfit_flush = nfit_flush;
Dan Williamse5ae3b22016-06-07 17:00:04 -0700802 flush = nfit_flush->flush;
803 nfit_mem->flush_wpq = devm_kzalloc(acpi_desc->dev,
804 flush->hint_count
805 * sizeof(struct resource), GFP_KERNEL);
806 if (!nfit_mem->flush_wpq)
807 return -ENOMEM;
808 for (i = 0; i < flush->hint_count; i++) {
809 struct resource *res = &nfit_mem->flush_wpq[i];
810
811 res->start = flush->hint_address[i];
812 res->end = res->start + 8 - 1;
813 }
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700814 break;
815 }
816
Dan Williams6697b2c2016-02-04 16:51:00 -0800817 if (dcr && !nfit_mem->dcr) {
818 dev_err(acpi_desc->dev, "SPA %d missing DCR %d\n",
819 spa->range_index, dcr);
820 return -ENODEV;
Dan Williamsb94d5232015-05-19 22:54:31 -0400821 }
822
823 if (type == NFIT_SPA_DCR) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400824 struct nfit_idt *nfit_idt;
825 u16 idt_idx;
826
Dan Williamsb94d5232015-05-19 22:54:31 -0400827 /* multiple dimms may share a SPA when interleaved */
828 nfit_mem->spa_dcr = spa;
829 nfit_mem->memdev_dcr = nfit_memdev->memdev;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400830 idt_idx = nfit_memdev->memdev->interleave_index;
831 list_for_each_entry(nfit_idt, &acpi_desc->idts, list) {
832 if (nfit_idt->idt->interleave_index != idt_idx)
833 continue;
834 nfit_mem->idt_dcr = nfit_idt->idt;
835 break;
836 }
Dan Williams6697b2c2016-02-04 16:51:00 -0800837 nfit_mem_init_bdw(acpi_desc, nfit_mem, spa);
Dan Williamsb94d5232015-05-19 22:54:31 -0400838 } else {
839 /*
840 * A single dimm may belong to multiple SPA-PM
841 * ranges, record at least one in addition to
842 * any SPA-DCR range.
843 */
844 nfit_mem->memdev_pmem = nfit_memdev->memdev;
845 }
Dan Williamsb94d5232015-05-19 22:54:31 -0400846 }
847
848 return 0;
849}
850
851static int nfit_mem_cmp(void *priv, struct list_head *_a, struct list_head *_b)
852{
853 struct nfit_mem *a = container_of(_a, typeof(*a), list);
854 struct nfit_mem *b = container_of(_b, typeof(*b), list);
855 u32 handleA, handleB;
856
857 handleA = __to_nfit_memdev(a)->device_handle;
858 handleB = __to_nfit_memdev(b)->device_handle;
859 if (handleA < handleB)
860 return -1;
861 else if (handleA > handleB)
862 return 1;
863 return 0;
864}
865
866static int nfit_mem_init(struct acpi_nfit_desc *acpi_desc)
867{
868 struct nfit_spa *nfit_spa;
869
870 /*
871 * For each SPA-DCR or SPA-PMEM address range find its
872 * corresponding MEMDEV(s). From each MEMDEV find the
873 * corresponding DCR. Then, if we're operating on a SPA-DCR,
874 * try to find a SPA-BDW and a corresponding BDW that references
875 * the DCR. Throw it all into an nfit_mem object. Note, that
876 * BDWs are optional.
877 */
878 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
879 int rc;
880
881 rc = nfit_mem_dcr_init(acpi_desc, nfit_spa->spa);
882 if (rc)
883 return rc;
884 }
885
886 list_sort(NULL, &acpi_desc->dimms, nfit_mem_cmp);
887
888 return 0;
889}
890
Dan Williams45def222015-04-26 19:26:48 -0400891static ssize_t revision_show(struct device *dev,
892 struct device_attribute *attr, char *buf)
893{
894 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
895 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
896 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
897
Linda Knippers6b577c92015-11-20 19:05:49 -0500898 return sprintf(buf, "%d\n", acpi_desc->acpi_header.revision);
Dan Williams45def222015-04-26 19:26:48 -0400899}
900static DEVICE_ATTR_RO(revision);
901
Vishal Verma9ffd6352016-09-30 17:19:29 -0600902static ssize_t hw_error_scrub_show(struct device *dev,
903 struct device_attribute *attr, char *buf)
904{
905 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
906 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
907 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
908
909 return sprintf(buf, "%d\n", acpi_desc->scrub_mode);
910}
911
912/*
913 * The 'hw_error_scrub' attribute can have the following values written to it:
914 * '0': Switch to the default mode where an exception will only insert
915 * the address of the memory error into the poison and badblocks lists.
916 * '1': Enable a full scrub to happen if an exception for a memory error is
917 * received.
918 */
919static ssize_t hw_error_scrub_store(struct device *dev,
920 struct device_attribute *attr, const char *buf, size_t size)
921{
922 struct nvdimm_bus_descriptor *nd_desc;
923 ssize_t rc;
924 long val;
925
926 rc = kstrtol(buf, 0, &val);
927 if (rc)
928 return rc;
929
930 device_lock(dev);
931 nd_desc = dev_get_drvdata(dev);
932 if (nd_desc) {
933 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
934
935 switch (val) {
936 case HW_ERROR_SCRUB_ON:
937 acpi_desc->scrub_mode = HW_ERROR_SCRUB_ON;
938 break;
939 case HW_ERROR_SCRUB_OFF:
940 acpi_desc->scrub_mode = HW_ERROR_SCRUB_OFF;
941 break;
942 default:
943 rc = -EINVAL;
944 break;
945 }
946 }
947 device_unlock(dev);
948 if (rc)
949 return rc;
950 return size;
951}
952static DEVICE_ATTR_RW(hw_error_scrub);
953
Vishal Verma37b137f2016-07-23 21:51:42 -0700954/*
955 * This shows the number of full Address Range Scrubs that have been
956 * completed since driver load time. Userspace can wait on this using
957 * select/poll etc. A '+' at the end indicates an ARS is in progress
958 */
959static ssize_t scrub_show(struct device *dev,
960 struct device_attribute *attr, char *buf)
961{
962 struct nvdimm_bus_descriptor *nd_desc;
963 ssize_t rc = -ENXIO;
964
965 device_lock(dev);
966 nd_desc = dev_get_drvdata(dev);
967 if (nd_desc) {
968 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
969
970 rc = sprintf(buf, "%d%s", acpi_desc->scrub_count,
971 (work_busy(&acpi_desc->work)) ? "+\n" : "\n");
972 }
973 device_unlock(dev);
974 return rc;
975}
976
Vishal Verma37b137f2016-07-23 21:51:42 -0700977static ssize_t scrub_store(struct device *dev,
978 struct device_attribute *attr, const char *buf, size_t size)
979{
980 struct nvdimm_bus_descriptor *nd_desc;
981 ssize_t rc;
982 long val;
983
984 rc = kstrtol(buf, 0, &val);
985 if (rc)
986 return rc;
987 if (val != 1)
988 return -EINVAL;
989
990 device_lock(dev);
991 nd_desc = dev_get_drvdata(dev);
992 if (nd_desc) {
993 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
994
995 rc = acpi_nfit_ars_rescan(acpi_desc);
996 }
997 device_unlock(dev);
998 if (rc)
999 return rc;
1000 return size;
1001}
1002static DEVICE_ATTR_RW(scrub);
1003
1004static bool ars_supported(struct nvdimm_bus *nvdimm_bus)
1005{
1006 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
1007 const unsigned long mask = 1 << ND_CMD_ARS_CAP | 1 << ND_CMD_ARS_START
1008 | 1 << ND_CMD_ARS_STATUS;
1009
1010 return (nd_desc->cmd_mask & mask) == mask;
1011}
1012
1013static umode_t nfit_visible(struct kobject *kobj, struct attribute *a, int n)
1014{
1015 struct device *dev = container_of(kobj, struct device, kobj);
1016 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
1017
1018 if (a == &dev_attr_scrub.attr && !ars_supported(nvdimm_bus))
1019 return 0;
1020 return a->mode;
1021}
1022
Dan Williams45def222015-04-26 19:26:48 -04001023static struct attribute *acpi_nfit_attributes[] = {
1024 &dev_attr_revision.attr,
Vishal Verma37b137f2016-07-23 21:51:42 -07001025 &dev_attr_scrub.attr,
Vishal Verma9ffd6352016-09-30 17:19:29 -06001026 &dev_attr_hw_error_scrub.attr,
Dan Williams45def222015-04-26 19:26:48 -04001027 NULL,
1028};
1029
1030static struct attribute_group acpi_nfit_attribute_group = {
1031 .name = "nfit",
1032 .attrs = acpi_nfit_attributes,
Vishal Verma37b137f2016-07-23 21:51:42 -07001033 .is_visible = nfit_visible,
Dan Williams45def222015-04-26 19:26:48 -04001034};
1035
Dan Williamsa61fe6f2016-02-19 12:29:32 -08001036static const struct attribute_group *acpi_nfit_attribute_groups[] = {
Dan Williams45def222015-04-26 19:26:48 -04001037 &nvdimm_bus_attribute_group,
1038 &acpi_nfit_attribute_group,
1039 NULL,
1040};
1041
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001042static struct acpi_nfit_memory_map *to_nfit_memdev(struct device *dev)
1043{
1044 struct nvdimm *nvdimm = to_nvdimm(dev);
1045 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1046
1047 return __to_nfit_memdev(nfit_mem);
1048}
1049
1050static struct acpi_nfit_control_region *to_nfit_dcr(struct device *dev)
1051{
1052 struct nvdimm *nvdimm = to_nvdimm(dev);
1053 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1054
1055 return nfit_mem->dcr;
1056}
1057
1058static ssize_t handle_show(struct device *dev,
1059 struct device_attribute *attr, char *buf)
1060{
1061 struct acpi_nfit_memory_map *memdev = to_nfit_memdev(dev);
1062
1063 return sprintf(buf, "%#x\n", memdev->device_handle);
1064}
1065static DEVICE_ATTR_RO(handle);
1066
1067static ssize_t phys_id_show(struct device *dev,
1068 struct device_attribute *attr, char *buf)
1069{
1070 struct acpi_nfit_memory_map *memdev = to_nfit_memdev(dev);
1071
1072 return sprintf(buf, "%#x\n", memdev->physical_id);
1073}
1074static DEVICE_ATTR_RO(phys_id);
1075
1076static ssize_t vendor_show(struct device *dev,
1077 struct device_attribute *attr, char *buf)
1078{
1079 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1080
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001081 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->vendor_id));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001082}
1083static DEVICE_ATTR_RO(vendor);
1084
1085static ssize_t rev_id_show(struct device *dev,
1086 struct device_attribute *attr, char *buf)
1087{
1088 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1089
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001090 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->revision_id));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001091}
1092static DEVICE_ATTR_RO(rev_id);
1093
1094static ssize_t device_show(struct device *dev,
1095 struct device_attribute *attr, char *buf)
1096{
1097 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1098
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001099 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->device_id));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001100}
1101static DEVICE_ATTR_RO(device);
1102
Dan Williams6ca72082016-04-29 10:33:23 -07001103static ssize_t subsystem_vendor_show(struct device *dev,
1104 struct device_attribute *attr, char *buf)
1105{
1106 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1107
1108 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->subsystem_vendor_id));
1109}
1110static DEVICE_ATTR_RO(subsystem_vendor);
1111
1112static ssize_t subsystem_rev_id_show(struct device *dev,
1113 struct device_attribute *attr, char *buf)
1114{
1115 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1116
1117 return sprintf(buf, "0x%04x\n",
1118 be16_to_cpu(dcr->subsystem_revision_id));
1119}
1120static DEVICE_ATTR_RO(subsystem_rev_id);
1121
1122static ssize_t subsystem_device_show(struct device *dev,
1123 struct device_attribute *attr, char *buf)
1124{
1125 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1126
1127 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->subsystem_device_id));
1128}
1129static DEVICE_ATTR_RO(subsystem_device);
1130
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001131static int num_nvdimm_formats(struct nvdimm *nvdimm)
1132{
1133 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1134 int formats = 0;
1135
1136 if (nfit_mem->memdev_pmem)
1137 formats++;
1138 if (nfit_mem->memdev_bdw)
1139 formats++;
1140 return formats;
1141}
1142
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001143static ssize_t format_show(struct device *dev,
1144 struct device_attribute *attr, char *buf)
1145{
1146 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1147
Dan Williams1bcbf422016-06-29 11:19:32 -07001148 return sprintf(buf, "0x%04x\n", le16_to_cpu(dcr->code));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001149}
1150static DEVICE_ATTR_RO(format);
1151
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001152static ssize_t format1_show(struct device *dev,
1153 struct device_attribute *attr, char *buf)
1154{
1155 u32 handle;
1156 ssize_t rc = -ENXIO;
1157 struct nfit_mem *nfit_mem;
1158 struct nfit_memdev *nfit_memdev;
1159 struct acpi_nfit_desc *acpi_desc;
1160 struct nvdimm *nvdimm = to_nvdimm(dev);
1161 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1162
1163 nfit_mem = nvdimm_provider_data(nvdimm);
1164 acpi_desc = nfit_mem->acpi_desc;
1165 handle = to_nfit_memdev(dev)->device_handle;
1166
1167 /* assumes DIMMs have at most 2 published interface codes */
1168 mutex_lock(&acpi_desc->init_mutex);
1169 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
1170 struct acpi_nfit_memory_map *memdev = nfit_memdev->memdev;
1171 struct nfit_dcr *nfit_dcr;
1172
1173 if (memdev->device_handle != handle)
1174 continue;
1175
1176 list_for_each_entry(nfit_dcr, &acpi_desc->dcrs, list) {
1177 if (nfit_dcr->dcr->region_index != memdev->region_index)
1178 continue;
1179 if (nfit_dcr->dcr->code == dcr->code)
1180 continue;
Dan Williams1bcbf422016-06-29 11:19:32 -07001181 rc = sprintf(buf, "0x%04x\n",
1182 le16_to_cpu(nfit_dcr->dcr->code));
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001183 break;
1184 }
1185 if (rc != ENXIO)
1186 break;
1187 }
1188 mutex_unlock(&acpi_desc->init_mutex);
1189 return rc;
1190}
1191static DEVICE_ATTR_RO(format1);
1192
1193static ssize_t formats_show(struct device *dev,
1194 struct device_attribute *attr, char *buf)
1195{
1196 struct nvdimm *nvdimm = to_nvdimm(dev);
1197
1198 return sprintf(buf, "%d\n", num_nvdimm_formats(nvdimm));
1199}
1200static DEVICE_ATTR_RO(formats);
1201
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001202static ssize_t serial_show(struct device *dev,
1203 struct device_attribute *attr, char *buf)
1204{
1205 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1206
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001207 return sprintf(buf, "0x%08x\n", be32_to_cpu(dcr->serial_number));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001208}
1209static DEVICE_ATTR_RO(serial);
1210
Dan Williamsa94e3fb2016-04-28 18:18:05 -07001211static ssize_t family_show(struct device *dev,
1212 struct device_attribute *attr, char *buf)
1213{
1214 struct nvdimm *nvdimm = to_nvdimm(dev);
1215 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1216
1217 if (nfit_mem->family < 0)
1218 return -ENXIO;
1219 return sprintf(buf, "%d\n", nfit_mem->family);
1220}
1221static DEVICE_ATTR_RO(family);
1222
1223static ssize_t dsm_mask_show(struct device *dev,
1224 struct device_attribute *attr, char *buf)
1225{
1226 struct nvdimm *nvdimm = to_nvdimm(dev);
1227 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1228
1229 if (nfit_mem->family < 0)
1230 return -ENXIO;
1231 return sprintf(buf, "%#lx\n", nfit_mem->dsm_mask);
1232}
1233static DEVICE_ATTR_RO(dsm_mask);
1234
Dan Williams58138822015-06-23 20:08:34 -04001235static ssize_t flags_show(struct device *dev,
1236 struct device_attribute *attr, char *buf)
1237{
1238 u16 flags = to_nfit_memdev(dev)->flags;
1239
1240 return sprintf(buf, "%s%s%s%s%s\n",
Toshi Kani402bae52015-08-26 10:20:23 -06001241 flags & ACPI_NFIT_MEM_SAVE_FAILED ? "save_fail " : "",
1242 flags & ACPI_NFIT_MEM_RESTORE_FAILED ? "restore_fail " : "",
1243 flags & ACPI_NFIT_MEM_FLUSH_FAILED ? "flush_fail " : "",
Bob Mooreca321d12015-10-19 10:24:52 +08001244 flags & ACPI_NFIT_MEM_NOT_ARMED ? "not_armed " : "",
Toshi Kani402bae52015-08-26 10:20:23 -06001245 flags & ACPI_NFIT_MEM_HEALTH_OBSERVED ? "smart_event " : "");
Dan Williams58138822015-06-23 20:08:34 -04001246}
1247static DEVICE_ATTR_RO(flags);
1248
Toshi Kani38a879b2016-04-25 15:34:59 -06001249static ssize_t id_show(struct device *dev,
1250 struct device_attribute *attr, char *buf)
1251{
1252 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1253
1254 if (dcr->valid_fields & ACPI_NFIT_CONTROL_MFG_INFO_VALID)
1255 return sprintf(buf, "%04x-%02x-%04x-%08x\n",
1256 be16_to_cpu(dcr->vendor_id),
1257 dcr->manufacturing_location,
1258 be16_to_cpu(dcr->manufacturing_date),
1259 be32_to_cpu(dcr->serial_number));
1260 else
1261 return sprintf(buf, "%04x-%08x\n",
1262 be16_to_cpu(dcr->vendor_id),
1263 be32_to_cpu(dcr->serial_number));
1264}
1265static DEVICE_ATTR_RO(id);
1266
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001267static struct attribute *acpi_nfit_dimm_attributes[] = {
1268 &dev_attr_handle.attr,
1269 &dev_attr_phys_id.attr,
1270 &dev_attr_vendor.attr,
1271 &dev_attr_device.attr,
Dan Williams6ca72082016-04-29 10:33:23 -07001272 &dev_attr_rev_id.attr,
1273 &dev_attr_subsystem_vendor.attr,
1274 &dev_attr_subsystem_device.attr,
1275 &dev_attr_subsystem_rev_id.attr,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001276 &dev_attr_format.attr,
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001277 &dev_attr_formats.attr,
1278 &dev_attr_format1.attr,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001279 &dev_attr_serial.attr,
Dan Williams58138822015-06-23 20:08:34 -04001280 &dev_attr_flags.attr,
Toshi Kani38a879b2016-04-25 15:34:59 -06001281 &dev_attr_id.attr,
Dan Williamsa94e3fb2016-04-28 18:18:05 -07001282 &dev_attr_family.attr,
1283 &dev_attr_dsm_mask.attr,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001284 NULL,
1285};
1286
1287static umode_t acpi_nfit_dimm_attr_visible(struct kobject *kobj,
1288 struct attribute *a, int n)
1289{
1290 struct device *dev = container_of(kobj, struct device, kobj);
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001291 struct nvdimm *nvdimm = to_nvdimm(dev);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001292
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001293 if (!to_nfit_dcr(dev))
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001294 return 0;
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001295 if (a == &dev_attr_format1.attr && num_nvdimm_formats(nvdimm) <= 1)
1296 return 0;
1297 return a->mode;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001298}
1299
1300static struct attribute_group acpi_nfit_dimm_attribute_group = {
1301 .name = "nfit",
1302 .attrs = acpi_nfit_dimm_attributes,
1303 .is_visible = acpi_nfit_dimm_attr_visible,
1304};
1305
1306static const struct attribute_group *acpi_nfit_dimm_attribute_groups[] = {
Dan Williams62232e452015-06-08 14:27:06 -04001307 &nvdimm_attribute_group,
Dan Williams4d88a972015-05-31 14:41:48 -04001308 &nd_device_attribute_group,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001309 &acpi_nfit_dimm_attribute_group,
1310 NULL,
1311};
1312
1313static struct nvdimm *acpi_nfit_dimm_by_handle(struct acpi_nfit_desc *acpi_desc,
1314 u32 device_handle)
1315{
1316 struct nfit_mem *nfit_mem;
1317
1318 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list)
1319 if (__to_nfit_memdev(nfit_mem)->device_handle == device_handle)
1320 return nfit_mem->nvdimm;
1321
1322 return NULL;
1323}
1324
Dan Williams231bf112016-08-22 19:23:25 -07001325void __acpi_nvdimm_notify(struct device *dev, u32 event)
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001326{
1327 struct nfit_mem *nfit_mem;
1328 struct acpi_nfit_desc *acpi_desc;
1329
1330 dev_dbg(dev->parent, "%s: %s: event: %d\n", dev_name(dev), __func__,
1331 event);
1332
1333 if (event != NFIT_NOTIFY_DIMM_HEALTH) {
1334 dev_dbg(dev->parent, "%s: unknown event: %d\n", dev_name(dev),
1335 event);
1336 return;
1337 }
1338
1339 acpi_desc = dev_get_drvdata(dev->parent);
1340 if (!acpi_desc)
1341 return;
1342
1343 /*
1344 * If we successfully retrieved acpi_desc, then we know nfit_mem data
1345 * is still valid.
1346 */
1347 nfit_mem = dev_get_drvdata(dev);
1348 if (nfit_mem && nfit_mem->flags_attr)
1349 sysfs_notify_dirent(nfit_mem->flags_attr);
1350}
Dan Williams231bf112016-08-22 19:23:25 -07001351EXPORT_SYMBOL_GPL(__acpi_nvdimm_notify);
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001352
1353static void acpi_nvdimm_notify(acpi_handle handle, u32 event, void *data)
1354{
1355 struct acpi_device *adev = data;
1356 struct device *dev = &adev->dev;
1357
1358 device_lock(dev->parent);
1359 __acpi_nvdimm_notify(dev, event);
1360 device_unlock(dev->parent);
1361}
1362
Dan Williams62232e452015-06-08 14:27:06 -04001363static int acpi_nfit_add_dimm(struct acpi_nfit_desc *acpi_desc,
1364 struct nfit_mem *nfit_mem, u32 device_handle)
1365{
1366 struct acpi_device *adev, *adev_dimm;
1367 struct device *dev = acpi_desc->dev;
Dan Williams31eca762016-04-28 16:23:43 -07001368 unsigned long dsm_mask;
1369 const u8 *uuid;
Linda Knippers60e95f42015-07-22 16:17:22 -04001370 int i;
Dan Williams62232e452015-06-08 14:27:06 -04001371
Dan Williamse3654ec2016-04-28 16:17:07 -07001372 /* nfit test assumes 1:1 relationship between commands and dsms */
1373 nfit_mem->dsm_mask = acpi_desc->dimm_cmd_force_en;
Dan Williams31eca762016-04-28 16:23:43 -07001374 nfit_mem->family = NVDIMM_FAMILY_INTEL;
Dan Williams62232e452015-06-08 14:27:06 -04001375 adev = to_acpi_dev(acpi_desc);
1376 if (!adev)
1377 return 0;
1378
1379 adev_dimm = acpi_find_child_device(adev, device_handle, false);
1380 nfit_mem->adev = adev_dimm;
1381 if (!adev_dimm) {
1382 dev_err(dev, "no ACPI.NFIT device with _ADR %#x, disabling...\n",
1383 device_handle);
Dan Williams4d88a972015-05-31 14:41:48 -04001384 return force_enable_dimms ? 0 : -ENODEV;
Dan Williams62232e452015-06-08 14:27:06 -04001385 }
1386
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001387 if (ACPI_FAILURE(acpi_install_notify_handler(adev_dimm->handle,
1388 ACPI_DEVICE_NOTIFY, acpi_nvdimm_notify, adev_dimm))) {
1389 dev_err(dev, "%s: notification registration failed\n",
1390 dev_name(&adev_dimm->dev));
1391 return -ENXIO;
1392 }
1393
Dan Williams31eca762016-04-28 16:23:43 -07001394 /*
stuart hayese02fb722016-05-26 11:38:41 -05001395 * Until standardization materializes we need to consider 4
Dan Williamsa7225592016-07-19 12:32:39 -07001396 * different command sets. Note, that checking for function0 (bit0)
1397 * tells us if any commands are reachable through this uuid.
Dan Williams31eca762016-04-28 16:23:43 -07001398 */
stuart hayese02fb722016-05-26 11:38:41 -05001399 for (i = NVDIMM_FAMILY_INTEL; i <= NVDIMM_FAMILY_MSFT; i++)
Dan Williamsa7225592016-07-19 12:32:39 -07001400 if (acpi_check_dsm(adev_dimm->handle, to_nfit_uuid(i), 1, 1))
Dan Williams31eca762016-04-28 16:23:43 -07001401 break;
1402
1403 /* limit the supported commands to those that are publicly documented */
1404 nfit_mem->family = i;
Dan Williams87554092016-04-28 18:01:20 -07001405 if (nfit_mem->family == NVDIMM_FAMILY_INTEL) {
Dan Williams31eca762016-04-28 16:23:43 -07001406 dsm_mask = 0x3fe;
Dan Williams87554092016-04-28 18:01:20 -07001407 if (disable_vendor_specific)
1408 dsm_mask &= ~(1 << ND_CMD_VENDOR);
stuart hayese02fb722016-05-26 11:38:41 -05001409 } else if (nfit_mem->family == NVDIMM_FAMILY_HPE1) {
Dan Williams31eca762016-04-28 16:23:43 -07001410 dsm_mask = 0x1c3c76;
stuart hayese02fb722016-05-26 11:38:41 -05001411 } else if (nfit_mem->family == NVDIMM_FAMILY_HPE2) {
Dan Williams31eca762016-04-28 16:23:43 -07001412 dsm_mask = 0x1fe;
Dan Williams87554092016-04-28 18:01:20 -07001413 if (disable_vendor_specific)
1414 dsm_mask &= ~(1 << 8);
stuart hayese02fb722016-05-26 11:38:41 -05001415 } else if (nfit_mem->family == NVDIMM_FAMILY_MSFT) {
1416 dsm_mask = 0xffffffff;
Dan Williams87554092016-04-28 18:01:20 -07001417 } else {
Dan Williamsa7225592016-07-19 12:32:39 -07001418 dev_dbg(dev, "unknown dimm command family\n");
Dan Williams31eca762016-04-28 16:23:43 -07001419 nfit_mem->family = -1;
Dan Williamsa7225592016-07-19 12:32:39 -07001420 /* DSMs are optional, continue loading the driver... */
1421 return 0;
Dan Williams31eca762016-04-28 16:23:43 -07001422 }
1423
1424 uuid = to_nfit_uuid(nfit_mem->family);
1425 for_each_set_bit(i, &dsm_mask, BITS_PER_LONG)
Dan Williams62232e452015-06-08 14:27:06 -04001426 if (acpi_check_dsm(adev_dimm->handle, uuid, 1, 1ULL << i))
1427 set_bit(i, &nfit_mem->dsm_mask);
1428
Linda Knippers60e95f42015-07-22 16:17:22 -04001429 return 0;
Dan Williams62232e452015-06-08 14:27:06 -04001430}
1431
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001432static void shutdown_dimm_notify(void *data)
1433{
1434 struct acpi_nfit_desc *acpi_desc = data;
1435 struct nfit_mem *nfit_mem;
1436
1437 mutex_lock(&acpi_desc->init_mutex);
1438 /*
1439 * Clear out the nfit_mem->flags_attr and shut down dimm event
1440 * notifications.
1441 */
1442 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list) {
Dan Williams231bf112016-08-22 19:23:25 -07001443 struct acpi_device *adev_dimm = nfit_mem->adev;
1444
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001445 if (nfit_mem->flags_attr) {
1446 sysfs_put(nfit_mem->flags_attr);
1447 nfit_mem->flags_attr = NULL;
1448 }
Dan Williams231bf112016-08-22 19:23:25 -07001449 if (adev_dimm)
1450 acpi_remove_notify_handler(adev_dimm->handle,
1451 ACPI_DEVICE_NOTIFY, acpi_nvdimm_notify);
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001452 }
1453 mutex_unlock(&acpi_desc->init_mutex);
1454}
1455
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001456static int acpi_nfit_register_dimms(struct acpi_nfit_desc *acpi_desc)
1457{
1458 struct nfit_mem *nfit_mem;
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001459 int dimm_count = 0, rc;
1460 struct nvdimm *nvdimm;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001461
1462 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list) {
Dan Williamse5ae3b22016-06-07 17:00:04 -07001463 struct acpi_nfit_flush_address *flush;
Dan Williams31eca762016-04-28 16:23:43 -07001464 unsigned long flags = 0, cmd_mask;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001465 u32 device_handle;
Dan Williams58138822015-06-23 20:08:34 -04001466 u16 mem_flags;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001467
1468 device_handle = __to_nfit_memdev(nfit_mem)->device_handle;
1469 nvdimm = acpi_nfit_dimm_by_handle(acpi_desc, device_handle);
1470 if (nvdimm) {
Vishal Verma20985162015-10-27 16:58:27 -06001471 dimm_count++;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001472 continue;
1473 }
1474
1475 if (nfit_mem->bdw && nfit_mem->memdev_pmem)
1476 flags |= NDD_ALIASING;
1477
Dan Williams58138822015-06-23 20:08:34 -04001478 mem_flags = __to_nfit_memdev(nfit_mem)->flags;
Bob Mooreca321d12015-10-19 10:24:52 +08001479 if (mem_flags & ACPI_NFIT_MEM_NOT_ARMED)
Dan Williams58138822015-06-23 20:08:34 -04001480 flags |= NDD_UNARMED;
1481
Dan Williams62232e452015-06-08 14:27:06 -04001482 rc = acpi_nfit_add_dimm(acpi_desc, nfit_mem, device_handle);
1483 if (rc)
1484 continue;
1485
Dan Williamse3654ec2016-04-28 16:17:07 -07001486 /*
Dan Williams31eca762016-04-28 16:23:43 -07001487 * TODO: provide translation for non-NVDIMM_FAMILY_INTEL
1488 * devices (i.e. from nd_cmd to acpi_dsm) to standardize the
1489 * userspace interface.
Dan Williamse3654ec2016-04-28 16:17:07 -07001490 */
Dan Williams31eca762016-04-28 16:23:43 -07001491 cmd_mask = 1UL << ND_CMD_CALL;
1492 if (nfit_mem->family == NVDIMM_FAMILY_INTEL)
1493 cmd_mask |= nfit_mem->dsm_mask;
1494
Dan Williamse5ae3b22016-06-07 17:00:04 -07001495 flush = nfit_mem->nfit_flush ? nfit_mem->nfit_flush->flush
1496 : NULL;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001497 nvdimm = nvdimm_create(acpi_desc->nvdimm_bus, nfit_mem,
Dan Williams62232e452015-06-08 14:27:06 -04001498 acpi_nfit_dimm_attribute_groups,
Dan Williamse5ae3b22016-06-07 17:00:04 -07001499 flags, cmd_mask, flush ? flush->hint_count : 0,
1500 nfit_mem->flush_wpq);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001501 if (!nvdimm)
1502 return -ENOMEM;
1503
1504 nfit_mem->nvdimm = nvdimm;
Dan Williams4d88a972015-05-31 14:41:48 -04001505 dimm_count++;
Dan Williams58138822015-06-23 20:08:34 -04001506
1507 if ((mem_flags & ACPI_NFIT_MEM_FAILED_MASK) == 0)
1508 continue;
1509
Toshi Kani402bae52015-08-26 10:20:23 -06001510 dev_info(acpi_desc->dev, "%s flags:%s%s%s%s\n",
Dan Williams58138822015-06-23 20:08:34 -04001511 nvdimm_name(nvdimm),
Toshi Kani402bae52015-08-26 10:20:23 -06001512 mem_flags & ACPI_NFIT_MEM_SAVE_FAILED ? " save_fail" : "",
1513 mem_flags & ACPI_NFIT_MEM_RESTORE_FAILED ? " restore_fail":"",
1514 mem_flags & ACPI_NFIT_MEM_FLUSH_FAILED ? " flush_fail" : "",
Bob Mooreca321d12015-10-19 10:24:52 +08001515 mem_flags & ACPI_NFIT_MEM_NOT_ARMED ? " not_armed" : "");
Dan Williams58138822015-06-23 20:08:34 -04001516
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001517 }
1518
Dan Williamsba9c8dd2016-08-22 19:28:37 -07001519 rc = nvdimm_bus_check_dimm_count(acpi_desc->nvdimm_bus, dimm_count);
1520 if (rc)
1521 return rc;
1522
1523 /*
1524 * Now that dimms are successfully registered, and async registration
1525 * is flushed, attempt to enable event notification.
1526 */
1527 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list) {
1528 struct kernfs_node *nfit_kernfs;
1529
1530 nvdimm = nfit_mem->nvdimm;
1531 nfit_kernfs = sysfs_get_dirent(nvdimm_kobj(nvdimm)->sd, "nfit");
1532 if (nfit_kernfs)
1533 nfit_mem->flags_attr = sysfs_get_dirent(nfit_kernfs,
1534 "flags");
1535 sysfs_put(nfit_kernfs);
1536 if (!nfit_mem->flags_attr)
1537 dev_warn(acpi_desc->dev, "%s: notifications disabled\n",
1538 nvdimm_name(nvdimm));
1539 }
1540
1541 return devm_add_action_or_reset(acpi_desc->dev, shutdown_dimm_notify,
1542 acpi_desc);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001543}
1544
Dan Williams62232e452015-06-08 14:27:06 -04001545static void acpi_nfit_init_dsms(struct acpi_nfit_desc *acpi_desc)
1546{
1547 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
1548 const u8 *uuid = to_nfit_uuid(NFIT_DEV_BUS);
1549 struct acpi_device *adev;
1550 int i;
1551
Dan Williamse3654ec2016-04-28 16:17:07 -07001552 nd_desc->cmd_mask = acpi_desc->bus_cmd_force_en;
Dan Williams62232e452015-06-08 14:27:06 -04001553 adev = to_acpi_dev(acpi_desc);
1554 if (!adev)
1555 return;
1556
Dan Williamsd4f32362016-03-03 16:08:54 -08001557 for (i = ND_CMD_ARS_CAP; i <= ND_CMD_CLEAR_ERROR; i++)
Dan Williams62232e452015-06-08 14:27:06 -04001558 if (acpi_check_dsm(adev->handle, uuid, 1, 1ULL << i))
Dan Williamse3654ec2016-04-28 16:17:07 -07001559 set_bit(i, &nd_desc->cmd_mask);
Dan Williams62232e452015-06-08 14:27:06 -04001560}
1561
Dan Williams1f7df6f2015-06-09 20:13:14 -04001562static ssize_t range_index_show(struct device *dev,
1563 struct device_attribute *attr, char *buf)
1564{
1565 struct nd_region *nd_region = to_nd_region(dev);
1566 struct nfit_spa *nfit_spa = nd_region_provider_data(nd_region);
1567
1568 return sprintf(buf, "%d\n", nfit_spa->spa->range_index);
1569}
1570static DEVICE_ATTR_RO(range_index);
1571
1572static struct attribute *acpi_nfit_region_attributes[] = {
1573 &dev_attr_range_index.attr,
1574 NULL,
1575};
1576
1577static struct attribute_group acpi_nfit_region_attribute_group = {
1578 .name = "nfit",
1579 .attrs = acpi_nfit_region_attributes,
1580};
1581
1582static const struct attribute_group *acpi_nfit_region_attribute_groups[] = {
1583 &nd_region_attribute_group,
1584 &nd_mapping_attribute_group,
Dan Williams3d880022015-05-31 15:02:11 -04001585 &nd_device_attribute_group,
Toshi Kani74ae66c2015-06-19 12:18:34 -06001586 &nd_numa_attribute_group,
Dan Williams1f7df6f2015-06-09 20:13:14 -04001587 &acpi_nfit_region_attribute_group,
1588 NULL,
1589};
1590
Dan Williamseaf96152015-05-01 13:11:27 -04001591/* enough info to uniquely specify an interleave set */
1592struct nfit_set_info {
1593 struct nfit_set_info_map {
1594 u64 region_offset;
1595 u32 serial_number;
1596 u32 pad;
1597 } mapping[0];
1598};
1599
1600static size_t sizeof_nfit_set_info(int num_mappings)
1601{
1602 return sizeof(struct nfit_set_info)
1603 + num_mappings * sizeof(struct nfit_set_info_map);
1604}
1605
Dan Williams9ad15712017-02-28 18:32:48 -08001606static int cmp_map_compat(const void *m0, const void *m1)
Dan Williamseaf96152015-05-01 13:11:27 -04001607{
1608 const struct nfit_set_info_map *map0 = m0;
1609 const struct nfit_set_info_map *map1 = m1;
1610
1611 return memcmp(&map0->region_offset, &map1->region_offset,
1612 sizeof(u64));
1613}
1614
Dan Williams9ad15712017-02-28 18:32:48 -08001615static int cmp_map(const void *m0, const void *m1)
1616{
1617 const struct nfit_set_info_map *map0 = m0;
1618 const struct nfit_set_info_map *map1 = m1;
1619
Dan Williams0b914aa2017-03-27 21:53:38 -07001620 if (map0->region_offset < map1->region_offset)
1621 return -1;
1622 else if (map0->region_offset > map1->region_offset)
1623 return 1;
1624 return 0;
Dan Williams9ad15712017-02-28 18:32:48 -08001625}
1626
Dan Williamseaf96152015-05-01 13:11:27 -04001627/* Retrieve the nth entry referencing this spa */
1628static struct acpi_nfit_memory_map *memdev_from_spa(
1629 struct acpi_nfit_desc *acpi_desc, u16 range_index, int n)
1630{
1631 struct nfit_memdev *nfit_memdev;
1632
1633 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list)
1634 if (nfit_memdev->memdev->range_index == range_index)
1635 if (n-- == 0)
1636 return nfit_memdev->memdev;
1637 return NULL;
1638}
1639
1640static int acpi_nfit_init_interleave_set(struct acpi_nfit_desc *acpi_desc,
1641 struct nd_region_desc *ndr_desc,
1642 struct acpi_nfit_system_address *spa)
1643{
1644 int i, spa_type = nfit_spa_type(spa);
1645 struct device *dev = acpi_desc->dev;
1646 struct nd_interleave_set *nd_set;
1647 u16 nr = ndr_desc->num_mappings;
1648 struct nfit_set_info *info;
1649
1650 if (spa_type == NFIT_SPA_PM || spa_type == NFIT_SPA_VOLATILE)
1651 /* pass */;
1652 else
1653 return 0;
1654
1655 nd_set = devm_kzalloc(dev, sizeof(*nd_set), GFP_KERNEL);
1656 if (!nd_set)
1657 return -ENOMEM;
1658
1659 info = devm_kzalloc(dev, sizeof_nfit_set_info(nr), GFP_KERNEL);
1660 if (!info)
1661 return -ENOMEM;
1662 for (i = 0; i < nr; i++) {
Dan Williams44c462e2016-09-19 16:38:50 -07001663 struct nd_mapping_desc *mapping = &ndr_desc->mapping[i];
Dan Williamseaf96152015-05-01 13:11:27 -04001664 struct nfit_set_info_map *map = &info->mapping[i];
Dan Williams44c462e2016-09-19 16:38:50 -07001665 struct nvdimm *nvdimm = mapping->nvdimm;
Dan Williamseaf96152015-05-01 13:11:27 -04001666 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1667 struct acpi_nfit_memory_map *memdev = memdev_from_spa(acpi_desc,
1668 spa->range_index, i);
1669
1670 if (!memdev || !nfit_mem->dcr) {
1671 dev_err(dev, "%s: failed to find DCR\n", __func__);
1672 return -ENODEV;
1673 }
1674
1675 map->region_offset = memdev->region_offset;
1676 map->serial_number = nfit_mem->dcr->serial_number;
1677 }
1678
1679 sort(&info->mapping[0], nr, sizeof(struct nfit_set_info_map),
1680 cmp_map, NULL);
1681 nd_set->cookie = nd_fletcher64(info, sizeof_nfit_set_info(nr), 0);
Dan Williams9ad15712017-02-28 18:32:48 -08001682
1683 /* support namespaces created with the wrong sort order */
1684 sort(&info->mapping[0], nr, sizeof(struct nfit_set_info_map),
1685 cmp_map_compat, NULL);
1686 nd_set->altcookie = nd_fletcher64(info, sizeof_nfit_set_info(nr), 0);
1687
Dan Williamseaf96152015-05-01 13:11:27 -04001688 ndr_desc->nd_set = nd_set;
1689 devm_kfree(dev, info);
1690
1691 return 0;
1692}
1693
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001694static u64 to_interleave_offset(u64 offset, struct nfit_blk_mmio *mmio)
1695{
1696 struct acpi_nfit_interleave *idt = mmio->idt;
1697 u32 sub_line_offset, line_index, line_offset;
1698 u64 line_no, table_skip_count, table_offset;
1699
1700 line_no = div_u64_rem(offset, mmio->line_size, &sub_line_offset);
1701 table_skip_count = div_u64_rem(line_no, mmio->num_lines, &line_index);
1702 line_offset = idt->line_offset[line_index]
1703 * mmio->line_size;
1704 table_offset = table_skip_count * mmio->table_size;
1705
1706 return mmio->base_offset + line_offset + table_offset + sub_line_offset;
1707}
1708
Ross Zwislerde4a1962015-08-20 16:27:38 -06001709static u32 read_blk_stat(struct nfit_blk *nfit_blk, unsigned int bw)
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001710{
1711 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[DCR];
1712 u64 offset = nfit_blk->stat_offset + mmio->size * bw;
Ross Zwisler68202c92016-07-29 14:59:12 -06001713 const u32 STATUS_MASK = 0x80000037;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001714
1715 if (mmio->num_lines)
1716 offset = to_interleave_offset(offset, mmio);
1717
Ross Zwisler68202c92016-07-29 14:59:12 -06001718 return readl(mmio->addr.base + offset) & STATUS_MASK;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001719}
1720
1721static void write_blk_ctl(struct nfit_blk *nfit_blk, unsigned int bw,
1722 resource_size_t dpa, unsigned int len, unsigned int write)
1723{
1724 u64 cmd, offset;
1725 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[DCR];
1726
1727 enum {
1728 BCW_OFFSET_MASK = (1ULL << 48)-1,
1729 BCW_LEN_SHIFT = 48,
1730 BCW_LEN_MASK = (1ULL << 8) - 1,
1731 BCW_CMD_SHIFT = 56,
1732 };
1733
1734 cmd = (dpa >> L1_CACHE_SHIFT) & BCW_OFFSET_MASK;
1735 len = len >> L1_CACHE_SHIFT;
1736 cmd |= ((u64) len & BCW_LEN_MASK) << BCW_LEN_SHIFT;
1737 cmd |= ((u64) write) << BCW_CMD_SHIFT;
1738
1739 offset = nfit_blk->cmd_offset + mmio->size * bw;
1740 if (mmio->num_lines)
1741 offset = to_interleave_offset(offset, mmio);
1742
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001743 writeq(cmd, mmio->addr.base + offset);
Dan Williamsf284a4f2016-07-07 19:44:50 -07001744 nvdimm_flush(nfit_blk->nd_region);
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001745
Dan Williamsaef25332016-02-12 17:01:11 -08001746 if (nfit_blk->dimm_flags & NFIT_BLK_DCR_LATCH)
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001747 readq(mmio->addr.base + offset);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001748}
1749
1750static int acpi_nfit_blk_single_io(struct nfit_blk *nfit_blk,
1751 resource_size_t dpa, void *iobuf, size_t len, int rw,
1752 unsigned int lane)
1753{
1754 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[BDW];
1755 unsigned int copied = 0;
1756 u64 base_offset;
1757 int rc;
1758
1759 base_offset = nfit_blk->bdw_offset + dpa % L1_CACHE_BYTES
1760 + lane * mmio->size;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001761 write_blk_ctl(nfit_blk, lane, dpa, len, rw);
1762 while (len) {
1763 unsigned int c;
1764 u64 offset;
1765
1766 if (mmio->num_lines) {
1767 u32 line_offset;
1768
1769 offset = to_interleave_offset(base_offset + copied,
1770 mmio);
1771 div_u64_rem(offset, mmio->line_size, &line_offset);
1772 c = min_t(size_t, len, mmio->line_size - line_offset);
1773 } else {
1774 offset = base_offset + nfit_blk->bdw_offset;
1775 c = len;
1776 }
1777
1778 if (rw)
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001779 memcpy_to_pmem(mmio->addr.aperture + offset,
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001780 iobuf + copied, c);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001781 else {
Dan Williamsaef25332016-02-12 17:01:11 -08001782 if (nfit_blk->dimm_flags & NFIT_BLK_READ_FLUSH)
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001783 mmio_flush_range((void __force *)
1784 mmio->addr.aperture + offset, c);
1785
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001786 memcpy_from_pmem(iobuf + copied,
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001787 mmio->addr.aperture + offset, c);
1788 }
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001789
1790 copied += c;
1791 len -= c;
1792 }
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001793
1794 if (rw)
Dan Williamsf284a4f2016-07-07 19:44:50 -07001795 nvdimm_flush(nfit_blk->nd_region);
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001796
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001797 rc = read_blk_stat(nfit_blk, lane) ? -EIO : 0;
1798 return rc;
1799}
1800
1801static int acpi_nfit_blk_region_do_io(struct nd_blk_region *ndbr,
1802 resource_size_t dpa, void *iobuf, u64 len, int rw)
1803{
1804 struct nfit_blk *nfit_blk = nd_blk_region_provider_data(ndbr);
1805 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[BDW];
1806 struct nd_region *nd_region = nfit_blk->nd_region;
1807 unsigned int lane, copied = 0;
1808 int rc = 0;
1809
1810 lane = nd_region_acquire_lane(nd_region);
1811 while (len) {
1812 u64 c = min(len, mmio->size);
1813
1814 rc = acpi_nfit_blk_single_io(nfit_blk, dpa + copied,
1815 iobuf + copied, c, rw, lane);
1816 if (rc)
1817 break;
1818
1819 copied += c;
1820 len -= c;
1821 }
1822 nd_region_release_lane(nd_region, lane);
1823
1824 return rc;
1825}
1826
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001827static int nfit_blk_init_interleave(struct nfit_blk_mmio *mmio,
1828 struct acpi_nfit_interleave *idt, u16 interleave_ways)
1829{
1830 if (idt) {
1831 mmio->num_lines = idt->line_count;
1832 mmio->line_size = idt->line_size;
1833 if (interleave_ways == 0)
1834 return -ENXIO;
1835 mmio->table_size = mmio->num_lines * interleave_ways
1836 * mmio->line_size;
1837 }
1838
1839 return 0;
1840}
1841
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001842static int acpi_nfit_blk_get_flags(struct nvdimm_bus_descriptor *nd_desc,
1843 struct nvdimm *nvdimm, struct nfit_blk *nfit_blk)
1844{
1845 struct nd_cmd_dimm_flags flags;
1846 int rc;
1847
1848 memset(&flags, 0, sizeof(flags));
1849 rc = nd_desc->ndctl(nd_desc, nvdimm, ND_CMD_DIMM_FLAGS, &flags,
Dan Williamsaef25332016-02-12 17:01:11 -08001850 sizeof(flags), NULL);
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001851
1852 if (rc >= 0 && flags.status == 0)
1853 nfit_blk->dimm_flags = flags.flags;
1854 else if (rc == -ENOTTY) {
1855 /* fall back to a conservative default */
Dan Williamsaef25332016-02-12 17:01:11 -08001856 nfit_blk->dimm_flags = NFIT_BLK_DCR_LATCH | NFIT_BLK_READ_FLUSH;
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001857 rc = 0;
1858 } else
1859 rc = -ENXIO;
1860
1861 return rc;
1862}
1863
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001864static int acpi_nfit_blk_region_enable(struct nvdimm_bus *nvdimm_bus,
1865 struct device *dev)
1866{
1867 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001868 struct nd_blk_region *ndbr = to_nd_blk_region(dev);
1869 struct nfit_blk_mmio *mmio;
1870 struct nfit_blk *nfit_blk;
1871 struct nfit_mem *nfit_mem;
1872 struct nvdimm *nvdimm;
1873 int rc;
1874
1875 nvdimm = nd_blk_region_to_dimm(ndbr);
1876 nfit_mem = nvdimm_provider_data(nvdimm);
1877 if (!nfit_mem || !nfit_mem->dcr || !nfit_mem->bdw) {
1878 dev_dbg(dev, "%s: missing%s%s%s\n", __func__,
1879 nfit_mem ? "" : " nfit_mem",
Dan Williams193ccca2015-06-30 16:09:39 -04001880 (nfit_mem && nfit_mem->dcr) ? "" : " dcr",
1881 (nfit_mem && nfit_mem->bdw) ? "" : " bdw");
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001882 return -ENXIO;
1883 }
1884
1885 nfit_blk = devm_kzalloc(dev, sizeof(*nfit_blk), GFP_KERNEL);
1886 if (!nfit_blk)
1887 return -ENOMEM;
1888 nd_blk_region_set_provider_data(ndbr, nfit_blk);
1889 nfit_blk->nd_region = to_nd_region(dev);
1890
1891 /* map block aperture memory */
1892 nfit_blk->bdw_offset = nfit_mem->bdw->offset;
1893 mmio = &nfit_blk->mmio[BDW];
Dan Williams29b9aa02016-06-06 17:42:38 -07001894 mmio->addr.base = devm_nvdimm_memremap(dev, nfit_mem->spa_bdw->address,
1895 nfit_mem->spa_bdw->length, ARCH_MEMREMAP_PMEM);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001896 if (!mmio->addr.base) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001897 dev_dbg(dev, "%s: %s failed to map bdw\n", __func__,
1898 nvdimm_name(nvdimm));
1899 return -ENOMEM;
1900 }
1901 mmio->size = nfit_mem->bdw->size;
1902 mmio->base_offset = nfit_mem->memdev_bdw->region_offset;
1903 mmio->idt = nfit_mem->idt_bdw;
1904 mmio->spa = nfit_mem->spa_bdw;
1905 rc = nfit_blk_init_interleave(mmio, nfit_mem->idt_bdw,
1906 nfit_mem->memdev_bdw->interleave_ways);
1907 if (rc) {
1908 dev_dbg(dev, "%s: %s failed to init bdw interleave\n",
1909 __func__, nvdimm_name(nvdimm));
1910 return rc;
1911 }
1912
1913 /* map block control memory */
1914 nfit_blk->cmd_offset = nfit_mem->dcr->command_offset;
1915 nfit_blk->stat_offset = nfit_mem->dcr->status_offset;
1916 mmio = &nfit_blk->mmio[DCR];
Dan Williams29b9aa02016-06-06 17:42:38 -07001917 mmio->addr.base = devm_nvdimm_ioremap(dev, nfit_mem->spa_dcr->address,
1918 nfit_mem->spa_dcr->length);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001919 if (!mmio->addr.base) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001920 dev_dbg(dev, "%s: %s failed to map dcr\n", __func__,
1921 nvdimm_name(nvdimm));
1922 return -ENOMEM;
1923 }
1924 mmio->size = nfit_mem->dcr->window_size;
1925 mmio->base_offset = nfit_mem->memdev_dcr->region_offset;
1926 mmio->idt = nfit_mem->idt_dcr;
1927 mmio->spa = nfit_mem->spa_dcr;
1928 rc = nfit_blk_init_interleave(mmio, nfit_mem->idt_dcr,
1929 nfit_mem->memdev_dcr->interleave_ways);
1930 if (rc) {
1931 dev_dbg(dev, "%s: %s failed to init dcr interleave\n",
1932 __func__, nvdimm_name(nvdimm));
1933 return rc;
1934 }
1935
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001936 rc = acpi_nfit_blk_get_flags(nd_desc, nvdimm, nfit_blk);
1937 if (rc < 0) {
1938 dev_dbg(dev, "%s: %s failed get DIMM flags\n",
1939 __func__, nvdimm_name(nvdimm));
1940 return rc;
1941 }
1942
Dan Williamsf284a4f2016-07-07 19:44:50 -07001943 if (nvdimm_has_flush(nfit_blk->nd_region) < 0)
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001944 dev_warn(dev, "unable to guarantee persistence of writes\n");
1945
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001946 if (mmio->line_size == 0)
1947 return 0;
1948
1949 if ((u32) nfit_blk->cmd_offset % mmio->line_size
1950 + 8 > mmio->line_size) {
1951 dev_dbg(dev, "cmd_offset crosses interleave boundary\n");
1952 return -ENXIO;
1953 } else if ((u32) nfit_blk->stat_offset % mmio->line_size
1954 + 8 > mmio->line_size) {
1955 dev_dbg(dev, "stat_offset crosses interleave boundary\n");
1956 return -ENXIO;
1957 }
1958
1959 return 0;
1960}
1961
Dan Williamsaef25332016-02-12 17:01:11 -08001962static int ars_get_cap(struct acpi_nfit_desc *acpi_desc,
Dan Williams1cf03c02016-02-17 13:01:23 -08001963 struct nd_cmd_ars_cap *cmd, struct nfit_spa *nfit_spa)
Vishal Verma0caeef62015-12-24 19:21:43 -07001964{
Dan Williamsaef25332016-02-12 17:01:11 -08001965 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
Dan Williams1cf03c02016-02-17 13:01:23 -08001966 struct acpi_nfit_system_address *spa = nfit_spa->spa;
Dan Williamsaef25332016-02-12 17:01:11 -08001967 int cmd_rc, rc;
1968
Dan Williams1cf03c02016-02-17 13:01:23 -08001969 cmd->address = spa->address;
1970 cmd->length = spa->length;
Dan Williamsaef25332016-02-12 17:01:11 -08001971 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_CAP, cmd,
1972 sizeof(*cmd), &cmd_rc);
1973 if (rc < 0)
1974 return rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08001975 return cmd_rc;
Vishal Verma0caeef62015-12-24 19:21:43 -07001976}
1977
Dan Williams1cf03c02016-02-17 13:01:23 -08001978static int ars_start(struct acpi_nfit_desc *acpi_desc, struct nfit_spa *nfit_spa)
Vishal Verma0caeef62015-12-24 19:21:43 -07001979{
1980 int rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08001981 int cmd_rc;
1982 struct nd_cmd_ars_start ars_start;
1983 struct acpi_nfit_system_address *spa = nfit_spa->spa;
1984 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
Vishal Verma0caeef62015-12-24 19:21:43 -07001985
Dan Williams1cf03c02016-02-17 13:01:23 -08001986 memset(&ars_start, 0, sizeof(ars_start));
1987 ars_start.address = spa->address;
1988 ars_start.length = spa->length;
1989 if (nfit_spa_type(spa) == NFIT_SPA_PM)
1990 ars_start.type = ND_ARS_PERSISTENT;
1991 else if (nfit_spa_type(spa) == NFIT_SPA_VOLATILE)
1992 ars_start.type = ND_ARS_VOLATILE;
1993 else
1994 return -ENOTTY;
Vishal Verma0caeef62015-12-24 19:21:43 -07001995
Dan Williams1cf03c02016-02-17 13:01:23 -08001996 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_START, &ars_start,
1997 sizeof(ars_start), &cmd_rc);
Dan Williamsaef25332016-02-12 17:01:11 -08001998
Dan Williams1cf03c02016-02-17 13:01:23 -08001999 if (rc < 0)
2000 return rc;
2001 return cmd_rc;
Vishal Verma0caeef62015-12-24 19:21:43 -07002002}
2003
Dan Williams1cf03c02016-02-17 13:01:23 -08002004static int ars_continue(struct acpi_nfit_desc *acpi_desc)
Vishal Verma0caeef62015-12-24 19:21:43 -07002005{
Dan Williamsaef25332016-02-12 17:01:11 -08002006 int rc, cmd_rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08002007 struct nd_cmd_ars_start ars_start;
2008 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
2009 struct nd_cmd_ars_status *ars_status = acpi_desc->ars_status;
Vishal Verma0caeef62015-12-24 19:21:43 -07002010
Dan Williams1cf03c02016-02-17 13:01:23 -08002011 memset(&ars_start, 0, sizeof(ars_start));
2012 ars_start.address = ars_status->restart_address;
2013 ars_start.length = ars_status->restart_length;
2014 ars_start.type = ars_status->type;
2015 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_START, &ars_start,
2016 sizeof(ars_start), &cmd_rc);
2017 if (rc < 0)
2018 return rc;
2019 return cmd_rc;
2020}
Dan Williamsaef25332016-02-12 17:01:11 -08002021
Dan Williams1cf03c02016-02-17 13:01:23 -08002022static int ars_get_status(struct acpi_nfit_desc *acpi_desc)
2023{
2024 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
2025 struct nd_cmd_ars_status *ars_status = acpi_desc->ars_status;
2026 int rc, cmd_rc;
Dan Williamsaef25332016-02-12 17:01:11 -08002027
Dan Williams1cf03c02016-02-17 13:01:23 -08002028 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_STATUS, ars_status,
2029 acpi_desc->ars_status_size, &cmd_rc);
2030 if (rc < 0)
2031 return rc;
2032 return cmd_rc;
Vishal Verma0caeef62015-12-24 19:21:43 -07002033}
2034
Dan Williams82aa37c2016-12-06 12:45:24 -08002035static int ars_status_process_records(struct acpi_nfit_desc *acpi_desc,
Dan Williams1cf03c02016-02-17 13:01:23 -08002036 struct nd_cmd_ars_status *ars_status)
Vishal Verma0caeef62015-12-24 19:21:43 -07002037{
Dan Williams82aa37c2016-12-06 12:45:24 -08002038 struct nvdimm_bus *nvdimm_bus = acpi_desc->nvdimm_bus;
Vishal Verma0caeef62015-12-24 19:21:43 -07002039 int rc;
2040 u32 i;
2041
Dan Williams82aa37c2016-12-06 12:45:24 -08002042 /*
2043 * First record starts at 44 byte offset from the start of the
2044 * payload.
2045 */
2046 if (ars_status->out_length < 44)
2047 return 0;
Vishal Verma0caeef62015-12-24 19:21:43 -07002048 for (i = 0; i < ars_status->num_records; i++) {
Dan Williams82aa37c2016-12-06 12:45:24 -08002049 /* only process full records */
2050 if (ars_status->out_length
2051 < 44 + sizeof(struct nd_ars_record) * (i + 1))
2052 break;
Vishal Verma0caeef62015-12-24 19:21:43 -07002053 rc = nvdimm_bus_add_poison(nvdimm_bus,
2054 ars_status->records[i].err_address,
2055 ars_status->records[i].length);
2056 if (rc)
2057 return rc;
2058 }
Dan Williams82aa37c2016-12-06 12:45:24 -08002059 if (i < ars_status->num_records)
2060 dev_warn(acpi_desc->dev, "detected truncated ars results\n");
Vishal Verma0caeef62015-12-24 19:21:43 -07002061
2062 return 0;
2063}
2064
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002065static void acpi_nfit_remove_resource(void *data)
2066{
2067 struct resource *res = data;
2068
2069 remove_resource(res);
2070}
2071
2072static int acpi_nfit_insert_resource(struct acpi_nfit_desc *acpi_desc,
2073 struct nd_region_desc *ndr_desc)
2074{
2075 struct resource *res, *nd_res = ndr_desc->res;
2076 int is_pmem, ret;
2077
2078 /* No operation if the region is already registered as PMEM */
2079 is_pmem = region_intersects(nd_res->start, resource_size(nd_res),
2080 IORESOURCE_MEM, IORES_DESC_PERSISTENT_MEMORY);
2081 if (is_pmem == REGION_INTERSECTS)
2082 return 0;
2083
2084 res = devm_kzalloc(acpi_desc->dev, sizeof(*res), GFP_KERNEL);
2085 if (!res)
2086 return -ENOMEM;
2087
2088 res->name = "Persistent Memory";
2089 res->start = nd_res->start;
2090 res->end = nd_res->end;
2091 res->flags = IORESOURCE_MEM;
2092 res->desc = IORES_DESC_PERSISTENT_MEMORY;
2093
2094 ret = insert_resource(&iomem_resource, res);
2095 if (ret)
2096 return ret;
2097
Sajjan, Vikas Cd932dd22016-07-04 10:02:51 +05302098 ret = devm_add_action_or_reset(acpi_desc->dev,
2099 acpi_nfit_remove_resource,
2100 res);
2101 if (ret)
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002102 return ret;
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002103
2104 return 0;
2105}
2106
Dan Williams1f7df6f2015-06-09 20:13:14 -04002107static int acpi_nfit_init_mapping(struct acpi_nfit_desc *acpi_desc,
Dan Williams44c462e2016-09-19 16:38:50 -07002108 struct nd_mapping_desc *mapping, struct nd_region_desc *ndr_desc,
Dan Williams1f7df6f2015-06-09 20:13:14 -04002109 struct acpi_nfit_memory_map *memdev,
Dan Williams1cf03c02016-02-17 13:01:23 -08002110 struct nfit_spa *nfit_spa)
Dan Williams1f7df6f2015-06-09 20:13:14 -04002111{
2112 struct nvdimm *nvdimm = acpi_nfit_dimm_by_handle(acpi_desc,
2113 memdev->device_handle);
Dan Williams1cf03c02016-02-17 13:01:23 -08002114 struct acpi_nfit_system_address *spa = nfit_spa->spa;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002115 struct nd_blk_region_desc *ndbr_desc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002116 struct nfit_mem *nfit_mem;
2117 int blk_valid = 0;
2118
2119 if (!nvdimm) {
2120 dev_err(acpi_desc->dev, "spa%d dimm: %#x not found\n",
2121 spa->range_index, memdev->device_handle);
2122 return -ENODEV;
2123 }
2124
Dan Williams44c462e2016-09-19 16:38:50 -07002125 mapping->nvdimm = nvdimm;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002126 switch (nfit_spa_type(spa)) {
2127 case NFIT_SPA_PM:
2128 case NFIT_SPA_VOLATILE:
Dan Williams44c462e2016-09-19 16:38:50 -07002129 mapping->start = memdev->address;
2130 mapping->size = memdev->region_size;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002131 break;
2132 case NFIT_SPA_DCR:
2133 nfit_mem = nvdimm_provider_data(nvdimm);
2134 if (!nfit_mem || !nfit_mem->bdw) {
2135 dev_dbg(acpi_desc->dev, "spa%d %s missing bdw\n",
2136 spa->range_index, nvdimm_name(nvdimm));
2137 } else {
Dan Williams44c462e2016-09-19 16:38:50 -07002138 mapping->size = nfit_mem->bdw->capacity;
2139 mapping->start = nfit_mem->bdw->start_address;
Vishal Verma5212e112015-06-25 04:20:32 -04002140 ndr_desc->num_lanes = nfit_mem->bdw->windows;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002141 blk_valid = 1;
2142 }
2143
Dan Williams44c462e2016-09-19 16:38:50 -07002144 ndr_desc->mapping = mapping;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002145 ndr_desc->num_mappings = blk_valid;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002146 ndbr_desc = to_blk_region_desc(ndr_desc);
2147 ndbr_desc->enable = acpi_nfit_blk_region_enable;
Dan Williams6bc75612015-06-17 17:23:32 -04002148 ndbr_desc->do_io = acpi_desc->blk_do_io;
Dan Williams1cf03c02016-02-17 13:01:23 -08002149 nfit_spa->nd_region = nvdimm_blk_region_create(acpi_desc->nvdimm_bus,
2150 ndr_desc);
2151 if (!nfit_spa->nd_region)
Dan Williams1f7df6f2015-06-09 20:13:14 -04002152 return -ENOMEM;
2153 break;
2154 }
2155
2156 return 0;
2157}
2158
Lee, Chun-Yic2f32ac2016-07-15 12:05:35 +08002159static bool nfit_spa_is_virtual(struct acpi_nfit_system_address *spa)
2160{
2161 return (nfit_spa_type(spa) == NFIT_SPA_VDISK ||
2162 nfit_spa_type(spa) == NFIT_SPA_VCD ||
2163 nfit_spa_type(spa) == NFIT_SPA_PDISK ||
2164 nfit_spa_type(spa) == NFIT_SPA_PCD);
2165}
2166
Dan Williams1f7df6f2015-06-09 20:13:14 -04002167static int acpi_nfit_register_region(struct acpi_nfit_desc *acpi_desc,
2168 struct nfit_spa *nfit_spa)
2169{
Dan Williams44c462e2016-09-19 16:38:50 -07002170 static struct nd_mapping_desc mappings[ND_MAX_MAPPINGS];
Dan Williams1f7df6f2015-06-09 20:13:14 -04002171 struct acpi_nfit_system_address *spa = nfit_spa->spa;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002172 struct nd_blk_region_desc ndbr_desc;
2173 struct nd_region_desc *ndr_desc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002174 struct nfit_memdev *nfit_memdev;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002175 struct nvdimm_bus *nvdimm_bus;
2176 struct resource res;
Dan Williamseaf96152015-05-01 13:11:27 -04002177 int count = 0, rc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002178
Dan Williams1cf03c02016-02-17 13:01:23 -08002179 if (nfit_spa->nd_region)
Vishal Verma20985162015-10-27 16:58:27 -06002180 return 0;
2181
Lee, Chun-Yic2f32ac2016-07-15 12:05:35 +08002182 if (spa->range_index == 0 && !nfit_spa_is_virtual(spa)) {
Dan Williams1f7df6f2015-06-09 20:13:14 -04002183 dev_dbg(acpi_desc->dev, "%s: detected invalid spa index\n",
2184 __func__);
2185 return 0;
2186 }
2187
2188 memset(&res, 0, sizeof(res));
Dan Williams44c462e2016-09-19 16:38:50 -07002189 memset(&mappings, 0, sizeof(mappings));
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002190 memset(&ndbr_desc, 0, sizeof(ndbr_desc));
Dan Williams1f7df6f2015-06-09 20:13:14 -04002191 res.start = spa->address;
2192 res.end = res.start + spa->length - 1;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002193 ndr_desc = &ndbr_desc.ndr_desc;
2194 ndr_desc->res = &res;
2195 ndr_desc->provider_data = nfit_spa;
2196 ndr_desc->attr_groups = acpi_nfit_region_attribute_groups;
Toshi Kani41d7a6d2015-06-19 12:18:33 -06002197 if (spa->flags & ACPI_NFIT_PROXIMITY_VALID)
2198 ndr_desc->numa_node = acpi_map_pxm_to_online_node(
2199 spa->proximity_domain);
2200 else
2201 ndr_desc->numa_node = NUMA_NO_NODE;
2202
Dan Williams1f7df6f2015-06-09 20:13:14 -04002203 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
2204 struct acpi_nfit_memory_map *memdev = nfit_memdev->memdev;
Dan Williams44c462e2016-09-19 16:38:50 -07002205 struct nd_mapping_desc *mapping;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002206
2207 if (memdev->range_index != spa->range_index)
2208 continue;
2209 if (count >= ND_MAX_MAPPINGS) {
2210 dev_err(acpi_desc->dev, "spa%d exceeds max mappings %d\n",
2211 spa->range_index, ND_MAX_MAPPINGS);
2212 return -ENXIO;
2213 }
Dan Williams44c462e2016-09-19 16:38:50 -07002214 mapping = &mappings[count++];
2215 rc = acpi_nfit_init_mapping(acpi_desc, mapping, ndr_desc,
Dan Williams1cf03c02016-02-17 13:01:23 -08002216 memdev, nfit_spa);
Dan Williams1f7df6f2015-06-09 20:13:14 -04002217 if (rc)
Dan Williams1cf03c02016-02-17 13:01:23 -08002218 goto out;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002219 }
2220
Dan Williams44c462e2016-09-19 16:38:50 -07002221 ndr_desc->mapping = mappings;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002222 ndr_desc->num_mappings = count;
2223 rc = acpi_nfit_init_interleave_set(acpi_desc, ndr_desc, spa);
Dan Williamseaf96152015-05-01 13:11:27 -04002224 if (rc)
Dan Williams1cf03c02016-02-17 13:01:23 -08002225 goto out;
Dan Williamseaf96152015-05-01 13:11:27 -04002226
Dan Williams1f7df6f2015-06-09 20:13:14 -04002227 nvdimm_bus = acpi_desc->nvdimm_bus;
2228 if (nfit_spa_type(spa) == NFIT_SPA_PM) {
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002229 rc = acpi_nfit_insert_resource(acpi_desc, ndr_desc);
Dan Williams48901162016-03-09 17:15:43 -08002230 if (rc) {
Toshi Kaniaf1996e2016-03-09 12:47:06 -07002231 dev_warn(acpi_desc->dev,
2232 "failed to insert pmem resource to iomem: %d\n",
2233 rc);
Dan Williams48901162016-03-09 17:15:43 -08002234 goto out;
Vishal Verma0caeef62015-12-24 19:21:43 -07002235 }
Dan Williams48901162016-03-09 17:15:43 -08002236
Dan Williams1cf03c02016-02-17 13:01:23 -08002237 nfit_spa->nd_region = nvdimm_pmem_region_create(nvdimm_bus,
2238 ndr_desc);
2239 if (!nfit_spa->nd_region)
2240 rc = -ENOMEM;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002241 } else if (nfit_spa_type(spa) == NFIT_SPA_VOLATILE) {
Dan Williams1cf03c02016-02-17 13:01:23 -08002242 nfit_spa->nd_region = nvdimm_volatile_region_create(nvdimm_bus,
2243 ndr_desc);
2244 if (!nfit_spa->nd_region)
2245 rc = -ENOMEM;
Lee, Chun-Yic2f32ac2016-07-15 12:05:35 +08002246 } else if (nfit_spa_is_virtual(spa)) {
2247 nfit_spa->nd_region = nvdimm_pmem_region_create(nvdimm_bus,
2248 ndr_desc);
2249 if (!nfit_spa->nd_region)
2250 rc = -ENOMEM;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002251 }
Vishal Verma20985162015-10-27 16:58:27 -06002252
Dan Williams1cf03c02016-02-17 13:01:23 -08002253 out:
2254 if (rc)
2255 dev_err(acpi_desc->dev, "failed to register spa range %d\n",
2256 nfit_spa->spa->range_index);
2257 return rc;
2258}
2259
2260static int ars_status_alloc(struct acpi_nfit_desc *acpi_desc,
2261 u32 max_ars)
2262{
2263 struct device *dev = acpi_desc->dev;
2264 struct nd_cmd_ars_status *ars_status;
2265
2266 if (acpi_desc->ars_status && acpi_desc->ars_status_size >= max_ars) {
2267 memset(acpi_desc->ars_status, 0, acpi_desc->ars_status_size);
2268 return 0;
2269 }
2270
2271 if (acpi_desc->ars_status)
2272 devm_kfree(dev, acpi_desc->ars_status);
2273 acpi_desc->ars_status = NULL;
2274 ars_status = devm_kzalloc(dev, max_ars, GFP_KERNEL);
2275 if (!ars_status)
2276 return -ENOMEM;
2277 acpi_desc->ars_status = ars_status;
2278 acpi_desc->ars_status_size = max_ars;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002279 return 0;
2280}
2281
Dan Williams1cf03c02016-02-17 13:01:23 -08002282static int acpi_nfit_query_poison(struct acpi_nfit_desc *acpi_desc,
2283 struct nfit_spa *nfit_spa)
2284{
2285 struct acpi_nfit_system_address *spa = nfit_spa->spa;
2286 int rc;
2287
2288 if (!nfit_spa->max_ars) {
2289 struct nd_cmd_ars_cap ars_cap;
2290
2291 memset(&ars_cap, 0, sizeof(ars_cap));
2292 rc = ars_get_cap(acpi_desc, &ars_cap, nfit_spa);
2293 if (rc < 0)
2294 return rc;
2295 nfit_spa->max_ars = ars_cap.max_ars_out;
2296 nfit_spa->clear_err_unit = ars_cap.clear_err_unit;
2297 /* check that the supported scrub types match the spa type */
2298 if (nfit_spa_type(spa) == NFIT_SPA_VOLATILE &&
2299 ((ars_cap.status >> 16) & ND_ARS_VOLATILE) == 0)
2300 return -ENOTTY;
2301 else if (nfit_spa_type(spa) == NFIT_SPA_PM &&
2302 ((ars_cap.status >> 16) & ND_ARS_PERSISTENT) == 0)
2303 return -ENOTTY;
2304 }
2305
2306 if (ars_status_alloc(acpi_desc, nfit_spa->max_ars))
2307 return -ENOMEM;
2308
2309 rc = ars_get_status(acpi_desc);
2310 if (rc < 0 && rc != -ENOSPC)
2311 return rc;
2312
Dan Williams82aa37c2016-12-06 12:45:24 -08002313 if (ars_status_process_records(acpi_desc, acpi_desc->ars_status))
Dan Williams1cf03c02016-02-17 13:01:23 -08002314 return -ENOMEM;
2315
2316 return 0;
2317}
2318
2319static void acpi_nfit_async_scrub(struct acpi_nfit_desc *acpi_desc,
2320 struct nfit_spa *nfit_spa)
2321{
2322 struct acpi_nfit_system_address *spa = nfit_spa->spa;
2323 unsigned int overflow_retry = scrub_overflow_abort;
2324 u64 init_ars_start = 0, init_ars_len = 0;
2325 struct device *dev = acpi_desc->dev;
2326 unsigned int tmo = scrub_timeout;
2327 int rc;
2328
Vishal Verma37b137f2016-07-23 21:51:42 -07002329 if (!nfit_spa->ars_required || !nfit_spa->nd_region)
Dan Williams1cf03c02016-02-17 13:01:23 -08002330 return;
2331
2332 rc = ars_start(acpi_desc, nfit_spa);
2333 /*
2334 * If we timed out the initial scan we'll still be busy here,
2335 * and will wait another timeout before giving up permanently.
2336 */
2337 if (rc < 0 && rc != -EBUSY)
2338 return;
2339
2340 do {
2341 u64 ars_start, ars_len;
2342
2343 if (acpi_desc->cancel)
2344 break;
2345 rc = acpi_nfit_query_poison(acpi_desc, nfit_spa);
2346 if (rc == -ENOTTY)
2347 break;
2348 if (rc == -EBUSY && !tmo) {
2349 dev_warn(dev, "range %d ars timeout, aborting\n",
2350 spa->range_index);
2351 break;
2352 }
2353
2354 if (rc == -EBUSY) {
2355 /*
2356 * Note, entries may be appended to the list
2357 * while the lock is dropped, but the workqueue
2358 * being active prevents entries being deleted /
2359 * freed.
2360 */
2361 mutex_unlock(&acpi_desc->init_mutex);
2362 ssleep(1);
2363 tmo--;
2364 mutex_lock(&acpi_desc->init_mutex);
2365 continue;
2366 }
2367
2368 /* we got some results, but there are more pending... */
2369 if (rc == -ENOSPC && overflow_retry--) {
2370 if (!init_ars_len) {
2371 init_ars_len = acpi_desc->ars_status->length;
2372 init_ars_start = acpi_desc->ars_status->address;
2373 }
2374 rc = ars_continue(acpi_desc);
2375 }
2376
2377 if (rc < 0) {
2378 dev_warn(dev, "range %d ars continuation failed\n",
2379 spa->range_index);
2380 break;
2381 }
2382
2383 if (init_ars_len) {
2384 ars_start = init_ars_start;
2385 ars_len = init_ars_len;
2386 } else {
2387 ars_start = acpi_desc->ars_status->address;
2388 ars_len = acpi_desc->ars_status->length;
2389 }
2390 dev_dbg(dev, "spa range: %d ars from %#llx + %#llx complete\n",
2391 spa->range_index, ars_start, ars_len);
2392 /* notify the region about new poison entries */
2393 nvdimm_region_notify(nfit_spa->nd_region,
2394 NVDIMM_REVALIDATE_POISON);
2395 break;
2396 } while (1);
2397}
2398
2399static void acpi_nfit_scrub(struct work_struct *work)
2400{
2401 struct device *dev;
2402 u64 init_scrub_length = 0;
2403 struct nfit_spa *nfit_spa;
2404 u64 init_scrub_address = 0;
2405 bool init_ars_done = false;
2406 struct acpi_nfit_desc *acpi_desc;
2407 unsigned int tmo = scrub_timeout;
2408 unsigned int overflow_retry = scrub_overflow_abort;
2409
2410 acpi_desc = container_of(work, typeof(*acpi_desc), work);
2411 dev = acpi_desc->dev;
2412
2413 /*
2414 * We scrub in 2 phases. The first phase waits for any platform
2415 * firmware initiated scrubs to complete and then we go search for the
2416 * affected spa regions to mark them scanned. In the second phase we
2417 * initiate a directed scrub for every range that was not scrubbed in
Vishal Verma37b137f2016-07-23 21:51:42 -07002418 * phase 1. If we're called for a 'rescan', we harmlessly pass through
2419 * the first phase, but really only care about running phase 2, where
2420 * regions can be notified of new poison.
Dan Williams1cf03c02016-02-17 13:01:23 -08002421 */
2422
2423 /* process platform firmware initiated scrubs */
2424 retry:
2425 mutex_lock(&acpi_desc->init_mutex);
2426 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
2427 struct nd_cmd_ars_status *ars_status;
2428 struct acpi_nfit_system_address *spa;
2429 u64 ars_start, ars_len;
2430 int rc;
2431
2432 if (acpi_desc->cancel)
2433 break;
2434
2435 if (nfit_spa->nd_region)
2436 continue;
2437
2438 if (init_ars_done) {
2439 /*
2440 * No need to re-query, we're now just
2441 * reconciling all the ranges covered by the
2442 * initial scrub
2443 */
2444 rc = 0;
2445 } else
2446 rc = acpi_nfit_query_poison(acpi_desc, nfit_spa);
2447
2448 if (rc == -ENOTTY) {
2449 /* no ars capability, just register spa and move on */
2450 acpi_nfit_register_region(acpi_desc, nfit_spa);
2451 continue;
2452 }
2453
2454 if (rc == -EBUSY && !tmo) {
2455 /* fallthrough to directed scrub in phase 2 */
2456 dev_warn(dev, "timeout awaiting ars results, continuing...\n");
2457 break;
2458 } else if (rc == -EBUSY) {
2459 mutex_unlock(&acpi_desc->init_mutex);
2460 ssleep(1);
2461 tmo--;
2462 goto retry;
2463 }
2464
2465 /* we got some results, but there are more pending... */
2466 if (rc == -ENOSPC && overflow_retry--) {
2467 ars_status = acpi_desc->ars_status;
2468 /*
2469 * Record the original scrub range, so that we
2470 * can recall all the ranges impacted by the
2471 * initial scrub.
2472 */
2473 if (!init_scrub_length) {
2474 init_scrub_length = ars_status->length;
2475 init_scrub_address = ars_status->address;
2476 }
2477 rc = ars_continue(acpi_desc);
2478 if (rc == 0) {
2479 mutex_unlock(&acpi_desc->init_mutex);
2480 goto retry;
2481 }
2482 }
2483
2484 if (rc < 0) {
2485 /*
2486 * Initial scrub failed, we'll give it one more
2487 * try below...
2488 */
2489 break;
2490 }
2491
2492 /* We got some final results, record completed ranges */
2493 ars_status = acpi_desc->ars_status;
2494 if (init_scrub_length) {
2495 ars_start = init_scrub_address;
2496 ars_len = ars_start + init_scrub_length;
2497 } else {
2498 ars_start = ars_status->address;
2499 ars_len = ars_status->length;
2500 }
2501 spa = nfit_spa->spa;
2502
2503 if (!init_ars_done) {
2504 init_ars_done = true;
2505 dev_dbg(dev, "init scrub %#llx + %#llx complete\n",
2506 ars_start, ars_len);
2507 }
2508 if (ars_start <= spa->address && ars_start + ars_len
2509 >= spa->address + spa->length)
2510 acpi_nfit_register_region(acpi_desc, nfit_spa);
2511 }
2512
2513 /*
2514 * For all the ranges not covered by an initial scrub we still
2515 * want to see if there are errors, but it's ok to discover them
2516 * asynchronously.
2517 */
2518 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
2519 /*
2520 * Flag all the ranges that still need scrubbing, but
2521 * register them now to make data available.
2522 */
Vishal Verma37b137f2016-07-23 21:51:42 -07002523 if (!nfit_spa->nd_region) {
2524 nfit_spa->ars_required = 1;
Dan Williams1cf03c02016-02-17 13:01:23 -08002525 acpi_nfit_register_region(acpi_desc, nfit_spa);
Vishal Verma37b137f2016-07-23 21:51:42 -07002526 }
Dan Williams1cf03c02016-02-17 13:01:23 -08002527 }
2528
2529 list_for_each_entry(nfit_spa, &acpi_desc->spas, list)
2530 acpi_nfit_async_scrub(acpi_desc, nfit_spa);
Vishal Verma37b137f2016-07-23 21:51:42 -07002531 acpi_desc->scrub_count++;
2532 if (acpi_desc->scrub_count_state)
2533 sysfs_notify_dirent(acpi_desc->scrub_count_state);
Dan Williams1cf03c02016-02-17 13:01:23 -08002534 mutex_unlock(&acpi_desc->init_mutex);
2535}
2536
Dan Williams1f7df6f2015-06-09 20:13:14 -04002537static int acpi_nfit_register_regions(struct acpi_nfit_desc *acpi_desc)
2538{
2539 struct nfit_spa *nfit_spa;
Dan Williams1cf03c02016-02-17 13:01:23 -08002540 int rc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002541
Dan Williams1cf03c02016-02-17 13:01:23 -08002542 list_for_each_entry(nfit_spa, &acpi_desc->spas, list)
2543 if (nfit_spa_type(nfit_spa->spa) == NFIT_SPA_DCR) {
2544 /* BLK regions don't need to wait for ars results */
2545 rc = acpi_nfit_register_region(acpi_desc, nfit_spa);
2546 if (rc)
2547 return rc;
2548 }
Dan Williams1f7df6f2015-06-09 20:13:14 -04002549
Dan Williams1cf03c02016-02-17 13:01:23 -08002550 queue_work(nfit_wq, &acpi_desc->work);
Dan Williams1f7df6f2015-06-09 20:13:14 -04002551 return 0;
2552}
2553
Vishal Verma20985162015-10-27 16:58:27 -06002554static int acpi_nfit_check_deletions(struct acpi_nfit_desc *acpi_desc,
2555 struct nfit_table_prev *prev)
2556{
2557 struct device *dev = acpi_desc->dev;
2558
2559 if (!list_empty(&prev->spas) ||
2560 !list_empty(&prev->memdevs) ||
2561 !list_empty(&prev->dcrs) ||
2562 !list_empty(&prev->bdws) ||
2563 !list_empty(&prev->idts) ||
2564 !list_empty(&prev->flushes)) {
2565 dev_err(dev, "new nfit deletes entries (unsupported)\n");
2566 return -ENXIO;
2567 }
2568 return 0;
2569}
2570
Vishal Verma37b137f2016-07-23 21:51:42 -07002571static int acpi_nfit_desc_init_scrub_attr(struct acpi_nfit_desc *acpi_desc)
2572{
2573 struct device *dev = acpi_desc->dev;
2574 struct kernfs_node *nfit;
2575 struct device *bus_dev;
2576
2577 if (!ars_supported(acpi_desc->nvdimm_bus))
2578 return 0;
2579
2580 bus_dev = to_nvdimm_bus_dev(acpi_desc->nvdimm_bus);
2581 nfit = sysfs_get_dirent(bus_dev->kobj.sd, "nfit");
2582 if (!nfit) {
2583 dev_err(dev, "sysfs_get_dirent 'nfit' failed\n");
2584 return -ENODEV;
2585 }
2586 acpi_desc->scrub_count_state = sysfs_get_dirent(nfit, "scrub");
2587 sysfs_put(nfit);
2588 if (!acpi_desc->scrub_count_state) {
2589 dev_err(dev, "sysfs_get_dirent 'scrub' failed\n");
2590 return -ENODEV;
2591 }
2592
2593 return 0;
2594}
2595
Dan Williams58cd71b2016-07-21 18:05:36 -07002596static void acpi_nfit_destruct(void *data)
2597{
2598 struct acpi_nfit_desc *acpi_desc = data;
Vishal Verma37b137f2016-07-23 21:51:42 -07002599 struct device *bus_dev = to_nvdimm_bus_dev(acpi_desc->nvdimm_bus);
Dan Williams58cd71b2016-07-21 18:05:36 -07002600
Vishal Verma6839a6d2016-07-23 21:51:21 -07002601 /*
2602 * Destruct under acpi_desc_lock so that nfit_handle_mce does not
2603 * race teardown
2604 */
2605 mutex_lock(&acpi_desc_lock);
Dan Williams58cd71b2016-07-21 18:05:36 -07002606 acpi_desc->cancel = 1;
Vishal Verma37b137f2016-07-23 21:51:42 -07002607 /*
2608 * Bounce the nvdimm bus lock to make sure any in-flight
2609 * acpi_nfit_ars_rescan() submissions have had a chance to
2610 * either submit or see ->cancel set.
2611 */
2612 device_lock(bus_dev);
2613 device_unlock(bus_dev);
2614
Dan Williams58cd71b2016-07-21 18:05:36 -07002615 flush_workqueue(nfit_wq);
Vishal Verma37b137f2016-07-23 21:51:42 -07002616 if (acpi_desc->scrub_count_state)
2617 sysfs_put(acpi_desc->scrub_count_state);
Dan Williams58cd71b2016-07-21 18:05:36 -07002618 nvdimm_bus_unregister(acpi_desc->nvdimm_bus);
2619 acpi_desc->nvdimm_bus = NULL;
Vishal Verma6839a6d2016-07-23 21:51:21 -07002620 list_del(&acpi_desc->list);
2621 mutex_unlock(&acpi_desc_lock);
Dan Williams58cd71b2016-07-21 18:05:36 -07002622}
2623
Dan Williamse7a11b42016-07-14 16:19:55 -07002624int acpi_nfit_init(struct acpi_nfit_desc *acpi_desc, void *data, acpi_size sz)
Dan Williamsb94d5232015-05-19 22:54:31 -04002625{
2626 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -06002627 struct nfit_table_prev prev;
Dan Williamsb94d5232015-05-19 22:54:31 -04002628 const void *end;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002629 int rc;
Dan Williamsb94d5232015-05-19 22:54:31 -04002630
Dan Williams58cd71b2016-07-21 18:05:36 -07002631 if (!acpi_desc->nvdimm_bus) {
Vishal Verma37b137f2016-07-23 21:51:42 -07002632 acpi_nfit_init_dsms(acpi_desc);
2633
Dan Williams58cd71b2016-07-21 18:05:36 -07002634 acpi_desc->nvdimm_bus = nvdimm_bus_register(dev,
2635 &acpi_desc->nd_desc);
2636 if (!acpi_desc->nvdimm_bus)
2637 return -ENOMEM;
Vishal Verma37b137f2016-07-23 21:51:42 -07002638
Dan Williams58cd71b2016-07-21 18:05:36 -07002639 rc = devm_add_action_or_reset(dev, acpi_nfit_destruct,
2640 acpi_desc);
2641 if (rc)
2642 return rc;
Vishal Verma37b137f2016-07-23 21:51:42 -07002643
2644 rc = acpi_nfit_desc_init_scrub_attr(acpi_desc);
2645 if (rc)
2646 return rc;
Vishal Verma6839a6d2016-07-23 21:51:21 -07002647
2648 /* register this acpi_desc for mce notifications */
2649 mutex_lock(&acpi_desc_lock);
2650 list_add_tail(&acpi_desc->list, &acpi_descs);
2651 mutex_unlock(&acpi_desc_lock);
Dan Williams58cd71b2016-07-21 18:05:36 -07002652 }
2653
Vishal Verma20985162015-10-27 16:58:27 -06002654 mutex_lock(&acpi_desc->init_mutex);
2655
2656 INIT_LIST_HEAD(&prev.spas);
2657 INIT_LIST_HEAD(&prev.memdevs);
2658 INIT_LIST_HEAD(&prev.dcrs);
2659 INIT_LIST_HEAD(&prev.bdws);
2660 INIT_LIST_HEAD(&prev.idts);
2661 INIT_LIST_HEAD(&prev.flushes);
2662
2663 list_cut_position(&prev.spas, &acpi_desc->spas,
2664 acpi_desc->spas.prev);
2665 list_cut_position(&prev.memdevs, &acpi_desc->memdevs,
2666 acpi_desc->memdevs.prev);
2667 list_cut_position(&prev.dcrs, &acpi_desc->dcrs,
2668 acpi_desc->dcrs.prev);
2669 list_cut_position(&prev.bdws, &acpi_desc->bdws,
2670 acpi_desc->bdws.prev);
2671 list_cut_position(&prev.idts, &acpi_desc->idts,
2672 acpi_desc->idts.prev);
2673 list_cut_position(&prev.flushes, &acpi_desc->flushes,
2674 acpi_desc->flushes.prev);
2675
Vishal Verma20985162015-10-27 16:58:27 -06002676 end = data + sz;
Vishal Verma20985162015-10-27 16:58:27 -06002677 while (!IS_ERR_OR_NULL(data))
2678 data = add_table(acpi_desc, &prev, data, end);
2679
2680 if (IS_ERR(data)) {
2681 dev_dbg(dev, "%s: nfit table parsing error: %ld\n", __func__,
2682 PTR_ERR(data));
2683 rc = PTR_ERR(data);
2684 goto out_unlock;
2685 }
2686
2687 rc = acpi_nfit_check_deletions(acpi_desc, &prev);
2688 if (rc)
2689 goto out_unlock;
2690
Dan Williams81ed4e32016-06-10 18:20:53 -07002691 rc = nfit_mem_init(acpi_desc);
2692 if (rc)
Vishal Verma20985162015-10-27 16:58:27 -06002693 goto out_unlock;
Vishal Verma20985162015-10-27 16:58:27 -06002694
2695 rc = acpi_nfit_register_dimms(acpi_desc);
2696 if (rc)
2697 goto out_unlock;
2698
2699 rc = acpi_nfit_register_regions(acpi_desc);
2700
2701 out_unlock:
2702 mutex_unlock(&acpi_desc->init_mutex);
2703 return rc;
2704}
2705EXPORT_SYMBOL_GPL(acpi_nfit_init);
2706
Dan Williams7ae0fa432016-02-19 12:16:34 -08002707struct acpi_nfit_flush_work {
2708 struct work_struct work;
2709 struct completion cmp;
2710};
2711
2712static void flush_probe(struct work_struct *work)
2713{
2714 struct acpi_nfit_flush_work *flush;
2715
2716 flush = container_of(work, typeof(*flush), work);
2717 complete(&flush->cmp);
2718}
2719
2720static int acpi_nfit_flush_probe(struct nvdimm_bus_descriptor *nd_desc)
2721{
2722 struct acpi_nfit_desc *acpi_desc = to_acpi_nfit_desc(nd_desc);
2723 struct device *dev = acpi_desc->dev;
2724 struct acpi_nfit_flush_work flush;
Dan Williams46cf1522017-02-02 10:31:00 -08002725 int rc;
Dan Williams7ae0fa432016-02-19 12:16:34 -08002726
2727 /* bounce the device lock to flush acpi_nfit_add / acpi_nfit_notify */
2728 device_lock(dev);
2729 device_unlock(dev);
2730
2731 /*
2732 * Scrub work could take 10s of seconds, userspace may give up so we
2733 * need to be interruptible while waiting.
2734 */
2735 INIT_WORK_ONSTACK(&flush.work, flush_probe);
2736 COMPLETION_INITIALIZER_ONSTACK(flush.cmp);
2737 queue_work(nfit_wq, &flush.work);
Dan Williams46cf1522017-02-02 10:31:00 -08002738
2739 rc = wait_for_completion_interruptible(&flush.cmp);
2740 cancel_work_sync(&flush.work);
2741 return rc;
Dan Williams7ae0fa432016-02-19 12:16:34 -08002742}
2743
Dan Williams87bf5722016-02-22 21:50:31 -08002744static int acpi_nfit_clear_to_send(struct nvdimm_bus_descriptor *nd_desc,
2745 struct nvdimm *nvdimm, unsigned int cmd)
2746{
2747 struct acpi_nfit_desc *acpi_desc = to_acpi_nfit_desc(nd_desc);
2748
2749 if (nvdimm)
2750 return 0;
2751 if (cmd != ND_CMD_ARS_START)
2752 return 0;
2753
2754 /*
2755 * The kernel and userspace may race to initiate a scrub, but
2756 * the scrub thread is prepared to lose that initial race. It
2757 * just needs guarantees that any ars it initiates are not
2758 * interrupted by any intervening start reqeusts from userspace.
2759 */
2760 if (work_busy(&acpi_desc->work))
2761 return -EBUSY;
2762
2763 return 0;
2764}
2765
Vishal Verma6839a6d2016-07-23 21:51:21 -07002766int acpi_nfit_ars_rescan(struct acpi_nfit_desc *acpi_desc)
Vishal Verma37b137f2016-07-23 21:51:42 -07002767{
2768 struct device *dev = acpi_desc->dev;
2769 struct nfit_spa *nfit_spa;
2770
2771 if (work_busy(&acpi_desc->work))
2772 return -EBUSY;
2773
2774 if (acpi_desc->cancel)
2775 return 0;
2776
2777 mutex_lock(&acpi_desc->init_mutex);
2778 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
2779 struct acpi_nfit_system_address *spa = nfit_spa->spa;
2780
2781 if (nfit_spa_type(spa) != NFIT_SPA_PM)
2782 continue;
2783
2784 nfit_spa->ars_required = 1;
2785 }
2786 queue_work(nfit_wq, &acpi_desc->work);
2787 dev_dbg(dev, "%s: ars_scan triggered\n", __func__);
2788 mutex_unlock(&acpi_desc->init_mutex);
2789
2790 return 0;
2791}
2792
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002793void acpi_nfit_desc_init(struct acpi_nfit_desc *acpi_desc, struct device *dev)
Vishal Verma20985162015-10-27 16:58:27 -06002794{
2795 struct nvdimm_bus_descriptor *nd_desc;
Vishal Verma20985162015-10-27 16:58:27 -06002796
2797 dev_set_drvdata(dev, acpi_desc);
2798 acpi_desc->dev = dev;
2799 acpi_desc->blk_do_io = acpi_nfit_blk_region_do_io;
2800 nd_desc = &acpi_desc->nd_desc;
2801 nd_desc->provider_name = "ACPI.NFIT";
Dan Williamsbc9775d2016-07-21 20:03:19 -07002802 nd_desc->module = THIS_MODULE;
Vishal Verma20985162015-10-27 16:58:27 -06002803 nd_desc->ndctl = acpi_nfit_ctl;
Dan Williams7ae0fa432016-02-19 12:16:34 -08002804 nd_desc->flush_probe = acpi_nfit_flush_probe;
Dan Williams87bf5722016-02-22 21:50:31 -08002805 nd_desc->clear_to_send = acpi_nfit_clear_to_send;
Vishal Verma20985162015-10-27 16:58:27 -06002806 nd_desc->attr_groups = acpi_nfit_attribute_groups;
2807
Dan Williamsb94d5232015-05-19 22:54:31 -04002808 INIT_LIST_HEAD(&acpi_desc->spas);
2809 INIT_LIST_HEAD(&acpi_desc->dcrs);
2810 INIT_LIST_HEAD(&acpi_desc->bdws);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002811 INIT_LIST_HEAD(&acpi_desc->idts);
Ross Zwislerc2ad2952015-07-10 11:06:13 -06002812 INIT_LIST_HEAD(&acpi_desc->flushes);
Dan Williamsb94d5232015-05-19 22:54:31 -04002813 INIT_LIST_HEAD(&acpi_desc->memdevs);
2814 INIT_LIST_HEAD(&acpi_desc->dimms);
Vishal Verma6839a6d2016-07-23 21:51:21 -07002815 INIT_LIST_HEAD(&acpi_desc->list);
Vishal Verma20985162015-10-27 16:58:27 -06002816 mutex_init(&acpi_desc->init_mutex);
Dan Williams1cf03c02016-02-17 13:01:23 -08002817 INIT_WORK(&acpi_desc->work, acpi_nfit_scrub);
Dan Williamsb94d5232015-05-19 22:54:31 -04002818}
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002819EXPORT_SYMBOL_GPL(acpi_nfit_desc_init);
Dan Williamsb94d5232015-05-19 22:54:31 -04002820
2821static int acpi_nfit_add(struct acpi_device *adev)
2822{
Vishal Verma20985162015-10-27 16:58:27 -06002823 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL };
Dan Williamsb94d5232015-05-19 22:54:31 -04002824 struct acpi_nfit_desc *acpi_desc;
2825 struct device *dev = &adev->dev;
2826 struct acpi_table_header *tbl;
2827 acpi_status status = AE_OK;
2828 acpi_size sz;
Dan Williams31932042016-07-14 17:22:48 -07002829 int rc = 0;
Dan Williamsb94d5232015-05-19 22:54:31 -04002830
Lee, Chun-Yi82595422016-01-21 20:32:10 +08002831 status = acpi_get_table_with_size(ACPI_SIG_NFIT, 0, &tbl, &sz);
Dan Williamsb94d5232015-05-19 22:54:31 -04002832 if (ACPI_FAILURE(status)) {
Vishal Verma20985162015-10-27 16:58:27 -06002833 /* This is ok, we could have an nvdimm hotplugged later */
2834 dev_dbg(dev, "failed to find NFIT at startup\n");
2835 return 0;
Dan Williamsb94d5232015-05-19 22:54:31 -04002836 }
2837
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002838 acpi_desc = devm_kzalloc(dev, sizeof(*acpi_desc), GFP_KERNEL);
2839 if (!acpi_desc)
2840 return -ENOMEM;
2841 acpi_nfit_desc_init(acpi_desc, &adev->dev);
Dan Williamsb94d5232015-05-19 22:54:31 -04002842
Dan Williamse7a11b42016-07-14 16:19:55 -07002843 /* Save the acpi header for exporting the revision via sysfs */
Linda Knippers6b577c92015-11-20 19:05:49 -05002844 acpi_desc->acpi_header = *tbl;
Dan Williamsb94d5232015-05-19 22:54:31 -04002845
Vishal Verma20985162015-10-27 16:58:27 -06002846 /* Evaluate _FIT and override with that if present */
2847 status = acpi_evaluate_object(adev->handle, "_FIT", NULL, &buf);
2848 if (ACPI_SUCCESS(status) && buf.length > 0) {
Dan Williamse7a11b42016-07-14 16:19:55 -07002849 union acpi_object *obj = buf.pointer;
2850
2851 if (obj->type == ACPI_TYPE_BUFFER)
2852 rc = acpi_nfit_init(acpi_desc, obj->buffer.pointer,
2853 obj->buffer.length);
2854 else
Linda Knippers6b577c92015-11-20 19:05:49 -05002855 dev_dbg(dev, "%s invalid type %d, ignoring _FIT\n",
2856 __func__, (int) obj->type);
Dan Williams31932042016-07-14 17:22:48 -07002857 kfree(buf.pointer);
2858 } else
Dan Williamse7a11b42016-07-14 16:19:55 -07002859 /* skip over the lead-in header table */
2860 rc = acpi_nfit_init(acpi_desc, (void *) tbl
2861 + sizeof(struct acpi_table_nfit),
2862 sz - sizeof(struct acpi_table_nfit));
Dan Williamse7a11b42016-07-14 16:19:55 -07002863 return rc;
Dan Williamsb94d5232015-05-19 22:54:31 -04002864}
2865
2866static int acpi_nfit_remove(struct acpi_device *adev)
2867{
Dan Williams58cd71b2016-07-21 18:05:36 -07002868 /* see acpi_nfit_destruct */
Dan Williamsb94d5232015-05-19 22:54:31 -04002869 return 0;
2870}
2871
Dan Williamsc14a8682016-08-18 22:15:04 -07002872void __acpi_nfit_notify(struct device *dev, acpi_handle handle, u32 event)
Vishal Verma20985162015-10-27 16:58:27 -06002873{
Dan Williamsc14a8682016-08-18 22:15:04 -07002874 struct acpi_nfit_desc *acpi_desc = dev_get_drvdata(dev);
Vishal Verma20985162015-10-27 16:58:27 -06002875 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL };
Dan Williamse7a11b42016-07-14 16:19:55 -07002876 union acpi_object *obj;
Vishal Verma20985162015-10-27 16:58:27 -06002877 acpi_status status;
2878 int ret;
2879
2880 dev_dbg(dev, "%s: event: %d\n", __func__, event);
2881
Vishal Vermac09f1212016-08-19 14:40:58 -06002882 if (event != NFIT_NOTIFY_UPDATE)
2883 return;
2884
Vishal Verma20985162015-10-27 16:58:27 -06002885 if (!dev->driver) {
2886 /* dev->driver may be null if we're being removed */
2887 dev_dbg(dev, "%s: no driver found for dev\n", __func__);
Dan Williamsc14a8682016-08-18 22:15:04 -07002888 return;
Vishal Verma20985162015-10-27 16:58:27 -06002889 }
2890
2891 if (!acpi_desc) {
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002892 acpi_desc = devm_kzalloc(dev, sizeof(*acpi_desc), GFP_KERNEL);
2893 if (!acpi_desc)
Dan Williamsc14a8682016-08-18 22:15:04 -07002894 return;
2895 acpi_nfit_desc_init(acpi_desc, dev);
Dan Williams7ae0fa432016-02-19 12:16:34 -08002896 } else {
2897 /*
2898 * Finish previous registration before considering new
2899 * regions.
2900 */
2901 flush_workqueue(nfit_wq);
Vishal Verma20985162015-10-27 16:58:27 -06002902 }
2903
2904 /* Evaluate _FIT */
Dan Williamsc14a8682016-08-18 22:15:04 -07002905 status = acpi_evaluate_object(handle, "_FIT", NULL, &buf);
Vishal Verma20985162015-10-27 16:58:27 -06002906 if (ACPI_FAILURE(status)) {
2907 dev_err(dev, "failed to evaluate _FIT\n");
Dan Williamsc14a8682016-08-18 22:15:04 -07002908 return;
Vishal Verma20985162015-10-27 16:58:27 -06002909 }
2910
Linda Knippers6b577c92015-11-20 19:05:49 -05002911 obj = buf.pointer;
2912 if (obj->type == ACPI_TYPE_BUFFER) {
Dan Williamse7a11b42016-07-14 16:19:55 -07002913 ret = acpi_nfit_init(acpi_desc, obj->buffer.pointer,
2914 obj->buffer.length);
Dan Williams31932042016-07-14 17:22:48 -07002915 if (ret)
Linda Knippers6b577c92015-11-20 19:05:49 -05002916 dev_err(dev, "failed to merge updated NFIT\n");
Dan Williams31932042016-07-14 17:22:48 -07002917 } else
Linda Knippers6b577c92015-11-20 19:05:49 -05002918 dev_err(dev, "Invalid _FIT\n");
Vishal Verma20985162015-10-27 16:58:27 -06002919 kfree(buf.pointer);
Dan Williamsc14a8682016-08-18 22:15:04 -07002920}
2921EXPORT_SYMBOL_GPL(__acpi_nfit_notify);
Vishal Verma20985162015-10-27 16:58:27 -06002922
Dan Williamsc14a8682016-08-18 22:15:04 -07002923static void acpi_nfit_notify(struct acpi_device *adev, u32 event)
2924{
2925 device_lock(&adev->dev);
2926 __acpi_nfit_notify(&adev->dev, adev->handle, event);
2927 device_unlock(&adev->dev);
Vishal Verma20985162015-10-27 16:58:27 -06002928}
2929
Dan Williamsb94d5232015-05-19 22:54:31 -04002930static const struct acpi_device_id acpi_nfit_ids[] = {
2931 { "ACPI0012", 0 },
2932 { "", 0 },
2933};
2934MODULE_DEVICE_TABLE(acpi, acpi_nfit_ids);
2935
2936static struct acpi_driver acpi_nfit_driver = {
2937 .name = KBUILD_MODNAME,
2938 .ids = acpi_nfit_ids,
2939 .ops = {
2940 .add = acpi_nfit_add,
2941 .remove = acpi_nfit_remove,
Vishal Verma20985162015-10-27 16:58:27 -06002942 .notify = acpi_nfit_notify,
Dan Williamsb94d5232015-05-19 22:54:31 -04002943 },
2944};
2945
2946static __init int nfit_init(void)
2947{
Prarit Bhargava6b50bca2017-05-31 13:32:00 -04002948 int ret;
2949
Dan Williamsb94d5232015-05-19 22:54:31 -04002950 BUILD_BUG_ON(sizeof(struct acpi_table_nfit) != 40);
2951 BUILD_BUG_ON(sizeof(struct acpi_nfit_system_address) != 56);
2952 BUILD_BUG_ON(sizeof(struct acpi_nfit_memory_map) != 48);
2953 BUILD_BUG_ON(sizeof(struct acpi_nfit_interleave) != 20);
2954 BUILD_BUG_ON(sizeof(struct acpi_nfit_smbios) != 9);
2955 BUILD_BUG_ON(sizeof(struct acpi_nfit_control_region) != 80);
2956 BUILD_BUG_ON(sizeof(struct acpi_nfit_data_region) != 40);
2957
2958 acpi_str_to_uuid(UUID_VOLATILE_MEMORY, nfit_uuid[NFIT_SPA_VOLATILE]);
2959 acpi_str_to_uuid(UUID_PERSISTENT_MEMORY, nfit_uuid[NFIT_SPA_PM]);
2960 acpi_str_to_uuid(UUID_CONTROL_REGION, nfit_uuid[NFIT_SPA_DCR]);
2961 acpi_str_to_uuid(UUID_DATA_REGION, nfit_uuid[NFIT_SPA_BDW]);
2962 acpi_str_to_uuid(UUID_VOLATILE_VIRTUAL_DISK, nfit_uuid[NFIT_SPA_VDISK]);
2963 acpi_str_to_uuid(UUID_VOLATILE_VIRTUAL_CD, nfit_uuid[NFIT_SPA_VCD]);
2964 acpi_str_to_uuid(UUID_PERSISTENT_VIRTUAL_DISK, nfit_uuid[NFIT_SPA_PDISK]);
2965 acpi_str_to_uuid(UUID_PERSISTENT_VIRTUAL_CD, nfit_uuid[NFIT_SPA_PCD]);
2966 acpi_str_to_uuid(UUID_NFIT_BUS, nfit_uuid[NFIT_DEV_BUS]);
2967 acpi_str_to_uuid(UUID_NFIT_DIMM, nfit_uuid[NFIT_DEV_DIMM]);
Dan Williams31eca762016-04-28 16:23:43 -07002968 acpi_str_to_uuid(UUID_NFIT_DIMM_N_HPE1, nfit_uuid[NFIT_DEV_DIMM_N_HPE1]);
2969 acpi_str_to_uuid(UUID_NFIT_DIMM_N_HPE2, nfit_uuid[NFIT_DEV_DIMM_N_HPE2]);
stuart hayese02fb722016-05-26 11:38:41 -05002970 acpi_str_to_uuid(UUID_NFIT_DIMM_N_MSFT, nfit_uuid[NFIT_DEV_DIMM_N_MSFT]);
Dan Williamsb94d5232015-05-19 22:54:31 -04002971
Dan Williams7ae0fa432016-02-19 12:16:34 -08002972 nfit_wq = create_singlethread_workqueue("nfit");
2973 if (!nfit_wq)
2974 return -ENOMEM;
2975
Vishal Verma6839a6d2016-07-23 21:51:21 -07002976 nfit_mce_register();
Prarit Bhargava6b50bca2017-05-31 13:32:00 -04002977 ret = acpi_bus_register_driver(&acpi_nfit_driver);
2978 if (ret) {
2979 nfit_mce_unregister();
2980 destroy_workqueue(nfit_wq);
2981 }
Vishal Verma6839a6d2016-07-23 21:51:21 -07002982
Prarit Bhargava6b50bca2017-05-31 13:32:00 -04002983 return ret;
2984
Dan Williamsb94d5232015-05-19 22:54:31 -04002985}
2986
2987static __exit void nfit_exit(void)
2988{
Vishal Verma6839a6d2016-07-23 21:51:21 -07002989 nfit_mce_unregister();
Dan Williamsb94d5232015-05-19 22:54:31 -04002990 acpi_bus_unregister_driver(&acpi_nfit_driver);
Dan Williams7ae0fa432016-02-19 12:16:34 -08002991 destroy_workqueue(nfit_wq);
Vishal Verma6839a6d2016-07-23 21:51:21 -07002992 WARN_ON(!list_empty(&acpi_descs));
Dan Williamsb94d5232015-05-19 22:54:31 -04002993}
2994
2995module_init(nfit_init);
2996module_exit(nfit_exit);
2997MODULE_LICENSE("GPL v2");
2998MODULE_AUTHOR("Intel Corporation");