450b4cbba6b6813b444dffdb2ebc93831e33027d
[sfrench/cifs-2.6.git] / tools / testing / nvdimm / test / nfit.c
1 /*
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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/platform_device.h>
15 #include <linux/dma-mapping.h>
16 #include <linux/workqueue.h>
17 #include <linux/libnvdimm.h>
18 #include <linux/vmalloc.h>
19 #include <linux/device.h>
20 #include <linux/module.h>
21 #include <linux/mutex.h>
22 #include <linux/ndctl.h>
23 #include <linux/sizes.h>
24 #include <linux/list.h>
25 #include <linux/slab.h>
26 #include <nd-core.h>
27 #include <nfit.h>
28 #include <nd.h>
29 #include "nfit_test.h"
30 #include "../watermark.h"
31
32 /*
33  * Generate an NFIT table to describe the following topology:
34  *
35  * BUS0: Interleaved PMEM regions, and aliasing with BLK regions
36  *
37  *                     (a)                       (b)            DIMM   BLK-REGION
38  *           +----------+--------------+----------+---------+
39  * +------+  |  blk2.0  |     pm0.0    |  blk2.1  |  pm1.0  |    0      region2
40  * | imc0 +--+- - - - - region0 - - - -+----------+         +
41  * +--+---+  |  blk3.0  |     pm0.0    |  blk3.1  |  pm1.0  |    1      region3
42  *    |      +----------+--------------v----------v         v
43  * +--+---+                            |                    |
44  * | cpu0 |                                    region1
45  * +--+---+                            |                    |
46  *    |      +-------------------------^----------^         ^
47  * +--+---+  |                 blk4.0             |  pm1.0  |    2      region4
48  * | imc1 +--+-------------------------+----------+         +
49  * +------+  |                 blk5.0             |  pm1.0  |    3      region5
50  *           +-------------------------+----------+-+-------+
51  *
52  * +--+---+
53  * | cpu1 |
54  * +--+---+                   (Hotplug DIMM)
55  *    |      +----------------------------------------------+
56  * +--+---+  |                 blk6.0/pm7.0                 |    4      region6/7
57  * | imc0 +--+----------------------------------------------+
58  * +------+
59  *
60  *
61  * *) In this layout we have four dimms and two memory controllers in one
62  *    socket.  Each unique interface (BLK or PMEM) to DPA space
63  *    is identified by a region device with a dynamically assigned id.
64  *
65  * *) The first portion of dimm0 and dimm1 are interleaved as REGION0.
66  *    A single PMEM namespace "pm0.0" is created using half of the
67  *    REGION0 SPA-range.  REGION0 spans dimm0 and dimm1.  PMEM namespace
68  *    allocate from from the bottom of a region.  The unallocated
69  *    portion of REGION0 aliases with REGION2 and REGION3.  That
70  *    unallacted capacity is reclaimed as BLK namespaces ("blk2.0" and
71  *    "blk3.0") starting at the base of each DIMM to offset (a) in those
72  *    DIMMs.  "pm0.0", "blk2.0" and "blk3.0" are free-form readable
73  *    names that can be assigned to a namespace.
74  *
75  * *) In the last portion of dimm0 and dimm1 we have an interleaved
76  *    SPA range, REGION1, that spans those two dimms as well as dimm2
77  *    and dimm3.  Some of REGION1 allocated to a PMEM namespace named
78  *    "pm1.0" the rest is reclaimed in 4 BLK namespaces (for each
79  *    dimm in the interleave set), "blk2.1", "blk3.1", "blk4.0", and
80  *    "blk5.0".
81  *
82  * *) The portion of dimm2 and dimm3 that do not participate in the
83  *    REGION1 interleaved SPA range (i.e. the DPA address below offset
84  *    (b) are also included in the "blk4.0" and "blk5.0" namespaces.
85  *    Note, that BLK namespaces need not be contiguous in DPA-space, and
86  *    can consume aliased capacity from multiple interleave sets.
87  *
88  * BUS1: Legacy NVDIMM (single contiguous range)
89  *
90  *  region2
91  * +---------------------+
92  * |---------------------|
93  * ||       pm2.0       ||
94  * |---------------------|
95  * +---------------------+
96  *
97  * *) A NFIT-table may describe a simple system-physical-address range
98  *    with no BLK aliasing.  This type of region may optionally
99  *    reference an NVDIMM.
100  */
101 enum {
102         NUM_PM  = 3,
103         NUM_DCR = 5,
104         NUM_HINTS = 8,
105         NUM_BDW = NUM_DCR,
106         NUM_SPA = NUM_PM + NUM_DCR + NUM_BDW,
107         NUM_MEM = NUM_DCR + NUM_BDW + 2 /* spa0 iset */ + 4 /* spa1 iset */,
108         DIMM_SIZE = SZ_32M,
109         LABEL_SIZE = SZ_128K,
110         SPA_VCD_SIZE = SZ_4M,
111         SPA0_SIZE = DIMM_SIZE,
112         SPA1_SIZE = DIMM_SIZE*2,
113         SPA2_SIZE = DIMM_SIZE,
114         BDW_SIZE = 64 << 8,
115         DCR_SIZE = 12,
116         NUM_NFITS = 2, /* permit testing multiple NFITs per system */
117 };
118
119 struct nfit_test_dcr {
120         __le64 bdw_addr;
121         __le32 bdw_status;
122         __u8 aperature[BDW_SIZE];
123 };
124
125 #define NFIT_DIMM_HANDLE(node, socket, imc, chan, dimm) \
126         (((node & 0xfff) << 16) | ((socket & 0xf) << 12) \
127          | ((imc & 0xf) << 8) | ((chan & 0xf) << 4) | (dimm & 0xf))
128
129 static u32 handle[] = {
130         [0] = NFIT_DIMM_HANDLE(0, 0, 0, 0, 0),
131         [1] = NFIT_DIMM_HANDLE(0, 0, 0, 0, 1),
132         [2] = NFIT_DIMM_HANDLE(0, 0, 1, 0, 0),
133         [3] = NFIT_DIMM_HANDLE(0, 0, 1, 0, 1),
134         [4] = NFIT_DIMM_HANDLE(0, 1, 0, 0, 0),
135         [5] = NFIT_DIMM_HANDLE(1, 0, 0, 0, 0),
136         [6] = NFIT_DIMM_HANDLE(1, 0, 0, 0, 1),
137 };
138
139 static unsigned long dimm_fail_cmd_flags[NUM_DCR];
140
141 struct nfit_test_fw {
142         enum intel_fw_update_state state;
143         u32 context;
144         u64 version;
145         u32 size_received;
146         u64 end_time;
147 };
148
149 struct nfit_test {
150         struct acpi_nfit_desc acpi_desc;
151         struct platform_device pdev;
152         struct list_head resources;
153         void *nfit_buf;
154         dma_addr_t nfit_dma;
155         size_t nfit_size;
156         int dcr_idx;
157         int num_dcr;
158         int num_pm;
159         void **dimm;
160         dma_addr_t *dimm_dma;
161         void **flush;
162         dma_addr_t *flush_dma;
163         void **label;
164         dma_addr_t *label_dma;
165         void **spa_set;
166         dma_addr_t *spa_set_dma;
167         struct nfit_test_dcr **dcr;
168         dma_addr_t *dcr_dma;
169         int (*alloc)(struct nfit_test *t);
170         void (*setup)(struct nfit_test *t);
171         int setup_hotplug;
172         union acpi_object **_fit;
173         dma_addr_t _fit_dma;
174         struct ars_state {
175                 struct nd_cmd_ars_status *ars_status;
176                 unsigned long deadline;
177                 spinlock_t lock;
178         } ars_state;
179         struct device *dimm_dev[NUM_DCR];
180         struct nd_intel_smart *smart;
181         struct nd_intel_smart_threshold *smart_threshold;
182         struct badrange badrange;
183         struct work_struct work;
184         struct nfit_test_fw *fw;
185 };
186
187 static struct workqueue_struct *nfit_wq;
188
189 static struct nfit_test *to_nfit_test(struct device *dev)
190 {
191         struct platform_device *pdev = to_platform_device(dev);
192
193         return container_of(pdev, struct nfit_test, pdev);
194 }
195
196 static int nd_intel_test_get_fw_info(struct nfit_test *t,
197                 struct nd_intel_fw_info *nd_cmd, unsigned int buf_len,
198                 int idx)
199 {
200         struct device *dev = &t->pdev.dev;
201         struct nfit_test_fw *fw = &t->fw[idx];
202
203         dev_dbg(dev, "%s(nfit_test: %p nd_cmd: %p, buf_len: %u, idx: %d\n",
204                         __func__, t, nd_cmd, buf_len, idx);
205
206         if (buf_len < sizeof(*nd_cmd))
207                 return -EINVAL;
208
209         nd_cmd->status = 0;
210         nd_cmd->storage_size = INTEL_FW_STORAGE_SIZE;
211         nd_cmd->max_send_len = INTEL_FW_MAX_SEND_LEN;
212         nd_cmd->query_interval = INTEL_FW_QUERY_INTERVAL;
213         nd_cmd->max_query_time = INTEL_FW_QUERY_MAX_TIME;
214         nd_cmd->update_cap = 0;
215         nd_cmd->fis_version = INTEL_FW_FIS_VERSION;
216         nd_cmd->run_version = 0;
217         nd_cmd->updated_version = fw->version;
218
219         return 0;
220 }
221
222 static int nd_intel_test_start_update(struct nfit_test *t,
223                 struct nd_intel_fw_start *nd_cmd, unsigned int buf_len,
224                 int idx)
225 {
226         struct device *dev = &t->pdev.dev;
227         struct nfit_test_fw *fw = &t->fw[idx];
228
229         dev_dbg(dev, "%s(nfit_test: %p nd_cmd: %p buf_len: %u idx: %d)\n",
230                         __func__, t, nd_cmd, buf_len, idx);
231
232         if (buf_len < sizeof(*nd_cmd))
233                 return -EINVAL;
234
235         if (fw->state != FW_STATE_NEW) {
236                 /* extended status, FW update in progress */
237                 nd_cmd->status = 0x10007;
238                 return 0;
239         }
240
241         fw->state = FW_STATE_IN_PROGRESS;
242         fw->context++;
243         fw->size_received = 0;
244         nd_cmd->status = 0;
245         nd_cmd->context = fw->context;
246
247         dev_dbg(dev, "%s: context issued: %#x\n", __func__, nd_cmd->context);
248
249         return 0;
250 }
251
252 static int nd_intel_test_send_data(struct nfit_test *t,
253                 struct nd_intel_fw_send_data *nd_cmd, unsigned int buf_len,
254                 int idx)
255 {
256         struct device *dev = &t->pdev.dev;
257         struct nfit_test_fw *fw = &t->fw[idx];
258         u32 *status = (u32 *)&nd_cmd->data[nd_cmd->length];
259
260         dev_dbg(dev, "%s(nfit_test: %p nd_cmd: %p buf_len: %u idx: %d)\n",
261                         __func__, t, nd_cmd, buf_len, idx);
262
263         if (buf_len < sizeof(*nd_cmd))
264                 return -EINVAL;
265
266
267         dev_dbg(dev, "%s: cmd->status: %#x\n", __func__, *status);
268         dev_dbg(dev, "%s: cmd->data[0]: %#x\n", __func__, nd_cmd->data[0]);
269         dev_dbg(dev, "%s: cmd->data[%u]: %#x\n", __func__, nd_cmd->length-1,
270                         nd_cmd->data[nd_cmd->length-1]);
271
272         if (fw->state != FW_STATE_IN_PROGRESS) {
273                 dev_dbg(dev, "%s: not in IN_PROGRESS state\n", __func__);
274                 *status = 0x5;
275                 return 0;
276         }
277
278         if (nd_cmd->context != fw->context) {
279                 dev_dbg(dev, "%s: incorrect context: in: %#x correct: %#x\n",
280                                 __func__, nd_cmd->context, fw->context);
281                 *status = 0x10007;
282                 return 0;
283         }
284
285         /*
286          * check offset + len > size of fw storage
287          * check length is > max send length
288          */
289         if (nd_cmd->offset + nd_cmd->length > INTEL_FW_STORAGE_SIZE ||
290                         nd_cmd->length > INTEL_FW_MAX_SEND_LEN) {
291                 *status = 0x3;
292                 dev_dbg(dev, "%s: buffer boundary violation\n", __func__);
293                 return 0;
294         }
295
296         fw->size_received += nd_cmd->length;
297         dev_dbg(dev, "%s: copying %u bytes, %u bytes so far\n",
298                         __func__, nd_cmd->length, fw->size_received);
299         *status = 0;
300         return 0;
301 }
302
303 static int nd_intel_test_finish_fw(struct nfit_test *t,
304                 struct nd_intel_fw_finish_update *nd_cmd,
305                 unsigned int buf_len, int idx)
306 {
307         struct device *dev = &t->pdev.dev;
308         struct nfit_test_fw *fw = &t->fw[idx];
309
310         dev_dbg(dev, "%s(nfit_test: %p nd_cmd: %p buf_len: %u idx: %d)\n",
311                         __func__, t, nd_cmd, buf_len, idx);
312
313         if (fw->state == FW_STATE_UPDATED) {
314                 /* update already done, need cold boot */
315                 nd_cmd->status = 0x20007;
316                 return 0;
317         }
318
319         dev_dbg(dev, "%s: context: %#x  ctrl_flags: %#x\n",
320                         __func__, nd_cmd->context, nd_cmd->ctrl_flags);
321
322         switch (nd_cmd->ctrl_flags) {
323         case 0: /* finish */
324                 if (nd_cmd->context != fw->context) {
325                         dev_dbg(dev, "%s: incorrect context: in: %#x correct: %#x\n",
326                                         __func__, nd_cmd->context,
327                                         fw->context);
328                         nd_cmd->status = 0x10007;
329                         return 0;
330                 }
331                 nd_cmd->status = 0;
332                 fw->state = FW_STATE_VERIFY;
333                 /* set 1 second of time for firmware "update" */
334                 fw->end_time = jiffies + HZ;
335                 break;
336
337         case 1: /* abort */
338                 fw->size_received = 0;
339                 /* successfully aborted status */
340                 nd_cmd->status = 0x40007;
341                 fw->state = FW_STATE_NEW;
342                 dev_dbg(dev, "%s: abort successful\n", __func__);
343                 break;
344
345         default: /* bad control flag */
346                 dev_warn(dev, "%s: unknown control flag: %#x\n",
347                                 __func__, nd_cmd->ctrl_flags);
348                 return -EINVAL;
349         }
350
351         return 0;
352 }
353
354 static int nd_intel_test_finish_query(struct nfit_test *t,
355                 struct nd_intel_fw_finish_query *nd_cmd,
356                 unsigned int buf_len, int idx)
357 {
358         struct device *dev = &t->pdev.dev;
359         struct nfit_test_fw *fw = &t->fw[idx];
360
361         dev_dbg(dev, "%s(nfit_test: %p nd_cmd: %p buf_len: %u idx: %d)\n",
362                         __func__, t, nd_cmd, buf_len, idx);
363
364         if (buf_len < sizeof(*nd_cmd))
365                 return -EINVAL;
366
367         if (nd_cmd->context != fw->context) {
368                 dev_dbg(dev, "%s: incorrect context: in: %#x correct: %#x\n",
369                                 __func__, nd_cmd->context, fw->context);
370                 nd_cmd->status = 0x10007;
371                 return 0;
372         }
373
374         dev_dbg(dev, "%s context: %#x\n", __func__, nd_cmd->context);
375
376         switch (fw->state) {
377         case FW_STATE_NEW:
378                 nd_cmd->updated_fw_rev = 0;
379                 nd_cmd->status = 0;
380                 dev_dbg(dev, "%s: new state\n", __func__);
381                 break;
382
383         case FW_STATE_IN_PROGRESS:
384                 /* sequencing error */
385                 nd_cmd->status = 0x40007;
386                 nd_cmd->updated_fw_rev = 0;
387                 dev_dbg(dev, "%s: sequence error\n", __func__);
388                 break;
389
390         case FW_STATE_VERIFY:
391                 if (time_is_after_jiffies64(fw->end_time)) {
392                         nd_cmd->updated_fw_rev = 0;
393                         nd_cmd->status = 0x20007;
394                         dev_dbg(dev, "%s: still verifying\n", __func__);
395                         break;
396                 }
397
398                 dev_dbg(dev, "%s: transition out verify\n", __func__);
399                 fw->state = FW_STATE_UPDATED;
400                 /* we are going to fall through if it's "done" */
401         case FW_STATE_UPDATED:
402                 nd_cmd->status = 0;
403                 /* bogus test version */
404                 fw->version = nd_cmd->updated_fw_rev =
405                         INTEL_FW_FAKE_VERSION;
406                 dev_dbg(dev, "%s: updated\n", __func__);
407                 break;
408
409         default: /* we should never get here */
410                 return -EINVAL;
411         }
412
413         return 0;
414 }
415
416 static int nfit_test_cmd_get_config_size(struct nd_cmd_get_config_size *nd_cmd,
417                 unsigned int buf_len)
418 {
419         if (buf_len < sizeof(*nd_cmd))
420                 return -EINVAL;
421
422         nd_cmd->status = 0;
423         nd_cmd->config_size = LABEL_SIZE;
424         nd_cmd->max_xfer = SZ_4K;
425
426         return 0;
427 }
428
429 static int nfit_test_cmd_get_config_data(struct nd_cmd_get_config_data_hdr
430                 *nd_cmd, unsigned int buf_len, void *label)
431 {
432         unsigned int len, offset = nd_cmd->in_offset;
433         int rc;
434
435         if (buf_len < sizeof(*nd_cmd))
436                 return -EINVAL;
437         if (offset >= LABEL_SIZE)
438                 return -EINVAL;
439         if (nd_cmd->in_length + sizeof(*nd_cmd) > buf_len)
440                 return -EINVAL;
441
442         nd_cmd->status = 0;
443         len = min(nd_cmd->in_length, LABEL_SIZE - offset);
444         memcpy(nd_cmd->out_buf, label + offset, len);
445         rc = buf_len - sizeof(*nd_cmd) - len;
446
447         return rc;
448 }
449
450 static int nfit_test_cmd_set_config_data(struct nd_cmd_set_config_hdr *nd_cmd,
451                 unsigned int buf_len, void *label)
452 {
453         unsigned int len, offset = nd_cmd->in_offset;
454         u32 *status;
455         int rc;
456
457         if (buf_len < sizeof(*nd_cmd))
458                 return -EINVAL;
459         if (offset >= LABEL_SIZE)
460                 return -EINVAL;
461         if (nd_cmd->in_length + sizeof(*nd_cmd) + 4 > buf_len)
462                 return -EINVAL;
463
464         status = (void *)nd_cmd + nd_cmd->in_length + sizeof(*nd_cmd);
465         *status = 0;
466         len = min(nd_cmd->in_length, LABEL_SIZE - offset);
467         memcpy(label + offset, nd_cmd->in_buf, len);
468         rc = buf_len - sizeof(*nd_cmd) - (len + 4);
469
470         return rc;
471 }
472
473 #define NFIT_TEST_CLEAR_ERR_UNIT 256
474
475 static int nfit_test_cmd_ars_cap(struct nd_cmd_ars_cap *nd_cmd,
476                 unsigned int buf_len)
477 {
478         int ars_recs;
479
480         if (buf_len < sizeof(*nd_cmd))
481                 return -EINVAL;
482
483         /* for testing, only store up to n records that fit within 4k */
484         ars_recs = SZ_4K / sizeof(struct nd_ars_record);
485
486         nd_cmd->max_ars_out = sizeof(struct nd_cmd_ars_status)
487                 + ars_recs * sizeof(struct nd_ars_record);
488         nd_cmd->status = (ND_ARS_PERSISTENT | ND_ARS_VOLATILE) << 16;
489         nd_cmd->clear_err_unit = NFIT_TEST_CLEAR_ERR_UNIT;
490
491         return 0;
492 }
493
494 static void post_ars_status(struct ars_state *ars_state,
495                 struct badrange *badrange, u64 addr, u64 len)
496 {
497         struct nd_cmd_ars_status *ars_status;
498         struct nd_ars_record *ars_record;
499         struct badrange_entry *be;
500         u64 end = addr + len - 1;
501         int i = 0;
502
503         ars_state->deadline = jiffies + 1*HZ;
504         ars_status = ars_state->ars_status;
505         ars_status->status = 0;
506         ars_status->address = addr;
507         ars_status->length = len;
508         ars_status->type = ND_ARS_PERSISTENT;
509
510         spin_lock(&badrange->lock);
511         list_for_each_entry(be, &badrange->list, list) {
512                 u64 be_end = be->start + be->length - 1;
513                 u64 rstart, rend;
514
515                 /* skip entries outside the range */
516                 if (be_end < addr || be->start > end)
517                         continue;
518
519                 rstart = (be->start < addr) ? addr : be->start;
520                 rend = (be_end < end) ? be_end : end;
521                 ars_record = &ars_status->records[i];
522                 ars_record->handle = 0;
523                 ars_record->err_address = rstart;
524                 ars_record->length = rend - rstart + 1;
525                 i++;
526         }
527         spin_unlock(&badrange->lock);
528         ars_status->num_records = i;
529         ars_status->out_length = sizeof(struct nd_cmd_ars_status)
530                 + i * sizeof(struct nd_ars_record);
531 }
532
533 static int nfit_test_cmd_ars_start(struct nfit_test *t,
534                 struct ars_state *ars_state,
535                 struct nd_cmd_ars_start *ars_start, unsigned int buf_len,
536                 int *cmd_rc)
537 {
538         if (buf_len < sizeof(*ars_start))
539                 return -EINVAL;
540
541         spin_lock(&ars_state->lock);
542         if (time_before(jiffies, ars_state->deadline)) {
543                 ars_start->status = NFIT_ARS_START_BUSY;
544                 *cmd_rc = -EBUSY;
545         } else {
546                 ars_start->status = 0;
547                 ars_start->scrub_time = 1;
548                 post_ars_status(ars_state, &t->badrange, ars_start->address,
549                                 ars_start->length);
550                 *cmd_rc = 0;
551         }
552         spin_unlock(&ars_state->lock);
553
554         return 0;
555 }
556
557 static int nfit_test_cmd_ars_status(struct ars_state *ars_state,
558                 struct nd_cmd_ars_status *ars_status, unsigned int buf_len,
559                 int *cmd_rc)
560 {
561         if (buf_len < ars_state->ars_status->out_length)
562                 return -EINVAL;
563
564         spin_lock(&ars_state->lock);
565         if (time_before(jiffies, ars_state->deadline)) {
566                 memset(ars_status, 0, buf_len);
567                 ars_status->status = NFIT_ARS_STATUS_BUSY;
568                 ars_status->out_length = sizeof(*ars_status);
569                 *cmd_rc = -EBUSY;
570         } else {
571                 memcpy(ars_status, ars_state->ars_status,
572                                 ars_state->ars_status->out_length);
573                 *cmd_rc = 0;
574         }
575         spin_unlock(&ars_state->lock);
576         return 0;
577 }
578
579 static int nfit_test_cmd_clear_error(struct nfit_test *t,
580                 struct nd_cmd_clear_error *clear_err,
581                 unsigned int buf_len, int *cmd_rc)
582 {
583         const u64 mask = NFIT_TEST_CLEAR_ERR_UNIT - 1;
584         if (buf_len < sizeof(*clear_err))
585                 return -EINVAL;
586
587         if ((clear_err->address & mask) || (clear_err->length & mask))
588                 return -EINVAL;
589
590         badrange_forget(&t->badrange, clear_err->address, clear_err->length);
591         clear_err->status = 0;
592         clear_err->cleared = clear_err->length;
593         *cmd_rc = 0;
594         return 0;
595 }
596
597 struct region_search_spa {
598         u64 addr;
599         struct nd_region *region;
600 };
601
602 static int is_region_device(struct device *dev)
603 {
604         return !strncmp(dev->kobj.name, "region", 6);
605 }
606
607 static int nfit_test_search_region_spa(struct device *dev, void *data)
608 {
609         struct region_search_spa *ctx = data;
610         struct nd_region *nd_region;
611         resource_size_t ndr_end;
612
613         if (!is_region_device(dev))
614                 return 0;
615
616         nd_region = to_nd_region(dev);
617         ndr_end = nd_region->ndr_start + nd_region->ndr_size;
618
619         if (ctx->addr >= nd_region->ndr_start && ctx->addr < ndr_end) {
620                 ctx->region = nd_region;
621                 return 1;
622         }
623
624         return 0;
625 }
626
627 static int nfit_test_search_spa(struct nvdimm_bus *bus,
628                 struct nd_cmd_translate_spa *spa)
629 {
630         int ret;
631         struct nd_region *nd_region = NULL;
632         struct nvdimm *nvdimm = NULL;
633         struct nd_mapping *nd_mapping = NULL;
634         struct region_search_spa ctx = {
635                 .addr = spa->spa,
636                 .region = NULL,
637         };
638         u64 dpa;
639
640         ret = device_for_each_child(&bus->dev, &ctx,
641                                 nfit_test_search_region_spa);
642
643         if (!ret)
644                 return -ENODEV;
645
646         nd_region = ctx.region;
647
648         dpa = ctx.addr - nd_region->ndr_start;
649
650         /*
651          * last dimm is selected for test
652          */
653         nd_mapping = &nd_region->mapping[nd_region->ndr_mappings - 1];
654         nvdimm = nd_mapping->nvdimm;
655
656         spa->devices[0].nfit_device_handle = handle[nvdimm->id];
657         spa->num_nvdimms = 1;
658         spa->devices[0].dpa = dpa;
659
660         return 0;
661 }
662
663 static int nfit_test_cmd_translate_spa(struct nvdimm_bus *bus,
664                 struct nd_cmd_translate_spa *spa, unsigned int buf_len)
665 {
666         if (buf_len < spa->translate_length)
667                 return -EINVAL;
668
669         if (nfit_test_search_spa(bus, spa) < 0 || !spa->num_nvdimms)
670                 spa->status = 2;
671
672         return 0;
673 }
674
675 static int nfit_test_cmd_smart(struct nd_intel_smart *smart, unsigned int buf_len,
676                 struct nd_intel_smart *smart_data)
677 {
678         if (buf_len < sizeof(*smart))
679                 return -EINVAL;
680         memcpy(smart, smart_data, sizeof(*smart));
681         return 0;
682 }
683
684 static int nfit_test_cmd_smart_threshold(
685                 struct nd_intel_smart_threshold *out,
686                 unsigned int buf_len,
687                 struct nd_intel_smart_threshold *smart_t)
688 {
689         if (buf_len < sizeof(*smart_t))
690                 return -EINVAL;
691         memcpy(out, smart_t, sizeof(*smart_t));
692         return 0;
693 }
694
695 static void smart_notify(struct device *bus_dev,
696                 struct device *dimm_dev, struct nd_intel_smart *smart,
697                 struct nd_intel_smart_threshold *thresh)
698 {
699         dev_dbg(dimm_dev, "%s: alarm: %#x spares: %d (%d) mtemp: %d (%d) ctemp: %d (%d)\n",
700                         __func__, thresh->alarm_control, thresh->spares,
701                         smart->spares, thresh->media_temperature,
702                         smart->media_temperature, thresh->ctrl_temperature,
703                         smart->ctrl_temperature);
704         if (((thresh->alarm_control & ND_INTEL_SMART_SPARE_TRIP)
705                                 && smart->spares
706                                 <= thresh->spares)
707                         || ((thresh->alarm_control & ND_INTEL_SMART_TEMP_TRIP)
708                                 && smart->media_temperature
709                                 >= thresh->media_temperature)
710                         || ((thresh->alarm_control & ND_INTEL_SMART_CTEMP_TRIP)
711                                 && smart->ctrl_temperature
712                                 >= thresh->ctrl_temperature)) {
713                 device_lock(bus_dev);
714                 __acpi_nvdimm_notify(dimm_dev, 0x81);
715                 device_unlock(bus_dev);
716         }
717 }
718
719 static int nfit_test_cmd_smart_set_threshold(
720                 struct nd_intel_smart_set_threshold *in,
721                 unsigned int buf_len,
722                 struct nd_intel_smart_threshold *thresh,
723                 struct nd_intel_smart *smart,
724                 struct device *bus_dev, struct device *dimm_dev)
725 {
726         unsigned int size;
727
728         size = sizeof(*in) - 4;
729         if (buf_len < size)
730                 return -EINVAL;
731         memcpy(thresh->data, in, size);
732         in->status = 0;
733         smart_notify(bus_dev, dimm_dev, smart, thresh);
734
735         return 0;
736 }
737
738 static void uc_error_notify(struct work_struct *work)
739 {
740         struct nfit_test *t = container_of(work, typeof(*t), work);
741
742         __acpi_nfit_notify(&t->pdev.dev, t, NFIT_NOTIFY_UC_MEMORY_ERROR);
743 }
744
745 static int nfit_test_cmd_ars_error_inject(struct nfit_test *t,
746                 struct nd_cmd_ars_err_inj *err_inj, unsigned int buf_len)
747 {
748         int rc;
749
750         if (buf_len != sizeof(*err_inj)) {
751                 rc = -EINVAL;
752                 goto err;
753         }
754
755         if (err_inj->err_inj_spa_range_length <= 0) {
756                 rc = -EINVAL;
757                 goto err;
758         }
759
760         rc =  badrange_add(&t->badrange, err_inj->err_inj_spa_range_base,
761                         err_inj->err_inj_spa_range_length);
762         if (rc < 0)
763                 goto err;
764
765         if (err_inj->err_inj_options & (1 << ND_ARS_ERR_INJ_OPT_NOTIFY))
766                 queue_work(nfit_wq, &t->work);
767
768         err_inj->status = 0;
769         return 0;
770
771 err:
772         err_inj->status = NFIT_ARS_INJECT_INVALID;
773         return rc;
774 }
775
776 static int nfit_test_cmd_ars_inject_clear(struct nfit_test *t,
777                 struct nd_cmd_ars_err_inj_clr *err_clr, unsigned int buf_len)
778 {
779         int rc;
780
781         if (buf_len != sizeof(*err_clr)) {
782                 rc = -EINVAL;
783                 goto err;
784         }
785
786         if (err_clr->err_inj_clr_spa_range_length <= 0) {
787                 rc = -EINVAL;
788                 goto err;
789         }
790
791         badrange_forget(&t->badrange, err_clr->err_inj_clr_spa_range_base,
792                         err_clr->err_inj_clr_spa_range_length);
793
794         err_clr->status = 0;
795         return 0;
796
797 err:
798         err_clr->status = NFIT_ARS_INJECT_INVALID;
799         return rc;
800 }
801
802 static int nfit_test_cmd_ars_inject_status(struct nfit_test *t,
803                 struct nd_cmd_ars_err_inj_stat *err_stat,
804                 unsigned int buf_len)
805 {
806         struct badrange_entry *be;
807         int max = SZ_4K / sizeof(struct nd_error_stat_query_record);
808         int i = 0;
809
810         err_stat->status = 0;
811         spin_lock(&t->badrange.lock);
812         list_for_each_entry(be, &t->badrange.list, list) {
813                 err_stat->record[i].err_inj_stat_spa_range_base = be->start;
814                 err_stat->record[i].err_inj_stat_spa_range_length = be->length;
815                 i++;
816                 if (i > max)
817                         break;
818         }
819         spin_unlock(&t->badrange.lock);
820         err_stat->inj_err_rec_count = i;
821
822         return 0;
823 }
824
825 static int nd_intel_test_cmd_set_lss_status(struct nfit_test *t,
826                 struct nd_intel_lss *nd_cmd, unsigned int buf_len)
827 {
828         struct device *dev = &t->pdev.dev;
829
830         if (buf_len < sizeof(*nd_cmd))
831                 return -EINVAL;
832
833         switch (nd_cmd->enable) {
834         case 0:
835                 nd_cmd->status = 0;
836                 dev_dbg(dev, "%s: Latch System Shutdown Status disabled\n",
837                                 __func__);
838                 break;
839         case 1:
840                 nd_cmd->status = 0;
841                 dev_dbg(dev, "%s: Latch System Shutdown Status enabled\n",
842                                 __func__);
843                 break;
844         default:
845                 dev_warn(dev, "Unknown enable value: %#x\n", nd_cmd->enable);
846                 nd_cmd->status = 0x3;
847                 break;
848         }
849
850
851         return 0;
852 }
853
854 static int get_dimm(struct nfit_mem *nfit_mem, unsigned int func)
855 {
856         int i;
857
858         /* lookup per-dimm data */
859         for (i = 0; i < ARRAY_SIZE(handle); i++)
860                 if (__to_nfit_memdev(nfit_mem)->device_handle == handle[i])
861                         break;
862         if (i >= ARRAY_SIZE(handle))
863                 return -ENXIO;
864
865         if ((1 << func) & dimm_fail_cmd_flags[i])
866                 return -EIO;
867
868         return i;
869 }
870
871 static int nfit_test_ctl(struct nvdimm_bus_descriptor *nd_desc,
872                 struct nvdimm *nvdimm, unsigned int cmd, void *buf,
873                 unsigned int buf_len, int *cmd_rc)
874 {
875         struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
876         struct nfit_test *t = container_of(acpi_desc, typeof(*t), acpi_desc);
877         unsigned int func = cmd;
878         int i, rc = 0, __cmd_rc;
879
880         if (!cmd_rc)
881                 cmd_rc = &__cmd_rc;
882         *cmd_rc = 0;
883
884         if (nvdimm) {
885                 struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
886                 unsigned long cmd_mask = nvdimm_cmd_mask(nvdimm);
887
888                 if (!nfit_mem)
889                         return -ENOTTY;
890
891                 if (cmd == ND_CMD_CALL) {
892                         struct nd_cmd_pkg *call_pkg = buf;
893
894                         buf_len = call_pkg->nd_size_in + call_pkg->nd_size_out;
895                         buf = (void *) call_pkg->nd_payload;
896                         func = call_pkg->nd_command;
897                         if (call_pkg->nd_family != nfit_mem->family)
898                                 return -ENOTTY;
899
900                         i = get_dimm(nfit_mem, func);
901                         if (i < 0)
902                                 return i;
903
904                         switch (func) {
905                         case ND_INTEL_ENABLE_LSS_STATUS:
906                                 return nd_intel_test_cmd_set_lss_status(t,
907                                                 buf, buf_len);
908                         case ND_INTEL_FW_GET_INFO:
909                                 return nd_intel_test_get_fw_info(t, buf,
910                                                 buf_len, i - t->dcr_idx);
911                         case ND_INTEL_FW_START_UPDATE:
912                                 return nd_intel_test_start_update(t, buf,
913                                                 buf_len, i - t->dcr_idx);
914                         case ND_INTEL_FW_SEND_DATA:
915                                 return nd_intel_test_send_data(t, buf,
916                                                 buf_len, i - t->dcr_idx);
917                         case ND_INTEL_FW_FINISH_UPDATE:
918                                 return nd_intel_test_finish_fw(t, buf,
919                                                 buf_len, i - t->dcr_idx);
920                         case ND_INTEL_FW_FINISH_QUERY:
921                                 return nd_intel_test_finish_query(t, buf,
922                                                 buf_len, i - t->dcr_idx);
923                         case ND_INTEL_SMART:
924                                 return nfit_test_cmd_smart(buf, buf_len,
925                                                 &t->smart[i - t->dcr_idx]);
926                         case ND_INTEL_SMART_THRESHOLD:
927                                 return nfit_test_cmd_smart_threshold(buf,
928                                                 buf_len,
929                                                 &t->smart_threshold[i -
930                                                         t->dcr_idx]);
931                         case ND_INTEL_SMART_SET_THRESHOLD:
932                                 return nfit_test_cmd_smart_set_threshold(buf,
933                                                 buf_len,
934                                                 &t->smart_threshold[i -
935                                                         t->dcr_idx],
936                                                 &t->smart[i - t->dcr_idx],
937                                                 &t->pdev.dev, t->dimm_dev[i]);
938                         default:
939                                 return -ENOTTY;
940                         }
941                 }
942
943                 if (!test_bit(cmd, &cmd_mask)
944                                 || !test_bit(func, &nfit_mem->dsm_mask))
945                         return -ENOTTY;
946
947                 i = get_dimm(nfit_mem, func);
948                 if (i < 0)
949                         return i;
950
951                 switch (func) {
952                 case ND_CMD_GET_CONFIG_SIZE:
953                         rc = nfit_test_cmd_get_config_size(buf, buf_len);
954                         break;
955                 case ND_CMD_GET_CONFIG_DATA:
956                         rc = nfit_test_cmd_get_config_data(buf, buf_len,
957                                 t->label[i - t->dcr_idx]);
958                         break;
959                 case ND_CMD_SET_CONFIG_DATA:
960                         rc = nfit_test_cmd_set_config_data(buf, buf_len,
961                                 t->label[i - t->dcr_idx]);
962                         break;
963                 default:
964                         return -ENOTTY;
965                 }
966         } else {
967                 struct ars_state *ars_state = &t->ars_state;
968                 struct nd_cmd_pkg *call_pkg = buf;
969
970                 if (!nd_desc)
971                         return -ENOTTY;
972
973                 if (cmd == ND_CMD_CALL) {
974                         func = call_pkg->nd_command;
975
976                         buf_len = call_pkg->nd_size_in + call_pkg->nd_size_out;
977                         buf = (void *) call_pkg->nd_payload;
978
979                         switch (func) {
980                         case NFIT_CMD_TRANSLATE_SPA:
981                                 rc = nfit_test_cmd_translate_spa(
982                                         acpi_desc->nvdimm_bus, buf, buf_len);
983                                 return rc;
984                         case NFIT_CMD_ARS_INJECT_SET:
985                                 rc = nfit_test_cmd_ars_error_inject(t, buf,
986                                         buf_len);
987                                 return rc;
988                         case NFIT_CMD_ARS_INJECT_CLEAR:
989                                 rc = nfit_test_cmd_ars_inject_clear(t, buf,
990                                         buf_len);
991                                 return rc;
992                         case NFIT_CMD_ARS_INJECT_GET:
993                                 rc = nfit_test_cmd_ars_inject_status(t, buf,
994                                         buf_len);
995                                 return rc;
996                         default:
997                                 return -ENOTTY;
998                         }
999                 }
1000
1001                 if (!nd_desc || !test_bit(cmd, &nd_desc->cmd_mask))
1002                         return -ENOTTY;
1003
1004                 switch (func) {
1005                 case ND_CMD_ARS_CAP:
1006                         rc = nfit_test_cmd_ars_cap(buf, buf_len);
1007                         break;
1008                 case ND_CMD_ARS_START:
1009                         rc = nfit_test_cmd_ars_start(t, ars_state, buf,
1010                                         buf_len, cmd_rc);
1011                         break;
1012                 case ND_CMD_ARS_STATUS:
1013                         rc = nfit_test_cmd_ars_status(ars_state, buf, buf_len,
1014                                         cmd_rc);
1015                         break;
1016                 case ND_CMD_CLEAR_ERROR:
1017                         rc = nfit_test_cmd_clear_error(t, buf, buf_len, cmd_rc);
1018                         break;
1019                 default:
1020                         return -ENOTTY;
1021                 }
1022         }
1023
1024         return rc;
1025 }
1026
1027 static DEFINE_SPINLOCK(nfit_test_lock);
1028 static struct nfit_test *instances[NUM_NFITS];
1029
1030 static void release_nfit_res(void *data)
1031 {
1032         struct nfit_test_resource *nfit_res = data;
1033
1034         spin_lock(&nfit_test_lock);
1035         list_del(&nfit_res->list);
1036         spin_unlock(&nfit_test_lock);
1037
1038         vfree(nfit_res->buf);
1039         kfree(nfit_res);
1040 }
1041
1042 static void *__test_alloc(struct nfit_test *t, size_t size, dma_addr_t *dma,
1043                 void *buf)
1044 {
1045         struct device *dev = &t->pdev.dev;
1046         struct nfit_test_resource *nfit_res = kzalloc(sizeof(*nfit_res),
1047                         GFP_KERNEL);
1048         int rc;
1049
1050         if (!buf || !nfit_res)
1051                 goto err;
1052         rc = devm_add_action(dev, release_nfit_res, nfit_res);
1053         if (rc)
1054                 goto err;
1055         INIT_LIST_HEAD(&nfit_res->list);
1056         memset(buf, 0, size);
1057         nfit_res->dev = dev;
1058         nfit_res->buf = buf;
1059         nfit_res->res.start = *dma;
1060         nfit_res->res.end = *dma + size - 1;
1061         nfit_res->res.name = "NFIT";
1062         spin_lock_init(&nfit_res->lock);
1063         INIT_LIST_HEAD(&nfit_res->requests);
1064         spin_lock(&nfit_test_lock);
1065         list_add(&nfit_res->list, &t->resources);
1066         spin_unlock(&nfit_test_lock);
1067
1068         return nfit_res->buf;
1069  err:
1070         if (buf)
1071                 vfree(buf);
1072         kfree(nfit_res);
1073         return NULL;
1074 }
1075
1076 static void *test_alloc(struct nfit_test *t, size_t size, dma_addr_t *dma)
1077 {
1078         void *buf = vmalloc(size);
1079
1080         *dma = (unsigned long) buf;
1081         return __test_alloc(t, size, dma, buf);
1082 }
1083
1084 static struct nfit_test_resource *nfit_test_lookup(resource_size_t addr)
1085 {
1086         int i;
1087
1088         for (i = 0; i < ARRAY_SIZE(instances); i++) {
1089                 struct nfit_test_resource *n, *nfit_res = NULL;
1090                 struct nfit_test *t = instances[i];
1091
1092                 if (!t)
1093                         continue;
1094                 spin_lock(&nfit_test_lock);
1095                 list_for_each_entry(n, &t->resources, list) {
1096                         if (addr >= n->res.start && (addr < n->res.start
1097                                                 + resource_size(&n->res))) {
1098                                 nfit_res = n;
1099                                 break;
1100                         } else if (addr >= (unsigned long) n->buf
1101                                         && (addr < (unsigned long) n->buf
1102                                                 + resource_size(&n->res))) {
1103                                 nfit_res = n;
1104                                 break;
1105                         }
1106                 }
1107                 spin_unlock(&nfit_test_lock);
1108                 if (nfit_res)
1109                         return nfit_res;
1110         }
1111
1112         return NULL;
1113 }
1114
1115 static int ars_state_init(struct device *dev, struct ars_state *ars_state)
1116 {
1117         /* for testing, only store up to n records that fit within 4k */
1118         ars_state->ars_status = devm_kzalloc(dev,
1119                         sizeof(struct nd_cmd_ars_status) + SZ_4K, GFP_KERNEL);
1120         if (!ars_state->ars_status)
1121                 return -ENOMEM;
1122         spin_lock_init(&ars_state->lock);
1123         return 0;
1124 }
1125
1126 static void put_dimms(void *data)
1127 {
1128         struct device **dimm_dev = data;
1129         int i;
1130
1131         for (i = 0; i < NUM_DCR; i++)
1132                 if (dimm_dev[i])
1133                         device_unregister(dimm_dev[i]);
1134 }
1135
1136 static struct class *nfit_test_dimm;
1137
1138 static int dimm_name_to_id(struct device *dev)
1139 {
1140         int dimm;
1141
1142         if (sscanf(dev_name(dev), "test_dimm%d", &dimm) != 1
1143                         || dimm >= NUM_DCR || dimm < 0)
1144                 return -ENXIO;
1145         return dimm;
1146 }
1147
1148
1149 static ssize_t handle_show(struct device *dev, struct device_attribute *attr,
1150                 char *buf)
1151 {
1152         int dimm = dimm_name_to_id(dev);
1153
1154         if (dimm < 0)
1155                 return dimm;
1156
1157         return sprintf(buf, "%#x", handle[dimm]);
1158 }
1159 DEVICE_ATTR_RO(handle);
1160
1161 static ssize_t fail_cmd_show(struct device *dev, struct device_attribute *attr,
1162                 char *buf)
1163 {
1164         int dimm = dimm_name_to_id(dev);
1165
1166         if (dimm < 0)
1167                 return dimm;
1168
1169         return sprintf(buf, "%#lx\n", dimm_fail_cmd_flags[dimm]);
1170 }
1171
1172 static ssize_t fail_cmd_store(struct device *dev, struct device_attribute *attr,
1173                 const char *buf, size_t size)
1174 {
1175         int dimm = dimm_name_to_id(dev);
1176         unsigned long val;
1177         ssize_t rc;
1178
1179         if (dimm < 0)
1180                 return dimm;
1181
1182         rc = kstrtol(buf, 0, &val);
1183         if (rc)
1184                 return rc;
1185
1186         dimm_fail_cmd_flags[dimm] = val;
1187         return size;
1188 }
1189 static DEVICE_ATTR_RW(fail_cmd);
1190
1191 static struct attribute *nfit_test_dimm_attributes[] = {
1192         &dev_attr_fail_cmd.attr,
1193         &dev_attr_handle.attr,
1194         NULL,
1195 };
1196
1197 static struct attribute_group nfit_test_dimm_attribute_group = {
1198         .attrs = nfit_test_dimm_attributes,
1199 };
1200
1201 static const struct attribute_group *nfit_test_dimm_attribute_groups[] = {
1202         &nfit_test_dimm_attribute_group,
1203         NULL,
1204 };
1205
1206 static void smart_init(struct nfit_test *t)
1207 {
1208         int i;
1209         const struct nd_intel_smart_threshold smart_t_data = {
1210                 .alarm_control = ND_INTEL_SMART_SPARE_TRIP
1211                         | ND_INTEL_SMART_TEMP_TRIP,
1212                 .media_temperature = 40 * 16,
1213                 .ctrl_temperature = 30 * 16,
1214                 .spares = 5,
1215         };
1216         const struct nd_intel_smart smart_data = {
1217                 .flags = ND_INTEL_SMART_HEALTH_VALID
1218                         | ND_INTEL_SMART_SPARES_VALID
1219                         | ND_INTEL_SMART_ALARM_VALID
1220                         | ND_INTEL_SMART_USED_VALID
1221                         | ND_INTEL_SMART_SHUTDOWN_VALID
1222                         | ND_INTEL_SMART_MTEMP_VALID,
1223                 .health = ND_INTEL_SMART_NON_CRITICAL_HEALTH,
1224                 .media_temperature = 23 * 16,
1225                 .ctrl_temperature = 30 * 16,
1226                 .pmic_temperature = 40 * 16,
1227                 .spares = 75,
1228                 .alarm_flags = ND_INTEL_SMART_SPARE_TRIP
1229                         | ND_INTEL_SMART_TEMP_TRIP,
1230                 .ait_status = 1,
1231                 .life_used = 5,
1232                 .shutdown_state = 0,
1233                 .vendor_size = 0,
1234                 .shutdown_count = 100,
1235         };
1236
1237         for (i = 0; i < t->num_dcr; i++) {
1238                 memcpy(&t->smart[i], &smart_data, sizeof(smart_data));
1239                 memcpy(&t->smart_threshold[i], &smart_t_data,
1240                                 sizeof(smart_t_data));
1241         }
1242 }
1243
1244 static int nfit_test0_alloc(struct nfit_test *t)
1245 {
1246         size_t nfit_size = sizeof(struct acpi_nfit_system_address) * NUM_SPA
1247                         + sizeof(struct acpi_nfit_memory_map) * NUM_MEM
1248                         + sizeof(struct acpi_nfit_control_region) * NUM_DCR
1249                         + offsetof(struct acpi_nfit_control_region,
1250                                         window_size) * NUM_DCR
1251                         + sizeof(struct acpi_nfit_data_region) * NUM_BDW
1252                         + (sizeof(struct acpi_nfit_flush_address)
1253                                         + sizeof(u64) * NUM_HINTS) * NUM_DCR;
1254         int i;
1255
1256         t->nfit_buf = test_alloc(t, nfit_size, &t->nfit_dma);
1257         if (!t->nfit_buf)
1258                 return -ENOMEM;
1259         t->nfit_size = nfit_size;
1260
1261         t->spa_set[0] = test_alloc(t, SPA0_SIZE, &t->spa_set_dma[0]);
1262         if (!t->spa_set[0])
1263                 return -ENOMEM;
1264
1265         t->spa_set[1] = test_alloc(t, SPA1_SIZE, &t->spa_set_dma[1]);
1266         if (!t->spa_set[1])
1267                 return -ENOMEM;
1268
1269         t->spa_set[2] = test_alloc(t, SPA0_SIZE, &t->spa_set_dma[2]);
1270         if (!t->spa_set[2])
1271                 return -ENOMEM;
1272
1273         for (i = 0; i < t->num_dcr; i++) {
1274                 t->dimm[i] = test_alloc(t, DIMM_SIZE, &t->dimm_dma[i]);
1275                 if (!t->dimm[i])
1276                         return -ENOMEM;
1277
1278                 t->label[i] = test_alloc(t, LABEL_SIZE, &t->label_dma[i]);
1279                 if (!t->label[i])
1280                         return -ENOMEM;
1281                 sprintf(t->label[i], "label%d", i);
1282
1283                 t->flush[i] = test_alloc(t, max(PAGE_SIZE,
1284                                         sizeof(u64) * NUM_HINTS),
1285                                 &t->flush_dma[i]);
1286                 if (!t->flush[i])
1287                         return -ENOMEM;
1288         }
1289
1290         for (i = 0; i < t->num_dcr; i++) {
1291                 t->dcr[i] = test_alloc(t, LABEL_SIZE, &t->dcr_dma[i]);
1292                 if (!t->dcr[i])
1293                         return -ENOMEM;
1294         }
1295
1296         t->_fit = test_alloc(t, sizeof(union acpi_object **), &t->_fit_dma);
1297         if (!t->_fit)
1298                 return -ENOMEM;
1299
1300         if (devm_add_action_or_reset(&t->pdev.dev, put_dimms, t->dimm_dev))
1301                 return -ENOMEM;
1302         for (i = 0; i < NUM_DCR; i++) {
1303                 t->dimm_dev[i] = device_create_with_groups(nfit_test_dimm,
1304                                 &t->pdev.dev, 0, NULL,
1305                                 nfit_test_dimm_attribute_groups,
1306                                 "test_dimm%d", i);
1307                 if (!t->dimm_dev[i])
1308                         return -ENOMEM;
1309         }
1310
1311         smart_init(t);
1312         return ars_state_init(&t->pdev.dev, &t->ars_state);
1313 }
1314
1315 static int nfit_test1_alloc(struct nfit_test *t)
1316 {
1317         size_t nfit_size = sizeof(struct acpi_nfit_system_address) * 2
1318                 + sizeof(struct acpi_nfit_memory_map) * 2
1319                 + offsetof(struct acpi_nfit_control_region, window_size) * 2;
1320         int i;
1321
1322         t->nfit_buf = test_alloc(t, nfit_size, &t->nfit_dma);
1323         if (!t->nfit_buf)
1324                 return -ENOMEM;
1325         t->nfit_size = nfit_size;
1326
1327         t->spa_set[0] = test_alloc(t, SPA2_SIZE, &t->spa_set_dma[0]);
1328         if (!t->spa_set[0])
1329                 return -ENOMEM;
1330
1331         for (i = 0; i < t->num_dcr; i++) {
1332                 t->label[i] = test_alloc(t, LABEL_SIZE, &t->label_dma[i]);
1333                 if (!t->label[i])
1334                         return -ENOMEM;
1335                 sprintf(t->label[i], "label%d", i);
1336         }
1337
1338         t->spa_set[1] = test_alloc(t, SPA_VCD_SIZE, &t->spa_set_dma[1]);
1339         if (!t->spa_set[1])
1340                 return -ENOMEM;
1341
1342         smart_init(t);
1343         return ars_state_init(&t->pdev.dev, &t->ars_state);
1344 }
1345
1346 static void dcr_common_init(struct acpi_nfit_control_region *dcr)
1347 {
1348         dcr->vendor_id = 0xabcd;
1349         dcr->device_id = 0;
1350         dcr->revision_id = 1;
1351         dcr->valid_fields = 1;
1352         dcr->manufacturing_location = 0xa;
1353         dcr->manufacturing_date = cpu_to_be16(2016);
1354 }
1355
1356 static void nfit_test0_setup(struct nfit_test *t)
1357 {
1358         const int flush_hint_size = sizeof(struct acpi_nfit_flush_address)
1359                 + (sizeof(u64) * NUM_HINTS);
1360         struct acpi_nfit_desc *acpi_desc;
1361         struct acpi_nfit_memory_map *memdev;
1362         void *nfit_buf = t->nfit_buf;
1363         struct acpi_nfit_system_address *spa;
1364         struct acpi_nfit_control_region *dcr;
1365         struct acpi_nfit_data_region *bdw;
1366         struct acpi_nfit_flush_address *flush;
1367         unsigned int offset, i;
1368
1369         /*
1370          * spa0 (interleave first half of dimm0 and dimm1, note storage
1371          * does not actually alias the related block-data-window
1372          * regions)
1373          */
1374         spa = nfit_buf;
1375         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1376         spa->header.length = sizeof(*spa);
1377         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_PM), 16);
1378         spa->range_index = 0+1;
1379         spa->address = t->spa_set_dma[0];
1380         spa->length = SPA0_SIZE;
1381
1382         /*
1383          * spa1 (interleave last half of the 4 DIMMS, note storage
1384          * does not actually alias the related block-data-window
1385          * regions)
1386          */
1387         spa = nfit_buf + sizeof(*spa);
1388         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1389         spa->header.length = sizeof(*spa);
1390         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_PM), 16);
1391         spa->range_index = 1+1;
1392         spa->address = t->spa_set_dma[1];
1393         spa->length = SPA1_SIZE;
1394
1395         /* spa2 (dcr0) dimm0 */
1396         spa = nfit_buf + sizeof(*spa) * 2;
1397         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1398         spa->header.length = sizeof(*spa);
1399         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_DCR), 16);
1400         spa->range_index = 2+1;
1401         spa->address = t->dcr_dma[0];
1402         spa->length = DCR_SIZE;
1403
1404         /* spa3 (dcr1) dimm1 */
1405         spa = nfit_buf + sizeof(*spa) * 3;
1406         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1407         spa->header.length = sizeof(*spa);
1408         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_DCR), 16);
1409         spa->range_index = 3+1;
1410         spa->address = t->dcr_dma[1];
1411         spa->length = DCR_SIZE;
1412
1413         /* spa4 (dcr2) dimm2 */
1414         spa = nfit_buf + sizeof(*spa) * 4;
1415         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1416         spa->header.length = sizeof(*spa);
1417         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_DCR), 16);
1418         spa->range_index = 4+1;
1419         spa->address = t->dcr_dma[2];
1420         spa->length = DCR_SIZE;
1421
1422         /* spa5 (dcr3) dimm3 */
1423         spa = nfit_buf + sizeof(*spa) * 5;
1424         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1425         spa->header.length = sizeof(*spa);
1426         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_DCR), 16);
1427         spa->range_index = 5+1;
1428         spa->address = t->dcr_dma[3];
1429         spa->length = DCR_SIZE;
1430
1431         /* spa6 (bdw for dcr0) dimm0 */
1432         spa = nfit_buf + sizeof(*spa) * 6;
1433         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1434         spa->header.length = sizeof(*spa);
1435         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_BDW), 16);
1436         spa->range_index = 6+1;
1437         spa->address = t->dimm_dma[0];
1438         spa->length = DIMM_SIZE;
1439
1440         /* spa7 (bdw for dcr1) dimm1 */
1441         spa = nfit_buf + sizeof(*spa) * 7;
1442         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1443         spa->header.length = sizeof(*spa);
1444         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_BDW), 16);
1445         spa->range_index = 7+1;
1446         spa->address = t->dimm_dma[1];
1447         spa->length = DIMM_SIZE;
1448
1449         /* spa8 (bdw for dcr2) dimm2 */
1450         spa = nfit_buf + sizeof(*spa) * 8;
1451         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1452         spa->header.length = sizeof(*spa);
1453         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_BDW), 16);
1454         spa->range_index = 8+1;
1455         spa->address = t->dimm_dma[2];
1456         spa->length = DIMM_SIZE;
1457
1458         /* spa9 (bdw for dcr3) dimm3 */
1459         spa = nfit_buf + sizeof(*spa) * 9;
1460         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1461         spa->header.length = sizeof(*spa);
1462         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_BDW), 16);
1463         spa->range_index = 9+1;
1464         spa->address = t->dimm_dma[3];
1465         spa->length = DIMM_SIZE;
1466
1467         offset = sizeof(*spa) * 10;
1468         /* mem-region0 (spa0, dimm0) */
1469         memdev = nfit_buf + offset;
1470         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1471         memdev->header.length = sizeof(*memdev);
1472         memdev->device_handle = handle[0];
1473         memdev->physical_id = 0;
1474         memdev->region_id = 0;
1475         memdev->range_index = 0+1;
1476         memdev->region_index = 4+1;
1477         memdev->region_size = SPA0_SIZE/2;
1478         memdev->region_offset = 1;
1479         memdev->address = 0;
1480         memdev->interleave_index = 0;
1481         memdev->interleave_ways = 2;
1482
1483         /* mem-region1 (spa0, dimm1) */
1484         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map);
1485         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1486         memdev->header.length = sizeof(*memdev);
1487         memdev->device_handle = handle[1];
1488         memdev->physical_id = 1;
1489         memdev->region_id = 0;
1490         memdev->range_index = 0+1;
1491         memdev->region_index = 5+1;
1492         memdev->region_size = SPA0_SIZE/2;
1493         memdev->region_offset = (1 << 8);
1494         memdev->address = 0;
1495         memdev->interleave_index = 0;
1496         memdev->interleave_ways = 2;
1497         memdev->flags = ACPI_NFIT_MEM_HEALTH_ENABLED;
1498
1499         /* mem-region2 (spa1, dimm0) */
1500         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 2;
1501         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1502         memdev->header.length = sizeof(*memdev);
1503         memdev->device_handle = handle[0];
1504         memdev->physical_id = 0;
1505         memdev->region_id = 1;
1506         memdev->range_index = 1+1;
1507         memdev->region_index = 4+1;
1508         memdev->region_size = SPA1_SIZE/4;
1509         memdev->region_offset = (1 << 16);
1510         memdev->address = SPA0_SIZE/2;
1511         memdev->interleave_index = 0;
1512         memdev->interleave_ways = 4;
1513         memdev->flags = ACPI_NFIT_MEM_HEALTH_ENABLED;
1514
1515         /* mem-region3 (spa1, dimm1) */
1516         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 3;
1517         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1518         memdev->header.length = sizeof(*memdev);
1519         memdev->device_handle = handle[1];
1520         memdev->physical_id = 1;
1521         memdev->region_id = 1;
1522         memdev->range_index = 1+1;
1523         memdev->region_index = 5+1;
1524         memdev->region_size = SPA1_SIZE/4;
1525         memdev->region_offset = (1 << 24);
1526         memdev->address = SPA0_SIZE/2;
1527         memdev->interleave_index = 0;
1528         memdev->interleave_ways = 4;
1529
1530         /* mem-region4 (spa1, dimm2) */
1531         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 4;
1532         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1533         memdev->header.length = sizeof(*memdev);
1534         memdev->device_handle = handle[2];
1535         memdev->physical_id = 2;
1536         memdev->region_id = 0;
1537         memdev->range_index = 1+1;
1538         memdev->region_index = 6+1;
1539         memdev->region_size = SPA1_SIZE/4;
1540         memdev->region_offset = (1ULL << 32);
1541         memdev->address = SPA0_SIZE/2;
1542         memdev->interleave_index = 0;
1543         memdev->interleave_ways = 4;
1544         memdev->flags = ACPI_NFIT_MEM_HEALTH_ENABLED;
1545
1546         /* mem-region5 (spa1, dimm3) */
1547         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 5;
1548         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1549         memdev->header.length = sizeof(*memdev);
1550         memdev->device_handle = handle[3];
1551         memdev->physical_id = 3;
1552         memdev->region_id = 0;
1553         memdev->range_index = 1+1;
1554         memdev->region_index = 7+1;
1555         memdev->region_size = SPA1_SIZE/4;
1556         memdev->region_offset = (1ULL << 40);
1557         memdev->address = SPA0_SIZE/2;
1558         memdev->interleave_index = 0;
1559         memdev->interleave_ways = 4;
1560
1561         /* mem-region6 (spa/dcr0, dimm0) */
1562         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 6;
1563         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1564         memdev->header.length = sizeof(*memdev);
1565         memdev->device_handle = handle[0];
1566         memdev->physical_id = 0;
1567         memdev->region_id = 0;
1568         memdev->range_index = 2+1;
1569         memdev->region_index = 0+1;
1570         memdev->region_size = 0;
1571         memdev->region_offset = 0;
1572         memdev->address = 0;
1573         memdev->interleave_index = 0;
1574         memdev->interleave_ways = 1;
1575
1576         /* mem-region7 (spa/dcr1, dimm1) */
1577         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 7;
1578         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1579         memdev->header.length = sizeof(*memdev);
1580         memdev->device_handle = handle[1];
1581         memdev->physical_id = 1;
1582         memdev->region_id = 0;
1583         memdev->range_index = 3+1;
1584         memdev->region_index = 1+1;
1585         memdev->region_size = 0;
1586         memdev->region_offset = 0;
1587         memdev->address = 0;
1588         memdev->interleave_index = 0;
1589         memdev->interleave_ways = 1;
1590
1591         /* mem-region8 (spa/dcr2, dimm2) */
1592         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 8;
1593         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1594         memdev->header.length = sizeof(*memdev);
1595         memdev->device_handle = handle[2];
1596         memdev->physical_id = 2;
1597         memdev->region_id = 0;
1598         memdev->range_index = 4+1;
1599         memdev->region_index = 2+1;
1600         memdev->region_size = 0;
1601         memdev->region_offset = 0;
1602         memdev->address = 0;
1603         memdev->interleave_index = 0;
1604         memdev->interleave_ways = 1;
1605
1606         /* mem-region9 (spa/dcr3, dimm3) */
1607         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 9;
1608         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1609         memdev->header.length = sizeof(*memdev);
1610         memdev->device_handle = handle[3];
1611         memdev->physical_id = 3;
1612         memdev->region_id = 0;
1613         memdev->range_index = 5+1;
1614         memdev->region_index = 3+1;
1615         memdev->region_size = 0;
1616         memdev->region_offset = 0;
1617         memdev->address = 0;
1618         memdev->interleave_index = 0;
1619         memdev->interleave_ways = 1;
1620
1621         /* mem-region10 (spa/bdw0, dimm0) */
1622         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 10;
1623         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1624         memdev->header.length = sizeof(*memdev);
1625         memdev->device_handle = handle[0];
1626         memdev->physical_id = 0;
1627         memdev->region_id = 0;
1628         memdev->range_index = 6+1;
1629         memdev->region_index = 0+1;
1630         memdev->region_size = 0;
1631         memdev->region_offset = 0;
1632         memdev->address = 0;
1633         memdev->interleave_index = 0;
1634         memdev->interleave_ways = 1;
1635
1636         /* mem-region11 (spa/bdw1, dimm1) */
1637         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 11;
1638         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1639         memdev->header.length = sizeof(*memdev);
1640         memdev->device_handle = handle[1];
1641         memdev->physical_id = 1;
1642         memdev->region_id = 0;
1643         memdev->range_index = 7+1;
1644         memdev->region_index = 1+1;
1645         memdev->region_size = 0;
1646         memdev->region_offset = 0;
1647         memdev->address = 0;
1648         memdev->interleave_index = 0;
1649         memdev->interleave_ways = 1;
1650
1651         /* mem-region12 (spa/bdw2, dimm2) */
1652         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 12;
1653         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1654         memdev->header.length = sizeof(*memdev);
1655         memdev->device_handle = handle[2];
1656         memdev->physical_id = 2;
1657         memdev->region_id = 0;
1658         memdev->range_index = 8+1;
1659         memdev->region_index = 2+1;
1660         memdev->region_size = 0;
1661         memdev->region_offset = 0;
1662         memdev->address = 0;
1663         memdev->interleave_index = 0;
1664         memdev->interleave_ways = 1;
1665
1666         /* mem-region13 (spa/dcr3, dimm3) */
1667         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 13;
1668         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1669         memdev->header.length = sizeof(*memdev);
1670         memdev->device_handle = handle[3];
1671         memdev->physical_id = 3;
1672         memdev->region_id = 0;
1673         memdev->range_index = 9+1;
1674         memdev->region_index = 3+1;
1675         memdev->region_size = 0;
1676         memdev->region_offset = 0;
1677         memdev->address = 0;
1678         memdev->interleave_index = 0;
1679         memdev->interleave_ways = 1;
1680         memdev->flags = ACPI_NFIT_MEM_HEALTH_ENABLED;
1681
1682         offset = offset + sizeof(struct acpi_nfit_memory_map) * 14;
1683         /* dcr-descriptor0: blk */
1684         dcr = nfit_buf + offset;
1685         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
1686         dcr->header.length = sizeof(struct acpi_nfit_control_region);
1687         dcr->region_index = 0+1;
1688         dcr_common_init(dcr);
1689         dcr->serial_number = ~handle[0];
1690         dcr->code = NFIT_FIC_BLK;
1691         dcr->windows = 1;
1692         dcr->window_size = DCR_SIZE;
1693         dcr->command_offset = 0;
1694         dcr->command_size = 8;
1695         dcr->status_offset = 8;
1696         dcr->status_size = 4;
1697
1698         /* dcr-descriptor1: blk */
1699         dcr = nfit_buf + offset + sizeof(struct acpi_nfit_control_region);
1700         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
1701         dcr->header.length = sizeof(struct acpi_nfit_control_region);
1702         dcr->region_index = 1+1;
1703         dcr_common_init(dcr);
1704         dcr->serial_number = ~handle[1];
1705         dcr->code = NFIT_FIC_BLK;
1706         dcr->windows = 1;
1707         dcr->window_size = DCR_SIZE;
1708         dcr->command_offset = 0;
1709         dcr->command_size = 8;
1710         dcr->status_offset = 8;
1711         dcr->status_size = 4;
1712
1713         /* dcr-descriptor2: blk */
1714         dcr = nfit_buf + offset + sizeof(struct acpi_nfit_control_region) * 2;
1715         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
1716         dcr->header.length = sizeof(struct acpi_nfit_control_region);
1717         dcr->region_index = 2+1;
1718         dcr_common_init(dcr);
1719         dcr->serial_number = ~handle[2];
1720         dcr->code = NFIT_FIC_BLK;
1721         dcr->windows = 1;
1722         dcr->window_size = DCR_SIZE;
1723         dcr->command_offset = 0;
1724         dcr->command_size = 8;
1725         dcr->status_offset = 8;
1726         dcr->status_size = 4;
1727
1728         /* dcr-descriptor3: blk */
1729         dcr = nfit_buf + offset + sizeof(struct acpi_nfit_control_region) * 3;
1730         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
1731         dcr->header.length = sizeof(struct acpi_nfit_control_region);
1732         dcr->region_index = 3+1;
1733         dcr_common_init(dcr);
1734         dcr->serial_number = ~handle[3];
1735         dcr->code = NFIT_FIC_BLK;
1736         dcr->windows = 1;
1737         dcr->window_size = DCR_SIZE;
1738         dcr->command_offset = 0;
1739         dcr->command_size = 8;
1740         dcr->status_offset = 8;
1741         dcr->status_size = 4;
1742
1743         offset = offset + sizeof(struct acpi_nfit_control_region) * 4;
1744         /* dcr-descriptor0: pmem */
1745         dcr = nfit_buf + offset;
1746         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
1747         dcr->header.length = offsetof(struct acpi_nfit_control_region,
1748                         window_size);
1749         dcr->region_index = 4+1;
1750         dcr_common_init(dcr);
1751         dcr->serial_number = ~handle[0];
1752         dcr->code = NFIT_FIC_BYTEN;
1753         dcr->windows = 0;
1754
1755         /* dcr-descriptor1: pmem */
1756         dcr = nfit_buf + offset + offsetof(struct acpi_nfit_control_region,
1757                         window_size);
1758         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
1759         dcr->header.length = offsetof(struct acpi_nfit_control_region,
1760                         window_size);
1761         dcr->region_index = 5+1;
1762         dcr_common_init(dcr);
1763         dcr->serial_number = ~handle[1];
1764         dcr->code = NFIT_FIC_BYTEN;
1765         dcr->windows = 0;
1766
1767         /* dcr-descriptor2: pmem */
1768         dcr = nfit_buf + offset + offsetof(struct acpi_nfit_control_region,
1769                         window_size) * 2;
1770         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
1771         dcr->header.length = offsetof(struct acpi_nfit_control_region,
1772                         window_size);
1773         dcr->region_index = 6+1;
1774         dcr_common_init(dcr);
1775         dcr->serial_number = ~handle[2];
1776         dcr->code = NFIT_FIC_BYTEN;
1777         dcr->windows = 0;
1778
1779         /* dcr-descriptor3: pmem */
1780         dcr = nfit_buf + offset + offsetof(struct acpi_nfit_control_region,
1781                         window_size) * 3;
1782         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
1783         dcr->header.length = offsetof(struct acpi_nfit_control_region,
1784                         window_size);
1785         dcr->region_index = 7+1;
1786         dcr_common_init(dcr);
1787         dcr->serial_number = ~handle[3];
1788         dcr->code = NFIT_FIC_BYTEN;
1789         dcr->windows = 0;
1790
1791         offset = offset + offsetof(struct acpi_nfit_control_region,
1792                         window_size) * 4;
1793         /* bdw0 (spa/dcr0, dimm0) */
1794         bdw = nfit_buf + offset;
1795         bdw->header.type = ACPI_NFIT_TYPE_DATA_REGION;
1796         bdw->header.length = sizeof(struct acpi_nfit_data_region);
1797         bdw->region_index = 0+1;
1798         bdw->windows = 1;
1799         bdw->offset = 0;
1800         bdw->size = BDW_SIZE;
1801         bdw->capacity = DIMM_SIZE;
1802         bdw->start_address = 0;
1803
1804         /* bdw1 (spa/dcr1, dimm1) */
1805         bdw = nfit_buf + offset + sizeof(struct acpi_nfit_data_region);
1806         bdw->header.type = ACPI_NFIT_TYPE_DATA_REGION;
1807         bdw->header.length = sizeof(struct acpi_nfit_data_region);
1808         bdw->region_index = 1+1;
1809         bdw->windows = 1;
1810         bdw->offset = 0;
1811         bdw->size = BDW_SIZE;
1812         bdw->capacity = DIMM_SIZE;
1813         bdw->start_address = 0;
1814
1815         /* bdw2 (spa/dcr2, dimm2) */
1816         bdw = nfit_buf + offset + sizeof(struct acpi_nfit_data_region) * 2;
1817         bdw->header.type = ACPI_NFIT_TYPE_DATA_REGION;
1818         bdw->header.length = sizeof(struct acpi_nfit_data_region);
1819         bdw->region_index = 2+1;
1820         bdw->windows = 1;
1821         bdw->offset = 0;
1822         bdw->size = BDW_SIZE;
1823         bdw->capacity = DIMM_SIZE;
1824         bdw->start_address = 0;
1825
1826         /* bdw3 (spa/dcr3, dimm3) */
1827         bdw = nfit_buf + offset + sizeof(struct acpi_nfit_data_region) * 3;
1828         bdw->header.type = ACPI_NFIT_TYPE_DATA_REGION;
1829         bdw->header.length = sizeof(struct acpi_nfit_data_region);
1830         bdw->region_index = 3+1;
1831         bdw->windows = 1;
1832         bdw->offset = 0;
1833         bdw->size = BDW_SIZE;
1834         bdw->capacity = DIMM_SIZE;
1835         bdw->start_address = 0;
1836
1837         offset = offset + sizeof(struct acpi_nfit_data_region) * 4;
1838         /* flush0 (dimm0) */
1839         flush = nfit_buf + offset;
1840         flush->header.type = ACPI_NFIT_TYPE_FLUSH_ADDRESS;
1841         flush->header.length = flush_hint_size;
1842         flush->device_handle = handle[0];
1843         flush->hint_count = NUM_HINTS;
1844         for (i = 0; i < NUM_HINTS; i++)
1845                 flush->hint_address[i] = t->flush_dma[0] + i * sizeof(u64);
1846
1847         /* flush1 (dimm1) */
1848         flush = nfit_buf + offset + flush_hint_size * 1;
1849         flush->header.type = ACPI_NFIT_TYPE_FLUSH_ADDRESS;
1850         flush->header.length = flush_hint_size;
1851         flush->device_handle = handle[1];
1852         flush->hint_count = NUM_HINTS;
1853         for (i = 0; i < NUM_HINTS; i++)
1854                 flush->hint_address[i] = t->flush_dma[1] + i * sizeof(u64);
1855
1856         /* flush2 (dimm2) */
1857         flush = nfit_buf + offset + flush_hint_size  * 2;
1858         flush->header.type = ACPI_NFIT_TYPE_FLUSH_ADDRESS;
1859         flush->header.length = flush_hint_size;
1860         flush->device_handle = handle[2];
1861         flush->hint_count = NUM_HINTS;
1862         for (i = 0; i < NUM_HINTS; i++)
1863                 flush->hint_address[i] = t->flush_dma[2] + i * sizeof(u64);
1864
1865         /* flush3 (dimm3) */
1866         flush = nfit_buf + offset + flush_hint_size * 3;
1867         flush->header.type = ACPI_NFIT_TYPE_FLUSH_ADDRESS;
1868         flush->header.length = flush_hint_size;
1869         flush->device_handle = handle[3];
1870         flush->hint_count = NUM_HINTS;
1871         for (i = 0; i < NUM_HINTS; i++)
1872                 flush->hint_address[i] = t->flush_dma[3] + i * sizeof(u64);
1873
1874         if (t->setup_hotplug) {
1875                 offset = offset + flush_hint_size * 4;
1876                 /* dcr-descriptor4: blk */
1877                 dcr = nfit_buf + offset;
1878                 dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
1879                 dcr->header.length = sizeof(struct acpi_nfit_control_region);
1880                 dcr->region_index = 8+1;
1881                 dcr_common_init(dcr);
1882                 dcr->serial_number = ~handle[4];
1883                 dcr->code = NFIT_FIC_BLK;
1884                 dcr->windows = 1;
1885                 dcr->window_size = DCR_SIZE;
1886                 dcr->command_offset = 0;
1887                 dcr->command_size = 8;
1888                 dcr->status_offset = 8;
1889                 dcr->status_size = 4;
1890
1891                 offset = offset + sizeof(struct acpi_nfit_control_region);
1892                 /* dcr-descriptor4: pmem */
1893                 dcr = nfit_buf + offset;
1894                 dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
1895                 dcr->header.length = offsetof(struct acpi_nfit_control_region,
1896                                 window_size);
1897                 dcr->region_index = 9+1;
1898                 dcr_common_init(dcr);
1899                 dcr->serial_number = ~handle[4];
1900                 dcr->code = NFIT_FIC_BYTEN;
1901                 dcr->windows = 0;
1902
1903                 offset = offset + offsetof(struct acpi_nfit_control_region,
1904                                 window_size);
1905                 /* bdw4 (spa/dcr4, dimm4) */
1906                 bdw = nfit_buf + offset;
1907                 bdw->header.type = ACPI_NFIT_TYPE_DATA_REGION;
1908                 bdw->header.length = sizeof(struct acpi_nfit_data_region);
1909                 bdw->region_index = 8+1;
1910                 bdw->windows = 1;
1911                 bdw->offset = 0;
1912                 bdw->size = BDW_SIZE;
1913                 bdw->capacity = DIMM_SIZE;
1914                 bdw->start_address = 0;
1915
1916                 offset = offset + sizeof(struct acpi_nfit_data_region);
1917                 /* spa10 (dcr4) dimm4 */
1918                 spa = nfit_buf + offset;
1919                 spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1920                 spa->header.length = sizeof(*spa);
1921                 memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_DCR), 16);
1922                 spa->range_index = 10+1;
1923                 spa->address = t->dcr_dma[4];
1924                 spa->length = DCR_SIZE;
1925
1926                 /*
1927                  * spa11 (single-dimm interleave for hotplug, note storage
1928                  * does not actually alias the related block-data-window
1929                  * regions)
1930                  */
1931                 spa = nfit_buf + offset + sizeof(*spa);
1932                 spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1933                 spa->header.length = sizeof(*spa);
1934                 memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_PM), 16);
1935                 spa->range_index = 11+1;
1936                 spa->address = t->spa_set_dma[2];
1937                 spa->length = SPA0_SIZE;
1938
1939                 /* spa12 (bdw for dcr4) dimm4 */
1940                 spa = nfit_buf + offset + sizeof(*spa) * 2;
1941                 spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
1942                 spa->header.length = sizeof(*spa);
1943                 memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_BDW), 16);
1944                 spa->range_index = 12+1;
1945                 spa->address = t->dimm_dma[4];
1946                 spa->length = DIMM_SIZE;
1947
1948                 offset = offset + sizeof(*spa) * 3;
1949                 /* mem-region14 (spa/dcr4, dimm4) */
1950                 memdev = nfit_buf + offset;
1951                 memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1952                 memdev->header.length = sizeof(*memdev);
1953                 memdev->device_handle = handle[4];
1954                 memdev->physical_id = 4;
1955                 memdev->region_id = 0;
1956                 memdev->range_index = 10+1;
1957                 memdev->region_index = 8+1;
1958                 memdev->region_size = 0;
1959                 memdev->region_offset = 0;
1960                 memdev->address = 0;
1961                 memdev->interleave_index = 0;
1962                 memdev->interleave_ways = 1;
1963
1964                 /* mem-region15 (spa0, dimm4) */
1965                 memdev = nfit_buf + offset +
1966                                 sizeof(struct acpi_nfit_memory_map);
1967                 memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1968                 memdev->header.length = sizeof(*memdev);
1969                 memdev->device_handle = handle[4];
1970                 memdev->physical_id = 4;
1971                 memdev->region_id = 0;
1972                 memdev->range_index = 11+1;
1973                 memdev->region_index = 9+1;
1974                 memdev->region_size = SPA0_SIZE;
1975                 memdev->region_offset = (1ULL << 48);
1976                 memdev->address = 0;
1977                 memdev->interleave_index = 0;
1978                 memdev->interleave_ways = 1;
1979                 memdev->flags = ACPI_NFIT_MEM_HEALTH_ENABLED;
1980
1981                 /* mem-region16 (spa/bdw4, dimm4) */
1982                 memdev = nfit_buf + offset +
1983                                 sizeof(struct acpi_nfit_memory_map) * 2;
1984                 memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
1985                 memdev->header.length = sizeof(*memdev);
1986                 memdev->device_handle = handle[4];
1987                 memdev->physical_id = 4;
1988                 memdev->region_id = 0;
1989                 memdev->range_index = 12+1;
1990                 memdev->region_index = 8+1;
1991                 memdev->region_size = 0;
1992                 memdev->region_offset = 0;
1993                 memdev->address = 0;
1994                 memdev->interleave_index = 0;
1995                 memdev->interleave_ways = 1;
1996
1997                 offset = offset + sizeof(struct acpi_nfit_memory_map) * 3;
1998                 /* flush3 (dimm4) */
1999                 flush = nfit_buf + offset;
2000                 flush->header.type = ACPI_NFIT_TYPE_FLUSH_ADDRESS;
2001                 flush->header.length = flush_hint_size;
2002                 flush->device_handle = handle[4];
2003                 flush->hint_count = NUM_HINTS;
2004                 for (i = 0; i < NUM_HINTS; i++)
2005                         flush->hint_address[i] = t->flush_dma[4]
2006                                 + i * sizeof(u64);
2007         }
2008
2009         post_ars_status(&t->ars_state, &t->badrange, t->spa_set_dma[0],
2010                         SPA0_SIZE);
2011
2012         acpi_desc = &t->acpi_desc;
2013         set_bit(ND_CMD_GET_CONFIG_SIZE, &acpi_desc->dimm_cmd_force_en);
2014         set_bit(ND_CMD_GET_CONFIG_DATA, &acpi_desc->dimm_cmd_force_en);
2015         set_bit(ND_CMD_SET_CONFIG_DATA, &acpi_desc->dimm_cmd_force_en);
2016         set_bit(ND_INTEL_SMART, &acpi_desc->dimm_cmd_force_en);
2017         set_bit(ND_INTEL_SMART_THRESHOLD, &acpi_desc->dimm_cmd_force_en);
2018         set_bit(ND_INTEL_SMART_SET_THRESHOLD, &acpi_desc->dimm_cmd_force_en);
2019         set_bit(ND_CMD_ARS_CAP, &acpi_desc->bus_cmd_force_en);
2020         set_bit(ND_CMD_ARS_START, &acpi_desc->bus_cmd_force_en);
2021         set_bit(ND_CMD_ARS_STATUS, &acpi_desc->bus_cmd_force_en);
2022         set_bit(ND_CMD_CLEAR_ERROR, &acpi_desc->bus_cmd_force_en);
2023         set_bit(ND_CMD_CALL, &acpi_desc->bus_cmd_force_en);
2024         set_bit(NFIT_CMD_TRANSLATE_SPA, &acpi_desc->bus_nfit_cmd_force_en);
2025         set_bit(NFIT_CMD_ARS_INJECT_SET, &acpi_desc->bus_nfit_cmd_force_en);
2026         set_bit(NFIT_CMD_ARS_INJECT_CLEAR, &acpi_desc->bus_nfit_cmd_force_en);
2027         set_bit(NFIT_CMD_ARS_INJECT_GET, &acpi_desc->bus_nfit_cmd_force_en);
2028         set_bit(ND_INTEL_FW_GET_INFO, &acpi_desc->dimm_cmd_force_en);
2029         set_bit(ND_INTEL_FW_START_UPDATE, &acpi_desc->dimm_cmd_force_en);
2030         set_bit(ND_INTEL_FW_SEND_DATA, &acpi_desc->dimm_cmd_force_en);
2031         set_bit(ND_INTEL_FW_FINISH_UPDATE, &acpi_desc->dimm_cmd_force_en);
2032         set_bit(ND_INTEL_FW_FINISH_QUERY, &acpi_desc->dimm_cmd_force_en);
2033         set_bit(ND_INTEL_ENABLE_LSS_STATUS, &acpi_desc->dimm_cmd_force_en);
2034 }
2035
2036 static void nfit_test1_setup(struct nfit_test *t)
2037 {
2038         size_t offset;
2039         void *nfit_buf = t->nfit_buf;
2040         struct acpi_nfit_memory_map *memdev;
2041         struct acpi_nfit_control_region *dcr;
2042         struct acpi_nfit_system_address *spa;
2043         struct acpi_nfit_desc *acpi_desc;
2044
2045         offset = 0;
2046         /* spa0 (flat range with no bdw aliasing) */
2047         spa = nfit_buf + offset;
2048         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
2049         spa->header.length = sizeof(*spa);
2050         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_PM), 16);
2051         spa->range_index = 0+1;
2052         spa->address = t->spa_set_dma[0];
2053         spa->length = SPA2_SIZE;
2054
2055         /* virtual cd region */
2056         spa = nfit_buf + sizeof(*spa);
2057         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
2058         spa->header.length = sizeof(*spa);
2059         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_VCD), 16);
2060         spa->range_index = 0;
2061         spa->address = t->spa_set_dma[1];
2062         spa->length = SPA_VCD_SIZE;
2063
2064         offset += sizeof(*spa) * 2;
2065         /* mem-region0 (spa0, dimm0) */
2066         memdev = nfit_buf + offset;
2067         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
2068         memdev->header.length = sizeof(*memdev);
2069         memdev->device_handle = handle[5];
2070         memdev->physical_id = 0;
2071         memdev->region_id = 0;
2072         memdev->range_index = 0+1;
2073         memdev->region_index = 0+1;
2074         memdev->region_size = SPA2_SIZE;
2075         memdev->region_offset = 0;
2076         memdev->address = 0;
2077         memdev->interleave_index = 0;
2078         memdev->interleave_ways = 1;
2079         memdev->flags = ACPI_NFIT_MEM_SAVE_FAILED | ACPI_NFIT_MEM_RESTORE_FAILED
2080                 | ACPI_NFIT_MEM_FLUSH_FAILED | ACPI_NFIT_MEM_HEALTH_OBSERVED
2081                 | ACPI_NFIT_MEM_NOT_ARMED;
2082
2083         offset += sizeof(*memdev);
2084         /* dcr-descriptor0 */
2085         dcr = nfit_buf + offset;
2086         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
2087         dcr->header.length = offsetof(struct acpi_nfit_control_region,
2088                         window_size);
2089         dcr->region_index = 0+1;
2090         dcr_common_init(dcr);
2091         dcr->serial_number = ~handle[5];
2092         dcr->code = NFIT_FIC_BYTE;
2093         dcr->windows = 0;
2094
2095         offset += dcr->header.length;
2096         memdev = nfit_buf + offset;
2097         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
2098         memdev->header.length = sizeof(*memdev);
2099         memdev->device_handle = handle[6];
2100         memdev->physical_id = 0;
2101         memdev->region_id = 0;
2102         memdev->range_index = 0;
2103         memdev->region_index = 0+2;
2104         memdev->region_size = SPA2_SIZE;
2105         memdev->region_offset = 0;
2106         memdev->address = 0;
2107         memdev->interleave_index = 0;
2108         memdev->interleave_ways = 1;
2109         memdev->flags = ACPI_NFIT_MEM_MAP_FAILED;
2110
2111         /* dcr-descriptor1 */
2112         offset += sizeof(*memdev);
2113         dcr = nfit_buf + offset;
2114         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
2115         dcr->header.length = offsetof(struct acpi_nfit_control_region,
2116                         window_size);
2117         dcr->region_index = 0+2;
2118         dcr_common_init(dcr);
2119         dcr->serial_number = ~handle[6];
2120         dcr->code = NFIT_FIC_BYTE;
2121         dcr->windows = 0;
2122
2123         post_ars_status(&t->ars_state, &t->badrange, t->spa_set_dma[0],
2124                         SPA2_SIZE);
2125
2126         acpi_desc = &t->acpi_desc;
2127         set_bit(ND_CMD_ARS_CAP, &acpi_desc->bus_cmd_force_en);
2128         set_bit(ND_CMD_ARS_START, &acpi_desc->bus_cmd_force_en);
2129         set_bit(ND_CMD_ARS_STATUS, &acpi_desc->bus_cmd_force_en);
2130         set_bit(ND_CMD_CLEAR_ERROR, &acpi_desc->bus_cmd_force_en);
2131         set_bit(ND_INTEL_ENABLE_LSS_STATUS, &acpi_desc->dimm_cmd_force_en);
2132 }
2133
2134 static int nfit_test_blk_do_io(struct nd_blk_region *ndbr, resource_size_t dpa,
2135                 void *iobuf, u64 len, int rw)
2136 {
2137         struct nfit_blk *nfit_blk = ndbr->blk_provider_data;
2138         struct nfit_blk_mmio *mmio = &nfit_blk->mmio[BDW];
2139         struct nd_region *nd_region = &ndbr->nd_region;
2140         unsigned int lane;
2141
2142         lane = nd_region_acquire_lane(nd_region);
2143         if (rw)
2144                 memcpy(mmio->addr.base + dpa, iobuf, len);
2145         else {
2146                 memcpy(iobuf, mmio->addr.base + dpa, len);
2147
2148                 /* give us some some coverage of the arch_invalidate_pmem() API */
2149                 arch_invalidate_pmem(mmio->addr.base + dpa, len);
2150         }
2151         nd_region_release_lane(nd_region, lane);
2152
2153         return 0;
2154 }
2155
2156 static unsigned long nfit_ctl_handle;
2157
2158 union acpi_object *result;
2159
2160 static union acpi_object *nfit_test_evaluate_dsm(acpi_handle handle,
2161                 const guid_t *guid, u64 rev, u64 func, union acpi_object *argv4)
2162 {
2163         if (handle != &nfit_ctl_handle)
2164                 return ERR_PTR(-ENXIO);
2165
2166         return result;
2167 }
2168
2169 static int setup_result(void *buf, size_t size)
2170 {
2171         result = kmalloc(sizeof(union acpi_object) + size, GFP_KERNEL);
2172         if (!result)
2173                 return -ENOMEM;
2174         result->package.type = ACPI_TYPE_BUFFER,
2175         result->buffer.pointer = (void *) (result + 1);
2176         result->buffer.length = size;
2177         memcpy(result->buffer.pointer, buf, size);
2178         memset(buf, 0, size);
2179         return 0;
2180 }
2181
2182 static int nfit_ctl_test(struct device *dev)
2183 {
2184         int rc, cmd_rc;
2185         struct nvdimm *nvdimm;
2186         struct acpi_device *adev;
2187         struct nfit_mem *nfit_mem;
2188         struct nd_ars_record *record;
2189         struct acpi_nfit_desc *acpi_desc;
2190         const u64 test_val = 0x0123456789abcdefULL;
2191         unsigned long mask, cmd_size, offset;
2192         union {
2193                 struct nd_cmd_get_config_size cfg_size;
2194                 struct nd_cmd_clear_error clear_err;
2195                 struct nd_cmd_ars_status ars_stat;
2196                 struct nd_cmd_ars_cap ars_cap;
2197                 char buf[sizeof(struct nd_cmd_ars_status)
2198                         + sizeof(struct nd_ars_record)];
2199         } cmds;
2200
2201         adev = devm_kzalloc(dev, sizeof(*adev), GFP_KERNEL);
2202         if (!adev)
2203                 return -ENOMEM;
2204         *adev = (struct acpi_device) {
2205                 .handle = &nfit_ctl_handle,
2206                 .dev = {
2207                         .init_name = "test-adev",
2208                 },
2209         };
2210
2211         acpi_desc = devm_kzalloc(dev, sizeof(*acpi_desc), GFP_KERNEL);
2212         if (!acpi_desc)
2213                 return -ENOMEM;
2214         *acpi_desc = (struct acpi_nfit_desc) {
2215                 .nd_desc = {
2216                         .cmd_mask = 1UL << ND_CMD_ARS_CAP
2217                                 | 1UL << ND_CMD_ARS_START
2218                                 | 1UL << ND_CMD_ARS_STATUS
2219                                 | 1UL << ND_CMD_CLEAR_ERROR
2220                                 | 1UL << ND_CMD_CALL,
2221                         .module = THIS_MODULE,
2222                         .provider_name = "ACPI.NFIT",
2223                         .ndctl = acpi_nfit_ctl,
2224                         .bus_dsm_mask = 1UL << NFIT_CMD_TRANSLATE_SPA
2225                                 | 1UL << NFIT_CMD_ARS_INJECT_SET
2226                                 | 1UL << NFIT_CMD_ARS_INJECT_CLEAR
2227                                 | 1UL << NFIT_CMD_ARS_INJECT_GET,
2228                 },
2229                 .dev = &adev->dev,
2230         };
2231
2232         nfit_mem = devm_kzalloc(dev, sizeof(*nfit_mem), GFP_KERNEL);
2233         if (!nfit_mem)
2234                 return -ENOMEM;
2235
2236         mask = 1UL << ND_CMD_SMART | 1UL << ND_CMD_SMART_THRESHOLD
2237                 | 1UL << ND_CMD_DIMM_FLAGS | 1UL << ND_CMD_GET_CONFIG_SIZE
2238                 | 1UL << ND_CMD_GET_CONFIG_DATA | 1UL << ND_CMD_SET_CONFIG_DATA
2239                 | 1UL << ND_CMD_VENDOR;
2240         *nfit_mem = (struct nfit_mem) {
2241                 .adev = adev,
2242                 .family = NVDIMM_FAMILY_INTEL,
2243                 .dsm_mask = mask,
2244         };
2245
2246         nvdimm = devm_kzalloc(dev, sizeof(*nvdimm), GFP_KERNEL);
2247         if (!nvdimm)
2248                 return -ENOMEM;
2249         *nvdimm = (struct nvdimm) {
2250                 .provider_data = nfit_mem,
2251                 .cmd_mask = mask,
2252                 .dev = {
2253                         .init_name = "test-dimm",
2254                 },
2255         };
2256
2257
2258         /* basic checkout of a typical 'get config size' command */
2259         cmd_size = sizeof(cmds.cfg_size);
2260         cmds.cfg_size = (struct nd_cmd_get_config_size) {
2261                 .status = 0,
2262                 .config_size = SZ_128K,
2263                 .max_xfer = SZ_4K,
2264         };
2265         rc = setup_result(cmds.buf, cmd_size);
2266         if (rc)
2267                 return rc;
2268         rc = acpi_nfit_ctl(&acpi_desc->nd_desc, nvdimm, ND_CMD_GET_CONFIG_SIZE,
2269                         cmds.buf, cmd_size, &cmd_rc);
2270
2271         if (rc < 0 || cmd_rc || cmds.cfg_size.status != 0
2272                         || cmds.cfg_size.config_size != SZ_128K
2273                         || cmds.cfg_size.max_xfer != SZ_4K) {
2274                 dev_dbg(dev, "%s: failed at: %d rc: %d cmd_rc: %d\n",
2275                                 __func__, __LINE__, rc, cmd_rc);
2276                 return -EIO;
2277         }
2278
2279
2280         /* test ars_status with zero output */
2281         cmd_size = offsetof(struct nd_cmd_ars_status, address);
2282         cmds.ars_stat = (struct nd_cmd_ars_status) {
2283                 .out_length = 0,
2284         };
2285         rc = setup_result(cmds.buf, cmd_size);
2286         if (rc)
2287                 return rc;
2288         rc = acpi_nfit_ctl(&acpi_desc->nd_desc, NULL, ND_CMD_ARS_STATUS,
2289                         cmds.buf, cmd_size, &cmd_rc);
2290
2291         if (rc < 0 || cmd_rc) {
2292                 dev_dbg(dev, "%s: failed at: %d rc: %d cmd_rc: %d\n",
2293                                 __func__, __LINE__, rc, cmd_rc);
2294                 return -EIO;
2295         }
2296
2297
2298         /* test ars_cap with benign extended status */
2299         cmd_size = sizeof(cmds.ars_cap);
2300         cmds.ars_cap = (struct nd_cmd_ars_cap) {
2301                 .status = ND_ARS_PERSISTENT << 16,
2302         };
2303         offset = offsetof(struct nd_cmd_ars_cap, status);
2304         rc = setup_result(cmds.buf + offset, cmd_size - offset);
2305         if (rc)
2306                 return rc;
2307         rc = acpi_nfit_ctl(&acpi_desc->nd_desc, NULL, ND_CMD_ARS_CAP,
2308                         cmds.buf, cmd_size, &cmd_rc);
2309
2310         if (rc < 0 || cmd_rc) {
2311                 dev_dbg(dev, "%s: failed at: %d rc: %d cmd_rc: %d\n",
2312                                 __func__, __LINE__, rc, cmd_rc);
2313                 return -EIO;
2314         }
2315
2316
2317         /* test ars_status with 'status' trimmed from 'out_length' */
2318         cmd_size = sizeof(cmds.ars_stat) + sizeof(struct nd_ars_record);
2319         cmds.ars_stat = (struct nd_cmd_ars_status) {
2320                 .out_length = cmd_size - 4,
2321         };
2322         record = &cmds.ars_stat.records[0];
2323         *record = (struct nd_ars_record) {
2324                 .length = test_val,
2325         };
2326         rc = setup_result(cmds.buf, cmd_size);
2327         if (rc)
2328                 return rc;
2329         rc = acpi_nfit_ctl(&acpi_desc->nd_desc, NULL, ND_CMD_ARS_STATUS,
2330                         cmds.buf, cmd_size, &cmd_rc);
2331
2332         if (rc < 0 || cmd_rc || record->length != test_val) {
2333                 dev_dbg(dev, "%s: failed at: %d rc: %d cmd_rc: %d\n",
2334                                 __func__, __LINE__, rc, cmd_rc);
2335                 return -EIO;
2336         }
2337
2338
2339         /* test ars_status with 'Output (Size)' including 'status' */
2340         cmd_size = sizeof(cmds.ars_stat) + sizeof(struct nd_ars_record);
2341         cmds.ars_stat = (struct nd_cmd_ars_status) {
2342                 .out_length = cmd_size,
2343         };
2344         record = &cmds.ars_stat.records[0];
2345         *record = (struct nd_ars_record) {
2346                 .length = test_val,
2347         };
2348         rc = setup_result(cmds.buf, cmd_size);
2349         if (rc)
2350                 return rc;
2351         rc = acpi_nfit_ctl(&acpi_desc->nd_desc, NULL, ND_CMD_ARS_STATUS,
2352                         cmds.buf, cmd_size, &cmd_rc);
2353
2354         if (rc < 0 || cmd_rc || record->length != test_val) {
2355                 dev_dbg(dev, "%s: failed at: %d rc: %d cmd_rc: %d\n",
2356                                 __func__, __LINE__, rc, cmd_rc);
2357                 return -EIO;
2358         }
2359
2360
2361         /* test extended status for get_config_size results in failure */
2362         cmd_size = sizeof(cmds.cfg_size);
2363         cmds.cfg_size = (struct nd_cmd_get_config_size) {
2364                 .status = 1 << 16,
2365         };
2366         rc = setup_result(cmds.buf, cmd_size);
2367         if (rc)
2368                 return rc;
2369         rc = acpi_nfit_ctl(&acpi_desc->nd_desc, nvdimm, ND_CMD_GET_CONFIG_SIZE,
2370                         cmds.buf, cmd_size, &cmd_rc);
2371
2372         if (rc < 0 || cmd_rc >= 0) {
2373                 dev_dbg(dev, "%s: failed at: %d rc: %d cmd_rc: %d\n",
2374                                 __func__, __LINE__, rc, cmd_rc);
2375                 return -EIO;
2376         }
2377
2378         /* test clear error */
2379         cmd_size = sizeof(cmds.clear_err);
2380         cmds.clear_err = (struct nd_cmd_clear_error) {
2381                 .length = 512,
2382                 .cleared = 512,
2383         };
2384         rc = setup_result(cmds.buf, cmd_size);
2385         if (rc)
2386                 return rc;
2387         rc = acpi_nfit_ctl(&acpi_desc->nd_desc, NULL, ND_CMD_CLEAR_ERROR,
2388                         cmds.buf, cmd_size, &cmd_rc);
2389         if (rc < 0 || cmd_rc) {
2390                 dev_dbg(dev, "%s: failed at: %d rc: %d cmd_rc: %d\n",
2391                                 __func__, __LINE__, rc, cmd_rc);
2392                 return -EIO;
2393         }
2394
2395         return 0;
2396 }
2397
2398 static int nfit_test_probe(struct platform_device *pdev)
2399 {
2400         struct nvdimm_bus_descriptor *nd_desc;
2401         struct acpi_nfit_desc *acpi_desc;
2402         struct device *dev = &pdev->dev;
2403         struct nfit_test *nfit_test;
2404         struct nfit_mem *nfit_mem;
2405         union acpi_object *obj;
2406         int rc;
2407
2408         if (strcmp(dev_name(&pdev->dev), "nfit_test.0") == 0) {
2409                 rc = nfit_ctl_test(&pdev->dev);
2410                 if (rc)
2411                         return rc;
2412         }
2413
2414         nfit_test = to_nfit_test(&pdev->dev);
2415
2416         /* common alloc */
2417         if (nfit_test->num_dcr) {
2418                 int num = nfit_test->num_dcr;
2419
2420                 nfit_test->dimm = devm_kcalloc(dev, num, sizeof(void *),
2421                                 GFP_KERNEL);
2422                 nfit_test->dimm_dma = devm_kcalloc(dev, num, sizeof(dma_addr_t),
2423                                 GFP_KERNEL);
2424                 nfit_test->flush = devm_kcalloc(dev, num, sizeof(void *),
2425                                 GFP_KERNEL);
2426                 nfit_test->flush_dma = devm_kcalloc(dev, num, sizeof(dma_addr_t),
2427                                 GFP_KERNEL);
2428                 nfit_test->label = devm_kcalloc(dev, num, sizeof(void *),
2429                                 GFP_KERNEL);
2430                 nfit_test->label_dma = devm_kcalloc(dev, num,
2431                                 sizeof(dma_addr_t), GFP_KERNEL);
2432                 nfit_test->dcr = devm_kcalloc(dev, num,
2433                                 sizeof(struct nfit_test_dcr *), GFP_KERNEL);
2434                 nfit_test->dcr_dma = devm_kcalloc(dev, num,
2435                                 sizeof(dma_addr_t), GFP_KERNEL);
2436                 nfit_test->smart = devm_kcalloc(dev, num,
2437                                 sizeof(struct nd_intel_smart), GFP_KERNEL);
2438                 nfit_test->smart_threshold = devm_kcalloc(dev, num,
2439                                 sizeof(struct nd_intel_smart_threshold),
2440                                 GFP_KERNEL);
2441                 nfit_test->fw = devm_kcalloc(dev, num,
2442                                 sizeof(struct nfit_test_fw), GFP_KERNEL);
2443                 if (nfit_test->dimm && nfit_test->dimm_dma && nfit_test->label
2444                                 && nfit_test->label_dma && nfit_test->dcr
2445                                 && nfit_test->dcr_dma && nfit_test->flush
2446                                 && nfit_test->flush_dma
2447                                 && nfit_test->fw)
2448                         /* pass */;
2449                 else
2450                         return -ENOMEM;
2451         }
2452
2453         if (nfit_test->num_pm) {
2454                 int num = nfit_test->num_pm;
2455
2456                 nfit_test->spa_set = devm_kcalloc(dev, num, sizeof(void *),
2457                                 GFP_KERNEL);
2458                 nfit_test->spa_set_dma = devm_kcalloc(dev, num,
2459                                 sizeof(dma_addr_t), GFP_KERNEL);
2460                 if (nfit_test->spa_set && nfit_test->spa_set_dma)
2461                         /* pass */;
2462                 else
2463                         return -ENOMEM;
2464         }
2465
2466         /* per-nfit specific alloc */
2467         if (nfit_test->alloc(nfit_test))
2468                 return -ENOMEM;
2469
2470         nfit_test->setup(nfit_test);
2471         acpi_desc = &nfit_test->acpi_desc;
2472         acpi_nfit_desc_init(acpi_desc, &pdev->dev);
2473         acpi_desc->blk_do_io = nfit_test_blk_do_io;
2474         nd_desc = &acpi_desc->nd_desc;
2475         nd_desc->provider_name = NULL;
2476         nd_desc->module = THIS_MODULE;
2477         nd_desc->ndctl = nfit_test_ctl;
2478
2479         rc = acpi_nfit_init(acpi_desc, nfit_test->nfit_buf,
2480                         nfit_test->nfit_size);
2481         if (rc)
2482                 return rc;
2483
2484         rc = devm_add_action_or_reset(&pdev->dev, acpi_nfit_shutdown, acpi_desc);
2485         if (rc)
2486                 return rc;
2487
2488         if (nfit_test->setup != nfit_test0_setup)
2489                 return 0;
2490
2491         nfit_test->setup_hotplug = 1;
2492         nfit_test->setup(nfit_test);
2493
2494         obj = kzalloc(sizeof(*obj), GFP_KERNEL);
2495         if (!obj)
2496                 return -ENOMEM;
2497         obj->type = ACPI_TYPE_BUFFER;
2498         obj->buffer.length = nfit_test->nfit_size;
2499         obj->buffer.pointer = nfit_test->nfit_buf;
2500         *(nfit_test->_fit) = obj;
2501         __acpi_nfit_notify(&pdev->dev, nfit_test, 0x80);
2502
2503         /* associate dimm devices with nfit_mem data for notification testing */
2504         mutex_lock(&acpi_desc->init_mutex);
2505         list_for_each_entry(nfit_mem, &acpi_desc->dimms, list) {
2506                 u32 nfit_handle = __to_nfit_memdev(nfit_mem)->device_handle;
2507                 int i;
2508
2509                 for (i = 0; i < NUM_DCR; i++)
2510                         if (nfit_handle == handle[i])
2511                                 dev_set_drvdata(nfit_test->dimm_dev[i],
2512                                                 nfit_mem);
2513         }
2514         mutex_unlock(&acpi_desc->init_mutex);
2515
2516         return 0;
2517 }
2518
2519 static int nfit_test_remove(struct platform_device *pdev)
2520 {
2521         return 0;
2522 }
2523
2524 static void nfit_test_release(struct device *dev)
2525 {
2526         struct nfit_test *nfit_test = to_nfit_test(dev);
2527
2528         kfree(nfit_test);
2529 }
2530
2531 static const struct platform_device_id nfit_test_id[] = {
2532         { KBUILD_MODNAME },
2533         { },
2534 };
2535
2536 static struct platform_driver nfit_test_driver = {
2537         .probe = nfit_test_probe,
2538         .remove = nfit_test_remove,
2539         .driver = {
2540                 .name = KBUILD_MODNAME,
2541         },
2542         .id_table = nfit_test_id,
2543 };
2544
2545 static __init int nfit_test_init(void)
2546 {
2547         int rc, i;
2548
2549         pmem_test();
2550         libnvdimm_test();
2551         acpi_nfit_test();
2552         device_dax_test();
2553
2554         nfit_test_setup(nfit_test_lookup, nfit_test_evaluate_dsm);
2555
2556         nfit_wq = create_singlethread_workqueue("nfit");
2557         if (!nfit_wq)
2558                 return -ENOMEM;
2559
2560         nfit_test_dimm = class_create(THIS_MODULE, "nfit_test_dimm");
2561         if (IS_ERR(nfit_test_dimm)) {
2562                 rc = PTR_ERR(nfit_test_dimm);
2563                 goto err_register;
2564         }
2565
2566         for (i = 0; i < NUM_NFITS; i++) {
2567                 struct nfit_test *nfit_test;
2568                 struct platform_device *pdev;
2569
2570                 nfit_test = kzalloc(sizeof(*nfit_test), GFP_KERNEL);
2571                 if (!nfit_test) {
2572                         rc = -ENOMEM;
2573                         goto err_register;
2574                 }
2575                 INIT_LIST_HEAD(&nfit_test->resources);
2576                 badrange_init(&nfit_test->badrange);
2577                 switch (i) {
2578                 case 0:
2579                         nfit_test->num_pm = NUM_PM;
2580                         nfit_test->dcr_idx = 0;
2581                         nfit_test->num_dcr = NUM_DCR;
2582                         nfit_test->alloc = nfit_test0_alloc;
2583                         nfit_test->setup = nfit_test0_setup;
2584                         break;
2585                 case 1:
2586                         nfit_test->num_pm = 2;
2587                         nfit_test->dcr_idx = NUM_DCR;
2588                         nfit_test->num_dcr = 2;
2589                         nfit_test->alloc = nfit_test1_alloc;
2590                         nfit_test->setup = nfit_test1_setup;
2591                         break;
2592                 default:
2593                         rc = -EINVAL;
2594                         goto err_register;
2595                 }
2596                 pdev = &nfit_test->pdev;
2597                 pdev->name = KBUILD_MODNAME;
2598                 pdev->id = i;
2599                 pdev->dev.release = nfit_test_release;
2600                 rc = platform_device_register(pdev);
2601                 if (rc) {
2602                         put_device(&pdev->dev);
2603                         goto err_register;
2604                 }
2605                 get_device(&pdev->dev);
2606
2607                 rc = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
2608                 if (rc)
2609                         goto err_register;
2610
2611                 instances[i] = nfit_test;
2612                 INIT_WORK(&nfit_test->work, uc_error_notify);
2613         }
2614
2615         rc = platform_driver_register(&nfit_test_driver);
2616         if (rc)
2617                 goto err_register;
2618         return 0;
2619
2620  err_register:
2621         destroy_workqueue(nfit_wq);
2622         for (i = 0; i < NUM_NFITS; i++)
2623                 if (instances[i])
2624                         platform_device_unregister(&instances[i]->pdev);
2625         nfit_test_teardown();
2626         for (i = 0; i < NUM_NFITS; i++)
2627                 if (instances[i])
2628                         put_device(&instances[i]->pdev.dev);
2629
2630         return rc;
2631 }
2632
2633 static __exit void nfit_test_exit(void)
2634 {
2635         int i;
2636
2637         flush_workqueue(nfit_wq);
2638         destroy_workqueue(nfit_wq);
2639         for (i = 0; i < NUM_NFITS; i++)
2640                 platform_device_unregister(&instances[i]->pdev);
2641         platform_driver_unregister(&nfit_test_driver);
2642         nfit_test_teardown();
2643
2644         for (i = 0; i < NUM_NFITS; i++)
2645                 put_device(&instances[i]->pdev.dev);
2646         class_destroy(nfit_test_dimm);
2647 }
2648
2649 module_init(nfit_test_init);
2650 module_exit(nfit_test_exit);
2651 MODULE_LICENSE("GPL v2");
2652 MODULE_AUTHOR("Intel Corporation");