OSDN Git Service

092d4724fe160d730eebffaee7d975f7eaf1bcb8
[uclinux-h8/linux.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/libnvdimm.h>
17 #include <linux/vmalloc.h>
18 #include <linux/device.h>
19 #include <linux/module.h>
20 #include <linux/ndctl.h>
21 #include <linux/sizes.h>
22 #include <linux/slab.h>
23 #include <nfit.h>
24 #include <nd.h>
25 #include "nfit_test.h"
26
27 /*
28  * Generate an NFIT table to describe the following topology:
29  *
30  * BUS0: Interleaved PMEM regions, and aliasing with BLK regions
31  *
32  *                     (a)                       (b)            DIMM   BLK-REGION
33  *           +----------+--------------+----------+---------+
34  * +------+  |  blk2.0  |     pm0.0    |  blk2.1  |  pm1.0  |    0      region2
35  * | imc0 +--+- - - - - region0 - - - -+----------+         +
36  * +--+---+  |  blk3.0  |     pm0.0    |  blk3.1  |  pm1.0  |    1      region3
37  *    |      +----------+--------------v----------v         v
38  * +--+---+                            |                    |
39  * | cpu0 |                                    region1
40  * +--+---+                            |                    |
41  *    |      +-------------------------^----------^         ^
42  * +--+---+  |                 blk4.0             |  pm1.0  |    2      region4
43  * | imc1 +--+-------------------------+----------+         +
44  * +------+  |                 blk5.0             |  pm1.0  |    3      region5
45  *           +-------------------------+----------+-+-------+
46  *
47  * *) In this layout we have four dimms and two memory controllers in one
48  *    socket.  Each unique interface (BLK or PMEM) to DPA space
49  *    is identified by a region device with a dynamically assigned id.
50  *
51  * *) The first portion of dimm0 and dimm1 are interleaved as REGION0.
52  *    A single PMEM namespace "pm0.0" is created using half of the
53  *    REGION0 SPA-range.  REGION0 spans dimm0 and dimm1.  PMEM namespace
54  *    allocate from from the bottom of a region.  The unallocated
55  *    portion of REGION0 aliases with REGION2 and REGION3.  That
56  *    unallacted capacity is reclaimed as BLK namespaces ("blk2.0" and
57  *    "blk3.0") starting at the base of each DIMM to offset (a) in those
58  *    DIMMs.  "pm0.0", "blk2.0" and "blk3.0" are free-form readable
59  *    names that can be assigned to a namespace.
60  *
61  * *) In the last portion of dimm0 and dimm1 we have an interleaved
62  *    SPA range, REGION1, that spans those two dimms as well as dimm2
63  *    and dimm3.  Some of REGION1 allocated to a PMEM namespace named
64  *    "pm1.0" the rest is reclaimed in 4 BLK namespaces (for each
65  *    dimm in the interleave set), "blk2.1", "blk3.1", "blk4.0", and
66  *    "blk5.0".
67  *
68  * *) The portion of dimm2 and dimm3 that do not participate in the
69  *    REGION1 interleaved SPA range (i.e. the DPA address below offset
70  *    (b) are also included in the "blk4.0" and "blk5.0" namespaces.
71  *    Note, that BLK namespaces need not be contiguous in DPA-space, and
72  *    can consume aliased capacity from multiple interleave sets.
73  *
74  * BUS1: Legacy NVDIMM (single contiguous range)
75  *
76  *  region2
77  * +---------------------+
78  * |---------------------|
79  * ||       pm2.0       ||
80  * |---------------------|
81  * +---------------------+
82  *
83  * *) A NFIT-table may describe a simple system-physical-address range
84  *    with no BLK aliasing.  This type of region may optionally
85  *    reference an NVDIMM.
86  */
87 enum {
88         NUM_PM  = 2,
89         NUM_DCR = 4,
90         NUM_BDW = NUM_DCR,
91         NUM_SPA = NUM_PM + NUM_DCR + NUM_BDW,
92         NUM_MEM = NUM_DCR + NUM_BDW + 2 /* spa0 iset */ + 4 /* spa1 iset */,
93         DIMM_SIZE = SZ_32M,
94         LABEL_SIZE = SZ_128K,
95         SPA0_SIZE = DIMM_SIZE,
96         SPA1_SIZE = DIMM_SIZE*2,
97         SPA2_SIZE = DIMM_SIZE,
98         BDW_SIZE = 64 << 8,
99         DCR_SIZE = 12,
100         NUM_NFITS = 2, /* permit testing multiple NFITs per system */
101 };
102
103 struct nfit_test_dcr {
104         __le64 bdw_addr;
105         __le32 bdw_status;
106         __u8 aperature[BDW_SIZE];
107 };
108
109 #define NFIT_DIMM_HANDLE(node, socket, imc, chan, dimm) \
110         (((node & 0xfff) << 16) | ((socket & 0xf) << 12) \
111          | ((imc & 0xf) << 8) | ((chan & 0xf) << 4) | (dimm & 0xf))
112
113 static u32 handle[NUM_DCR] = {
114         [0] = NFIT_DIMM_HANDLE(0, 0, 0, 0, 0),
115         [1] = NFIT_DIMM_HANDLE(0, 0, 0, 0, 1),
116         [2] = NFIT_DIMM_HANDLE(0, 0, 1, 0, 0),
117         [3] = NFIT_DIMM_HANDLE(0, 0, 1, 0, 1),
118 };
119
120 struct nfit_test {
121         struct acpi_nfit_desc acpi_desc;
122         struct platform_device pdev;
123         struct list_head resources;
124         void *nfit_buf;
125         dma_addr_t nfit_dma;
126         size_t nfit_size;
127         int num_dcr;
128         int num_pm;
129         void **dimm;
130         dma_addr_t *dimm_dma;
131         void **label;
132         dma_addr_t *label_dma;
133         void **spa_set;
134         dma_addr_t *spa_set_dma;
135         struct nfit_test_dcr **dcr;
136         dma_addr_t *dcr_dma;
137         int (*alloc)(struct nfit_test *t);
138         void (*setup)(struct nfit_test *t);
139 };
140
141 static struct nfit_test *to_nfit_test(struct device *dev)
142 {
143         struct platform_device *pdev = to_platform_device(dev);
144
145         return container_of(pdev, struct nfit_test, pdev);
146 }
147
148 static int nfit_test_ctl(struct nvdimm_bus_descriptor *nd_desc,
149                 struct nvdimm *nvdimm, unsigned int cmd, void *buf,
150                 unsigned int buf_len)
151 {
152         struct acpi_nfit_desc *acpi_desc = to_acpi_desc(nd_desc);
153         struct nfit_test *t = container_of(acpi_desc, typeof(*t), acpi_desc);
154         struct nfit_mem *nfit_mem = nvdimm_provider_data(nvdimm);
155         int i, rc;
156
157         if (!nfit_mem || !test_bit(cmd, &nfit_mem->dsm_mask))
158                 return -ENOTTY;
159
160         /* lookup label space for the given dimm */
161         for (i = 0; i < ARRAY_SIZE(handle); i++)
162                 if (__to_nfit_memdev(nfit_mem)->device_handle == handle[i])
163                         break;
164         if (i >= ARRAY_SIZE(handle))
165                 return -ENXIO;
166
167         switch (cmd) {
168         case ND_CMD_GET_CONFIG_SIZE: {
169                 struct nd_cmd_get_config_size *nd_cmd = buf;
170
171                 if (buf_len < sizeof(*nd_cmd))
172                         return -EINVAL;
173                 nd_cmd->status = 0;
174                 nd_cmd->config_size = LABEL_SIZE;
175                 nd_cmd->max_xfer = SZ_4K;
176                 rc = 0;
177                 break;
178         }
179         case ND_CMD_GET_CONFIG_DATA: {
180                 struct nd_cmd_get_config_data_hdr *nd_cmd = buf;
181                 unsigned int len, offset = nd_cmd->in_offset;
182
183                 if (buf_len < sizeof(*nd_cmd))
184                         return -EINVAL;
185                 if (offset >= LABEL_SIZE)
186                         return -EINVAL;
187                 if (nd_cmd->in_length + sizeof(*nd_cmd) > buf_len)
188                         return -EINVAL;
189
190                 nd_cmd->status = 0;
191                 len = min(nd_cmd->in_length, LABEL_SIZE - offset);
192                 memcpy(nd_cmd->out_buf, t->label[i] + offset, len);
193                 rc = buf_len - sizeof(*nd_cmd) - len;
194                 break;
195         }
196         case ND_CMD_SET_CONFIG_DATA: {
197                 struct nd_cmd_set_config_hdr *nd_cmd = buf;
198                 unsigned int len, offset = nd_cmd->in_offset;
199                 u32 *status;
200
201                 if (buf_len < sizeof(*nd_cmd))
202                         return -EINVAL;
203                 if (offset >= LABEL_SIZE)
204                         return -EINVAL;
205                 if (nd_cmd->in_length + sizeof(*nd_cmd) + 4 > buf_len)
206                         return -EINVAL;
207
208                 status = buf + nd_cmd->in_length + sizeof(*nd_cmd);
209                 *status = 0;
210                 len = min(nd_cmd->in_length, LABEL_SIZE - offset);
211                 memcpy(t->label[i] + offset, nd_cmd->in_buf, len);
212                 rc = buf_len - sizeof(*nd_cmd) - (len + 4);
213                 break;
214         }
215         default:
216                 return -ENOTTY;
217         }
218
219         return rc;
220 }
221
222 static DEFINE_SPINLOCK(nfit_test_lock);
223 static struct nfit_test *instances[NUM_NFITS];
224
225 static void release_nfit_res(void *data)
226 {
227         struct nfit_test_resource *nfit_res = data;
228         struct resource *res = nfit_res->res;
229
230         spin_lock(&nfit_test_lock);
231         list_del(&nfit_res->list);
232         spin_unlock(&nfit_test_lock);
233
234         if (is_vmalloc_addr(nfit_res->buf))
235                 vfree(nfit_res->buf);
236         else
237                 dma_free_coherent(nfit_res->dev, resource_size(res),
238                                 nfit_res->buf, res->start);
239         kfree(res);
240         kfree(nfit_res);
241 }
242
243 static void *__test_alloc(struct nfit_test *t, size_t size, dma_addr_t *dma,
244                 void *buf)
245 {
246         struct device *dev = &t->pdev.dev;
247         struct resource *res = kzalloc(sizeof(*res) * 2, GFP_KERNEL);
248         struct nfit_test_resource *nfit_res = kzalloc(sizeof(*nfit_res),
249                         GFP_KERNEL);
250         int rc;
251
252         if (!res || !buf || !nfit_res)
253                 goto err;
254         rc = devm_add_action(dev, release_nfit_res, nfit_res);
255         if (rc)
256                 goto err;
257         INIT_LIST_HEAD(&nfit_res->list);
258         memset(buf, 0, size);
259         nfit_res->dev = dev;
260         nfit_res->buf = buf;
261         nfit_res->res = res;
262         res->start = *dma;
263         res->end = *dma + size - 1;
264         res->name = "NFIT";
265         spin_lock(&nfit_test_lock);
266         list_add(&nfit_res->list, &t->resources);
267         spin_unlock(&nfit_test_lock);
268
269         return nfit_res->buf;
270  err:
271         if (buf && !is_vmalloc_addr(buf))
272                 dma_free_coherent(dev, size, buf, *dma);
273         else if (buf)
274                 vfree(buf);
275         kfree(res);
276         kfree(nfit_res);
277         return NULL;
278 }
279
280 static void *test_alloc(struct nfit_test *t, size_t size, dma_addr_t *dma)
281 {
282         void *buf = vmalloc(size);
283
284         *dma = (unsigned long) buf;
285         return __test_alloc(t, size, dma, buf);
286 }
287
288 static void *test_alloc_coherent(struct nfit_test *t, size_t size,
289                 dma_addr_t *dma)
290 {
291         struct device *dev = &t->pdev.dev;
292         void *buf = dma_alloc_coherent(dev, size, dma, GFP_KERNEL);
293
294         return __test_alloc(t, size, dma, buf);
295 }
296
297 static struct nfit_test_resource *nfit_test_lookup(resource_size_t addr)
298 {
299         int i;
300
301         for (i = 0; i < ARRAY_SIZE(instances); i++) {
302                 struct nfit_test_resource *n, *nfit_res = NULL;
303                 struct nfit_test *t = instances[i];
304
305                 if (!t)
306                         continue;
307                 spin_lock(&nfit_test_lock);
308                 list_for_each_entry(n, &t->resources, list) {
309                         if (addr >= n->res->start && (addr < n->res->start
310                                                 + resource_size(n->res))) {
311                                 nfit_res = n;
312                                 break;
313                         } else if (addr >= (unsigned long) n->buf
314                                         && (addr < (unsigned long) n->buf
315                                                 + resource_size(n->res))) {
316                                 nfit_res = n;
317                                 break;
318                         }
319                 }
320                 spin_unlock(&nfit_test_lock);
321                 if (nfit_res)
322                         return nfit_res;
323         }
324
325         return NULL;
326 }
327
328 static int nfit_test0_alloc(struct nfit_test *t)
329 {
330         size_t nfit_size = sizeof(struct acpi_table_nfit)
331                         + sizeof(struct acpi_nfit_system_address) * NUM_SPA
332                         + sizeof(struct acpi_nfit_memory_map) * NUM_MEM
333                         + sizeof(struct acpi_nfit_control_region) * NUM_DCR
334                         + sizeof(struct acpi_nfit_data_region) * NUM_BDW;
335         int i;
336
337         t->nfit_buf = test_alloc(t, nfit_size, &t->nfit_dma);
338         if (!t->nfit_buf)
339                 return -ENOMEM;
340         t->nfit_size = nfit_size;
341
342         t->spa_set[0] = test_alloc_coherent(t, SPA0_SIZE, &t->spa_set_dma[0]);
343         if (!t->spa_set[0])
344                 return -ENOMEM;
345
346         t->spa_set[1] = test_alloc_coherent(t, SPA1_SIZE, &t->spa_set_dma[1]);
347         if (!t->spa_set[1])
348                 return -ENOMEM;
349
350         for (i = 0; i < NUM_DCR; i++) {
351                 t->dimm[i] = test_alloc(t, DIMM_SIZE, &t->dimm_dma[i]);
352                 if (!t->dimm[i])
353                         return -ENOMEM;
354
355                 t->label[i] = test_alloc(t, LABEL_SIZE, &t->label_dma[i]);
356                 if (!t->label[i])
357                         return -ENOMEM;
358                 sprintf(t->label[i], "label%d", i);
359         }
360
361         for (i = 0; i < NUM_DCR; i++) {
362                 t->dcr[i] = test_alloc(t, LABEL_SIZE, &t->dcr_dma[i]);
363                 if (!t->dcr[i])
364                         return -ENOMEM;
365         }
366
367         return 0;
368 }
369
370 static int nfit_test1_alloc(struct nfit_test *t)
371 {
372         size_t nfit_size = sizeof(struct acpi_table_nfit)
373                 + sizeof(struct acpi_nfit_system_address)
374                 + sizeof(struct acpi_nfit_memory_map)
375                 + sizeof(struct acpi_nfit_control_region);
376
377         t->nfit_buf = test_alloc(t, nfit_size, &t->nfit_dma);
378         if (!t->nfit_buf)
379                 return -ENOMEM;
380         t->nfit_size = nfit_size;
381
382         t->spa_set[0] = test_alloc_coherent(t, SPA2_SIZE, &t->spa_set_dma[0]);
383         if (!t->spa_set[0])
384                 return -ENOMEM;
385
386         return 0;
387 }
388
389 static void nfit_test_init_header(struct acpi_table_nfit *nfit, size_t size)
390 {
391         memcpy(nfit->header.signature, ACPI_SIG_NFIT, 4);
392         nfit->header.length = size;
393         nfit->header.revision = 1;
394         memcpy(nfit->header.oem_id, "LIBND", 6);
395         memcpy(nfit->header.oem_table_id, "TEST", 5);
396         nfit->header.oem_revision = 1;
397         memcpy(nfit->header.asl_compiler_id, "TST", 4);
398         nfit->header.asl_compiler_revision = 1;
399 }
400
401 static void nfit_test0_setup(struct nfit_test *t)
402 {
403         struct nvdimm_bus_descriptor *nd_desc;
404         struct acpi_nfit_desc *acpi_desc;
405         struct acpi_nfit_memory_map *memdev;
406         void *nfit_buf = t->nfit_buf;
407         size_t size = t->nfit_size;
408         struct acpi_nfit_system_address *spa;
409         struct acpi_nfit_control_region *dcr;
410         struct acpi_nfit_data_region *bdw;
411         unsigned int offset;
412
413         nfit_test_init_header(nfit_buf, size);
414
415         /*
416          * spa0 (interleave first half of dimm0 and dimm1, note storage
417          * does not actually alias the related block-data-window
418          * regions)
419          */
420         spa = nfit_buf + sizeof(struct acpi_table_nfit);
421         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
422         spa->header.length = sizeof(*spa);
423         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_PM), 16);
424         spa->range_index = 0+1;
425         spa->address = t->spa_set_dma[0];
426         spa->length = SPA0_SIZE;
427
428         /*
429          * spa1 (interleave last half of the 4 DIMMS, note storage
430          * does not actually alias the related block-data-window
431          * regions)
432          */
433         spa = nfit_buf + sizeof(struct acpi_table_nfit) + sizeof(*spa);
434         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
435         spa->header.length = sizeof(*spa);
436         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_PM), 16);
437         spa->range_index = 1+1;
438         spa->address = t->spa_set_dma[1];
439         spa->length = SPA1_SIZE;
440
441         /* spa2 (dcr0) dimm0 */
442         spa = nfit_buf + sizeof(struct acpi_table_nfit) + sizeof(*spa) * 2;
443         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
444         spa->header.length = sizeof(*spa);
445         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_DCR), 16);
446         spa->range_index = 2+1;
447         spa->address = t->dcr_dma[0];
448         spa->length = DCR_SIZE;
449
450         /* spa3 (dcr1) dimm1 */
451         spa = nfit_buf + sizeof(struct acpi_table_nfit) + sizeof(*spa) * 3;
452         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
453         spa->header.length = sizeof(*spa);
454         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_DCR), 16);
455         spa->range_index = 3+1;
456         spa->address = t->dcr_dma[1];
457         spa->length = DCR_SIZE;
458
459         /* spa4 (dcr2) dimm2 */
460         spa = nfit_buf + sizeof(struct acpi_table_nfit) + sizeof(*spa) * 4;
461         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
462         spa->header.length = sizeof(*spa);
463         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_DCR), 16);
464         spa->range_index = 4+1;
465         spa->address = t->dcr_dma[2];
466         spa->length = DCR_SIZE;
467
468         /* spa5 (dcr3) dimm3 */
469         spa = nfit_buf + sizeof(struct acpi_table_nfit) + sizeof(*spa) * 5;
470         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
471         spa->header.length = sizeof(*spa);
472         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_DCR), 16);
473         spa->range_index = 5+1;
474         spa->address = t->dcr_dma[3];
475         spa->length = DCR_SIZE;
476
477         /* spa6 (bdw for dcr0) dimm0 */
478         spa = nfit_buf + sizeof(struct acpi_table_nfit) + sizeof(*spa) * 6;
479         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
480         spa->header.length = sizeof(*spa);
481         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_BDW), 16);
482         spa->range_index = 6+1;
483         spa->address = t->dimm_dma[0];
484         spa->length = DIMM_SIZE;
485
486         /* spa7 (bdw for dcr1) dimm1 */
487         spa = nfit_buf + sizeof(struct acpi_table_nfit) + sizeof(*spa) * 7;
488         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
489         spa->header.length = sizeof(*spa);
490         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_BDW), 16);
491         spa->range_index = 7+1;
492         spa->address = t->dimm_dma[1];
493         spa->length = DIMM_SIZE;
494
495         /* spa8 (bdw for dcr2) dimm2 */
496         spa = nfit_buf + sizeof(struct acpi_table_nfit) + sizeof(*spa) * 8;
497         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
498         spa->header.length = sizeof(*spa);
499         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_BDW), 16);
500         spa->range_index = 8+1;
501         spa->address = t->dimm_dma[2];
502         spa->length = DIMM_SIZE;
503
504         /* spa9 (bdw for dcr3) dimm3 */
505         spa = nfit_buf + sizeof(struct acpi_table_nfit) + sizeof(*spa) * 9;
506         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
507         spa->header.length = sizeof(*spa);
508         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_BDW), 16);
509         spa->range_index = 9+1;
510         spa->address = t->dimm_dma[3];
511         spa->length = DIMM_SIZE;
512
513         offset = sizeof(struct acpi_table_nfit) + sizeof(*spa) * 10;
514         /* mem-region0 (spa0, dimm0) */
515         memdev = nfit_buf + offset;
516         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
517         memdev->header.length = sizeof(*memdev);
518         memdev->device_handle = handle[0];
519         memdev->physical_id = 0;
520         memdev->region_id = 0;
521         memdev->range_index = 0+1;
522         memdev->region_index = 0+1;
523         memdev->region_size = SPA0_SIZE/2;
524         memdev->region_offset = t->spa_set_dma[0];
525         memdev->address = 0;
526         memdev->interleave_index = 0;
527         memdev->interleave_ways = 2;
528
529         /* mem-region1 (spa0, dimm1) */
530         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map);
531         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
532         memdev->header.length = sizeof(*memdev);
533         memdev->device_handle = handle[1];
534         memdev->physical_id = 1;
535         memdev->region_id = 0;
536         memdev->range_index = 0+1;
537         memdev->region_index = 1+1;
538         memdev->region_size = SPA0_SIZE/2;
539         memdev->region_offset = t->spa_set_dma[0] + SPA0_SIZE/2;
540         memdev->address = 0;
541         memdev->interleave_index = 0;
542         memdev->interleave_ways = 2;
543
544         /* mem-region2 (spa1, dimm0) */
545         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 2;
546         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
547         memdev->header.length = sizeof(*memdev);
548         memdev->device_handle = handle[0];
549         memdev->physical_id = 0;
550         memdev->region_id = 1;
551         memdev->range_index = 1+1;
552         memdev->region_index = 0+1;
553         memdev->region_size = SPA1_SIZE/4;
554         memdev->region_offset = t->spa_set_dma[1];
555         memdev->address = SPA0_SIZE/2;
556         memdev->interleave_index = 0;
557         memdev->interleave_ways = 4;
558
559         /* mem-region3 (spa1, dimm1) */
560         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 3;
561         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
562         memdev->header.length = sizeof(*memdev);
563         memdev->device_handle = handle[1];
564         memdev->physical_id = 1;
565         memdev->region_id = 1;
566         memdev->range_index = 1+1;
567         memdev->region_index = 1+1;
568         memdev->region_size = SPA1_SIZE/4;
569         memdev->region_offset = t->spa_set_dma[1] + SPA1_SIZE/4;
570         memdev->address = SPA0_SIZE/2;
571         memdev->interleave_index = 0;
572         memdev->interleave_ways = 4;
573
574         /* mem-region4 (spa1, dimm2) */
575         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 4;
576         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
577         memdev->header.length = sizeof(*memdev);
578         memdev->device_handle = handle[2];
579         memdev->physical_id = 2;
580         memdev->region_id = 0;
581         memdev->range_index = 1+1;
582         memdev->region_index = 2+1;
583         memdev->region_size = SPA1_SIZE/4;
584         memdev->region_offset = t->spa_set_dma[1] + 2*SPA1_SIZE/4;
585         memdev->address = SPA0_SIZE/2;
586         memdev->interleave_index = 0;
587         memdev->interleave_ways = 4;
588
589         /* mem-region5 (spa1, dimm3) */
590         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 5;
591         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
592         memdev->header.length = sizeof(*memdev);
593         memdev->device_handle = handle[3];
594         memdev->physical_id = 3;
595         memdev->region_id = 0;
596         memdev->range_index = 1+1;
597         memdev->region_index = 3+1;
598         memdev->region_size = SPA1_SIZE/4;
599         memdev->region_offset = t->spa_set_dma[1] + 3*SPA1_SIZE/4;
600         memdev->address = SPA0_SIZE/2;
601         memdev->interleave_index = 0;
602         memdev->interleave_ways = 4;
603
604         /* mem-region6 (spa/dcr0, dimm0) */
605         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 6;
606         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
607         memdev->header.length = sizeof(*memdev);
608         memdev->device_handle = handle[0];
609         memdev->physical_id = 0;
610         memdev->region_id = 0;
611         memdev->range_index = 2+1;
612         memdev->region_index = 0+1;
613         memdev->region_size = 0;
614         memdev->region_offset = 0;
615         memdev->address = 0;
616         memdev->interleave_index = 0;
617         memdev->interleave_ways = 1;
618
619         /* mem-region7 (spa/dcr1, dimm1) */
620         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 7;
621         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
622         memdev->header.length = sizeof(*memdev);
623         memdev->device_handle = handle[1];
624         memdev->physical_id = 1;
625         memdev->region_id = 0;
626         memdev->range_index = 3+1;
627         memdev->region_index = 1+1;
628         memdev->region_size = 0;
629         memdev->region_offset = 0;
630         memdev->address = 0;
631         memdev->interleave_index = 0;
632         memdev->interleave_ways = 1;
633
634         /* mem-region8 (spa/dcr2, dimm2) */
635         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 8;
636         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
637         memdev->header.length = sizeof(*memdev);
638         memdev->device_handle = handle[2];
639         memdev->physical_id = 2;
640         memdev->region_id = 0;
641         memdev->range_index = 4+1;
642         memdev->region_index = 2+1;
643         memdev->region_size = 0;
644         memdev->region_offset = 0;
645         memdev->address = 0;
646         memdev->interleave_index = 0;
647         memdev->interleave_ways = 1;
648
649         /* mem-region9 (spa/dcr3, dimm3) */
650         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 9;
651         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
652         memdev->header.length = sizeof(*memdev);
653         memdev->device_handle = handle[3];
654         memdev->physical_id = 3;
655         memdev->region_id = 0;
656         memdev->range_index = 5+1;
657         memdev->region_index = 3+1;
658         memdev->region_size = 0;
659         memdev->region_offset = 0;
660         memdev->address = 0;
661         memdev->interleave_index = 0;
662         memdev->interleave_ways = 1;
663
664         /* mem-region10 (spa/bdw0, dimm0) */
665         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 10;
666         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
667         memdev->header.length = sizeof(*memdev);
668         memdev->device_handle = handle[0];
669         memdev->physical_id = 0;
670         memdev->region_id = 0;
671         memdev->range_index = 6+1;
672         memdev->region_index = 0+1;
673         memdev->region_size = 0;
674         memdev->region_offset = 0;
675         memdev->address = 0;
676         memdev->interleave_index = 0;
677         memdev->interleave_ways = 1;
678
679         /* mem-region11 (spa/bdw1, dimm1) */
680         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 11;
681         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
682         memdev->header.length = sizeof(*memdev);
683         memdev->device_handle = handle[1];
684         memdev->physical_id = 1;
685         memdev->region_id = 0;
686         memdev->range_index = 7+1;
687         memdev->region_index = 1+1;
688         memdev->region_size = 0;
689         memdev->region_offset = 0;
690         memdev->address = 0;
691         memdev->interleave_index = 0;
692         memdev->interleave_ways = 1;
693
694         /* mem-region12 (spa/bdw2, dimm2) */
695         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 12;
696         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
697         memdev->header.length = sizeof(*memdev);
698         memdev->device_handle = handle[2];
699         memdev->physical_id = 2;
700         memdev->region_id = 0;
701         memdev->range_index = 8+1;
702         memdev->region_index = 2+1;
703         memdev->region_size = 0;
704         memdev->region_offset = 0;
705         memdev->address = 0;
706         memdev->interleave_index = 0;
707         memdev->interleave_ways = 1;
708
709         /* mem-region13 (spa/dcr3, dimm3) */
710         memdev = nfit_buf + offset + sizeof(struct acpi_nfit_memory_map) * 13;
711         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
712         memdev->header.length = sizeof(*memdev);
713         memdev->device_handle = handle[3];
714         memdev->physical_id = 3;
715         memdev->region_id = 0;
716         memdev->range_index = 9+1;
717         memdev->region_index = 3+1;
718         memdev->region_size = 0;
719         memdev->region_offset = 0;
720         memdev->address = 0;
721         memdev->interleave_index = 0;
722         memdev->interleave_ways = 1;
723
724         offset = offset + sizeof(struct acpi_nfit_memory_map) * 14;
725         /* dcr-descriptor0 */
726         dcr = nfit_buf + offset;
727         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
728         dcr->header.length = sizeof(struct acpi_nfit_control_region);
729         dcr->region_index = 0+1;
730         dcr->vendor_id = 0xabcd;
731         dcr->device_id = 0;
732         dcr->revision_id = 1;
733         dcr->serial_number = ~handle[0];
734         dcr->windows = 1;
735         dcr->window_size = DCR_SIZE;
736         dcr->command_offset = 0;
737         dcr->command_size = 8;
738         dcr->status_offset = 8;
739         dcr->status_size = 4;
740
741         /* dcr-descriptor1 */
742         dcr = nfit_buf + offset + sizeof(struct acpi_nfit_control_region);
743         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
744         dcr->header.length = sizeof(struct acpi_nfit_control_region);
745         dcr->region_index = 1+1;
746         dcr->vendor_id = 0xabcd;
747         dcr->device_id = 0;
748         dcr->revision_id = 1;
749         dcr->serial_number = ~handle[1];
750         dcr->windows = 1;
751         dcr->window_size = DCR_SIZE;
752         dcr->command_offset = 0;
753         dcr->command_size = 8;
754         dcr->status_offset = 8;
755         dcr->status_size = 4;
756
757         /* dcr-descriptor2 */
758         dcr = nfit_buf + offset + sizeof(struct acpi_nfit_control_region) * 2;
759         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
760         dcr->header.length = sizeof(struct acpi_nfit_control_region);
761         dcr->region_index = 2+1;
762         dcr->vendor_id = 0xabcd;
763         dcr->device_id = 0;
764         dcr->revision_id = 1;
765         dcr->serial_number = ~handle[2];
766         dcr->windows = 1;
767         dcr->window_size = DCR_SIZE;
768         dcr->command_offset = 0;
769         dcr->command_size = 8;
770         dcr->status_offset = 8;
771         dcr->status_size = 4;
772
773         /* dcr-descriptor3 */
774         dcr = nfit_buf + offset + sizeof(struct acpi_nfit_control_region) * 3;
775         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
776         dcr->header.length = sizeof(struct acpi_nfit_control_region);
777         dcr->region_index = 3+1;
778         dcr->vendor_id = 0xabcd;
779         dcr->device_id = 0;
780         dcr->revision_id = 1;
781         dcr->serial_number = ~handle[3];
782         dcr->windows = 1;
783         dcr->window_size = DCR_SIZE;
784         dcr->command_offset = 0;
785         dcr->command_size = 8;
786         dcr->status_offset = 8;
787         dcr->status_size = 4;
788
789         offset = offset + sizeof(struct acpi_nfit_control_region) * 4;
790         /* bdw0 (spa/dcr0, dimm0) */
791         bdw = nfit_buf + offset;
792         bdw->header.type = ACPI_NFIT_TYPE_DATA_REGION;
793         bdw->header.length = sizeof(struct acpi_nfit_data_region);
794         bdw->region_index = 0+1;
795         bdw->windows = 1;
796         bdw->offset = 0;
797         bdw->size = BDW_SIZE;
798         bdw->capacity = DIMM_SIZE;
799         bdw->start_address = 0;
800
801         /* bdw1 (spa/dcr1, dimm1) */
802         bdw = nfit_buf + offset + sizeof(struct acpi_nfit_data_region);
803         bdw->header.type = ACPI_NFIT_TYPE_DATA_REGION;
804         bdw->header.length = sizeof(struct acpi_nfit_data_region);
805         bdw->region_index = 1+1;
806         bdw->windows = 1;
807         bdw->offset = 0;
808         bdw->size = BDW_SIZE;
809         bdw->capacity = DIMM_SIZE;
810         bdw->start_address = 0;
811
812         /* bdw2 (spa/dcr2, dimm2) */
813         bdw = nfit_buf + offset + sizeof(struct acpi_nfit_data_region) * 2;
814         bdw->header.type = ACPI_NFIT_TYPE_DATA_REGION;
815         bdw->header.length = sizeof(struct acpi_nfit_data_region);
816         bdw->region_index = 2+1;
817         bdw->windows = 1;
818         bdw->offset = 0;
819         bdw->size = BDW_SIZE;
820         bdw->capacity = DIMM_SIZE;
821         bdw->start_address = 0;
822
823         /* bdw3 (spa/dcr3, dimm3) */
824         bdw = nfit_buf + offset + sizeof(struct acpi_nfit_data_region) * 3;
825         bdw->header.type = ACPI_NFIT_TYPE_DATA_REGION;
826         bdw->header.length = sizeof(struct acpi_nfit_data_region);
827         bdw->region_index = 3+1;
828         bdw->windows = 1;
829         bdw->offset = 0;
830         bdw->size = BDW_SIZE;
831         bdw->capacity = DIMM_SIZE;
832         bdw->start_address = 0;
833
834         acpi_desc = &t->acpi_desc;
835         set_bit(ND_CMD_GET_CONFIG_SIZE, &acpi_desc->dimm_dsm_force_en);
836         set_bit(ND_CMD_GET_CONFIG_DATA, &acpi_desc->dimm_dsm_force_en);
837         set_bit(ND_CMD_SET_CONFIG_DATA, &acpi_desc->dimm_dsm_force_en);
838         nd_desc = &acpi_desc->nd_desc;
839         nd_desc->ndctl = nfit_test_ctl;
840 }
841
842 static void nfit_test1_setup(struct nfit_test *t)
843 {
844         size_t size = t->nfit_size, offset;
845         void *nfit_buf = t->nfit_buf;
846         struct acpi_nfit_memory_map *memdev;
847         struct acpi_nfit_control_region *dcr;
848         struct acpi_nfit_system_address *spa;
849
850         nfit_test_init_header(nfit_buf, size);
851
852         offset = sizeof(struct acpi_table_nfit);
853         /* spa0 (flat range with no bdw aliasing) */
854         spa = nfit_buf + offset;
855         spa->header.type = ACPI_NFIT_TYPE_SYSTEM_ADDRESS;
856         spa->header.length = sizeof(*spa);
857         memcpy(spa->range_guid, to_nfit_uuid(NFIT_SPA_PM), 16);
858         spa->range_index = 0+1;
859         spa->address = t->spa_set_dma[0];
860         spa->length = SPA2_SIZE;
861
862         offset += sizeof(*spa);
863         /* mem-region0 (spa0, dimm0) */
864         memdev = nfit_buf + offset;
865         memdev->header.type = ACPI_NFIT_TYPE_MEMORY_MAP;
866         memdev->header.length = sizeof(*memdev);
867         memdev->device_handle = 0;
868         memdev->physical_id = 0;
869         memdev->region_id = 0;
870         memdev->range_index = 0+1;
871         memdev->region_index = 0+1;
872         memdev->region_size = SPA2_SIZE;
873         memdev->region_offset = 0;
874         memdev->address = 0;
875         memdev->interleave_index = 0;
876         memdev->interleave_ways = 1;
877         memdev->flags = ACPI_NFIT_MEM_SAVE_FAILED | ACPI_NFIT_MEM_RESTORE_FAILED
878                 | ACPI_NFIT_MEM_FLUSH_FAILED | ACPI_NFIT_MEM_HEALTH_OBSERVED
879                 | ACPI_NFIT_MEM_ARMED;
880
881         offset += sizeof(*memdev);
882         /* dcr-descriptor0 */
883         dcr = nfit_buf + offset;
884         dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
885         dcr->header.length = sizeof(struct acpi_nfit_control_region);
886         dcr->region_index = 0+1;
887         dcr->vendor_id = 0xabcd;
888         dcr->device_id = 0;
889         dcr->revision_id = 1;
890         dcr->serial_number = ~0;
891         dcr->code = 0x201;
892         dcr->windows = 0;
893         dcr->window_size = 0;
894         dcr->command_offset = 0;
895         dcr->command_size = 0;
896         dcr->status_offset = 0;
897         dcr->status_size = 0;
898 }
899
900 static int nfit_test_blk_do_io(struct nd_blk_region *ndbr, resource_size_t dpa,
901                 void *iobuf, u64 len, int rw)
902 {
903         struct nfit_blk *nfit_blk = ndbr->blk_provider_data;
904         struct nfit_blk_mmio *mmio = &nfit_blk->mmio[BDW];
905         struct nd_region *nd_region = &ndbr->nd_region;
906         unsigned int lane;
907
908         lane = nd_region_acquire_lane(nd_region);
909         if (rw)
910                 memcpy(mmio->base + dpa, iobuf, len);
911         else
912                 memcpy(iobuf, mmio->base + dpa, len);
913         nd_region_release_lane(nd_region, lane);
914
915         return 0;
916 }
917
918 static int nfit_test_probe(struct platform_device *pdev)
919 {
920         struct nvdimm_bus_descriptor *nd_desc;
921         struct acpi_nfit_desc *acpi_desc;
922         struct device *dev = &pdev->dev;
923         struct nfit_test *nfit_test;
924         int rc;
925
926         nfit_test = to_nfit_test(&pdev->dev);
927
928         /* common alloc */
929         if (nfit_test->num_dcr) {
930                 int num = nfit_test->num_dcr;
931
932                 nfit_test->dimm = devm_kcalloc(dev, num, sizeof(void *),
933                                 GFP_KERNEL);
934                 nfit_test->dimm_dma = devm_kcalloc(dev, num, sizeof(dma_addr_t),
935                                 GFP_KERNEL);
936                 nfit_test->label = devm_kcalloc(dev, num, sizeof(void *),
937                                 GFP_KERNEL);
938                 nfit_test->label_dma = devm_kcalloc(dev, num,
939                                 sizeof(dma_addr_t), GFP_KERNEL);
940                 nfit_test->dcr = devm_kcalloc(dev, num,
941                                 sizeof(struct nfit_test_dcr *), GFP_KERNEL);
942                 nfit_test->dcr_dma = devm_kcalloc(dev, num,
943                                 sizeof(dma_addr_t), GFP_KERNEL);
944                 if (nfit_test->dimm && nfit_test->dimm_dma && nfit_test->label
945                                 && nfit_test->label_dma && nfit_test->dcr
946                                 && nfit_test->dcr_dma)
947                         /* pass */;
948                 else
949                         return -ENOMEM;
950         }
951
952         if (nfit_test->num_pm) {
953                 int num = nfit_test->num_pm;
954
955                 nfit_test->spa_set = devm_kcalloc(dev, num, sizeof(void *),
956                                 GFP_KERNEL);
957                 nfit_test->spa_set_dma = devm_kcalloc(dev, num,
958                                 sizeof(dma_addr_t), GFP_KERNEL);
959                 if (nfit_test->spa_set && nfit_test->spa_set_dma)
960                         /* pass */;
961                 else
962                         return -ENOMEM;
963         }
964
965         /* per-nfit specific alloc */
966         if (nfit_test->alloc(nfit_test))
967                 return -ENOMEM;
968
969         nfit_test->setup(nfit_test);
970         acpi_desc = &nfit_test->acpi_desc;
971         acpi_desc->dev = &pdev->dev;
972         acpi_desc->nfit = nfit_test->nfit_buf;
973         acpi_desc->blk_do_io = nfit_test_blk_do_io;
974         nd_desc = &acpi_desc->nd_desc;
975         nd_desc->attr_groups = acpi_nfit_attribute_groups;
976         acpi_desc->nvdimm_bus = nvdimm_bus_register(&pdev->dev, nd_desc);
977         if (!acpi_desc->nvdimm_bus)
978                 return -ENXIO;
979
980         rc = acpi_nfit_init(acpi_desc, nfit_test->nfit_size);
981         if (rc) {
982                 nvdimm_bus_unregister(acpi_desc->nvdimm_bus);
983                 return rc;
984         }
985
986         return 0;
987 }
988
989 static int nfit_test_remove(struct platform_device *pdev)
990 {
991         struct nfit_test *nfit_test = to_nfit_test(&pdev->dev);
992         struct acpi_nfit_desc *acpi_desc = &nfit_test->acpi_desc;
993
994         nvdimm_bus_unregister(acpi_desc->nvdimm_bus);
995
996         return 0;
997 }
998
999 static void nfit_test_release(struct device *dev)
1000 {
1001         struct nfit_test *nfit_test = to_nfit_test(dev);
1002
1003         kfree(nfit_test);
1004 }
1005
1006 static const struct platform_device_id nfit_test_id[] = {
1007         { KBUILD_MODNAME },
1008         { },
1009 };
1010
1011 static struct platform_driver nfit_test_driver = {
1012         .probe = nfit_test_probe,
1013         .remove = nfit_test_remove,
1014         .driver = {
1015                 .name = KBUILD_MODNAME,
1016         },
1017         .id_table = nfit_test_id,
1018 };
1019
1020 #ifdef CONFIG_CMA_SIZE_MBYTES
1021 #define CMA_SIZE_MBYTES CONFIG_CMA_SIZE_MBYTES
1022 #else
1023 #define CMA_SIZE_MBYTES 0
1024 #endif
1025
1026 static __init int nfit_test_init(void)
1027 {
1028         int rc, i;
1029
1030         nfit_test_setup(nfit_test_lookup);
1031
1032         for (i = 0; i < NUM_NFITS; i++) {
1033                 struct nfit_test *nfit_test;
1034                 struct platform_device *pdev;
1035                 static int once;
1036
1037                 nfit_test = kzalloc(sizeof(*nfit_test), GFP_KERNEL);
1038                 if (!nfit_test) {
1039                         rc = -ENOMEM;
1040                         goto err_register;
1041                 }
1042                 INIT_LIST_HEAD(&nfit_test->resources);
1043                 switch (i) {
1044                 case 0:
1045                         nfit_test->num_pm = NUM_PM;
1046                         nfit_test->num_dcr = NUM_DCR;
1047                         nfit_test->alloc = nfit_test0_alloc;
1048                         nfit_test->setup = nfit_test0_setup;
1049                         break;
1050                 case 1:
1051                         nfit_test->num_pm = 1;
1052                         nfit_test->alloc = nfit_test1_alloc;
1053                         nfit_test->setup = nfit_test1_setup;
1054                         break;
1055                 default:
1056                         rc = -EINVAL;
1057                         goto err_register;
1058                 }
1059                 pdev = &nfit_test->pdev;
1060                 pdev->name = KBUILD_MODNAME;
1061                 pdev->id = i;
1062                 pdev->dev.release = nfit_test_release;
1063                 rc = platform_device_register(pdev);
1064                 if (rc) {
1065                         put_device(&pdev->dev);
1066                         goto err_register;
1067                 }
1068
1069                 rc = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
1070                 if (rc)
1071                         goto err_register;
1072
1073                 instances[i] = nfit_test;
1074
1075                 if (!once++) {
1076                         dma_addr_t dma;
1077                         void *buf;
1078
1079                         buf = dma_alloc_coherent(&pdev->dev, SZ_128M, &dma,
1080                                         GFP_KERNEL);
1081                         if (!buf) {
1082                                 rc = -ENOMEM;
1083                                 dev_warn(&pdev->dev, "need 128M of free cma\n");
1084                                 goto err_register;
1085                         }
1086                         dma_free_coherent(&pdev->dev, SZ_128M, buf, dma);
1087                 }
1088         }
1089
1090         rc = platform_driver_register(&nfit_test_driver);
1091         if (rc)
1092                 goto err_register;
1093         return 0;
1094
1095  err_register:
1096         for (i = 0; i < NUM_NFITS; i++)
1097                 if (instances[i])
1098                         platform_device_unregister(&instances[i]->pdev);
1099         nfit_test_teardown();
1100         return rc;
1101 }
1102
1103 static __exit void nfit_test_exit(void)
1104 {
1105         int i;
1106
1107         platform_driver_unregister(&nfit_test_driver);
1108         for (i = 0; i < NUM_NFITS; i++)
1109                 platform_device_unregister(&instances[i]->pdev);
1110         nfit_test_teardown();
1111 }
1112
1113 module_init(nfit_test_init);
1114 module_exit(nfit_test_exit);
1115 MODULE_LICENSE("GPL v2");
1116 MODULE_AUTHOR("Intel Corporation");