blob: 6796f780870ae5113bbb84784a0c09e695e51a2b [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 Verma0caeef62015-12-24 19:21:43 -070018#include <linux/delay.h>
Dan Williamsb94d5232015-05-19 22:54:31 -040019#include <linux/list.h>
20#include <linux/acpi.h>
Dan Williamseaf96152015-05-01 13:11:27 -040021#include <linux/sort.h>
Ross Zwislerc2ad2952015-07-10 11:06:13 -060022#include <linux/pmem.h>
Ross Zwisler047fc8a2015-06-25 04:21:02 -040023#include <linux/io.h>
Dan Williams1cf03c02016-02-17 13:01:23 -080024#include <linux/nd.h>
Dan Williams96601ad2015-08-24 18:29:38 -040025#include <asm/cacheflush.h>
Dan Williamsb94d5232015-05-19 22:54:31 -040026#include "nfit.h"
27
Ross Zwisler047fc8a2015-06-25 04:21:02 -040028/*
29 * For readq() and writeq() on 32-bit builds, the hi-lo, lo-hi order is
30 * irrelevant.
31 */
Christoph Hellwig2f8e2c82015-08-28 09:27:14 +020032#include <linux/io-64-nonatomic-hi-lo.h>
Ross Zwisler047fc8a2015-06-25 04:21:02 -040033
Dan Williams4d88a972015-05-31 14:41:48 -040034static bool force_enable_dimms;
35module_param(force_enable_dimms, bool, S_IRUGO|S_IWUSR);
36MODULE_PARM_DESC(force_enable_dimms, "Ignore _STA (ACPI DIMM device) status");
37
Dan Williams1cf03c02016-02-17 13:01:23 -080038static unsigned int scrub_timeout = NFIT_ARS_TIMEOUT;
39module_param(scrub_timeout, uint, S_IRUGO|S_IWUSR);
40MODULE_PARM_DESC(scrub_timeout, "Initial scrub timeout in seconds");
41
42/* after three payloads of overflow, it's dead jim */
43static unsigned int scrub_overflow_abort = 3;
44module_param(scrub_overflow_abort, uint, S_IRUGO|S_IWUSR);
45MODULE_PARM_DESC(scrub_overflow_abort,
46 "Number of times we overflow ARS results before abort");
47
Dan Williams87554092016-04-28 18:01:20 -070048static bool disable_vendor_specific;
49module_param(disable_vendor_specific, bool, S_IRUGO);
50MODULE_PARM_DESC(disable_vendor_specific,
51 "Limit commands to the publicly specified set\n");
52
Dan Williams7ae0fa432016-02-19 12:16:34 -080053static struct workqueue_struct *nfit_wq;
54
Vishal Verma20985162015-10-27 16:58:27 -060055struct nfit_table_prev {
56 struct list_head spas;
57 struct list_head memdevs;
58 struct list_head dcrs;
59 struct list_head bdws;
60 struct list_head idts;
61 struct list_head flushes;
62};
63
Dan Williamsb94d5232015-05-19 22:54:31 -040064static u8 nfit_uuid[NFIT_UUID_MAX][16];
65
Dan Williams6bc75612015-06-17 17:23:32 -040066const u8 *to_nfit_uuid(enum nfit_uuids id)
Dan Williamsb94d5232015-05-19 22:54:31 -040067{
68 return nfit_uuid[id];
69}
Dan Williams6bc75612015-06-17 17:23:32 -040070EXPORT_SYMBOL(to_nfit_uuid);
Dan Williamsb94d5232015-05-19 22:54:31 -040071
Dan Williams62232e452015-06-08 14:27:06 -040072static struct acpi_nfit_desc *to_acpi_nfit_desc(
73 struct nvdimm_bus_descriptor *nd_desc)
74{
75 return container_of(nd_desc, struct acpi_nfit_desc, nd_desc);
76}
77
78static struct acpi_device *to_acpi_dev(struct acpi_nfit_desc *acpi_desc)
79{
80 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
81
82 /*
83 * If provider == 'ACPI.NFIT' we can assume 'dev' is a struct
84 * acpi_device.
85 */
86 if (!nd_desc->provider_name
87 || strcmp(nd_desc->provider_name, "ACPI.NFIT") != 0)
88 return NULL;
89
90 return to_acpi_device(acpi_desc->dev);
91}
92
Dan Williamsaef25332016-02-12 17:01:11 -080093static int xlat_status(void *buf, unsigned int cmd)
94{
Dan Williamsd4f32362016-03-03 16:08:54 -080095 struct nd_cmd_clear_error *clear_err;
Dan Williamsaef25332016-02-12 17:01:11 -080096 struct nd_cmd_ars_status *ars_status;
97 struct nd_cmd_ars_start *ars_start;
98 struct nd_cmd_ars_cap *ars_cap;
99 u16 flags;
100
101 switch (cmd) {
102 case ND_CMD_ARS_CAP:
103 ars_cap = buf;
104 if ((ars_cap->status & 0xffff) == NFIT_ARS_CAP_NONE)
105 return -ENOTTY;
106
107 /* Command failed */
108 if (ars_cap->status & 0xffff)
109 return -EIO;
110
111 /* No supported scan types for this range */
112 flags = ND_ARS_PERSISTENT | ND_ARS_VOLATILE;
113 if ((ars_cap->status >> 16 & flags) == 0)
114 return -ENOTTY;
115 break;
116 case ND_CMD_ARS_START:
117 ars_start = buf;
118 /* ARS is in progress */
119 if ((ars_start->status & 0xffff) == NFIT_ARS_START_BUSY)
120 return -EBUSY;
121
122 /* Command failed */
123 if (ars_start->status & 0xffff)
124 return -EIO;
125 break;
126 case ND_CMD_ARS_STATUS:
127 ars_status = buf;
128 /* Command failed */
129 if (ars_status->status & 0xffff)
130 return -EIO;
131 /* Check extended status (Upper two bytes) */
132 if (ars_status->status == NFIT_ARS_STATUS_DONE)
133 return 0;
134
135 /* ARS is in progress */
136 if (ars_status->status == NFIT_ARS_STATUS_BUSY)
137 return -EBUSY;
138
139 /* No ARS performed for the current boot */
140 if (ars_status->status == NFIT_ARS_STATUS_NONE)
141 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 */
148 if (ars_status->status == NFIT_ARS_STATUS_INTR) {
149 if (ars_status->flags & NFIT_ARS_F_OVERFLOW)
150 return -ENOSPC;
151 return 0;
152 }
153
154 /* Unknown status */
155 if (ars_status->status >> 16)
156 return -EIO;
157 break;
Dan Williamsd4f32362016-03-03 16:08:54 -0800158 case ND_CMD_CLEAR_ERROR:
159 clear_err = buf;
160 if (clear_err->status & 0xffff)
161 return -EIO;
162 if (!clear_err->cleared)
163 return -EIO;
164 if (clear_err->length > clear_err->cleared)
165 return clear_err->cleared;
166 break;
Dan Williamsaef25332016-02-12 17:01:11 -0800167 default:
168 break;
169 }
170
171 return 0;
172}
173
Dan Williamsb94d5232015-05-19 22:54:31 -0400174static int acpi_nfit_ctl(struct nvdimm_bus_descriptor *nd_desc,
175 struct nvdimm *nvdimm, unsigned int cmd, void *buf,
Dan Williamsaef25332016-02-12 17:01:11 -0800176 unsigned int buf_len, int *cmd_rc)
Dan Williamsb94d5232015-05-19 22:54:31 -0400177{
Dan Williams62232e452015-06-08 14:27:06 -0400178 struct acpi_nfit_desc *acpi_desc = to_acpi_nfit_desc(nd_desc);
Dan Williams62232e452015-06-08 14:27:06 -0400179 union acpi_object in_obj, in_buf, *out_obj;
Dan Williams31eca762016-04-28 16:23:43 -0700180 const struct nd_cmd_desc *desc = NULL;
Dan Williams62232e452015-06-08 14:27:06 -0400181 struct device *dev = acpi_desc->dev;
Dan Williams31eca762016-04-28 16:23:43 -0700182 struct nd_cmd_pkg *call_pkg = NULL;
Dan Williams62232e452015-06-08 14:27:06 -0400183 const char *cmd_name, *dimm_name;
Dan Williams31eca762016-04-28 16:23:43 -0700184 unsigned long cmd_mask, dsm_mask;
Dan Williams62232e452015-06-08 14:27:06 -0400185 acpi_handle handle;
Dan Williams31eca762016-04-28 16:23:43 -0700186 unsigned int func;
Dan Williams62232e452015-06-08 14:27:06 -0400187 const u8 *uuid;
188 u32 offset;
189 int rc, i;
190
Dan Williams31eca762016-04-28 16:23:43 -0700191 func = cmd;
192 if (cmd == ND_CMD_CALL) {
193 call_pkg = buf;
194 func = call_pkg->nd_command;
195 }
196
Dan Williams62232e452015-06-08 14:27:06 -0400197 if (nvdimm) {
198 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
199 struct acpi_device *adev = nfit_mem->adev;
200
201 if (!adev)
202 return -ENOTTY;
Dan Williams31eca762016-04-28 16:23:43 -0700203 if (call_pkg && nfit_mem->family != call_pkg->nd_family)
204 return -ENOTTY;
205
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400206 dimm_name = nvdimm_name(nvdimm);
Dan Williams62232e452015-06-08 14:27:06 -0400207 cmd_name = nvdimm_cmd_name(cmd);
Dan Williamse3654ec2016-04-28 16:17:07 -0700208 cmd_mask = nvdimm_cmd_mask(nvdimm);
Dan Williams62232e452015-06-08 14:27:06 -0400209 dsm_mask = nfit_mem->dsm_mask;
210 desc = nd_cmd_dimm_desc(cmd);
Dan Williams31eca762016-04-28 16:23:43 -0700211 uuid = to_nfit_uuid(nfit_mem->family);
Dan Williams62232e452015-06-08 14:27:06 -0400212 handle = adev->handle;
213 } else {
214 struct acpi_device *adev = to_acpi_dev(acpi_desc);
215
216 cmd_name = nvdimm_bus_cmd_name(cmd);
Dan Williamse3654ec2016-04-28 16:17:07 -0700217 cmd_mask = nd_desc->cmd_mask;
Dan Williams31eca762016-04-28 16:23:43 -0700218 dsm_mask = cmd_mask;
Dan Williams62232e452015-06-08 14:27:06 -0400219 desc = nd_cmd_bus_desc(cmd);
220 uuid = to_nfit_uuid(NFIT_DEV_BUS);
221 handle = adev->handle;
222 dimm_name = "bus";
223 }
224
225 if (!desc || (cmd && (desc->out_num + desc->in_num == 0)))
226 return -ENOTTY;
227
Dan Williams31eca762016-04-28 16:23:43 -0700228 if (!test_bit(cmd, &cmd_mask) || !test_bit(func, &dsm_mask))
Dan Williams62232e452015-06-08 14:27:06 -0400229 return -ENOTTY;
230
231 in_obj.type = ACPI_TYPE_PACKAGE;
232 in_obj.package.count = 1;
233 in_obj.package.elements = &in_buf;
234 in_buf.type = ACPI_TYPE_BUFFER;
235 in_buf.buffer.pointer = buf;
236 in_buf.buffer.length = 0;
237
238 /* libnvdimm has already validated the input envelope */
239 for (i = 0; i < desc->in_num; i++)
240 in_buf.buffer.length += nd_cmd_in_size(nvdimm, cmd, desc,
241 i, buf);
242
Dan Williams31eca762016-04-28 16:23:43 -0700243 if (call_pkg) {
244 /* skip over package wrapper */
245 in_buf.buffer.pointer = (void *) &call_pkg->nd_payload;
246 in_buf.buffer.length = call_pkg->nd_size_in;
Dan Williams62232e452015-06-08 14:27:06 -0400247 }
248
Dan Williams31eca762016-04-28 16:23:43 -0700249 if (IS_ENABLED(CONFIG_ACPI_NFIT_DEBUG)) {
250 dev_dbg(dev, "%s:%s cmd: %d: func: %d input length: %d\n",
251 __func__, dimm_name, cmd, func,
252 in_buf.buffer.length);
253 print_hex_dump_debug("nvdimm in ", DUMP_PREFIX_OFFSET, 4, 4,
254 in_buf.buffer.pointer,
255 min_t(u32, 256, in_buf.buffer.length), true);
256 }
257
258 out_obj = acpi_evaluate_dsm(handle, uuid, 1, func, &in_obj);
Dan Williams62232e452015-06-08 14:27:06 -0400259 if (!out_obj) {
260 dev_dbg(dev, "%s:%s _DSM failed cmd: %s\n", __func__, dimm_name,
261 cmd_name);
262 return -EINVAL;
263 }
264
Dan Williams31eca762016-04-28 16:23:43 -0700265 if (call_pkg) {
266 call_pkg->nd_fw_size = out_obj->buffer.length;
267 memcpy(call_pkg->nd_payload + call_pkg->nd_size_in,
268 out_obj->buffer.pointer,
269 min(call_pkg->nd_fw_size, call_pkg->nd_size_out));
270
271 ACPI_FREE(out_obj);
272 /*
273 * Need to support FW function w/o known size in advance.
274 * Caller can determine required size based upon nd_fw_size.
275 * If we return an error (like elsewhere) then caller wouldn't
276 * be able to rely upon data returned to make calculation.
277 */
278 return 0;
279 }
280
Dan Williams62232e452015-06-08 14:27:06 -0400281 if (out_obj->package.type != ACPI_TYPE_BUFFER) {
282 dev_dbg(dev, "%s:%s unexpected output object type cmd: %s type: %d\n",
283 __func__, dimm_name, cmd_name, out_obj->type);
284 rc = -EINVAL;
285 goto out;
286 }
287
288 if (IS_ENABLED(CONFIG_ACPI_NFIT_DEBUG)) {
289 dev_dbg(dev, "%s:%s cmd: %s output length: %d\n", __func__,
290 dimm_name, cmd_name, out_obj->buffer.length);
291 print_hex_dump_debug(cmd_name, DUMP_PREFIX_OFFSET, 4,
292 4, out_obj->buffer.pointer, min_t(u32, 128,
293 out_obj->buffer.length), true);
294 }
295
296 for (i = 0, offset = 0; i < desc->out_num; i++) {
297 u32 out_size = nd_cmd_out_size(nvdimm, cmd, desc, i, buf,
298 (u32 *) out_obj->buffer.pointer);
299
300 if (offset + out_size > out_obj->buffer.length) {
301 dev_dbg(dev, "%s:%s output object underflow cmd: %s field: %d\n",
302 __func__, dimm_name, cmd_name, i);
303 break;
304 }
305
306 if (in_buf.buffer.length + offset + out_size > buf_len) {
307 dev_dbg(dev, "%s:%s output overrun cmd: %s field: %d\n",
308 __func__, dimm_name, cmd_name, i);
309 rc = -ENXIO;
310 goto out;
311 }
312 memcpy(buf + in_buf.buffer.length + offset,
313 out_obj->buffer.pointer + offset, out_size);
314 offset += out_size;
315 }
316 if (offset + in_buf.buffer.length < buf_len) {
317 if (i >= 1) {
318 /*
319 * status valid, return the number of bytes left
320 * unfilled in the output buffer
321 */
322 rc = buf_len - offset - in_buf.buffer.length;
Dan Williamsaef25332016-02-12 17:01:11 -0800323 if (cmd_rc)
324 *cmd_rc = xlat_status(buf, cmd);
Dan Williams62232e452015-06-08 14:27:06 -0400325 } else {
326 dev_err(dev, "%s:%s underrun cmd: %s buf_len: %d out_len: %d\n",
327 __func__, dimm_name, cmd_name, buf_len,
328 offset);
329 rc = -ENXIO;
330 }
Dan Williams2eea6582016-05-02 09:11:53 -0700331 } else {
Dan Williams62232e452015-06-08 14:27:06 -0400332 rc = 0;
Dan Williams2eea6582016-05-02 09:11:53 -0700333 if (cmd_rc)
334 *cmd_rc = xlat_status(buf, cmd);
335 }
Dan Williams62232e452015-06-08 14:27:06 -0400336
337 out:
338 ACPI_FREE(out_obj);
339
340 return rc;
Dan Williamsb94d5232015-05-19 22:54:31 -0400341}
342
343static const char *spa_type_name(u16 type)
344{
345 static const char *to_name[] = {
346 [NFIT_SPA_VOLATILE] = "volatile",
347 [NFIT_SPA_PM] = "pmem",
348 [NFIT_SPA_DCR] = "dimm-control-region",
349 [NFIT_SPA_BDW] = "block-data-window",
350 [NFIT_SPA_VDISK] = "volatile-disk",
351 [NFIT_SPA_VCD] = "volatile-cd",
352 [NFIT_SPA_PDISK] = "persistent-disk",
353 [NFIT_SPA_PCD] = "persistent-cd",
354
355 };
356
357 if (type > NFIT_SPA_PCD)
358 return "unknown";
359
360 return to_name[type];
361}
362
363static int nfit_spa_type(struct acpi_nfit_system_address *spa)
364{
365 int i;
366
367 for (i = 0; i < NFIT_UUID_MAX; i++)
368 if (memcmp(to_nfit_uuid(i), spa->range_guid, 16) == 0)
369 return i;
370 return -1;
371}
372
373static bool add_spa(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600374 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400375 struct acpi_nfit_system_address *spa)
376{
Linda Knippers826c4162015-11-20 19:05:47 -0500377 size_t length = min_t(size_t, sizeof(*spa), spa->header.length);
Dan Williamsb94d5232015-05-19 22:54:31 -0400378 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600379 struct nfit_spa *nfit_spa;
Dan Williamsb94d5232015-05-19 22:54:31 -0400380
Vishal Verma20985162015-10-27 16:58:27 -0600381 list_for_each_entry(nfit_spa, &prev->spas, list) {
Linda Knippers826c4162015-11-20 19:05:47 -0500382 if (memcmp(nfit_spa->spa, spa, length) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600383 list_move_tail(&nfit_spa->list, &acpi_desc->spas);
384 return true;
385 }
386 }
387
388 nfit_spa = devm_kzalloc(dev, sizeof(*nfit_spa), GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400389 if (!nfit_spa)
390 return false;
391 INIT_LIST_HEAD(&nfit_spa->list);
392 nfit_spa->spa = spa;
393 list_add_tail(&nfit_spa->list, &acpi_desc->spas);
394 dev_dbg(dev, "%s: spa index: %d type: %s\n", __func__,
395 spa->range_index,
396 spa_type_name(nfit_spa_type(spa)));
397 return true;
398}
399
400static bool add_memdev(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600401 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400402 struct acpi_nfit_memory_map *memdev)
403{
Linda Knippers826c4162015-11-20 19:05:47 -0500404 size_t length = min_t(size_t, sizeof(*memdev), memdev->header.length);
Dan Williamsb94d5232015-05-19 22:54:31 -0400405 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600406 struct nfit_memdev *nfit_memdev;
Dan Williamsb94d5232015-05-19 22:54:31 -0400407
Vishal Verma20985162015-10-27 16:58:27 -0600408 list_for_each_entry(nfit_memdev, &prev->memdevs, list)
Linda Knippers826c4162015-11-20 19:05:47 -0500409 if (memcmp(nfit_memdev->memdev, memdev, length) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600410 list_move_tail(&nfit_memdev->list, &acpi_desc->memdevs);
411 return true;
412 }
413
414 nfit_memdev = devm_kzalloc(dev, sizeof(*nfit_memdev), GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400415 if (!nfit_memdev)
416 return false;
417 INIT_LIST_HEAD(&nfit_memdev->list);
418 nfit_memdev->memdev = memdev;
419 list_add_tail(&nfit_memdev->list, &acpi_desc->memdevs);
420 dev_dbg(dev, "%s: memdev handle: %#x spa: %d dcr: %d\n",
421 __func__, memdev->device_handle, memdev->range_index,
422 memdev->region_index);
423 return true;
424}
425
426static bool add_dcr(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600427 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400428 struct acpi_nfit_control_region *dcr)
429{
Linda Knippers826c4162015-11-20 19:05:47 -0500430 size_t length = min_t(size_t, sizeof(*dcr), dcr->header.length);
Dan Williamsb94d5232015-05-19 22:54:31 -0400431 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600432 struct nfit_dcr *nfit_dcr;
Dan Williamsb94d5232015-05-19 22:54:31 -0400433
Vishal Verma20985162015-10-27 16:58:27 -0600434 list_for_each_entry(nfit_dcr, &prev->dcrs, list)
Linda Knippers826c4162015-11-20 19:05:47 -0500435 if (memcmp(nfit_dcr->dcr, dcr, length) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600436 list_move_tail(&nfit_dcr->list, &acpi_desc->dcrs);
437 return true;
438 }
439
440 nfit_dcr = devm_kzalloc(dev, sizeof(*nfit_dcr), GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400441 if (!nfit_dcr)
442 return false;
443 INIT_LIST_HEAD(&nfit_dcr->list);
444 nfit_dcr->dcr = dcr;
445 list_add_tail(&nfit_dcr->list, &acpi_desc->dcrs);
446 dev_dbg(dev, "%s: dcr index: %d windows: %d\n", __func__,
447 dcr->region_index, dcr->windows);
448 return true;
449}
450
451static bool add_bdw(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600452 struct nfit_table_prev *prev,
Dan Williamsb94d5232015-05-19 22:54:31 -0400453 struct acpi_nfit_data_region *bdw)
454{
Linda Knippers826c4162015-11-20 19:05:47 -0500455 size_t length = min_t(size_t, sizeof(*bdw), bdw->header.length);
Dan Williamsb94d5232015-05-19 22:54:31 -0400456 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600457 struct nfit_bdw *nfit_bdw;
Dan Williamsb94d5232015-05-19 22:54:31 -0400458
Vishal Verma20985162015-10-27 16:58:27 -0600459 list_for_each_entry(nfit_bdw, &prev->bdws, list)
Linda Knippers826c4162015-11-20 19:05:47 -0500460 if (memcmp(nfit_bdw->bdw, bdw, length) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600461 list_move_tail(&nfit_bdw->list, &acpi_desc->bdws);
462 return true;
463 }
464
465 nfit_bdw = devm_kzalloc(dev, sizeof(*nfit_bdw), GFP_KERNEL);
Dan Williamsb94d5232015-05-19 22:54:31 -0400466 if (!nfit_bdw)
467 return false;
468 INIT_LIST_HEAD(&nfit_bdw->list);
469 nfit_bdw->bdw = bdw;
470 list_add_tail(&nfit_bdw->list, &acpi_desc->bdws);
471 dev_dbg(dev, "%s: bdw dcr: %d windows: %d\n", __func__,
472 bdw->region_index, bdw->windows);
473 return true;
474}
475
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400476static bool add_idt(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600477 struct nfit_table_prev *prev,
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400478 struct acpi_nfit_interleave *idt)
479{
Linda Knippers826c4162015-11-20 19:05:47 -0500480 size_t length = min_t(size_t, sizeof(*idt), idt->header.length);
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400481 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600482 struct nfit_idt *nfit_idt;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400483
Vishal Verma20985162015-10-27 16:58:27 -0600484 list_for_each_entry(nfit_idt, &prev->idts, list)
Linda Knippers826c4162015-11-20 19:05:47 -0500485 if (memcmp(nfit_idt->idt, idt, length) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600486 list_move_tail(&nfit_idt->list, &acpi_desc->idts);
487 return true;
488 }
489
490 nfit_idt = devm_kzalloc(dev, sizeof(*nfit_idt), GFP_KERNEL);
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400491 if (!nfit_idt)
492 return false;
493 INIT_LIST_HEAD(&nfit_idt->list);
494 nfit_idt->idt = idt;
495 list_add_tail(&nfit_idt->list, &acpi_desc->idts);
496 dev_dbg(dev, "%s: idt index: %d num_lines: %d\n", __func__,
497 idt->interleave_index, idt->line_count);
498 return true;
499}
500
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600501static bool add_flush(struct acpi_nfit_desc *acpi_desc,
Vishal Verma20985162015-10-27 16:58:27 -0600502 struct nfit_table_prev *prev,
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600503 struct acpi_nfit_flush_address *flush)
504{
Linda Knippers826c4162015-11-20 19:05:47 -0500505 size_t length = min_t(size_t, sizeof(*flush), flush->header.length);
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600506 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -0600507 struct nfit_flush *nfit_flush;
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600508
Vishal Verma20985162015-10-27 16:58:27 -0600509 list_for_each_entry(nfit_flush, &prev->flushes, list)
Linda Knippers826c4162015-11-20 19:05:47 -0500510 if (memcmp(nfit_flush->flush, flush, length) == 0) {
Vishal Verma20985162015-10-27 16:58:27 -0600511 list_move_tail(&nfit_flush->list, &acpi_desc->flushes);
512 return true;
513 }
514
515 nfit_flush = devm_kzalloc(dev, sizeof(*nfit_flush), GFP_KERNEL);
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600516 if (!nfit_flush)
517 return false;
518 INIT_LIST_HEAD(&nfit_flush->list);
519 nfit_flush->flush = flush;
520 list_add_tail(&nfit_flush->list, &acpi_desc->flushes);
521 dev_dbg(dev, "%s: nfit_flush handle: %d hint_count: %d\n", __func__,
522 flush->device_handle, flush->hint_count);
523 return true;
524}
525
Vishal Verma20985162015-10-27 16:58:27 -0600526static void *add_table(struct acpi_nfit_desc *acpi_desc,
527 struct nfit_table_prev *prev, void *table, const void *end)
Dan Williamsb94d5232015-05-19 22:54:31 -0400528{
529 struct device *dev = acpi_desc->dev;
530 struct acpi_nfit_header *hdr;
531 void *err = ERR_PTR(-ENOMEM);
532
533 if (table >= end)
534 return NULL;
535
536 hdr = table;
Vishal Verma564d5012015-10-27 16:58:26 -0600537 if (!hdr->length) {
538 dev_warn(dev, "found a zero length table '%d' parsing nfit\n",
539 hdr->type);
540 return NULL;
541 }
542
Dan Williamsb94d5232015-05-19 22:54:31 -0400543 switch (hdr->type) {
544 case ACPI_NFIT_TYPE_SYSTEM_ADDRESS:
Vishal Verma20985162015-10-27 16:58:27 -0600545 if (!add_spa(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400546 return err;
547 break;
548 case ACPI_NFIT_TYPE_MEMORY_MAP:
Vishal Verma20985162015-10-27 16:58:27 -0600549 if (!add_memdev(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400550 return err;
551 break;
552 case ACPI_NFIT_TYPE_CONTROL_REGION:
Vishal Verma20985162015-10-27 16:58:27 -0600553 if (!add_dcr(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400554 return err;
555 break;
556 case ACPI_NFIT_TYPE_DATA_REGION:
Vishal Verma20985162015-10-27 16:58:27 -0600557 if (!add_bdw(acpi_desc, prev, table))
Dan Williamsb94d5232015-05-19 22:54:31 -0400558 return err;
559 break;
Dan Williamsb94d5232015-05-19 22:54:31 -0400560 case ACPI_NFIT_TYPE_INTERLEAVE:
Vishal Verma20985162015-10-27 16:58:27 -0600561 if (!add_idt(acpi_desc, prev, table))
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400562 return err;
Dan Williamsb94d5232015-05-19 22:54:31 -0400563 break;
564 case ACPI_NFIT_TYPE_FLUSH_ADDRESS:
Vishal Verma20985162015-10-27 16:58:27 -0600565 if (!add_flush(acpi_desc, prev, table))
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600566 return err;
Dan Williamsb94d5232015-05-19 22:54:31 -0400567 break;
568 case ACPI_NFIT_TYPE_SMBIOS:
569 dev_dbg(dev, "%s: smbios\n", __func__);
570 break;
571 default:
572 dev_err(dev, "unknown table '%d' parsing nfit\n", hdr->type);
573 break;
574 }
575
576 return table + hdr->length;
577}
578
579static void nfit_mem_find_spa_bdw(struct acpi_nfit_desc *acpi_desc,
580 struct nfit_mem *nfit_mem)
581{
582 u32 device_handle = __to_nfit_memdev(nfit_mem)->device_handle;
583 u16 dcr = nfit_mem->dcr->region_index;
584 struct nfit_spa *nfit_spa;
585
586 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
587 u16 range_index = nfit_spa->spa->range_index;
588 int type = nfit_spa_type(nfit_spa->spa);
589 struct nfit_memdev *nfit_memdev;
590
591 if (type != NFIT_SPA_BDW)
592 continue;
593
594 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
595 if (nfit_memdev->memdev->range_index != range_index)
596 continue;
597 if (nfit_memdev->memdev->device_handle != device_handle)
598 continue;
599 if (nfit_memdev->memdev->region_index != dcr)
600 continue;
601
602 nfit_mem->spa_bdw = nfit_spa->spa;
603 return;
604 }
605 }
606
607 dev_dbg(acpi_desc->dev, "SPA-BDW not found for SPA-DCR %d\n",
608 nfit_mem->spa_dcr->range_index);
609 nfit_mem->bdw = NULL;
610}
611
Dan Williams6697b2c2016-02-04 16:51:00 -0800612static void nfit_mem_init_bdw(struct acpi_nfit_desc *acpi_desc,
Dan Williamsb94d5232015-05-19 22:54:31 -0400613 struct nfit_mem *nfit_mem, struct acpi_nfit_system_address *spa)
614{
615 u16 dcr = __to_nfit_memdev(nfit_mem)->region_index;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400616 struct nfit_memdev *nfit_memdev;
Dan Williamsb94d5232015-05-19 22:54:31 -0400617 struct nfit_bdw *nfit_bdw;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400618 struct nfit_idt *nfit_idt;
619 u16 idt_idx, range_index;
Dan Williamsb94d5232015-05-19 22:54:31 -0400620
Dan Williamsb94d5232015-05-19 22:54:31 -0400621 list_for_each_entry(nfit_bdw, &acpi_desc->bdws, list) {
622 if (nfit_bdw->bdw->region_index != dcr)
623 continue;
624 nfit_mem->bdw = nfit_bdw->bdw;
625 break;
626 }
627
628 if (!nfit_mem->bdw)
Dan Williams6697b2c2016-02-04 16:51:00 -0800629 return;
Dan Williamsb94d5232015-05-19 22:54:31 -0400630
631 nfit_mem_find_spa_bdw(acpi_desc, nfit_mem);
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400632
633 if (!nfit_mem->spa_bdw)
Dan Williams6697b2c2016-02-04 16:51:00 -0800634 return;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400635
636 range_index = nfit_mem->spa_bdw->range_index;
637 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
638 if (nfit_memdev->memdev->range_index != range_index ||
639 nfit_memdev->memdev->region_index != dcr)
640 continue;
641 nfit_mem->memdev_bdw = nfit_memdev->memdev;
642 idt_idx = nfit_memdev->memdev->interleave_index;
643 list_for_each_entry(nfit_idt, &acpi_desc->idts, list) {
644 if (nfit_idt->idt->interleave_index != idt_idx)
645 continue;
646 nfit_mem->idt_bdw = nfit_idt->idt;
647 break;
648 }
649 break;
650 }
Dan Williamsb94d5232015-05-19 22:54:31 -0400651}
652
653static int nfit_mem_dcr_init(struct acpi_nfit_desc *acpi_desc,
654 struct acpi_nfit_system_address *spa)
655{
656 struct nfit_mem *nfit_mem, *found;
657 struct nfit_memdev *nfit_memdev;
658 int type = nfit_spa_type(spa);
Dan Williamsb94d5232015-05-19 22:54:31 -0400659
660 switch (type) {
661 case NFIT_SPA_DCR:
662 case NFIT_SPA_PM:
663 break;
664 default:
665 return 0;
666 }
667
668 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700669 struct nfit_flush *nfit_flush;
Dan Williams6697b2c2016-02-04 16:51:00 -0800670 struct nfit_dcr *nfit_dcr;
671 u32 device_handle;
672 u16 dcr;
Dan Williamsb94d5232015-05-19 22:54:31 -0400673
674 if (nfit_memdev->memdev->range_index != spa->range_index)
675 continue;
676 found = NULL;
677 dcr = nfit_memdev->memdev->region_index;
Dan Williams6697b2c2016-02-04 16:51:00 -0800678 device_handle = nfit_memdev->memdev->device_handle;
Dan Williamsb94d5232015-05-19 22:54:31 -0400679 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list)
Dan Williams6697b2c2016-02-04 16:51:00 -0800680 if (__to_nfit_memdev(nfit_mem)->device_handle
681 == device_handle) {
Dan Williamsb94d5232015-05-19 22:54:31 -0400682 found = nfit_mem;
683 break;
684 }
685
686 if (found)
687 nfit_mem = found;
688 else {
689 nfit_mem = devm_kzalloc(acpi_desc->dev,
690 sizeof(*nfit_mem), GFP_KERNEL);
691 if (!nfit_mem)
692 return -ENOMEM;
693 INIT_LIST_HEAD(&nfit_mem->list);
Dan Williams8cc6ddf2016-04-05 15:26:50 -0700694 nfit_mem->acpi_desc = acpi_desc;
Dan Williams6697b2c2016-02-04 16:51:00 -0800695 list_add(&nfit_mem->list, &acpi_desc->dimms);
696 }
697
698 list_for_each_entry(nfit_dcr, &acpi_desc->dcrs, list) {
699 if (nfit_dcr->dcr->region_index != dcr)
700 continue;
701 /*
702 * Record the control region for the dimm. For
703 * the ACPI 6.1 case, where there are separate
704 * control regions for the pmem vs blk
705 * interfaces, be sure to record the extended
706 * blk details.
707 */
708 if (!nfit_mem->dcr)
709 nfit_mem->dcr = nfit_dcr->dcr;
710 else if (nfit_mem->dcr->windows == 0
711 && nfit_dcr->dcr->windows)
712 nfit_mem->dcr = nfit_dcr->dcr;
713 break;
714 }
715
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700716 list_for_each_entry(nfit_flush, &acpi_desc->flushes, list) {
Dan Williamse5ae3b22016-06-07 17:00:04 -0700717 struct acpi_nfit_flush_address *flush;
718 u16 i;
719
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700720 if (nfit_flush->flush->device_handle != device_handle)
721 continue;
722 nfit_mem->nfit_flush = nfit_flush;
Dan Williamse5ae3b22016-06-07 17:00:04 -0700723 flush = nfit_flush->flush;
724 nfit_mem->flush_wpq = devm_kzalloc(acpi_desc->dev,
725 flush->hint_count
726 * sizeof(struct resource), GFP_KERNEL);
727 if (!nfit_mem->flush_wpq)
728 return -ENOMEM;
729 for (i = 0; i < flush->hint_count; i++) {
730 struct resource *res = &nfit_mem->flush_wpq[i];
731
732 res->start = flush->hint_address[i];
733 res->end = res->start + 8 - 1;
734 }
Dan Williamsad9ac5e2016-05-26 11:38:08 -0700735 break;
736 }
737
Dan Williams6697b2c2016-02-04 16:51:00 -0800738 if (dcr && !nfit_mem->dcr) {
739 dev_err(acpi_desc->dev, "SPA %d missing DCR %d\n",
740 spa->range_index, dcr);
741 return -ENODEV;
Dan Williamsb94d5232015-05-19 22:54:31 -0400742 }
743
744 if (type == NFIT_SPA_DCR) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400745 struct nfit_idt *nfit_idt;
746 u16 idt_idx;
747
Dan Williamsb94d5232015-05-19 22:54:31 -0400748 /* multiple dimms may share a SPA when interleaved */
749 nfit_mem->spa_dcr = spa;
750 nfit_mem->memdev_dcr = nfit_memdev->memdev;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400751 idt_idx = nfit_memdev->memdev->interleave_index;
752 list_for_each_entry(nfit_idt, &acpi_desc->idts, list) {
753 if (nfit_idt->idt->interleave_index != idt_idx)
754 continue;
755 nfit_mem->idt_dcr = nfit_idt->idt;
756 break;
757 }
Dan Williams6697b2c2016-02-04 16:51:00 -0800758 nfit_mem_init_bdw(acpi_desc, nfit_mem, spa);
Dan Williamsb94d5232015-05-19 22:54:31 -0400759 } else {
760 /*
761 * A single dimm may belong to multiple SPA-PM
762 * ranges, record at least one in addition to
763 * any SPA-DCR range.
764 */
765 nfit_mem->memdev_pmem = nfit_memdev->memdev;
766 }
Dan Williamsb94d5232015-05-19 22:54:31 -0400767 }
768
769 return 0;
770}
771
772static int nfit_mem_cmp(void *priv, struct list_head *_a, struct list_head *_b)
773{
774 struct nfit_mem *a = container_of(_a, typeof(*a), list);
775 struct nfit_mem *b = container_of(_b, typeof(*b), list);
776 u32 handleA, handleB;
777
778 handleA = __to_nfit_memdev(a)->device_handle;
779 handleB = __to_nfit_memdev(b)->device_handle;
780 if (handleA < handleB)
781 return -1;
782 else if (handleA > handleB)
783 return 1;
784 return 0;
785}
786
787static int nfit_mem_init(struct acpi_nfit_desc *acpi_desc)
788{
789 struct nfit_spa *nfit_spa;
790
791 /*
792 * For each SPA-DCR or SPA-PMEM address range find its
793 * corresponding MEMDEV(s). From each MEMDEV find the
794 * corresponding DCR. Then, if we're operating on a SPA-DCR,
795 * try to find a SPA-BDW and a corresponding BDW that references
796 * the DCR. Throw it all into an nfit_mem object. Note, that
797 * BDWs are optional.
798 */
799 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
800 int rc;
801
802 rc = nfit_mem_dcr_init(acpi_desc, nfit_spa->spa);
803 if (rc)
804 return rc;
805 }
806
807 list_sort(NULL, &acpi_desc->dimms, nfit_mem_cmp);
808
809 return 0;
810}
811
Dan Williams45def222015-04-26 19:26:48 -0400812static ssize_t revision_show(struct device *dev,
813 struct device_attribute *attr, char *buf)
814{
815 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
816 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
817 struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
818
Linda Knippers6b577c92015-11-20 19:05:49 -0500819 return sprintf(buf, "%d\n", acpi_desc->acpi_header.revision);
Dan Williams45def222015-04-26 19:26:48 -0400820}
821static DEVICE_ATTR_RO(revision);
822
823static struct attribute *acpi_nfit_attributes[] = {
824 &dev_attr_revision.attr,
825 NULL,
826};
827
828static struct attribute_group acpi_nfit_attribute_group = {
829 .name = "nfit",
830 .attrs = acpi_nfit_attributes,
831};
832
Dan Williamsa61fe6f2016-02-19 12:29:32 -0800833static const struct attribute_group *acpi_nfit_attribute_groups[] = {
Dan Williams45def222015-04-26 19:26:48 -0400834 &nvdimm_bus_attribute_group,
835 &acpi_nfit_attribute_group,
836 NULL,
837};
838
Dan Williamse6dfb2d2015-04-25 03:56:17 -0400839static struct acpi_nfit_memory_map *to_nfit_memdev(struct device *dev)
840{
841 struct nvdimm *nvdimm = to_nvdimm(dev);
842 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
843
844 return __to_nfit_memdev(nfit_mem);
845}
846
847static struct acpi_nfit_control_region *to_nfit_dcr(struct device *dev)
848{
849 struct nvdimm *nvdimm = to_nvdimm(dev);
850 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
851
852 return nfit_mem->dcr;
853}
854
855static ssize_t handle_show(struct device *dev,
856 struct device_attribute *attr, char *buf)
857{
858 struct acpi_nfit_memory_map *memdev = to_nfit_memdev(dev);
859
860 return sprintf(buf, "%#x\n", memdev->device_handle);
861}
862static DEVICE_ATTR_RO(handle);
863
864static ssize_t phys_id_show(struct device *dev,
865 struct device_attribute *attr, char *buf)
866{
867 struct acpi_nfit_memory_map *memdev = to_nfit_memdev(dev);
868
869 return sprintf(buf, "%#x\n", memdev->physical_id);
870}
871static DEVICE_ATTR_RO(phys_id);
872
873static ssize_t vendor_show(struct device *dev,
874 struct device_attribute *attr, char *buf)
875{
876 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
877
Toshi Kani5ad9a7f2016-04-25 15:34:58 -0600878 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->vendor_id));
Dan Williamse6dfb2d2015-04-25 03:56:17 -0400879}
880static DEVICE_ATTR_RO(vendor);
881
882static ssize_t rev_id_show(struct device *dev,
883 struct device_attribute *attr, char *buf)
884{
885 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
886
Toshi Kani5ad9a7f2016-04-25 15:34:58 -0600887 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->revision_id));
Dan Williamse6dfb2d2015-04-25 03:56:17 -0400888}
889static DEVICE_ATTR_RO(rev_id);
890
891static ssize_t device_show(struct device *dev,
892 struct device_attribute *attr, char *buf)
893{
894 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
895
Toshi Kani5ad9a7f2016-04-25 15:34:58 -0600896 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->device_id));
Dan Williamse6dfb2d2015-04-25 03:56:17 -0400897}
898static DEVICE_ATTR_RO(device);
899
Dan Williams6ca72082016-04-29 10:33:23 -0700900static ssize_t subsystem_vendor_show(struct device *dev,
901 struct device_attribute *attr, char *buf)
902{
903 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
904
905 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->subsystem_vendor_id));
906}
907static DEVICE_ATTR_RO(subsystem_vendor);
908
909static ssize_t subsystem_rev_id_show(struct device *dev,
910 struct device_attribute *attr, char *buf)
911{
912 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
913
914 return sprintf(buf, "0x%04x\n",
915 be16_to_cpu(dcr->subsystem_revision_id));
916}
917static DEVICE_ATTR_RO(subsystem_rev_id);
918
919static ssize_t subsystem_device_show(struct device *dev,
920 struct device_attribute *attr, char *buf)
921{
922 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
923
924 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->subsystem_device_id));
925}
926static DEVICE_ATTR_RO(subsystem_device);
927
Dan Williams8cc6ddf2016-04-05 15:26:50 -0700928static int num_nvdimm_formats(struct nvdimm *nvdimm)
929{
930 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
931 int formats = 0;
932
933 if (nfit_mem->memdev_pmem)
934 formats++;
935 if (nfit_mem->memdev_bdw)
936 formats++;
937 return formats;
938}
939
Dan Williamse6dfb2d2015-04-25 03:56:17 -0400940static ssize_t format_show(struct device *dev,
941 struct device_attribute *attr, char *buf)
942{
943 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
944
Dan Williams1b982ba2016-05-18 10:07:19 -0700945 return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->code));
Dan Williamse6dfb2d2015-04-25 03:56:17 -0400946}
947static DEVICE_ATTR_RO(format);
948
Dan Williams8cc6ddf2016-04-05 15:26:50 -0700949static ssize_t format1_show(struct device *dev,
950 struct device_attribute *attr, char *buf)
951{
952 u32 handle;
953 ssize_t rc = -ENXIO;
954 struct nfit_mem *nfit_mem;
955 struct nfit_memdev *nfit_memdev;
956 struct acpi_nfit_desc *acpi_desc;
957 struct nvdimm *nvdimm = to_nvdimm(dev);
958 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
959
960 nfit_mem = nvdimm_provider_data(nvdimm);
961 acpi_desc = nfit_mem->acpi_desc;
962 handle = to_nfit_memdev(dev)->device_handle;
963
964 /* assumes DIMMs have at most 2 published interface codes */
965 mutex_lock(&acpi_desc->init_mutex);
966 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
967 struct acpi_nfit_memory_map *memdev = nfit_memdev->memdev;
968 struct nfit_dcr *nfit_dcr;
969
970 if (memdev->device_handle != handle)
971 continue;
972
973 list_for_each_entry(nfit_dcr, &acpi_desc->dcrs, list) {
974 if (nfit_dcr->dcr->region_index != memdev->region_index)
975 continue;
976 if (nfit_dcr->dcr->code == dcr->code)
977 continue;
Dan Williams1b982ba2016-05-18 10:07:19 -0700978 rc = sprintf(buf, "%#x\n",
979 be16_to_cpu(nfit_dcr->dcr->code));
Dan Williams8cc6ddf2016-04-05 15:26:50 -0700980 break;
981 }
982 if (rc != ENXIO)
983 break;
984 }
985 mutex_unlock(&acpi_desc->init_mutex);
986 return rc;
987}
988static DEVICE_ATTR_RO(format1);
989
990static ssize_t formats_show(struct device *dev,
991 struct device_attribute *attr, char *buf)
992{
993 struct nvdimm *nvdimm = to_nvdimm(dev);
994
995 return sprintf(buf, "%d\n", num_nvdimm_formats(nvdimm));
996}
997static DEVICE_ATTR_RO(formats);
998
Dan Williamse6dfb2d2015-04-25 03:56:17 -0400999static ssize_t serial_show(struct device *dev,
1000 struct device_attribute *attr, char *buf)
1001{
1002 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1003
Toshi Kani5ad9a7f2016-04-25 15:34:58 -06001004 return sprintf(buf, "0x%08x\n", be32_to_cpu(dcr->serial_number));
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001005}
1006static DEVICE_ATTR_RO(serial);
1007
Dan Williamsa94e3fb2016-04-28 18:18:05 -07001008static ssize_t family_show(struct device *dev,
1009 struct device_attribute *attr, char *buf)
1010{
1011 struct nvdimm *nvdimm = to_nvdimm(dev);
1012 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1013
1014 if (nfit_mem->family < 0)
1015 return -ENXIO;
1016 return sprintf(buf, "%d\n", nfit_mem->family);
1017}
1018static DEVICE_ATTR_RO(family);
1019
1020static ssize_t dsm_mask_show(struct device *dev,
1021 struct device_attribute *attr, char *buf)
1022{
1023 struct nvdimm *nvdimm = to_nvdimm(dev);
1024 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1025
1026 if (nfit_mem->family < 0)
1027 return -ENXIO;
1028 return sprintf(buf, "%#lx\n", nfit_mem->dsm_mask);
1029}
1030static DEVICE_ATTR_RO(dsm_mask);
1031
Dan Williams58138822015-06-23 20:08:34 -04001032static ssize_t flags_show(struct device *dev,
1033 struct device_attribute *attr, char *buf)
1034{
1035 u16 flags = to_nfit_memdev(dev)->flags;
1036
1037 return sprintf(buf, "%s%s%s%s%s\n",
Toshi Kani402bae52015-08-26 10:20:23 -06001038 flags & ACPI_NFIT_MEM_SAVE_FAILED ? "save_fail " : "",
1039 flags & ACPI_NFIT_MEM_RESTORE_FAILED ? "restore_fail " : "",
1040 flags & ACPI_NFIT_MEM_FLUSH_FAILED ? "flush_fail " : "",
Bob Mooreca321d12015-10-19 10:24:52 +08001041 flags & ACPI_NFIT_MEM_NOT_ARMED ? "not_armed " : "",
Toshi Kani402bae52015-08-26 10:20:23 -06001042 flags & ACPI_NFIT_MEM_HEALTH_OBSERVED ? "smart_event " : "");
Dan Williams58138822015-06-23 20:08:34 -04001043}
1044static DEVICE_ATTR_RO(flags);
1045
Toshi Kani38a879b2016-04-25 15:34:59 -06001046static ssize_t id_show(struct device *dev,
1047 struct device_attribute *attr, char *buf)
1048{
1049 struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
1050
1051 if (dcr->valid_fields & ACPI_NFIT_CONTROL_MFG_INFO_VALID)
1052 return sprintf(buf, "%04x-%02x-%04x-%08x\n",
1053 be16_to_cpu(dcr->vendor_id),
1054 dcr->manufacturing_location,
1055 be16_to_cpu(dcr->manufacturing_date),
1056 be32_to_cpu(dcr->serial_number));
1057 else
1058 return sprintf(buf, "%04x-%08x\n",
1059 be16_to_cpu(dcr->vendor_id),
1060 be32_to_cpu(dcr->serial_number));
1061}
1062static DEVICE_ATTR_RO(id);
1063
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001064static struct attribute *acpi_nfit_dimm_attributes[] = {
1065 &dev_attr_handle.attr,
1066 &dev_attr_phys_id.attr,
1067 &dev_attr_vendor.attr,
1068 &dev_attr_device.attr,
Dan Williams6ca72082016-04-29 10:33:23 -07001069 &dev_attr_rev_id.attr,
1070 &dev_attr_subsystem_vendor.attr,
1071 &dev_attr_subsystem_device.attr,
1072 &dev_attr_subsystem_rev_id.attr,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001073 &dev_attr_format.attr,
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001074 &dev_attr_formats.attr,
1075 &dev_attr_format1.attr,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001076 &dev_attr_serial.attr,
Dan Williams58138822015-06-23 20:08:34 -04001077 &dev_attr_flags.attr,
Toshi Kani38a879b2016-04-25 15:34:59 -06001078 &dev_attr_id.attr,
Dan Williamsa94e3fb2016-04-28 18:18:05 -07001079 &dev_attr_family.attr,
1080 &dev_attr_dsm_mask.attr,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001081 NULL,
1082};
1083
1084static umode_t acpi_nfit_dimm_attr_visible(struct kobject *kobj,
1085 struct attribute *a, int n)
1086{
1087 struct device *dev = container_of(kobj, struct device, kobj);
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001088 struct nvdimm *nvdimm = to_nvdimm(dev);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001089
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001090 if (!to_nfit_dcr(dev))
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001091 return 0;
Dan Williams8cc6ddf2016-04-05 15:26:50 -07001092 if (a == &dev_attr_format1.attr && num_nvdimm_formats(nvdimm) <= 1)
1093 return 0;
1094 return a->mode;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001095}
1096
1097static struct attribute_group acpi_nfit_dimm_attribute_group = {
1098 .name = "nfit",
1099 .attrs = acpi_nfit_dimm_attributes,
1100 .is_visible = acpi_nfit_dimm_attr_visible,
1101};
1102
1103static const struct attribute_group *acpi_nfit_dimm_attribute_groups[] = {
Dan Williams62232e452015-06-08 14:27:06 -04001104 &nvdimm_attribute_group,
Dan Williams4d88a972015-05-31 14:41:48 -04001105 &nd_device_attribute_group,
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001106 &acpi_nfit_dimm_attribute_group,
1107 NULL,
1108};
1109
1110static struct nvdimm *acpi_nfit_dimm_by_handle(struct acpi_nfit_desc *acpi_desc,
1111 u32 device_handle)
1112{
1113 struct nfit_mem *nfit_mem;
1114
1115 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list)
1116 if (__to_nfit_memdev(nfit_mem)->device_handle == device_handle)
1117 return nfit_mem->nvdimm;
1118
1119 return NULL;
1120}
1121
Dan Williams62232e452015-06-08 14:27:06 -04001122static int acpi_nfit_add_dimm(struct acpi_nfit_desc *acpi_desc,
1123 struct nfit_mem *nfit_mem, u32 device_handle)
1124{
1125 struct acpi_device *adev, *adev_dimm;
1126 struct device *dev = acpi_desc->dev;
Dan Williams31eca762016-04-28 16:23:43 -07001127 unsigned long dsm_mask;
1128 const u8 *uuid;
Linda Knippers60e95f432015-07-22 16:17:22 -04001129 int i;
Dan Williams62232e452015-06-08 14:27:06 -04001130
Dan Williamse3654ec2016-04-28 16:17:07 -07001131 /* nfit test assumes 1:1 relationship between commands and dsms */
1132 nfit_mem->dsm_mask = acpi_desc->dimm_cmd_force_en;
Dan Williams31eca762016-04-28 16:23:43 -07001133 nfit_mem->family = NVDIMM_FAMILY_INTEL;
Dan Williams62232e452015-06-08 14:27:06 -04001134 adev = to_acpi_dev(acpi_desc);
1135 if (!adev)
1136 return 0;
1137
1138 adev_dimm = acpi_find_child_device(adev, device_handle, false);
1139 nfit_mem->adev = adev_dimm;
1140 if (!adev_dimm) {
1141 dev_err(dev, "no ACPI.NFIT device with _ADR %#x, disabling...\n",
1142 device_handle);
Dan Williams4d88a972015-05-31 14:41:48 -04001143 return force_enable_dimms ? 0 : -ENODEV;
Dan Williams62232e452015-06-08 14:27:06 -04001144 }
1145
Dan Williams31eca762016-04-28 16:23:43 -07001146 /*
stuart hayese02fb722016-05-26 11:38:41 -05001147 * Until standardization materializes we need to consider 4
Dan Williams31eca762016-04-28 16:23:43 -07001148 * different command sets. Note, that checking for function0 (bit0)
1149 * tells us if any commands are reachable through this uuid.
1150 */
stuart hayese02fb722016-05-26 11:38:41 -05001151 for (i = NVDIMM_FAMILY_INTEL; i <= NVDIMM_FAMILY_MSFT; i++)
Dan Williams31eca762016-04-28 16:23:43 -07001152 if (acpi_check_dsm(adev_dimm->handle, to_nfit_uuid(i), 1, 1))
1153 break;
1154
1155 /* limit the supported commands to those that are publicly documented */
1156 nfit_mem->family = i;
Dan Williams87554092016-04-28 18:01:20 -07001157 if (nfit_mem->family == NVDIMM_FAMILY_INTEL) {
Dan Williams31eca762016-04-28 16:23:43 -07001158 dsm_mask = 0x3fe;
Dan Williams87554092016-04-28 18:01:20 -07001159 if (disable_vendor_specific)
1160 dsm_mask &= ~(1 << ND_CMD_VENDOR);
stuart hayese02fb722016-05-26 11:38:41 -05001161 } else if (nfit_mem->family == NVDIMM_FAMILY_HPE1) {
Dan Williams31eca762016-04-28 16:23:43 -07001162 dsm_mask = 0x1c3c76;
stuart hayese02fb722016-05-26 11:38:41 -05001163 } else if (nfit_mem->family == NVDIMM_FAMILY_HPE2) {
Dan Williams31eca762016-04-28 16:23:43 -07001164 dsm_mask = 0x1fe;
Dan Williams87554092016-04-28 18:01:20 -07001165 if (disable_vendor_specific)
1166 dsm_mask &= ~(1 << 8);
stuart hayese02fb722016-05-26 11:38:41 -05001167 } else if (nfit_mem->family == NVDIMM_FAMILY_MSFT) {
1168 dsm_mask = 0xffffffff;
Dan Williams87554092016-04-28 18:01:20 -07001169 } else {
Dan Williams31eca762016-04-28 16:23:43 -07001170 dev_err(dev, "unknown dimm command family\n");
1171 nfit_mem->family = -1;
1172 return force_enable_dimms ? 0 : -ENODEV;
1173 }
1174
1175 uuid = to_nfit_uuid(nfit_mem->family);
1176 for_each_set_bit(i, &dsm_mask, BITS_PER_LONG)
Dan Williams62232e452015-06-08 14:27:06 -04001177 if (acpi_check_dsm(adev_dimm->handle, uuid, 1, 1ULL << i))
1178 set_bit(i, &nfit_mem->dsm_mask);
1179
Linda Knippers60e95f432015-07-22 16:17:22 -04001180 return 0;
Dan Williams62232e452015-06-08 14:27:06 -04001181}
1182
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001183static int acpi_nfit_register_dimms(struct acpi_nfit_desc *acpi_desc)
1184{
1185 struct nfit_mem *nfit_mem;
Dan Williams4d88a972015-05-31 14:41:48 -04001186 int dimm_count = 0;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001187
1188 list_for_each_entry(nfit_mem, &acpi_desc->dimms, list) {
Dan Williamse5ae3b22016-06-07 17:00:04 -07001189 struct acpi_nfit_flush_address *flush;
Dan Williams31eca762016-04-28 16:23:43 -07001190 unsigned long flags = 0, cmd_mask;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001191 struct nvdimm *nvdimm;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001192 u32 device_handle;
Dan Williams58138822015-06-23 20:08:34 -04001193 u16 mem_flags;
Dan Williams62232e452015-06-08 14:27:06 -04001194 int rc;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001195
1196 device_handle = __to_nfit_memdev(nfit_mem)->device_handle;
1197 nvdimm = acpi_nfit_dimm_by_handle(acpi_desc, device_handle);
1198 if (nvdimm) {
Vishal Verma20985162015-10-27 16:58:27 -06001199 dimm_count++;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001200 continue;
1201 }
1202
1203 if (nfit_mem->bdw && nfit_mem->memdev_pmem)
1204 flags |= NDD_ALIASING;
1205
Dan Williams58138822015-06-23 20:08:34 -04001206 mem_flags = __to_nfit_memdev(nfit_mem)->flags;
Bob Mooreca321d12015-10-19 10:24:52 +08001207 if (mem_flags & ACPI_NFIT_MEM_NOT_ARMED)
Dan Williams58138822015-06-23 20:08:34 -04001208 flags |= NDD_UNARMED;
1209
Dan Williams62232e452015-06-08 14:27:06 -04001210 rc = acpi_nfit_add_dimm(acpi_desc, nfit_mem, device_handle);
1211 if (rc)
1212 continue;
1213
Dan Williamse3654ec2016-04-28 16:17:07 -07001214 /*
Dan Williams31eca762016-04-28 16:23:43 -07001215 * TODO: provide translation for non-NVDIMM_FAMILY_INTEL
1216 * devices (i.e. from nd_cmd to acpi_dsm) to standardize the
1217 * userspace interface.
Dan Williamse3654ec2016-04-28 16:17:07 -07001218 */
Dan Williams31eca762016-04-28 16:23:43 -07001219 cmd_mask = 1UL << ND_CMD_CALL;
1220 if (nfit_mem->family == NVDIMM_FAMILY_INTEL)
1221 cmd_mask |= nfit_mem->dsm_mask;
1222
Dan Williamse5ae3b22016-06-07 17:00:04 -07001223 flush = nfit_mem->nfit_flush ? nfit_mem->nfit_flush->flush
1224 : NULL;
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001225 nvdimm = nvdimm_create(acpi_desc->nvdimm_bus, nfit_mem,
Dan Williams62232e452015-06-08 14:27:06 -04001226 acpi_nfit_dimm_attribute_groups,
Dan Williamse5ae3b22016-06-07 17:00:04 -07001227 flags, cmd_mask, flush ? flush->hint_count : 0,
1228 nfit_mem->flush_wpq);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001229 if (!nvdimm)
1230 return -ENOMEM;
1231
1232 nfit_mem->nvdimm = nvdimm;
Dan Williams4d88a972015-05-31 14:41:48 -04001233 dimm_count++;
Dan Williams58138822015-06-23 20:08:34 -04001234
1235 if ((mem_flags & ACPI_NFIT_MEM_FAILED_MASK) == 0)
1236 continue;
1237
Toshi Kani402bae52015-08-26 10:20:23 -06001238 dev_info(acpi_desc->dev, "%s flags:%s%s%s%s\n",
Dan Williams58138822015-06-23 20:08:34 -04001239 nvdimm_name(nvdimm),
Toshi Kani402bae52015-08-26 10:20:23 -06001240 mem_flags & ACPI_NFIT_MEM_SAVE_FAILED ? " save_fail" : "",
1241 mem_flags & ACPI_NFIT_MEM_RESTORE_FAILED ? " restore_fail":"",
1242 mem_flags & ACPI_NFIT_MEM_FLUSH_FAILED ? " flush_fail" : "",
Bob Mooreca321d12015-10-19 10:24:52 +08001243 mem_flags & ACPI_NFIT_MEM_NOT_ARMED ? " not_armed" : "");
Dan Williams58138822015-06-23 20:08:34 -04001244
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001245 }
1246
Dan Williams4d88a972015-05-31 14:41:48 -04001247 return nvdimm_bus_check_dimm_count(acpi_desc->nvdimm_bus, dimm_count);
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001248}
1249
Dan Williams62232e452015-06-08 14:27:06 -04001250static void acpi_nfit_init_dsms(struct acpi_nfit_desc *acpi_desc)
1251{
1252 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
1253 const u8 *uuid = to_nfit_uuid(NFIT_DEV_BUS);
1254 struct acpi_device *adev;
1255 int i;
1256
Dan Williamse3654ec2016-04-28 16:17:07 -07001257 nd_desc->cmd_mask = acpi_desc->bus_cmd_force_en;
Dan Williams62232e452015-06-08 14:27:06 -04001258 adev = to_acpi_dev(acpi_desc);
1259 if (!adev)
1260 return;
1261
Dan Williamsd4f32362016-03-03 16:08:54 -08001262 for (i = ND_CMD_ARS_CAP; i <= ND_CMD_CLEAR_ERROR; i++)
Dan Williams62232e452015-06-08 14:27:06 -04001263 if (acpi_check_dsm(adev->handle, uuid, 1, 1ULL << i))
Dan Williamse3654ec2016-04-28 16:17:07 -07001264 set_bit(i, &nd_desc->cmd_mask);
Dan Williams62232e452015-06-08 14:27:06 -04001265}
1266
Dan Williams1f7df6f2015-06-09 20:13:14 -04001267static ssize_t range_index_show(struct device *dev,
1268 struct device_attribute *attr, char *buf)
1269{
1270 struct nd_region *nd_region = to_nd_region(dev);
1271 struct nfit_spa *nfit_spa = nd_region_provider_data(nd_region);
1272
1273 return sprintf(buf, "%d\n", nfit_spa->spa->range_index);
1274}
1275static DEVICE_ATTR_RO(range_index);
1276
1277static struct attribute *acpi_nfit_region_attributes[] = {
1278 &dev_attr_range_index.attr,
1279 NULL,
1280};
1281
1282static struct attribute_group acpi_nfit_region_attribute_group = {
1283 .name = "nfit",
1284 .attrs = acpi_nfit_region_attributes,
1285};
1286
1287static const struct attribute_group *acpi_nfit_region_attribute_groups[] = {
1288 &nd_region_attribute_group,
1289 &nd_mapping_attribute_group,
Dan Williams3d880022015-05-31 15:02:11 -04001290 &nd_device_attribute_group,
Toshi Kani74ae66c2015-06-19 12:18:34 -06001291 &nd_numa_attribute_group,
Dan Williams1f7df6f2015-06-09 20:13:14 -04001292 &acpi_nfit_region_attribute_group,
1293 NULL,
1294};
1295
Dan Williamseaf96152015-05-01 13:11:27 -04001296/* enough info to uniquely specify an interleave set */
1297struct nfit_set_info {
1298 struct nfit_set_info_map {
1299 u64 region_offset;
1300 u32 serial_number;
1301 u32 pad;
1302 } mapping[0];
1303};
1304
1305static size_t sizeof_nfit_set_info(int num_mappings)
1306{
1307 return sizeof(struct nfit_set_info)
1308 + num_mappings * sizeof(struct nfit_set_info_map);
1309}
1310
1311static int cmp_map(const void *m0, const void *m1)
1312{
1313 const struct nfit_set_info_map *map0 = m0;
1314 const struct nfit_set_info_map *map1 = m1;
1315
1316 return memcmp(&map0->region_offset, &map1->region_offset,
1317 sizeof(u64));
1318}
1319
1320/* Retrieve the nth entry referencing this spa */
1321static struct acpi_nfit_memory_map *memdev_from_spa(
1322 struct acpi_nfit_desc *acpi_desc, u16 range_index, int n)
1323{
1324 struct nfit_memdev *nfit_memdev;
1325
1326 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list)
1327 if (nfit_memdev->memdev->range_index == range_index)
1328 if (n-- == 0)
1329 return nfit_memdev->memdev;
1330 return NULL;
1331}
1332
1333static int acpi_nfit_init_interleave_set(struct acpi_nfit_desc *acpi_desc,
1334 struct nd_region_desc *ndr_desc,
1335 struct acpi_nfit_system_address *spa)
1336{
1337 int i, spa_type = nfit_spa_type(spa);
1338 struct device *dev = acpi_desc->dev;
1339 struct nd_interleave_set *nd_set;
1340 u16 nr = ndr_desc->num_mappings;
1341 struct nfit_set_info *info;
1342
1343 if (spa_type == NFIT_SPA_PM || spa_type == NFIT_SPA_VOLATILE)
1344 /* pass */;
1345 else
1346 return 0;
1347
1348 nd_set = devm_kzalloc(dev, sizeof(*nd_set), GFP_KERNEL);
1349 if (!nd_set)
1350 return -ENOMEM;
1351
1352 info = devm_kzalloc(dev, sizeof_nfit_set_info(nr), GFP_KERNEL);
1353 if (!info)
1354 return -ENOMEM;
1355 for (i = 0; i < nr; i++) {
1356 struct nd_mapping *nd_mapping = &ndr_desc->nd_mapping[i];
1357 struct nfit_set_info_map *map = &info->mapping[i];
1358 struct nvdimm *nvdimm = nd_mapping->nvdimm;
1359 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
1360 struct acpi_nfit_memory_map *memdev = memdev_from_spa(acpi_desc,
1361 spa->range_index, i);
1362
1363 if (!memdev || !nfit_mem->dcr) {
1364 dev_err(dev, "%s: failed to find DCR\n", __func__);
1365 return -ENODEV;
1366 }
1367
1368 map->region_offset = memdev->region_offset;
1369 map->serial_number = nfit_mem->dcr->serial_number;
1370 }
1371
1372 sort(&info->mapping[0], nr, sizeof(struct nfit_set_info_map),
1373 cmp_map, NULL);
1374 nd_set->cookie = nd_fletcher64(info, sizeof_nfit_set_info(nr), 0);
1375 ndr_desc->nd_set = nd_set;
1376 devm_kfree(dev, info);
1377
1378 return 0;
1379}
1380
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001381static u64 to_interleave_offset(u64 offset, struct nfit_blk_mmio *mmio)
1382{
1383 struct acpi_nfit_interleave *idt = mmio->idt;
1384 u32 sub_line_offset, line_index, line_offset;
1385 u64 line_no, table_skip_count, table_offset;
1386
1387 line_no = div_u64_rem(offset, mmio->line_size, &sub_line_offset);
1388 table_skip_count = div_u64_rem(line_no, mmio->num_lines, &line_index);
1389 line_offset = idt->line_offset[line_index]
1390 * mmio->line_size;
1391 table_offset = table_skip_count * mmio->table_size;
1392
1393 return mmio->base_offset + line_offset + table_offset + sub_line_offset;
1394}
1395
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001396static void wmb_blk(struct nfit_blk *nfit_blk)
1397{
1398
1399 if (nfit_blk->nvdimm_flush) {
1400 /*
1401 * The first wmb() is needed to 'sfence' all previous writes
1402 * such that they are architecturally visible for the platform
1403 * buffer flush. Note that we've already arranged for pmem
1404 * writes to avoid the cache via arch_memcpy_to_pmem(). The
1405 * final wmb() ensures ordering for the NVDIMM flush write.
1406 */
1407 wmb();
1408 writeq(1, nfit_blk->nvdimm_flush);
1409 wmb();
1410 } else
1411 wmb_pmem();
1412}
1413
Ross Zwislerde4a1962015-08-20 16:27:38 -06001414static u32 read_blk_stat(struct nfit_blk *nfit_blk, unsigned int bw)
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001415{
1416 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[DCR];
1417 u64 offset = nfit_blk->stat_offset + mmio->size * bw;
1418
1419 if (mmio->num_lines)
1420 offset = to_interleave_offset(offset, mmio);
1421
Linus Torvalds12f03ee2015-09-08 14:35:59 -07001422 return readl(mmio->addr.base + offset);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001423}
1424
1425static void write_blk_ctl(struct nfit_blk *nfit_blk, unsigned int bw,
1426 resource_size_t dpa, unsigned int len, unsigned int write)
1427{
1428 u64 cmd, offset;
1429 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[DCR];
1430
1431 enum {
1432 BCW_OFFSET_MASK = (1ULL << 48)-1,
1433 BCW_LEN_SHIFT = 48,
1434 BCW_LEN_MASK = (1ULL << 8) - 1,
1435 BCW_CMD_SHIFT = 56,
1436 };
1437
1438 cmd = (dpa >> L1_CACHE_SHIFT) & BCW_OFFSET_MASK;
1439 len = len >> L1_CACHE_SHIFT;
1440 cmd |= ((u64) len & BCW_LEN_MASK) << BCW_LEN_SHIFT;
1441 cmd |= ((u64) write) << BCW_CMD_SHIFT;
1442
1443 offset = nfit_blk->cmd_offset + mmio->size * bw;
1444 if (mmio->num_lines)
1445 offset = to_interleave_offset(offset, mmio);
1446
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001447 writeq(cmd, mmio->addr.base + offset);
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001448 wmb_blk(nfit_blk);
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001449
Dan Williamsaef25332016-02-12 17:01:11 -08001450 if (nfit_blk->dimm_flags & NFIT_BLK_DCR_LATCH)
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001451 readq(mmio->addr.base + offset);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001452}
1453
1454static int acpi_nfit_blk_single_io(struct nfit_blk *nfit_blk,
1455 resource_size_t dpa, void *iobuf, size_t len, int rw,
1456 unsigned int lane)
1457{
1458 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[BDW];
1459 unsigned int copied = 0;
1460 u64 base_offset;
1461 int rc;
1462
1463 base_offset = nfit_blk->bdw_offset + dpa % L1_CACHE_BYTES
1464 + lane * mmio->size;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001465 write_blk_ctl(nfit_blk, lane, dpa, len, rw);
1466 while (len) {
1467 unsigned int c;
1468 u64 offset;
1469
1470 if (mmio->num_lines) {
1471 u32 line_offset;
1472
1473 offset = to_interleave_offset(base_offset + copied,
1474 mmio);
1475 div_u64_rem(offset, mmio->line_size, &line_offset);
1476 c = min_t(size_t, len, mmio->line_size - line_offset);
1477 } else {
1478 offset = base_offset + nfit_blk->bdw_offset;
1479 c = len;
1480 }
1481
1482 if (rw)
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001483 memcpy_to_pmem(mmio->addr.aperture + offset,
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001484 iobuf + copied, c);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001485 else {
Dan Williamsaef25332016-02-12 17:01:11 -08001486 if (nfit_blk->dimm_flags & NFIT_BLK_READ_FLUSH)
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001487 mmio_flush_range((void __force *)
1488 mmio->addr.aperture + offset, c);
1489
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001490 memcpy_from_pmem(iobuf + copied,
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001491 mmio->addr.aperture + offset, c);
1492 }
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001493
1494 copied += c;
1495 len -= c;
1496 }
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001497
1498 if (rw)
1499 wmb_blk(nfit_blk);
1500
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001501 rc = read_blk_stat(nfit_blk, lane) ? -EIO : 0;
1502 return rc;
1503}
1504
1505static int acpi_nfit_blk_region_do_io(struct nd_blk_region *ndbr,
1506 resource_size_t dpa, void *iobuf, u64 len, int rw)
1507{
1508 struct nfit_blk *nfit_blk = nd_blk_region_provider_data(ndbr);
1509 struct nfit_blk_mmio *mmio = &nfit_blk->mmio[BDW];
1510 struct nd_region *nd_region = nfit_blk->nd_region;
1511 unsigned int lane, copied = 0;
1512 int rc = 0;
1513
1514 lane = nd_region_acquire_lane(nd_region);
1515 while (len) {
1516 u64 c = min(len, mmio->size);
1517
1518 rc = acpi_nfit_blk_single_io(nfit_blk, dpa + copied,
1519 iobuf + copied, c, rw, lane);
1520 if (rc)
1521 break;
1522
1523 copied += c;
1524 len -= c;
1525 }
1526 nd_region_release_lane(nd_region, lane);
1527
1528 return rc;
1529}
1530
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001531static int nfit_blk_init_interleave(struct nfit_blk_mmio *mmio,
1532 struct acpi_nfit_interleave *idt, u16 interleave_ways)
1533{
1534 if (idt) {
1535 mmio->num_lines = idt->line_count;
1536 mmio->line_size = idt->line_size;
1537 if (interleave_ways == 0)
1538 return -ENXIO;
1539 mmio->table_size = mmio->num_lines * interleave_ways
1540 * mmio->line_size;
1541 }
1542
1543 return 0;
1544}
1545
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001546static int acpi_nfit_blk_get_flags(struct nvdimm_bus_descriptor *nd_desc,
1547 struct nvdimm *nvdimm, struct nfit_blk *nfit_blk)
1548{
1549 struct nd_cmd_dimm_flags flags;
1550 int rc;
1551
1552 memset(&flags, 0, sizeof(flags));
1553 rc = nd_desc->ndctl(nd_desc, nvdimm, ND_CMD_DIMM_FLAGS, &flags,
Dan Williamsaef25332016-02-12 17:01:11 -08001554 sizeof(flags), NULL);
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001555
1556 if (rc >= 0 && flags.status == 0)
1557 nfit_blk->dimm_flags = flags.flags;
1558 else if (rc == -ENOTTY) {
1559 /* fall back to a conservative default */
Dan Williamsaef25332016-02-12 17:01:11 -08001560 nfit_blk->dimm_flags = NFIT_BLK_DCR_LATCH | NFIT_BLK_READ_FLUSH;
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001561 rc = 0;
1562 } else
1563 rc = -ENXIO;
1564
1565 return rc;
1566}
1567
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001568static int acpi_nfit_blk_region_enable(struct nvdimm_bus *nvdimm_bus,
1569 struct device *dev)
1570{
1571 struct nvdimm_bus_descriptor *nd_desc = to_nd_desc(nvdimm_bus);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001572 struct nd_blk_region *ndbr = to_nd_blk_region(dev);
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001573 struct nfit_flush *nfit_flush;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001574 struct nfit_blk_mmio *mmio;
1575 struct nfit_blk *nfit_blk;
1576 struct nfit_mem *nfit_mem;
1577 struct nvdimm *nvdimm;
1578 int rc;
1579
1580 nvdimm = nd_blk_region_to_dimm(ndbr);
1581 nfit_mem = nvdimm_provider_data(nvdimm);
1582 if (!nfit_mem || !nfit_mem->dcr || !nfit_mem->bdw) {
1583 dev_dbg(dev, "%s: missing%s%s%s\n", __func__,
1584 nfit_mem ? "" : " nfit_mem",
Dan Williams193ccca2015-06-30 16:09:39 -04001585 (nfit_mem && nfit_mem->dcr) ? "" : " dcr",
1586 (nfit_mem && nfit_mem->bdw) ? "" : " bdw");
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001587 return -ENXIO;
1588 }
1589
1590 nfit_blk = devm_kzalloc(dev, sizeof(*nfit_blk), GFP_KERNEL);
1591 if (!nfit_blk)
1592 return -ENOMEM;
1593 nd_blk_region_set_provider_data(ndbr, nfit_blk);
1594 nfit_blk->nd_region = to_nd_region(dev);
1595
1596 /* map block aperture memory */
1597 nfit_blk->bdw_offset = nfit_mem->bdw->offset;
1598 mmio = &nfit_blk->mmio[BDW];
Dan Williams29b9aa02016-06-06 17:42:38 -07001599 mmio->addr.base = devm_nvdimm_memremap(dev, nfit_mem->spa_bdw->address,
1600 nfit_mem->spa_bdw->length, ARCH_MEMREMAP_PMEM);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001601 if (!mmio->addr.base) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001602 dev_dbg(dev, "%s: %s failed to map bdw\n", __func__,
1603 nvdimm_name(nvdimm));
1604 return -ENOMEM;
1605 }
1606 mmio->size = nfit_mem->bdw->size;
1607 mmio->base_offset = nfit_mem->memdev_bdw->region_offset;
1608 mmio->idt = nfit_mem->idt_bdw;
1609 mmio->spa = nfit_mem->spa_bdw;
1610 rc = nfit_blk_init_interleave(mmio, nfit_mem->idt_bdw,
1611 nfit_mem->memdev_bdw->interleave_ways);
1612 if (rc) {
1613 dev_dbg(dev, "%s: %s failed to init bdw interleave\n",
1614 __func__, nvdimm_name(nvdimm));
1615 return rc;
1616 }
1617
1618 /* map block control memory */
1619 nfit_blk->cmd_offset = nfit_mem->dcr->command_offset;
1620 nfit_blk->stat_offset = nfit_mem->dcr->status_offset;
1621 mmio = &nfit_blk->mmio[DCR];
Dan Williams29b9aa02016-06-06 17:42:38 -07001622 mmio->addr.base = devm_nvdimm_ioremap(dev, nfit_mem->spa_dcr->address,
1623 nfit_mem->spa_dcr->length);
Ross Zwisler67a3e8f2015-08-27 13:14:20 -06001624 if (!mmio->addr.base) {
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001625 dev_dbg(dev, "%s: %s failed to map dcr\n", __func__,
1626 nvdimm_name(nvdimm));
1627 return -ENOMEM;
1628 }
1629 mmio->size = nfit_mem->dcr->window_size;
1630 mmio->base_offset = nfit_mem->memdev_dcr->region_offset;
1631 mmio->idt = nfit_mem->idt_dcr;
1632 mmio->spa = nfit_mem->spa_dcr;
1633 rc = nfit_blk_init_interleave(mmio, nfit_mem->idt_dcr,
1634 nfit_mem->memdev_dcr->interleave_ways);
1635 if (rc) {
1636 dev_dbg(dev, "%s: %s failed to init dcr interleave\n",
1637 __func__, nvdimm_name(nvdimm));
1638 return rc;
1639 }
1640
Ross Zwislerf0f2c072015-07-10 11:06:14 -06001641 rc = acpi_nfit_blk_get_flags(nd_desc, nvdimm, nfit_blk);
1642 if (rc < 0) {
1643 dev_dbg(dev, "%s: %s failed get DIMM flags\n",
1644 __func__, nvdimm_name(nvdimm));
1645 return rc;
1646 }
1647
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001648 nfit_flush = nfit_mem->nfit_flush;
1649 if (nfit_flush && nfit_flush->flush->hint_count != 0) {
Dan Williams29b9aa02016-06-06 17:42:38 -07001650 nfit_blk->nvdimm_flush = devm_nvdimm_ioremap(dev,
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001651 nfit_flush->flush->hint_address[0], 8);
1652 if (!nfit_blk->nvdimm_flush)
1653 return -ENOMEM;
1654 }
1655
Dan Williams96601ad2015-08-24 18:29:38 -04001656 if (!arch_has_wmb_pmem() && !nfit_blk->nvdimm_flush)
Ross Zwislerc2ad2952015-07-10 11:06:13 -06001657 dev_warn(dev, "unable to guarantee persistence of writes\n");
1658
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001659 if (mmio->line_size == 0)
1660 return 0;
1661
1662 if ((u32) nfit_blk->cmd_offset % mmio->line_size
1663 + 8 > mmio->line_size) {
1664 dev_dbg(dev, "cmd_offset crosses interleave boundary\n");
1665 return -ENXIO;
1666 } else if ((u32) nfit_blk->stat_offset % mmio->line_size
1667 + 8 > mmio->line_size) {
1668 dev_dbg(dev, "stat_offset crosses interleave boundary\n");
1669 return -ENXIO;
1670 }
1671
1672 return 0;
1673}
1674
Dan Williamsaef25332016-02-12 17:01:11 -08001675static int ars_get_cap(struct acpi_nfit_desc *acpi_desc,
Dan Williams1cf03c02016-02-17 13:01:23 -08001676 struct nd_cmd_ars_cap *cmd, struct nfit_spa *nfit_spa)
Vishal Verma0caeef62015-12-24 19:21:43 -07001677{
Dan Williamsaef25332016-02-12 17:01:11 -08001678 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
Dan Williams1cf03c02016-02-17 13:01:23 -08001679 struct acpi_nfit_system_address *spa = nfit_spa->spa;
Dan Williamsaef25332016-02-12 17:01:11 -08001680 int cmd_rc, rc;
1681
Dan Williams1cf03c02016-02-17 13:01:23 -08001682 cmd->address = spa->address;
1683 cmd->length = spa->length;
Dan Williamsaef25332016-02-12 17:01:11 -08001684 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_CAP, cmd,
1685 sizeof(*cmd), &cmd_rc);
1686 if (rc < 0)
1687 return rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08001688 return cmd_rc;
Vishal Verma0caeef62015-12-24 19:21:43 -07001689}
1690
Dan Williams1cf03c02016-02-17 13:01:23 -08001691static int ars_start(struct acpi_nfit_desc *acpi_desc, struct nfit_spa *nfit_spa)
Vishal Verma0caeef62015-12-24 19:21:43 -07001692{
1693 int rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08001694 int cmd_rc;
1695 struct nd_cmd_ars_start ars_start;
1696 struct acpi_nfit_system_address *spa = nfit_spa->spa;
1697 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
Vishal Verma0caeef62015-12-24 19:21:43 -07001698
Dan Williams1cf03c02016-02-17 13:01:23 -08001699 memset(&ars_start, 0, sizeof(ars_start));
1700 ars_start.address = spa->address;
1701 ars_start.length = spa->length;
1702 if (nfit_spa_type(spa) == NFIT_SPA_PM)
1703 ars_start.type = ND_ARS_PERSISTENT;
1704 else if (nfit_spa_type(spa) == NFIT_SPA_VOLATILE)
1705 ars_start.type = ND_ARS_VOLATILE;
1706 else
1707 return -ENOTTY;
Vishal Verma0caeef62015-12-24 19:21:43 -07001708
Dan Williams1cf03c02016-02-17 13:01:23 -08001709 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_START, &ars_start,
1710 sizeof(ars_start), &cmd_rc);
Dan Williamsaef25332016-02-12 17:01:11 -08001711
Dan Williams1cf03c02016-02-17 13:01:23 -08001712 if (rc < 0)
1713 return rc;
1714 return cmd_rc;
Vishal Verma0caeef62015-12-24 19:21:43 -07001715}
1716
Dan Williams1cf03c02016-02-17 13:01:23 -08001717static int ars_continue(struct acpi_nfit_desc *acpi_desc)
Vishal Verma0caeef62015-12-24 19:21:43 -07001718{
Dan Williamsaef25332016-02-12 17:01:11 -08001719 int rc, cmd_rc;
Dan Williams1cf03c02016-02-17 13:01:23 -08001720 struct nd_cmd_ars_start ars_start;
1721 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
1722 struct nd_cmd_ars_status *ars_status = acpi_desc->ars_status;
Vishal Verma0caeef62015-12-24 19:21:43 -07001723
Dan Williams1cf03c02016-02-17 13:01:23 -08001724 memset(&ars_start, 0, sizeof(ars_start));
1725 ars_start.address = ars_status->restart_address;
1726 ars_start.length = ars_status->restart_length;
1727 ars_start.type = ars_status->type;
1728 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_START, &ars_start,
1729 sizeof(ars_start), &cmd_rc);
1730 if (rc < 0)
1731 return rc;
1732 return cmd_rc;
1733}
Dan Williamsaef25332016-02-12 17:01:11 -08001734
Dan Williams1cf03c02016-02-17 13:01:23 -08001735static int ars_get_status(struct acpi_nfit_desc *acpi_desc)
1736{
1737 struct nvdimm_bus_descriptor *nd_desc = &acpi_desc->nd_desc;
1738 struct nd_cmd_ars_status *ars_status = acpi_desc->ars_status;
1739 int rc, cmd_rc;
Dan Williamsaef25332016-02-12 17:01:11 -08001740
Dan Williams1cf03c02016-02-17 13:01:23 -08001741 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_STATUS, ars_status,
1742 acpi_desc->ars_status_size, &cmd_rc);
1743 if (rc < 0)
1744 return rc;
1745 return cmd_rc;
Vishal Verma0caeef62015-12-24 19:21:43 -07001746}
1747
1748static int ars_status_process_records(struct nvdimm_bus *nvdimm_bus,
Dan Williams1cf03c02016-02-17 13:01:23 -08001749 struct nd_cmd_ars_status *ars_status)
Vishal Verma0caeef62015-12-24 19:21:43 -07001750{
1751 int rc;
1752 u32 i;
1753
Vishal Verma0caeef62015-12-24 19:21:43 -07001754 for (i = 0; i < ars_status->num_records; i++) {
1755 rc = nvdimm_bus_add_poison(nvdimm_bus,
1756 ars_status->records[i].err_address,
1757 ars_status->records[i].length);
1758 if (rc)
1759 return rc;
1760 }
1761
1762 return 0;
1763}
1764
Toshi Kaniaf1996e2016-03-09 12:47:06 -07001765static void acpi_nfit_remove_resource(void *data)
1766{
1767 struct resource *res = data;
1768
1769 remove_resource(res);
1770}
1771
1772static int acpi_nfit_insert_resource(struct acpi_nfit_desc *acpi_desc,
1773 struct nd_region_desc *ndr_desc)
1774{
1775 struct resource *res, *nd_res = ndr_desc->res;
1776 int is_pmem, ret;
1777
1778 /* No operation if the region is already registered as PMEM */
1779 is_pmem = region_intersects(nd_res->start, resource_size(nd_res),
1780 IORESOURCE_MEM, IORES_DESC_PERSISTENT_MEMORY);
1781 if (is_pmem == REGION_INTERSECTS)
1782 return 0;
1783
1784 res = devm_kzalloc(acpi_desc->dev, sizeof(*res), GFP_KERNEL);
1785 if (!res)
1786 return -ENOMEM;
1787
1788 res->name = "Persistent Memory";
1789 res->start = nd_res->start;
1790 res->end = nd_res->end;
1791 res->flags = IORESOURCE_MEM;
1792 res->desc = IORES_DESC_PERSISTENT_MEMORY;
1793
1794 ret = insert_resource(&iomem_resource, res);
1795 if (ret)
1796 return ret;
1797
Sajjan, Vikas Cd932dd22016-07-04 10:02:51 +05301798 ret = devm_add_action_or_reset(acpi_desc->dev,
1799 acpi_nfit_remove_resource,
1800 res);
1801 if (ret)
Toshi Kaniaf1996e2016-03-09 12:47:06 -07001802 return ret;
Toshi Kaniaf1996e2016-03-09 12:47:06 -07001803
1804 return 0;
1805}
1806
Dan Williams1f7df6f2015-06-09 20:13:14 -04001807static int acpi_nfit_init_mapping(struct acpi_nfit_desc *acpi_desc,
1808 struct nd_mapping *nd_mapping, struct nd_region_desc *ndr_desc,
1809 struct acpi_nfit_memory_map *memdev,
Dan Williams1cf03c02016-02-17 13:01:23 -08001810 struct nfit_spa *nfit_spa)
Dan Williams1f7df6f2015-06-09 20:13:14 -04001811{
1812 struct nvdimm *nvdimm = acpi_nfit_dimm_by_handle(acpi_desc,
1813 memdev->device_handle);
Dan Williams1cf03c02016-02-17 13:01:23 -08001814 struct acpi_nfit_system_address *spa = nfit_spa->spa;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001815 struct nd_blk_region_desc *ndbr_desc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04001816 struct nfit_mem *nfit_mem;
1817 int blk_valid = 0;
1818
1819 if (!nvdimm) {
1820 dev_err(acpi_desc->dev, "spa%d dimm: %#x not found\n",
1821 spa->range_index, memdev->device_handle);
1822 return -ENODEV;
1823 }
1824
1825 nd_mapping->nvdimm = nvdimm;
1826 switch (nfit_spa_type(spa)) {
1827 case NFIT_SPA_PM:
1828 case NFIT_SPA_VOLATILE:
1829 nd_mapping->start = memdev->address;
1830 nd_mapping->size = memdev->region_size;
1831 break;
1832 case NFIT_SPA_DCR:
1833 nfit_mem = nvdimm_provider_data(nvdimm);
1834 if (!nfit_mem || !nfit_mem->bdw) {
1835 dev_dbg(acpi_desc->dev, "spa%d %s missing bdw\n",
1836 spa->range_index, nvdimm_name(nvdimm));
1837 } else {
1838 nd_mapping->size = nfit_mem->bdw->capacity;
1839 nd_mapping->start = nfit_mem->bdw->start_address;
Vishal Verma5212e112015-06-25 04:20:32 -04001840 ndr_desc->num_lanes = nfit_mem->bdw->windows;
Dan Williams1f7df6f2015-06-09 20:13:14 -04001841 blk_valid = 1;
1842 }
1843
1844 ndr_desc->nd_mapping = nd_mapping;
1845 ndr_desc->num_mappings = blk_valid;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001846 ndbr_desc = to_blk_region_desc(ndr_desc);
1847 ndbr_desc->enable = acpi_nfit_blk_region_enable;
Dan Williams6bc75612015-06-17 17:23:32 -04001848 ndbr_desc->do_io = acpi_desc->blk_do_io;
Dan Williams1cf03c02016-02-17 13:01:23 -08001849 nfit_spa->nd_region = nvdimm_blk_region_create(acpi_desc->nvdimm_bus,
1850 ndr_desc);
1851 if (!nfit_spa->nd_region)
Dan Williams1f7df6f2015-06-09 20:13:14 -04001852 return -ENOMEM;
1853 break;
1854 }
1855
1856 return 0;
1857}
1858
1859static int acpi_nfit_register_region(struct acpi_nfit_desc *acpi_desc,
1860 struct nfit_spa *nfit_spa)
1861{
1862 static struct nd_mapping nd_mappings[ND_MAX_MAPPINGS];
1863 struct acpi_nfit_system_address *spa = nfit_spa->spa;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001864 struct nd_blk_region_desc ndbr_desc;
1865 struct nd_region_desc *ndr_desc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04001866 struct nfit_memdev *nfit_memdev;
Dan Williams1f7df6f2015-06-09 20:13:14 -04001867 struct nvdimm_bus *nvdimm_bus;
1868 struct resource res;
Dan Williamseaf96152015-05-01 13:11:27 -04001869 int count = 0, rc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04001870
Dan Williams1cf03c02016-02-17 13:01:23 -08001871 if (nfit_spa->nd_region)
Vishal Verma20985162015-10-27 16:58:27 -06001872 return 0;
1873
Dan Williams1f7df6f2015-06-09 20:13:14 -04001874 if (spa->range_index == 0) {
1875 dev_dbg(acpi_desc->dev, "%s: detected invalid spa index\n",
1876 __func__);
1877 return 0;
1878 }
1879
1880 memset(&res, 0, sizeof(res));
1881 memset(&nd_mappings, 0, sizeof(nd_mappings));
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001882 memset(&ndbr_desc, 0, sizeof(ndbr_desc));
Dan Williams1f7df6f2015-06-09 20:13:14 -04001883 res.start = spa->address;
1884 res.end = res.start + spa->length - 1;
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001885 ndr_desc = &ndbr_desc.ndr_desc;
1886 ndr_desc->res = &res;
1887 ndr_desc->provider_data = nfit_spa;
1888 ndr_desc->attr_groups = acpi_nfit_region_attribute_groups;
Toshi Kani41d7a6d2015-06-19 12:18:33 -06001889 if (spa->flags & ACPI_NFIT_PROXIMITY_VALID)
1890 ndr_desc->numa_node = acpi_map_pxm_to_online_node(
1891 spa->proximity_domain);
1892 else
1893 ndr_desc->numa_node = NUMA_NO_NODE;
1894
Dan Williams1f7df6f2015-06-09 20:13:14 -04001895 list_for_each_entry(nfit_memdev, &acpi_desc->memdevs, list) {
1896 struct acpi_nfit_memory_map *memdev = nfit_memdev->memdev;
1897 struct nd_mapping *nd_mapping;
Dan Williams1f7df6f2015-06-09 20:13:14 -04001898
1899 if (memdev->range_index != spa->range_index)
1900 continue;
1901 if (count >= ND_MAX_MAPPINGS) {
1902 dev_err(acpi_desc->dev, "spa%d exceeds max mappings %d\n",
1903 spa->range_index, ND_MAX_MAPPINGS);
1904 return -ENXIO;
1905 }
1906 nd_mapping = &nd_mappings[count++];
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001907 rc = acpi_nfit_init_mapping(acpi_desc, nd_mapping, ndr_desc,
Dan Williams1cf03c02016-02-17 13:01:23 -08001908 memdev, nfit_spa);
Dan Williams1f7df6f2015-06-09 20:13:14 -04001909 if (rc)
Dan Williams1cf03c02016-02-17 13:01:23 -08001910 goto out;
Dan Williams1f7df6f2015-06-09 20:13:14 -04001911 }
1912
Ross Zwisler047fc8a2015-06-25 04:21:02 -04001913 ndr_desc->nd_mapping = nd_mappings;
1914 ndr_desc->num_mappings = count;
1915 rc = acpi_nfit_init_interleave_set(acpi_desc, ndr_desc, spa);
Dan Williamseaf96152015-05-01 13:11:27 -04001916 if (rc)
Dan Williams1cf03c02016-02-17 13:01:23 -08001917 goto out;
Dan Williamseaf96152015-05-01 13:11:27 -04001918
Dan Williams1f7df6f2015-06-09 20:13:14 -04001919 nvdimm_bus = acpi_desc->nvdimm_bus;
1920 if (nfit_spa_type(spa) == NFIT_SPA_PM) {
Toshi Kaniaf1996e2016-03-09 12:47:06 -07001921 rc = acpi_nfit_insert_resource(acpi_desc, ndr_desc);
Dan Williams48901162016-03-09 17:15:43 -08001922 if (rc) {
Toshi Kaniaf1996e2016-03-09 12:47:06 -07001923 dev_warn(acpi_desc->dev,
1924 "failed to insert pmem resource to iomem: %d\n",
1925 rc);
Dan Williams48901162016-03-09 17:15:43 -08001926 goto out;
Vishal Verma0caeef62015-12-24 19:21:43 -07001927 }
Dan Williams48901162016-03-09 17:15:43 -08001928
Dan Williams1cf03c02016-02-17 13:01:23 -08001929 nfit_spa->nd_region = nvdimm_pmem_region_create(nvdimm_bus,
1930 ndr_desc);
1931 if (!nfit_spa->nd_region)
1932 rc = -ENOMEM;
Dan Williams1f7df6f2015-06-09 20:13:14 -04001933 } else if (nfit_spa_type(spa) == NFIT_SPA_VOLATILE) {
Dan Williams1cf03c02016-02-17 13:01:23 -08001934 nfit_spa->nd_region = nvdimm_volatile_region_create(nvdimm_bus,
1935 ndr_desc);
1936 if (!nfit_spa->nd_region)
1937 rc = -ENOMEM;
Dan Williams1f7df6f2015-06-09 20:13:14 -04001938 }
Vishal Verma20985162015-10-27 16:58:27 -06001939
Dan Williams1cf03c02016-02-17 13:01:23 -08001940 out:
1941 if (rc)
1942 dev_err(acpi_desc->dev, "failed to register spa range %d\n",
1943 nfit_spa->spa->range_index);
1944 return rc;
1945}
1946
1947static int ars_status_alloc(struct acpi_nfit_desc *acpi_desc,
1948 u32 max_ars)
1949{
1950 struct device *dev = acpi_desc->dev;
1951 struct nd_cmd_ars_status *ars_status;
1952
1953 if (acpi_desc->ars_status && acpi_desc->ars_status_size >= max_ars) {
1954 memset(acpi_desc->ars_status, 0, acpi_desc->ars_status_size);
1955 return 0;
1956 }
1957
1958 if (acpi_desc->ars_status)
1959 devm_kfree(dev, acpi_desc->ars_status);
1960 acpi_desc->ars_status = NULL;
1961 ars_status = devm_kzalloc(dev, max_ars, GFP_KERNEL);
1962 if (!ars_status)
1963 return -ENOMEM;
1964 acpi_desc->ars_status = ars_status;
1965 acpi_desc->ars_status_size = max_ars;
Dan Williams1f7df6f2015-06-09 20:13:14 -04001966 return 0;
1967}
1968
Dan Williams1cf03c02016-02-17 13:01:23 -08001969static int acpi_nfit_query_poison(struct acpi_nfit_desc *acpi_desc,
1970 struct nfit_spa *nfit_spa)
1971{
1972 struct acpi_nfit_system_address *spa = nfit_spa->spa;
1973 int rc;
1974
1975 if (!nfit_spa->max_ars) {
1976 struct nd_cmd_ars_cap ars_cap;
1977
1978 memset(&ars_cap, 0, sizeof(ars_cap));
1979 rc = ars_get_cap(acpi_desc, &ars_cap, nfit_spa);
1980 if (rc < 0)
1981 return rc;
1982 nfit_spa->max_ars = ars_cap.max_ars_out;
1983 nfit_spa->clear_err_unit = ars_cap.clear_err_unit;
1984 /* check that the supported scrub types match the spa type */
1985 if (nfit_spa_type(spa) == NFIT_SPA_VOLATILE &&
1986 ((ars_cap.status >> 16) & ND_ARS_VOLATILE) == 0)
1987 return -ENOTTY;
1988 else if (nfit_spa_type(spa) == NFIT_SPA_PM &&
1989 ((ars_cap.status >> 16) & ND_ARS_PERSISTENT) == 0)
1990 return -ENOTTY;
1991 }
1992
1993 if (ars_status_alloc(acpi_desc, nfit_spa->max_ars))
1994 return -ENOMEM;
1995
1996 rc = ars_get_status(acpi_desc);
1997 if (rc < 0 && rc != -ENOSPC)
1998 return rc;
1999
2000 if (ars_status_process_records(acpi_desc->nvdimm_bus,
2001 acpi_desc->ars_status))
2002 return -ENOMEM;
2003
2004 return 0;
2005}
2006
2007static void acpi_nfit_async_scrub(struct acpi_nfit_desc *acpi_desc,
2008 struct nfit_spa *nfit_spa)
2009{
2010 struct acpi_nfit_system_address *spa = nfit_spa->spa;
2011 unsigned int overflow_retry = scrub_overflow_abort;
2012 u64 init_ars_start = 0, init_ars_len = 0;
2013 struct device *dev = acpi_desc->dev;
2014 unsigned int tmo = scrub_timeout;
2015 int rc;
2016
2017 if (nfit_spa->ars_done || !nfit_spa->nd_region)
2018 return;
2019
2020 rc = ars_start(acpi_desc, nfit_spa);
2021 /*
2022 * If we timed out the initial scan we'll still be busy here,
2023 * and will wait another timeout before giving up permanently.
2024 */
2025 if (rc < 0 && rc != -EBUSY)
2026 return;
2027
2028 do {
2029 u64 ars_start, ars_len;
2030
2031 if (acpi_desc->cancel)
2032 break;
2033 rc = acpi_nfit_query_poison(acpi_desc, nfit_spa);
2034 if (rc == -ENOTTY)
2035 break;
2036 if (rc == -EBUSY && !tmo) {
2037 dev_warn(dev, "range %d ars timeout, aborting\n",
2038 spa->range_index);
2039 break;
2040 }
2041
2042 if (rc == -EBUSY) {
2043 /*
2044 * Note, entries may be appended to the list
2045 * while the lock is dropped, but the workqueue
2046 * being active prevents entries being deleted /
2047 * freed.
2048 */
2049 mutex_unlock(&acpi_desc->init_mutex);
2050 ssleep(1);
2051 tmo--;
2052 mutex_lock(&acpi_desc->init_mutex);
2053 continue;
2054 }
2055
2056 /* we got some results, but there are more pending... */
2057 if (rc == -ENOSPC && overflow_retry--) {
2058 if (!init_ars_len) {
2059 init_ars_len = acpi_desc->ars_status->length;
2060 init_ars_start = acpi_desc->ars_status->address;
2061 }
2062 rc = ars_continue(acpi_desc);
2063 }
2064
2065 if (rc < 0) {
2066 dev_warn(dev, "range %d ars continuation failed\n",
2067 spa->range_index);
2068 break;
2069 }
2070
2071 if (init_ars_len) {
2072 ars_start = init_ars_start;
2073 ars_len = init_ars_len;
2074 } else {
2075 ars_start = acpi_desc->ars_status->address;
2076 ars_len = acpi_desc->ars_status->length;
2077 }
2078 dev_dbg(dev, "spa range: %d ars from %#llx + %#llx complete\n",
2079 spa->range_index, ars_start, ars_len);
2080 /* notify the region about new poison entries */
2081 nvdimm_region_notify(nfit_spa->nd_region,
2082 NVDIMM_REVALIDATE_POISON);
2083 break;
2084 } while (1);
2085}
2086
2087static void acpi_nfit_scrub(struct work_struct *work)
2088{
2089 struct device *dev;
2090 u64 init_scrub_length = 0;
2091 struct nfit_spa *nfit_spa;
2092 u64 init_scrub_address = 0;
2093 bool init_ars_done = false;
2094 struct acpi_nfit_desc *acpi_desc;
2095 unsigned int tmo = scrub_timeout;
2096 unsigned int overflow_retry = scrub_overflow_abort;
2097
2098 acpi_desc = container_of(work, typeof(*acpi_desc), work);
2099 dev = acpi_desc->dev;
2100
2101 /*
2102 * We scrub in 2 phases. The first phase waits for any platform
2103 * firmware initiated scrubs to complete and then we go search for the
2104 * affected spa regions to mark them scanned. In the second phase we
2105 * initiate a directed scrub for every range that was not scrubbed in
2106 * phase 1.
2107 */
2108
2109 /* process platform firmware initiated scrubs */
2110 retry:
2111 mutex_lock(&acpi_desc->init_mutex);
2112 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
2113 struct nd_cmd_ars_status *ars_status;
2114 struct acpi_nfit_system_address *spa;
2115 u64 ars_start, ars_len;
2116 int rc;
2117
2118 if (acpi_desc->cancel)
2119 break;
2120
2121 if (nfit_spa->nd_region)
2122 continue;
2123
2124 if (init_ars_done) {
2125 /*
2126 * No need to re-query, we're now just
2127 * reconciling all the ranges covered by the
2128 * initial scrub
2129 */
2130 rc = 0;
2131 } else
2132 rc = acpi_nfit_query_poison(acpi_desc, nfit_spa);
2133
2134 if (rc == -ENOTTY) {
2135 /* no ars capability, just register spa and move on */
2136 acpi_nfit_register_region(acpi_desc, nfit_spa);
2137 continue;
2138 }
2139
2140 if (rc == -EBUSY && !tmo) {
2141 /* fallthrough to directed scrub in phase 2 */
2142 dev_warn(dev, "timeout awaiting ars results, continuing...\n");
2143 break;
2144 } else if (rc == -EBUSY) {
2145 mutex_unlock(&acpi_desc->init_mutex);
2146 ssleep(1);
2147 tmo--;
2148 goto retry;
2149 }
2150
2151 /* we got some results, but there are more pending... */
2152 if (rc == -ENOSPC && overflow_retry--) {
2153 ars_status = acpi_desc->ars_status;
2154 /*
2155 * Record the original scrub range, so that we
2156 * can recall all the ranges impacted by the
2157 * initial scrub.
2158 */
2159 if (!init_scrub_length) {
2160 init_scrub_length = ars_status->length;
2161 init_scrub_address = ars_status->address;
2162 }
2163 rc = ars_continue(acpi_desc);
2164 if (rc == 0) {
2165 mutex_unlock(&acpi_desc->init_mutex);
2166 goto retry;
2167 }
2168 }
2169
2170 if (rc < 0) {
2171 /*
2172 * Initial scrub failed, we'll give it one more
2173 * try below...
2174 */
2175 break;
2176 }
2177
2178 /* We got some final results, record completed ranges */
2179 ars_status = acpi_desc->ars_status;
2180 if (init_scrub_length) {
2181 ars_start = init_scrub_address;
2182 ars_len = ars_start + init_scrub_length;
2183 } else {
2184 ars_start = ars_status->address;
2185 ars_len = ars_status->length;
2186 }
2187 spa = nfit_spa->spa;
2188
2189 if (!init_ars_done) {
2190 init_ars_done = true;
2191 dev_dbg(dev, "init scrub %#llx + %#llx complete\n",
2192 ars_start, ars_len);
2193 }
2194 if (ars_start <= spa->address && ars_start + ars_len
2195 >= spa->address + spa->length)
2196 acpi_nfit_register_region(acpi_desc, nfit_spa);
2197 }
2198
2199 /*
2200 * For all the ranges not covered by an initial scrub we still
2201 * want to see if there are errors, but it's ok to discover them
2202 * asynchronously.
2203 */
2204 list_for_each_entry(nfit_spa, &acpi_desc->spas, list) {
2205 /*
2206 * Flag all the ranges that still need scrubbing, but
2207 * register them now to make data available.
2208 */
2209 if (nfit_spa->nd_region)
2210 nfit_spa->ars_done = 1;
2211 else
2212 acpi_nfit_register_region(acpi_desc, nfit_spa);
2213 }
2214
2215 list_for_each_entry(nfit_spa, &acpi_desc->spas, list)
2216 acpi_nfit_async_scrub(acpi_desc, nfit_spa);
2217 mutex_unlock(&acpi_desc->init_mutex);
2218}
2219
Dan Williams1f7df6f2015-06-09 20:13:14 -04002220static int acpi_nfit_register_regions(struct acpi_nfit_desc *acpi_desc)
2221{
2222 struct nfit_spa *nfit_spa;
Dan Williams1cf03c02016-02-17 13:01:23 -08002223 int rc;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002224
Dan Williams1cf03c02016-02-17 13:01:23 -08002225 list_for_each_entry(nfit_spa, &acpi_desc->spas, list)
2226 if (nfit_spa_type(nfit_spa->spa) == NFIT_SPA_DCR) {
2227 /* BLK regions don't need to wait for ars results */
2228 rc = acpi_nfit_register_region(acpi_desc, nfit_spa);
2229 if (rc)
2230 return rc;
2231 }
Dan Williams1f7df6f2015-06-09 20:13:14 -04002232
Dan Williams1cf03c02016-02-17 13:01:23 -08002233 queue_work(nfit_wq, &acpi_desc->work);
Dan Williams1f7df6f2015-06-09 20:13:14 -04002234 return 0;
2235}
2236
Vishal Verma20985162015-10-27 16:58:27 -06002237static int acpi_nfit_check_deletions(struct acpi_nfit_desc *acpi_desc,
2238 struct nfit_table_prev *prev)
2239{
2240 struct device *dev = acpi_desc->dev;
2241
2242 if (!list_empty(&prev->spas) ||
2243 !list_empty(&prev->memdevs) ||
2244 !list_empty(&prev->dcrs) ||
2245 !list_empty(&prev->bdws) ||
2246 !list_empty(&prev->idts) ||
2247 !list_empty(&prev->flushes)) {
2248 dev_err(dev, "new nfit deletes entries (unsupported)\n");
2249 return -ENXIO;
2250 }
2251 return 0;
2252}
2253
Dan Williams6bc75612015-06-17 17:23:32 -04002254int acpi_nfit_init(struct acpi_nfit_desc *acpi_desc, acpi_size sz)
Dan Williamsb94d5232015-05-19 22:54:31 -04002255{
2256 struct device *dev = acpi_desc->dev;
Vishal Verma20985162015-10-27 16:58:27 -06002257 struct nfit_table_prev prev;
Dan Williamsb94d5232015-05-19 22:54:31 -04002258 const void *end;
2259 u8 *data;
Dan Williams1f7df6f2015-06-09 20:13:14 -04002260 int rc;
Dan Williamsb94d5232015-05-19 22:54:31 -04002261
Vishal Verma20985162015-10-27 16:58:27 -06002262 mutex_lock(&acpi_desc->init_mutex);
2263
2264 INIT_LIST_HEAD(&prev.spas);
2265 INIT_LIST_HEAD(&prev.memdevs);
2266 INIT_LIST_HEAD(&prev.dcrs);
2267 INIT_LIST_HEAD(&prev.bdws);
2268 INIT_LIST_HEAD(&prev.idts);
2269 INIT_LIST_HEAD(&prev.flushes);
2270
2271 list_cut_position(&prev.spas, &acpi_desc->spas,
2272 acpi_desc->spas.prev);
2273 list_cut_position(&prev.memdevs, &acpi_desc->memdevs,
2274 acpi_desc->memdevs.prev);
2275 list_cut_position(&prev.dcrs, &acpi_desc->dcrs,
2276 acpi_desc->dcrs.prev);
2277 list_cut_position(&prev.bdws, &acpi_desc->bdws,
2278 acpi_desc->bdws.prev);
2279 list_cut_position(&prev.idts, &acpi_desc->idts,
2280 acpi_desc->idts.prev);
2281 list_cut_position(&prev.flushes, &acpi_desc->flushes,
2282 acpi_desc->flushes.prev);
2283
2284 data = (u8 *) acpi_desc->nfit;
2285 end = data + sz;
Vishal Verma20985162015-10-27 16:58:27 -06002286 while (!IS_ERR_OR_NULL(data))
2287 data = add_table(acpi_desc, &prev, data, end);
2288
2289 if (IS_ERR(data)) {
2290 dev_dbg(dev, "%s: nfit table parsing error: %ld\n", __func__,
2291 PTR_ERR(data));
2292 rc = PTR_ERR(data);
2293 goto out_unlock;
2294 }
2295
2296 rc = acpi_nfit_check_deletions(acpi_desc, &prev);
2297 if (rc)
2298 goto out_unlock;
2299
Dan Williams81ed4e32016-06-10 18:20:53 -07002300 rc = nfit_mem_init(acpi_desc);
2301 if (rc)
Vishal Verma20985162015-10-27 16:58:27 -06002302 goto out_unlock;
Vishal Verma20985162015-10-27 16:58:27 -06002303
2304 acpi_nfit_init_dsms(acpi_desc);
2305
2306 rc = acpi_nfit_register_dimms(acpi_desc);
2307 if (rc)
2308 goto out_unlock;
2309
2310 rc = acpi_nfit_register_regions(acpi_desc);
2311
2312 out_unlock:
2313 mutex_unlock(&acpi_desc->init_mutex);
2314 return rc;
2315}
2316EXPORT_SYMBOL_GPL(acpi_nfit_init);
2317
Dan Williams7ae0fa432016-02-19 12:16:34 -08002318struct acpi_nfit_flush_work {
2319 struct work_struct work;
2320 struct completion cmp;
2321};
2322
2323static void flush_probe(struct work_struct *work)
2324{
2325 struct acpi_nfit_flush_work *flush;
2326
2327 flush = container_of(work, typeof(*flush), work);
2328 complete(&flush->cmp);
2329}
2330
2331static int acpi_nfit_flush_probe(struct nvdimm_bus_descriptor *nd_desc)
2332{
2333 struct acpi_nfit_desc *acpi_desc = to_acpi_nfit_desc(nd_desc);
2334 struct device *dev = acpi_desc->dev;
2335 struct acpi_nfit_flush_work flush;
2336
2337 /* bounce the device lock to flush acpi_nfit_add / acpi_nfit_notify */
2338 device_lock(dev);
2339 device_unlock(dev);
2340
2341 /*
2342 * Scrub work could take 10s of seconds, userspace may give up so we
2343 * need to be interruptible while waiting.
2344 */
2345 INIT_WORK_ONSTACK(&flush.work, flush_probe);
2346 COMPLETION_INITIALIZER_ONSTACK(flush.cmp);
2347 queue_work(nfit_wq, &flush.work);
2348 return wait_for_completion_interruptible(&flush.cmp);
2349}
2350
Dan Williams87bf5722016-02-22 21:50:31 -08002351static int acpi_nfit_clear_to_send(struct nvdimm_bus_descriptor *nd_desc,
2352 struct nvdimm *nvdimm, unsigned int cmd)
2353{
2354 struct acpi_nfit_desc *acpi_desc = to_acpi_nfit_desc(nd_desc);
2355
2356 if (nvdimm)
2357 return 0;
2358 if (cmd != ND_CMD_ARS_START)
2359 return 0;
2360
2361 /*
2362 * The kernel and userspace may race to initiate a scrub, but
2363 * the scrub thread is prepared to lose that initial race. It
2364 * just needs guarantees that any ars it initiates are not
2365 * interrupted by any intervening start reqeusts from userspace.
2366 */
2367 if (work_busy(&acpi_desc->work))
2368 return -EBUSY;
2369
2370 return 0;
2371}
2372
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002373void acpi_nfit_desc_init(struct acpi_nfit_desc *acpi_desc, struct device *dev)
Vishal Verma20985162015-10-27 16:58:27 -06002374{
2375 struct nvdimm_bus_descriptor *nd_desc;
Vishal Verma20985162015-10-27 16:58:27 -06002376
2377 dev_set_drvdata(dev, acpi_desc);
2378 acpi_desc->dev = dev;
2379 acpi_desc->blk_do_io = acpi_nfit_blk_region_do_io;
2380 nd_desc = &acpi_desc->nd_desc;
2381 nd_desc->provider_name = "ACPI.NFIT";
2382 nd_desc->ndctl = acpi_nfit_ctl;
Dan Williams7ae0fa432016-02-19 12:16:34 -08002383 nd_desc->flush_probe = acpi_nfit_flush_probe;
Dan Williams87bf5722016-02-22 21:50:31 -08002384 nd_desc->clear_to_send = acpi_nfit_clear_to_send;
Vishal Verma20985162015-10-27 16:58:27 -06002385 nd_desc->attr_groups = acpi_nfit_attribute_groups;
2386
Dan Williamsb94d5232015-05-19 22:54:31 -04002387 INIT_LIST_HEAD(&acpi_desc->spas);
2388 INIT_LIST_HEAD(&acpi_desc->dcrs);
2389 INIT_LIST_HEAD(&acpi_desc->bdws);
Ross Zwisler047fc8a2015-06-25 04:21:02 -04002390 INIT_LIST_HEAD(&acpi_desc->idts);
Ross Zwislerc2ad2952015-07-10 11:06:13 -06002391 INIT_LIST_HEAD(&acpi_desc->flushes);
Dan Williamsb94d5232015-05-19 22:54:31 -04002392 INIT_LIST_HEAD(&acpi_desc->memdevs);
2393 INIT_LIST_HEAD(&acpi_desc->dimms);
Vishal Verma20985162015-10-27 16:58:27 -06002394 mutex_init(&acpi_desc->init_mutex);
Dan Williams1cf03c02016-02-17 13:01:23 -08002395 INIT_WORK(&acpi_desc->work, acpi_nfit_scrub);
Dan Williamsb94d5232015-05-19 22:54:31 -04002396}
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002397EXPORT_SYMBOL_GPL(acpi_nfit_desc_init);
Dan Williamsb94d5232015-05-19 22:54:31 -04002398
2399static int acpi_nfit_add(struct acpi_device *adev)
2400{
Vishal Verma20985162015-10-27 16:58:27 -06002401 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL };
Dan Williamsb94d5232015-05-19 22:54:31 -04002402 struct acpi_nfit_desc *acpi_desc;
2403 struct device *dev = &adev->dev;
2404 struct acpi_table_header *tbl;
2405 acpi_status status = AE_OK;
2406 acpi_size sz;
2407 int rc;
2408
Lee, Chun-Yi82595422016-01-21 20:32:10 +08002409 status = acpi_get_table_with_size(ACPI_SIG_NFIT, 0, &tbl, &sz);
Dan Williamsb94d5232015-05-19 22:54:31 -04002410 if (ACPI_FAILURE(status)) {
Vishal Verma20985162015-10-27 16:58:27 -06002411 /* This is ok, we could have an nvdimm hotplugged later */
2412 dev_dbg(dev, "failed to find NFIT at startup\n");
2413 return 0;
Dan Williamsb94d5232015-05-19 22:54:31 -04002414 }
2415
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002416 acpi_desc = devm_kzalloc(dev, sizeof(*acpi_desc), GFP_KERNEL);
2417 if (!acpi_desc)
2418 return -ENOMEM;
2419 acpi_nfit_desc_init(acpi_desc, &adev->dev);
2420 acpi_desc->nvdimm_bus = nvdimm_bus_register(dev, &acpi_desc->nd_desc);
2421 if (!acpi_desc->nvdimm_bus)
2422 return -ENOMEM;
Dan Williamsb94d5232015-05-19 22:54:31 -04002423
Linda Knippers6b577c92015-11-20 19:05:49 -05002424 /*
2425 * Save the acpi header for later and then skip it,
2426 * making nfit point to the first nfit table header.
2427 */
2428 acpi_desc->acpi_header = *tbl;
2429 acpi_desc->nfit = (void *) tbl + sizeof(struct acpi_table_nfit);
2430 sz -= sizeof(struct acpi_table_nfit);
Dan Williamsb94d5232015-05-19 22:54:31 -04002431
Vishal Verma20985162015-10-27 16:58:27 -06002432 /* Evaluate _FIT and override with that if present */
2433 status = acpi_evaluate_object(adev->handle, "_FIT", NULL, &buf);
2434 if (ACPI_SUCCESS(status) && buf.length > 0) {
Linda Knippers6b577c92015-11-20 19:05:49 -05002435 union acpi_object *obj;
2436 /*
2437 * Adjust for the acpi_object header of the _FIT
2438 */
2439 obj = buf.pointer;
2440 if (obj->type == ACPI_TYPE_BUFFER) {
2441 acpi_desc->nfit =
2442 (struct acpi_nfit_header *)obj->buffer.pointer;
2443 sz = obj->buffer.length;
2444 } else
2445 dev_dbg(dev, "%s invalid type %d, ignoring _FIT\n",
2446 __func__, (int) obj->type);
Vishal Verma20985162015-10-27 16:58:27 -06002447 }
Dan Williamsb94d5232015-05-19 22:54:31 -04002448
2449 rc = acpi_nfit_init(acpi_desc, sz);
2450 if (rc) {
2451 nvdimm_bus_unregister(acpi_desc->nvdimm_bus);
2452 return rc;
2453 }
2454 return 0;
2455}
2456
2457static int acpi_nfit_remove(struct acpi_device *adev)
2458{
2459 struct acpi_nfit_desc *acpi_desc = dev_get_drvdata(&adev->dev);
2460
Dan Williams7ae0fa432016-02-19 12:16:34 -08002461 acpi_desc->cancel = 1;
2462 flush_workqueue(nfit_wq);
Dan Williamsb94d5232015-05-19 22:54:31 -04002463 nvdimm_bus_unregister(acpi_desc->nvdimm_bus);
2464 return 0;
2465}
2466
Vishal Verma20985162015-10-27 16:58:27 -06002467static void acpi_nfit_notify(struct acpi_device *adev, u32 event)
2468{
2469 struct acpi_nfit_desc *acpi_desc = dev_get_drvdata(&adev->dev);
2470 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL };
Linda Knippers6b577c92015-11-20 19:05:49 -05002471 struct acpi_nfit_header *nfit_saved;
2472 union acpi_object *obj;
Vishal Verma20985162015-10-27 16:58:27 -06002473 struct device *dev = &adev->dev;
2474 acpi_status status;
2475 int ret;
2476
2477 dev_dbg(dev, "%s: event: %d\n", __func__, event);
2478
2479 device_lock(dev);
2480 if (!dev->driver) {
2481 /* dev->driver may be null if we're being removed */
2482 dev_dbg(dev, "%s: no driver found for dev\n", __func__);
Alexey Khoroshilovd91e8922015-12-11 23:24:10 +03002483 goto out_unlock;
Vishal Verma20985162015-10-27 16:58:27 -06002484 }
2485
2486 if (!acpi_desc) {
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002487 acpi_desc = devm_kzalloc(dev, sizeof(*acpi_desc), GFP_KERNEL);
2488 if (!acpi_desc)
Vishal Verma20985162015-10-27 16:58:27 -06002489 goto out_unlock;
Dan Williamsa61fe6f2016-02-19 12:29:32 -08002490 acpi_nfit_desc_init(acpi_desc, &adev->dev);
2491 acpi_desc->nvdimm_bus = nvdimm_bus_register(dev, &acpi_desc->nd_desc);
2492 if (!acpi_desc->nvdimm_bus)
2493 goto out_unlock;
Dan Williams7ae0fa432016-02-19 12:16:34 -08002494 } else {
2495 /*
2496 * Finish previous registration before considering new
2497 * regions.
2498 */
2499 flush_workqueue(nfit_wq);
Vishal Verma20985162015-10-27 16:58:27 -06002500 }
2501
2502 /* Evaluate _FIT */
2503 status = acpi_evaluate_object(adev->handle, "_FIT", NULL, &buf);
2504 if (ACPI_FAILURE(status)) {
2505 dev_err(dev, "failed to evaluate _FIT\n");
2506 goto out_unlock;
2507 }
2508
2509 nfit_saved = acpi_desc->nfit;
Linda Knippers6b577c92015-11-20 19:05:49 -05002510 obj = buf.pointer;
2511 if (obj->type == ACPI_TYPE_BUFFER) {
2512 acpi_desc->nfit =
2513 (struct acpi_nfit_header *)obj->buffer.pointer;
2514 ret = acpi_nfit_init(acpi_desc, obj->buffer.length);
2515 if (ret) {
2516 /* Merge failed, restore old nfit, and exit */
2517 acpi_desc->nfit = nfit_saved;
2518 dev_err(dev, "failed to merge updated NFIT\n");
2519 }
2520 } else {
2521 /* Bad _FIT, restore old nfit */
2522 dev_err(dev, "Invalid _FIT\n");
Vishal Verma20985162015-10-27 16:58:27 -06002523 }
2524 kfree(buf.pointer);
2525
2526 out_unlock:
2527 device_unlock(dev);
2528}
2529
Dan Williamsb94d5232015-05-19 22:54:31 -04002530static const struct acpi_device_id acpi_nfit_ids[] = {
2531 { "ACPI0012", 0 },
2532 { "", 0 },
2533};
2534MODULE_DEVICE_TABLE(acpi, acpi_nfit_ids);
2535
2536static struct acpi_driver acpi_nfit_driver = {
2537 .name = KBUILD_MODNAME,
2538 .ids = acpi_nfit_ids,
2539 .ops = {
2540 .add = acpi_nfit_add,
2541 .remove = acpi_nfit_remove,
Vishal Verma20985162015-10-27 16:58:27 -06002542 .notify = acpi_nfit_notify,
Dan Williamsb94d5232015-05-19 22:54:31 -04002543 },
2544};
2545
2546static __init int nfit_init(void)
2547{
2548 BUILD_BUG_ON(sizeof(struct acpi_table_nfit) != 40);
2549 BUILD_BUG_ON(sizeof(struct acpi_nfit_system_address) != 56);
2550 BUILD_BUG_ON(sizeof(struct acpi_nfit_memory_map) != 48);
2551 BUILD_BUG_ON(sizeof(struct acpi_nfit_interleave) != 20);
2552 BUILD_BUG_ON(sizeof(struct acpi_nfit_smbios) != 9);
2553 BUILD_BUG_ON(sizeof(struct acpi_nfit_control_region) != 80);
2554 BUILD_BUG_ON(sizeof(struct acpi_nfit_data_region) != 40);
2555
2556 acpi_str_to_uuid(UUID_VOLATILE_MEMORY, nfit_uuid[NFIT_SPA_VOLATILE]);
2557 acpi_str_to_uuid(UUID_PERSISTENT_MEMORY, nfit_uuid[NFIT_SPA_PM]);
2558 acpi_str_to_uuid(UUID_CONTROL_REGION, nfit_uuid[NFIT_SPA_DCR]);
2559 acpi_str_to_uuid(UUID_DATA_REGION, nfit_uuid[NFIT_SPA_BDW]);
2560 acpi_str_to_uuid(UUID_VOLATILE_VIRTUAL_DISK, nfit_uuid[NFIT_SPA_VDISK]);
2561 acpi_str_to_uuid(UUID_VOLATILE_VIRTUAL_CD, nfit_uuid[NFIT_SPA_VCD]);
2562 acpi_str_to_uuid(UUID_PERSISTENT_VIRTUAL_DISK, nfit_uuid[NFIT_SPA_PDISK]);
2563 acpi_str_to_uuid(UUID_PERSISTENT_VIRTUAL_CD, nfit_uuid[NFIT_SPA_PCD]);
2564 acpi_str_to_uuid(UUID_NFIT_BUS, nfit_uuid[NFIT_DEV_BUS]);
2565 acpi_str_to_uuid(UUID_NFIT_DIMM, nfit_uuid[NFIT_DEV_DIMM]);
Dan Williams31eca762016-04-28 16:23:43 -07002566 acpi_str_to_uuid(UUID_NFIT_DIMM_N_HPE1, nfit_uuid[NFIT_DEV_DIMM_N_HPE1]);
2567 acpi_str_to_uuid(UUID_NFIT_DIMM_N_HPE2, nfit_uuid[NFIT_DEV_DIMM_N_HPE2]);
stuart hayese02fb722016-05-26 11:38:41 -05002568 acpi_str_to_uuid(UUID_NFIT_DIMM_N_MSFT, nfit_uuid[NFIT_DEV_DIMM_N_MSFT]);
Dan Williamsb94d5232015-05-19 22:54:31 -04002569
Dan Williams7ae0fa432016-02-19 12:16:34 -08002570 nfit_wq = create_singlethread_workqueue("nfit");
2571 if (!nfit_wq)
2572 return -ENOMEM;
2573
Dan Williamsb94d5232015-05-19 22:54:31 -04002574 return acpi_bus_register_driver(&acpi_nfit_driver);
2575}
2576
2577static __exit void nfit_exit(void)
2578{
2579 acpi_bus_unregister_driver(&acpi_nfit_driver);
Dan Williams7ae0fa432016-02-19 12:16:34 -08002580 destroy_workqueue(nfit_wq);
Dan Williamsb94d5232015-05-19 22:54:31 -04002581}
2582
2583module_init(nfit_init);
2584module_exit(nfit_exit);
2585MODULE_LICENSE("GPL v2");
2586MODULE_AUTHOR("Intel Corporation");