1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
5 #include <linux/list_sort.h>
6 #include <linux/libnvdimm.h>
7 #include <linux/module.h>
8 #include <linux/nospec.h>
9 #include <linux/mutex.h>
10 #include <linux/ndctl.h>
11 #include <linux/sysfs.h>
12 #include <linux/delay.h>
13 #include <linux/list.h>
14 #include <linux/acpi.h>
15 #include <linux/sort.h>
18 #include <asm/cacheflush.h>
19 #include <acpi/nfit.h>
24 * For readq() and writeq() on 32-bit builds, the hi-lo, lo-hi order is
27 #include <linux/io-64-nonatomic-hi-lo.h>
29 static bool force_enable_dimms
;
30 module_param(force_enable_dimms
, bool, S_IRUGO
|S_IWUSR
);
31 MODULE_PARM_DESC(force_enable_dimms
, "Ignore _STA (ACPI DIMM device) status");
33 static bool disable_vendor_specific
;
34 module_param(disable_vendor_specific
, bool, S_IRUGO
);
35 MODULE_PARM_DESC(disable_vendor_specific
,
36 "Limit commands to the publicly specified set");
38 static unsigned long override_dsm_mask
;
39 module_param(override_dsm_mask
, ulong
, S_IRUGO
);
40 MODULE_PARM_DESC(override_dsm_mask
, "Bitmask of allowed NVDIMM DSM functions");
42 static int default_dsm_family
= -1;
43 module_param(default_dsm_family
, int, S_IRUGO
);
44 MODULE_PARM_DESC(default_dsm_family
,
45 "Try this DSM type first when identifying NVDIMM family");
47 static bool no_init_ars
;
48 module_param(no_init_ars
, bool, 0644);
49 MODULE_PARM_DESC(no_init_ars
, "Skip ARS run at nfit init time");
51 static bool force_labels
;
52 module_param(force_labels
, bool, 0444);
53 MODULE_PARM_DESC(force_labels
, "Opt-in to labels despite missing methods");
55 LIST_HEAD(acpi_descs
);
56 DEFINE_MUTEX(acpi_desc_lock
);
58 static struct workqueue_struct
*nfit_wq
;
60 struct nfit_table_prev
{
61 struct list_head spas
;
62 struct list_head memdevs
;
63 struct list_head dcrs
;
64 struct list_head bdws
;
65 struct list_head idts
;
66 struct list_head flushes
;
69 static guid_t nfit_uuid
[NFIT_UUID_MAX
];
71 const guid_t
*to_nfit_uuid(enum nfit_uuids id
)
73 return &nfit_uuid
[id
];
75 EXPORT_SYMBOL(to_nfit_uuid
);
77 static const guid_t
*to_nfit_bus_uuid(int family
)
79 if (WARN_ONCE(family
== NVDIMM_BUS_FAMILY_NFIT
,
80 "only secondary bus families can be translated\n"))
83 * The index of bus UUIDs starts immediately following the last
86 return to_nfit_uuid(family
+ NVDIMM_FAMILY_MAX
);
89 static struct acpi_device
*to_acpi_dev(struct acpi_nfit_desc
*acpi_desc
)
91 struct nvdimm_bus_descriptor
*nd_desc
= &acpi_desc
->nd_desc
;
94 * If provider == 'ACPI.NFIT' we can assume 'dev' is a struct
97 if (!nd_desc
->provider_name
98 || strcmp(nd_desc
->provider_name
, "ACPI.NFIT") != 0)
101 return to_acpi_device(acpi_desc
->dev
);
104 static int xlat_bus_status(void *buf
, unsigned int cmd
, u32 status
)
106 struct nd_cmd_clear_error
*clear_err
;
107 struct nd_cmd_ars_status
*ars_status
;
112 if ((status
& 0xffff) == NFIT_ARS_CAP_NONE
)
119 /* No supported scan types for this range */
120 flags
= ND_ARS_PERSISTENT
| ND_ARS_VOLATILE
;
121 if ((status
>> 16 & flags
) == 0)
124 case ND_CMD_ARS_START
:
125 /* ARS is in progress */
126 if ((status
& 0xffff) == NFIT_ARS_START_BUSY
)
133 case ND_CMD_ARS_STATUS
:
138 /* Check extended status (Upper two bytes) */
139 if (status
== NFIT_ARS_STATUS_DONE
)
142 /* ARS is in progress */
143 if (status
== NFIT_ARS_STATUS_BUSY
)
146 /* No ARS performed for the current boot */
147 if (status
== NFIT_ARS_STATUS_NONE
)
151 * ARS interrupted, either we overflowed or some other
152 * agent wants the scan to stop. If we didn't overflow
153 * then just continue with the returned results.
155 if (status
== NFIT_ARS_STATUS_INTR
) {
156 if (ars_status
->out_length
>= 40 && (ars_status
->flags
157 & NFIT_ARS_F_OVERFLOW
))
166 case ND_CMD_CLEAR_ERROR
:
170 if (!clear_err
->cleared
)
172 if (clear_err
->length
> clear_err
->cleared
)
173 return clear_err
->cleared
;
179 /* all other non-zero status results in an error */
185 #define ACPI_LABELS_LOCKED 3
187 static int xlat_nvdimm_status(struct nvdimm
*nvdimm
, void *buf
, unsigned int cmd
,
190 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
193 case ND_CMD_GET_CONFIG_SIZE
:
195 * In the _LSI, _LSR, _LSW case the locked status is
196 * communicated via the read/write commands
198 if (test_bit(NFIT_MEM_LSR
, &nfit_mem
->flags
))
201 if (status
>> 16 & ND_CONFIG_LOCKED
)
204 case ND_CMD_GET_CONFIG_DATA
:
205 if (test_bit(NFIT_MEM_LSR
, &nfit_mem
->flags
)
206 && status
== ACPI_LABELS_LOCKED
)
209 case ND_CMD_SET_CONFIG_DATA
:
210 if (test_bit(NFIT_MEM_LSW
, &nfit_mem
->flags
)
211 && status
== ACPI_LABELS_LOCKED
)
218 /* all other non-zero status results in an error */
224 static int xlat_status(struct nvdimm
*nvdimm
, void *buf
, unsigned int cmd
,
228 return xlat_bus_status(buf
, cmd
, status
);
229 return xlat_nvdimm_status(nvdimm
, buf
, cmd
, status
);
232 /* convert _LS{I,R} packages to the buffer object acpi_nfit_ctl expects */
233 static union acpi_object
*pkg_to_buf(union acpi_object
*pkg
)
238 union acpi_object
*buf
= NULL
;
240 if (pkg
->type
!= ACPI_TYPE_PACKAGE
) {
241 WARN_ONCE(1, "BIOS bug, unexpected element type: %d\n",
246 for (i
= 0; i
< pkg
->package
.count
; i
++) {
247 union acpi_object
*obj
= &pkg
->package
.elements
[i
];
249 if (obj
->type
== ACPI_TYPE_INTEGER
)
251 else if (obj
->type
== ACPI_TYPE_BUFFER
)
252 size
+= obj
->buffer
.length
;
254 WARN_ONCE(1, "BIOS bug, unexpected element type: %d\n",
260 buf
= ACPI_ALLOCATE(sizeof(*buf
) + size
);
265 buf
->type
= ACPI_TYPE_BUFFER
;
266 buf
->buffer
.length
= size
;
267 buf
->buffer
.pointer
= dst
;
268 for (i
= 0; i
< pkg
->package
.count
; i
++) {
269 union acpi_object
*obj
= &pkg
->package
.elements
[i
];
271 if (obj
->type
== ACPI_TYPE_INTEGER
) {
272 memcpy(dst
, &obj
->integer
.value
, 4);
274 } else if (obj
->type
== ACPI_TYPE_BUFFER
) {
275 memcpy(dst
, obj
->buffer
.pointer
, obj
->buffer
.length
);
276 dst
+= obj
->buffer
.length
;
284 static union acpi_object
*int_to_buf(union acpi_object
*integer
)
286 union acpi_object
*buf
= NULL
;
289 if (integer
->type
!= ACPI_TYPE_INTEGER
) {
290 WARN_ONCE(1, "BIOS bug, unexpected element type: %d\n",
295 buf
= ACPI_ALLOCATE(sizeof(*buf
) + 4);
300 buf
->type
= ACPI_TYPE_BUFFER
;
301 buf
->buffer
.length
= 4;
302 buf
->buffer
.pointer
= dst
;
303 memcpy(dst
, &integer
->integer
.value
, 4);
309 static union acpi_object
*acpi_label_write(acpi_handle handle
, u32 offset
,
313 struct acpi_buffer buf
= { ACPI_ALLOCATE_BUFFER
, NULL
};
314 struct acpi_object_list input
= {
316 .pointer
= (union acpi_object
[]) {
318 .integer
.type
= ACPI_TYPE_INTEGER
,
319 .integer
.value
= offset
,
322 .integer
.type
= ACPI_TYPE_INTEGER
,
323 .integer
.value
= len
,
326 .buffer
.type
= ACPI_TYPE_BUFFER
,
327 .buffer
.pointer
= data
,
328 .buffer
.length
= len
,
333 rc
= acpi_evaluate_object(handle
, "_LSW", &input
, &buf
);
334 if (ACPI_FAILURE(rc
))
336 return int_to_buf(buf
.pointer
);
339 static union acpi_object
*acpi_label_read(acpi_handle handle
, u32 offset
,
343 struct acpi_buffer buf
= { ACPI_ALLOCATE_BUFFER
, NULL
};
344 struct acpi_object_list input
= {
346 .pointer
= (union acpi_object
[]) {
348 .integer
.type
= ACPI_TYPE_INTEGER
,
349 .integer
.value
= offset
,
352 .integer
.type
= ACPI_TYPE_INTEGER
,
353 .integer
.value
= len
,
358 rc
= acpi_evaluate_object(handle
, "_LSR", &input
, &buf
);
359 if (ACPI_FAILURE(rc
))
361 return pkg_to_buf(buf
.pointer
);
364 static union acpi_object
*acpi_label_info(acpi_handle handle
)
367 struct acpi_buffer buf
= { ACPI_ALLOCATE_BUFFER
, NULL
};
369 rc
= acpi_evaluate_object(handle
, "_LSI", NULL
, &buf
);
370 if (ACPI_FAILURE(rc
))
372 return pkg_to_buf(buf
.pointer
);
375 static u8
nfit_dsm_revid(unsigned family
, unsigned func
)
377 static const u8 revid_table
[NVDIMM_FAMILY_MAX
+1][NVDIMM_CMD_MAX
+1] = {
378 [NVDIMM_FAMILY_INTEL
] = {
379 [NVDIMM_INTEL_GET_MODES
...
380 NVDIMM_INTEL_FW_ACTIVATE_ARM
] = 2,
385 if (family
> NVDIMM_FAMILY_MAX
)
387 if (func
> NVDIMM_CMD_MAX
)
389 id
= revid_table
[family
][func
];
391 return 1; /* default */
395 static bool payload_dumpable(struct nvdimm
*nvdimm
, unsigned int func
)
397 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
399 if (nfit_mem
&& nfit_mem
->family
== NVDIMM_FAMILY_INTEL
400 && func
>= NVDIMM_INTEL_GET_SECURITY_STATE
401 && func
<= NVDIMM_INTEL_MASTER_SECURE_ERASE
)
402 return IS_ENABLED(CONFIG_NFIT_SECURITY_DEBUG
);
406 static int cmd_to_func(struct nfit_mem
*nfit_mem
, unsigned int cmd
,
407 struct nd_cmd_pkg
*call_pkg
, int *family
)
412 if (nfit_mem
&& nfit_mem
->family
!= call_pkg
->nd_family
)
415 for (i
= 0; i
< ARRAY_SIZE(call_pkg
->nd_reserved2
); i
++)
416 if (call_pkg
->nd_reserved2
[i
])
418 *family
= call_pkg
->nd_family
;
419 return call_pkg
->nd_command
;
422 /* In the !call_pkg case, bus commands == bus functions */
426 /* Linux ND commands == NVDIMM_FAMILY_INTEL function numbers */
427 if (nfit_mem
->family
== NVDIMM_FAMILY_INTEL
)
431 * Force function number validation to fail since 0 is never
432 * published as a valid function in dsm_mask.
437 int acpi_nfit_ctl(struct nvdimm_bus_descriptor
*nd_desc
, struct nvdimm
*nvdimm
,
438 unsigned int cmd
, void *buf
, unsigned int buf_len
, int *cmd_rc
)
440 struct acpi_nfit_desc
*acpi_desc
= to_acpi_desc(nd_desc
);
441 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
442 union acpi_object in_obj
, in_buf
, *out_obj
;
443 const struct nd_cmd_desc
*desc
= NULL
;
444 struct device
*dev
= acpi_desc
->dev
;
445 struct nd_cmd_pkg
*call_pkg
= NULL
;
446 const char *cmd_name
, *dimm_name
;
447 unsigned long cmd_mask
, dsm_mask
;
448 u32 offset
, fw_status
= 0;
457 if (cmd
== ND_CMD_CALL
)
459 func
= cmd_to_func(nfit_mem
, cmd
, call_pkg
, &family
);
464 struct acpi_device
*adev
= nfit_mem
->adev
;
469 dimm_name
= nvdimm_name(nvdimm
);
470 cmd_name
= nvdimm_cmd_name(cmd
);
471 cmd_mask
= nvdimm_cmd_mask(nvdimm
);
472 dsm_mask
= nfit_mem
->dsm_mask
;
473 desc
= nd_cmd_dimm_desc(cmd
);
474 guid
= to_nfit_uuid(nfit_mem
->family
);
475 handle
= adev
->handle
;
477 struct acpi_device
*adev
= to_acpi_dev(acpi_desc
);
479 cmd_name
= nvdimm_bus_cmd_name(cmd
);
480 cmd_mask
= nd_desc
->cmd_mask
;
481 if (cmd
== ND_CMD_CALL
&& call_pkg
->nd_family
) {
482 family
= call_pkg
->nd_family
;
483 if (family
> NVDIMM_BUS_FAMILY_MAX
||
484 !test_bit(family
, &nd_desc
->bus_family_mask
))
486 family
= array_index_nospec(family
,
487 NVDIMM_BUS_FAMILY_MAX
+ 1);
488 dsm_mask
= acpi_desc
->family_dsm_mask
[family
];
489 guid
= to_nfit_bus_uuid(family
);
491 dsm_mask
= acpi_desc
->bus_dsm_mask
;
492 guid
= to_nfit_uuid(NFIT_DEV_BUS
);
494 desc
= nd_cmd_bus_desc(cmd
);
495 handle
= adev
->handle
;
499 if (!desc
|| (cmd
&& (desc
->out_num
+ desc
->in_num
== 0)))
503 * Check for a valid command. For ND_CMD_CALL, we also have to
504 * make sure that the DSM function is supported.
506 if (cmd
== ND_CMD_CALL
&&
507 (func
> NVDIMM_CMD_MAX
|| !test_bit(func
, &dsm_mask
)))
509 else if (!test_bit(cmd
, &cmd_mask
))
512 in_obj
.type
= ACPI_TYPE_PACKAGE
;
513 in_obj
.package
.count
= 1;
514 in_obj
.package
.elements
= &in_buf
;
515 in_buf
.type
= ACPI_TYPE_BUFFER
;
516 in_buf
.buffer
.pointer
= buf
;
517 in_buf
.buffer
.length
= 0;
519 /* libnvdimm has already validated the input envelope */
520 for (i
= 0; i
< desc
->in_num
; i
++)
521 in_buf
.buffer
.length
+= nd_cmd_in_size(nvdimm
, cmd
, desc
,
525 /* skip over package wrapper */
526 in_buf
.buffer
.pointer
= (void *) &call_pkg
->nd_payload
;
527 in_buf
.buffer
.length
= call_pkg
->nd_size_in
;
530 dev_dbg(dev
, "%s cmd: %d: family: %d func: %d input length: %d\n",
531 dimm_name
, cmd
, family
, func
, in_buf
.buffer
.length
);
532 if (payload_dumpable(nvdimm
, func
))
533 print_hex_dump_debug("nvdimm in ", DUMP_PREFIX_OFFSET
, 4, 4,
534 in_buf
.buffer
.pointer
,
535 min_t(u32
, 256, in_buf
.buffer
.length
), true);
537 /* call the BIOS, prefer the named methods over _DSM if available */
538 if (nvdimm
&& cmd
== ND_CMD_GET_CONFIG_SIZE
539 && test_bit(NFIT_MEM_LSR
, &nfit_mem
->flags
))
540 out_obj
= acpi_label_info(handle
);
541 else if (nvdimm
&& cmd
== ND_CMD_GET_CONFIG_DATA
542 && test_bit(NFIT_MEM_LSR
, &nfit_mem
->flags
)) {
543 struct nd_cmd_get_config_data_hdr
*p
= buf
;
545 out_obj
= acpi_label_read(handle
, p
->in_offset
, p
->in_length
);
546 } else if (nvdimm
&& cmd
== ND_CMD_SET_CONFIG_DATA
547 && test_bit(NFIT_MEM_LSW
, &nfit_mem
->flags
)) {
548 struct nd_cmd_set_config_hdr
*p
= buf
;
550 out_obj
= acpi_label_write(handle
, p
->in_offset
, p
->in_length
,
556 revid
= nfit_dsm_revid(nfit_mem
->family
, func
);
559 out_obj
= acpi_evaluate_dsm(handle
, guid
, revid
, func
, &in_obj
);
563 dev_dbg(dev
, "%s _DSM failed cmd: %s\n", dimm_name
, cmd_name
);
567 if (out_obj
->type
!= ACPI_TYPE_BUFFER
) {
568 dev_dbg(dev
, "%s unexpected output object type cmd: %s type: %d\n",
569 dimm_name
, cmd_name
, out_obj
->type
);
574 dev_dbg(dev
, "%s cmd: %s output length: %d\n", dimm_name
,
575 cmd_name
, out_obj
->buffer
.length
);
576 print_hex_dump_debug(cmd_name
, DUMP_PREFIX_OFFSET
, 4, 4,
577 out_obj
->buffer
.pointer
,
578 min_t(u32
, 128, out_obj
->buffer
.length
), true);
581 call_pkg
->nd_fw_size
= out_obj
->buffer
.length
;
582 memcpy(call_pkg
->nd_payload
+ call_pkg
->nd_size_in
,
583 out_obj
->buffer
.pointer
,
584 min(call_pkg
->nd_fw_size
, call_pkg
->nd_size_out
));
588 * Need to support FW function w/o known size in advance.
589 * Caller can determine required size based upon nd_fw_size.
590 * If we return an error (like elsewhere) then caller wouldn't
591 * be able to rely upon data returned to make calculation.
598 for (i
= 0, offset
= 0; i
< desc
->out_num
; i
++) {
599 u32 out_size
= nd_cmd_out_size(nvdimm
, cmd
, desc
, i
, buf
,
600 (u32
*) out_obj
->buffer
.pointer
,
601 out_obj
->buffer
.length
- offset
);
603 if (offset
+ out_size
> out_obj
->buffer
.length
) {
604 dev_dbg(dev
, "%s output object underflow cmd: %s field: %d\n",
605 dimm_name
, cmd_name
, i
);
609 if (in_buf
.buffer
.length
+ offset
+ out_size
> buf_len
) {
610 dev_dbg(dev
, "%s output overrun cmd: %s field: %d\n",
611 dimm_name
, cmd_name
, i
);
615 memcpy(buf
+ in_buf
.buffer
.length
+ offset
,
616 out_obj
->buffer
.pointer
+ offset
, out_size
);
621 * Set fw_status for all the commands with a known format to be
622 * later interpreted by xlat_status().
624 if (i
>= 1 && ((!nvdimm
&& cmd
>= ND_CMD_ARS_CAP
625 && cmd
<= ND_CMD_CLEAR_ERROR
)
626 || (nvdimm
&& cmd
>= ND_CMD_SMART
627 && cmd
<= ND_CMD_VENDOR
)))
628 fw_status
= *(u32
*) out_obj
->buffer
.pointer
;
630 if (offset
+ in_buf
.buffer
.length
< buf_len
) {
633 * status valid, return the number of bytes left
634 * unfilled in the output buffer
636 rc
= buf_len
- offset
- in_buf
.buffer
.length
;
638 *cmd_rc
= xlat_status(nvdimm
, buf
, cmd
,
641 dev_err(dev
, "%s:%s underrun cmd: %s buf_len: %d out_len: %d\n",
642 __func__
, dimm_name
, cmd_name
, buf_len
,
649 *cmd_rc
= xlat_status(nvdimm
, buf
, cmd
, fw_status
);
657 EXPORT_SYMBOL_GPL(acpi_nfit_ctl
);
659 static const char *spa_type_name(u16 type
)
661 static const char *to_name
[] = {
662 [NFIT_SPA_VOLATILE
] = "volatile",
663 [NFIT_SPA_PM
] = "pmem",
664 [NFIT_SPA_DCR
] = "dimm-control-region",
665 [NFIT_SPA_BDW
] = "block-data-window",
666 [NFIT_SPA_VDISK
] = "volatile-disk",
667 [NFIT_SPA_VCD
] = "volatile-cd",
668 [NFIT_SPA_PDISK
] = "persistent-disk",
669 [NFIT_SPA_PCD
] = "persistent-cd",
673 if (type
> NFIT_SPA_PCD
)
676 return to_name
[type
];
679 int nfit_spa_type(struct acpi_nfit_system_address
*spa
)
684 import_guid(&guid
, spa
->range_guid
);
685 for (i
= 0; i
< NFIT_UUID_MAX
; i
++)
686 if (guid_equal(to_nfit_uuid(i
), &guid
))
691 static size_t sizeof_spa(struct acpi_nfit_system_address
*spa
)
693 if (spa
->flags
& ACPI_NFIT_LOCATION_COOKIE_VALID
)
695 return sizeof(*spa
) - 8;
698 static bool add_spa(struct acpi_nfit_desc
*acpi_desc
,
699 struct nfit_table_prev
*prev
,
700 struct acpi_nfit_system_address
*spa
)
702 struct device
*dev
= acpi_desc
->dev
;
703 struct nfit_spa
*nfit_spa
;
705 if (spa
->header
.length
!= sizeof_spa(spa
))
708 list_for_each_entry(nfit_spa
, &prev
->spas
, list
) {
709 if (memcmp(nfit_spa
->spa
, spa
, sizeof_spa(spa
)) == 0) {
710 list_move_tail(&nfit_spa
->list
, &acpi_desc
->spas
);
715 nfit_spa
= devm_kzalloc(dev
, sizeof(*nfit_spa
) + sizeof_spa(spa
),
719 INIT_LIST_HEAD(&nfit_spa
->list
);
720 memcpy(nfit_spa
->spa
, spa
, sizeof_spa(spa
));
721 list_add_tail(&nfit_spa
->list
, &acpi_desc
->spas
);
722 dev_dbg(dev
, "spa index: %d type: %s\n",
724 spa_type_name(nfit_spa_type(spa
)));
728 static bool add_memdev(struct acpi_nfit_desc
*acpi_desc
,
729 struct nfit_table_prev
*prev
,
730 struct acpi_nfit_memory_map
*memdev
)
732 struct device
*dev
= acpi_desc
->dev
;
733 struct nfit_memdev
*nfit_memdev
;
735 if (memdev
->header
.length
!= sizeof(*memdev
))
738 list_for_each_entry(nfit_memdev
, &prev
->memdevs
, list
)
739 if (memcmp(nfit_memdev
->memdev
, memdev
, sizeof(*memdev
)) == 0) {
740 list_move_tail(&nfit_memdev
->list
, &acpi_desc
->memdevs
);
744 nfit_memdev
= devm_kzalloc(dev
, sizeof(*nfit_memdev
) + sizeof(*memdev
),
748 INIT_LIST_HEAD(&nfit_memdev
->list
);
749 memcpy(nfit_memdev
->memdev
, memdev
, sizeof(*memdev
));
750 list_add_tail(&nfit_memdev
->list
, &acpi_desc
->memdevs
);
751 dev_dbg(dev
, "memdev handle: %#x spa: %d dcr: %d flags: %#x\n",
752 memdev
->device_handle
, memdev
->range_index
,
753 memdev
->region_index
, memdev
->flags
);
757 int nfit_get_smbios_id(u32 device_handle
, u16
*flags
)
759 struct acpi_nfit_memory_map
*memdev
;
760 struct acpi_nfit_desc
*acpi_desc
;
761 struct nfit_mem
*nfit_mem
;
764 mutex_lock(&acpi_desc_lock
);
765 list_for_each_entry(acpi_desc
, &acpi_descs
, list
) {
766 mutex_lock(&acpi_desc
->init_mutex
);
767 list_for_each_entry(nfit_mem
, &acpi_desc
->dimms
, list
) {
768 memdev
= __to_nfit_memdev(nfit_mem
);
769 if (memdev
->device_handle
== device_handle
) {
770 *flags
= memdev
->flags
;
771 physical_id
= memdev
->physical_id
;
772 mutex_unlock(&acpi_desc
->init_mutex
);
773 mutex_unlock(&acpi_desc_lock
);
777 mutex_unlock(&acpi_desc
->init_mutex
);
779 mutex_unlock(&acpi_desc_lock
);
783 EXPORT_SYMBOL_GPL(nfit_get_smbios_id
);
786 * An implementation may provide a truncated control region if no block windows
789 static size_t sizeof_dcr(struct acpi_nfit_control_region
*dcr
)
791 if (dcr
->header
.length
< offsetof(struct acpi_nfit_control_region
,
796 return offsetof(struct acpi_nfit_control_region
, window_size
);
799 static bool add_dcr(struct acpi_nfit_desc
*acpi_desc
,
800 struct nfit_table_prev
*prev
,
801 struct acpi_nfit_control_region
*dcr
)
803 struct device
*dev
= acpi_desc
->dev
;
804 struct nfit_dcr
*nfit_dcr
;
806 if (!sizeof_dcr(dcr
))
809 list_for_each_entry(nfit_dcr
, &prev
->dcrs
, list
)
810 if (memcmp(nfit_dcr
->dcr
, dcr
, sizeof_dcr(dcr
)) == 0) {
811 list_move_tail(&nfit_dcr
->list
, &acpi_desc
->dcrs
);
815 nfit_dcr
= devm_kzalloc(dev
, sizeof(*nfit_dcr
) + sizeof(*dcr
),
819 INIT_LIST_HEAD(&nfit_dcr
->list
);
820 memcpy(nfit_dcr
->dcr
, dcr
, sizeof_dcr(dcr
));
821 list_add_tail(&nfit_dcr
->list
, &acpi_desc
->dcrs
);
822 dev_dbg(dev
, "dcr index: %d windows: %d\n",
823 dcr
->region_index
, dcr
->windows
);
827 static bool add_bdw(struct acpi_nfit_desc
*acpi_desc
,
828 struct nfit_table_prev
*prev
,
829 struct acpi_nfit_data_region
*bdw
)
831 struct device
*dev
= acpi_desc
->dev
;
832 struct nfit_bdw
*nfit_bdw
;
834 if (bdw
->header
.length
!= sizeof(*bdw
))
836 list_for_each_entry(nfit_bdw
, &prev
->bdws
, list
)
837 if (memcmp(nfit_bdw
->bdw
, bdw
, sizeof(*bdw
)) == 0) {
838 list_move_tail(&nfit_bdw
->list
, &acpi_desc
->bdws
);
842 nfit_bdw
= devm_kzalloc(dev
, sizeof(*nfit_bdw
) + sizeof(*bdw
),
846 INIT_LIST_HEAD(&nfit_bdw
->list
);
847 memcpy(nfit_bdw
->bdw
, bdw
, sizeof(*bdw
));
848 list_add_tail(&nfit_bdw
->list
, &acpi_desc
->bdws
);
849 dev_dbg(dev
, "bdw dcr: %d windows: %d\n",
850 bdw
->region_index
, bdw
->windows
);
854 static size_t sizeof_idt(struct acpi_nfit_interleave
*idt
)
856 if (idt
->header
.length
< sizeof(*idt
))
858 return sizeof(*idt
) + sizeof(u32
) * idt
->line_count
;
861 static bool add_idt(struct acpi_nfit_desc
*acpi_desc
,
862 struct nfit_table_prev
*prev
,
863 struct acpi_nfit_interleave
*idt
)
865 struct device
*dev
= acpi_desc
->dev
;
866 struct nfit_idt
*nfit_idt
;
868 if (!sizeof_idt(idt
))
871 list_for_each_entry(nfit_idt
, &prev
->idts
, list
) {
872 if (sizeof_idt(nfit_idt
->idt
) != sizeof_idt(idt
))
875 if (memcmp(nfit_idt
->idt
, idt
, sizeof_idt(idt
)) == 0) {
876 list_move_tail(&nfit_idt
->list
, &acpi_desc
->idts
);
881 nfit_idt
= devm_kzalloc(dev
, sizeof(*nfit_idt
) + sizeof_idt(idt
),
885 INIT_LIST_HEAD(&nfit_idt
->list
);
886 memcpy(nfit_idt
->idt
, idt
, sizeof_idt(idt
));
887 list_add_tail(&nfit_idt
->list
, &acpi_desc
->idts
);
888 dev_dbg(dev
, "idt index: %d num_lines: %d\n",
889 idt
->interleave_index
, idt
->line_count
);
893 static size_t sizeof_flush(struct acpi_nfit_flush_address
*flush
)
895 if (flush
->header
.length
< sizeof(*flush
))
897 return struct_size(flush
, hint_address
, flush
->hint_count
);
900 static bool add_flush(struct acpi_nfit_desc
*acpi_desc
,
901 struct nfit_table_prev
*prev
,
902 struct acpi_nfit_flush_address
*flush
)
904 struct device
*dev
= acpi_desc
->dev
;
905 struct nfit_flush
*nfit_flush
;
907 if (!sizeof_flush(flush
))
910 list_for_each_entry(nfit_flush
, &prev
->flushes
, list
) {
911 if (sizeof_flush(nfit_flush
->flush
) != sizeof_flush(flush
))
914 if (memcmp(nfit_flush
->flush
, flush
,
915 sizeof_flush(flush
)) == 0) {
916 list_move_tail(&nfit_flush
->list
, &acpi_desc
->flushes
);
921 nfit_flush
= devm_kzalloc(dev
, sizeof(*nfit_flush
)
922 + sizeof_flush(flush
), GFP_KERNEL
);
925 INIT_LIST_HEAD(&nfit_flush
->list
);
926 memcpy(nfit_flush
->flush
, flush
, sizeof_flush(flush
));
927 list_add_tail(&nfit_flush
->list
, &acpi_desc
->flushes
);
928 dev_dbg(dev
, "nfit_flush handle: %d hint_count: %d\n",
929 flush
->device_handle
, flush
->hint_count
);
933 static bool add_platform_cap(struct acpi_nfit_desc
*acpi_desc
,
934 struct acpi_nfit_capabilities
*pcap
)
936 struct device
*dev
= acpi_desc
->dev
;
939 mask
= (1 << (pcap
->highest_capability
+ 1)) - 1;
940 acpi_desc
->platform_cap
= pcap
->capabilities
& mask
;
941 dev_dbg(dev
, "cap: %#x\n", acpi_desc
->platform_cap
);
945 static void *add_table(struct acpi_nfit_desc
*acpi_desc
,
946 struct nfit_table_prev
*prev
, void *table
, const void *end
)
948 struct device
*dev
= acpi_desc
->dev
;
949 struct acpi_nfit_header
*hdr
;
950 void *err
= ERR_PTR(-ENOMEM
);
957 dev_warn(dev
, "found a zero length table '%d' parsing nfit\n",
963 case ACPI_NFIT_TYPE_SYSTEM_ADDRESS
:
964 if (!add_spa(acpi_desc
, prev
, table
))
967 case ACPI_NFIT_TYPE_MEMORY_MAP
:
968 if (!add_memdev(acpi_desc
, prev
, table
))
971 case ACPI_NFIT_TYPE_CONTROL_REGION
:
972 if (!add_dcr(acpi_desc
, prev
, table
))
975 case ACPI_NFIT_TYPE_DATA_REGION
:
976 if (!add_bdw(acpi_desc
, prev
, table
))
979 case ACPI_NFIT_TYPE_INTERLEAVE
:
980 if (!add_idt(acpi_desc
, prev
, table
))
983 case ACPI_NFIT_TYPE_FLUSH_ADDRESS
:
984 if (!add_flush(acpi_desc
, prev
, table
))
987 case ACPI_NFIT_TYPE_SMBIOS
:
988 dev_dbg(dev
, "smbios\n");
990 case ACPI_NFIT_TYPE_CAPABILITIES
:
991 if (!add_platform_cap(acpi_desc
, table
))
995 dev_err(dev
, "unknown table '%d' parsing nfit\n", hdr
->type
);
999 return table
+ hdr
->length
;
1002 static int __nfit_mem_init(struct acpi_nfit_desc
*acpi_desc
,
1003 struct acpi_nfit_system_address
*spa
)
1005 struct nfit_mem
*nfit_mem
, *found
;
1006 struct nfit_memdev
*nfit_memdev
;
1007 int type
= spa
? nfit_spa_type(spa
) : 0;
1019 * This loop runs in two modes, when a dimm is mapped the loop
1020 * adds memdev associations to an existing dimm, or creates a
1021 * dimm. In the unmapped dimm case this loop sweeps for memdev
1022 * instances with an invalid / zero range_index and adds those
1023 * dimms without spa associations.
1025 list_for_each_entry(nfit_memdev
, &acpi_desc
->memdevs
, list
) {
1026 struct nfit_flush
*nfit_flush
;
1027 struct nfit_dcr
*nfit_dcr
;
1031 if (spa
&& nfit_memdev
->memdev
->range_index
!= spa
->range_index
)
1033 if (!spa
&& nfit_memdev
->memdev
->range_index
)
1036 dcr
= nfit_memdev
->memdev
->region_index
;
1037 device_handle
= nfit_memdev
->memdev
->device_handle
;
1038 list_for_each_entry(nfit_mem
, &acpi_desc
->dimms
, list
)
1039 if (__to_nfit_memdev(nfit_mem
)->device_handle
1048 nfit_mem
= devm_kzalloc(acpi_desc
->dev
,
1049 sizeof(*nfit_mem
), GFP_KERNEL
);
1052 INIT_LIST_HEAD(&nfit_mem
->list
);
1053 nfit_mem
->acpi_desc
= acpi_desc
;
1054 list_add(&nfit_mem
->list
, &acpi_desc
->dimms
);
1057 list_for_each_entry(nfit_dcr
, &acpi_desc
->dcrs
, list
) {
1058 if (nfit_dcr
->dcr
->region_index
!= dcr
)
1061 * Record the control region for the dimm. For
1062 * the ACPI 6.1 case, where there are separate
1063 * control regions for the pmem vs blk
1064 * interfaces, be sure to record the extended
1068 nfit_mem
->dcr
= nfit_dcr
->dcr
;
1069 else if (nfit_mem
->dcr
->windows
== 0
1070 && nfit_dcr
->dcr
->windows
)
1071 nfit_mem
->dcr
= nfit_dcr
->dcr
;
1075 list_for_each_entry(nfit_flush
, &acpi_desc
->flushes
, list
) {
1076 struct acpi_nfit_flush_address
*flush
;
1079 if (nfit_flush
->flush
->device_handle
!= device_handle
)
1081 nfit_mem
->nfit_flush
= nfit_flush
;
1082 flush
= nfit_flush
->flush
;
1083 nfit_mem
->flush_wpq
= devm_kcalloc(acpi_desc
->dev
,
1085 sizeof(struct resource
),
1087 if (!nfit_mem
->flush_wpq
)
1089 for (i
= 0; i
< flush
->hint_count
; i
++) {
1090 struct resource
*res
= &nfit_mem
->flush_wpq
[i
];
1092 res
->start
= flush
->hint_address
[i
];
1093 res
->end
= res
->start
+ 8 - 1;
1098 if (dcr
&& !nfit_mem
->dcr
) {
1099 dev_err(acpi_desc
->dev
, "SPA %d missing DCR %d\n",
1100 spa
->range_index
, dcr
);
1104 if (type
== NFIT_SPA_DCR
) {
1105 struct nfit_idt
*nfit_idt
;
1108 /* multiple dimms may share a SPA when interleaved */
1109 nfit_mem
->spa_dcr
= spa
;
1110 nfit_mem
->memdev_dcr
= nfit_memdev
->memdev
;
1111 idt_idx
= nfit_memdev
->memdev
->interleave_index
;
1112 list_for_each_entry(nfit_idt
, &acpi_desc
->idts
, list
) {
1113 if (nfit_idt
->idt
->interleave_index
!= idt_idx
)
1115 nfit_mem
->idt_dcr
= nfit_idt
->idt
;
1118 } else if (type
== NFIT_SPA_PM
) {
1120 * A single dimm may belong to multiple SPA-PM
1121 * ranges, record at least one in addition to
1122 * any SPA-DCR range.
1124 nfit_mem
->memdev_pmem
= nfit_memdev
->memdev
;
1126 nfit_mem
->memdev_dcr
= nfit_memdev
->memdev
;
1132 static int nfit_mem_cmp(void *priv
, const struct list_head
*_a
,
1133 const struct list_head
*_b
)
1135 struct nfit_mem
*a
= container_of(_a
, typeof(*a
), list
);
1136 struct nfit_mem
*b
= container_of(_b
, typeof(*b
), list
);
1137 u32 handleA
, handleB
;
1139 handleA
= __to_nfit_memdev(a
)->device_handle
;
1140 handleB
= __to_nfit_memdev(b
)->device_handle
;
1141 if (handleA
< handleB
)
1143 else if (handleA
> handleB
)
1148 static int nfit_mem_init(struct acpi_nfit_desc
*acpi_desc
)
1150 struct nfit_spa
*nfit_spa
;
1155 * For each SPA-DCR or SPA-PMEM address range find its
1156 * corresponding MEMDEV(s). From each MEMDEV find the
1157 * corresponding DCR. Then, if we're operating on a SPA-DCR,
1158 * try to find a SPA-BDW and a corresponding BDW that references
1159 * the DCR. Throw it all into an nfit_mem object. Note, that
1160 * BDWs are optional.
1162 list_for_each_entry(nfit_spa
, &acpi_desc
->spas
, list
) {
1163 rc
= __nfit_mem_init(acpi_desc
, nfit_spa
->spa
);
1169 * If a DIMM has failed to be mapped into SPA there will be no
1170 * SPA entries above. Find and register all the unmapped DIMMs
1171 * for reporting and recovery purposes.
1173 rc
= __nfit_mem_init(acpi_desc
, NULL
);
1177 list_sort(NULL
, &acpi_desc
->dimms
, nfit_mem_cmp
);
1182 static ssize_t
bus_dsm_mask_show(struct device
*dev
,
1183 struct device_attribute
*attr
, char *buf
)
1185 struct nvdimm_bus
*nvdimm_bus
= to_nvdimm_bus(dev
);
1186 struct nvdimm_bus_descriptor
*nd_desc
= to_nd_desc(nvdimm_bus
);
1187 struct acpi_nfit_desc
*acpi_desc
= to_acpi_desc(nd_desc
);
1189 return sysfs_emit(buf
, "%#lx\n", acpi_desc
->bus_dsm_mask
);
1191 static struct device_attribute dev_attr_bus_dsm_mask
=
1192 __ATTR(dsm_mask
, 0444, bus_dsm_mask_show
, NULL
);
1194 static ssize_t
revision_show(struct device
*dev
,
1195 struct device_attribute
*attr
, char *buf
)
1197 struct nvdimm_bus
*nvdimm_bus
= to_nvdimm_bus(dev
);
1198 struct nvdimm_bus_descriptor
*nd_desc
= to_nd_desc(nvdimm_bus
);
1199 struct acpi_nfit_desc
*acpi_desc
= to_acpi_desc(nd_desc
);
1201 return sysfs_emit(buf
, "%d\n", acpi_desc
->acpi_header
.revision
);
1203 static DEVICE_ATTR_RO(revision
);
1205 static ssize_t
hw_error_scrub_show(struct device
*dev
,
1206 struct device_attribute
*attr
, char *buf
)
1208 struct nvdimm_bus
*nvdimm_bus
= to_nvdimm_bus(dev
);
1209 struct nvdimm_bus_descriptor
*nd_desc
= to_nd_desc(nvdimm_bus
);
1210 struct acpi_nfit_desc
*acpi_desc
= to_acpi_desc(nd_desc
);
1212 return sysfs_emit(buf
, "%d\n", acpi_desc
->scrub_mode
);
1216 * The 'hw_error_scrub' attribute can have the following values written to it:
1217 * '0': Switch to the default mode where an exception will only insert
1218 * the address of the memory error into the poison and badblocks lists.
1219 * '1': Enable a full scrub to happen if an exception for a memory error is
1222 static ssize_t
hw_error_scrub_store(struct device
*dev
,
1223 struct device_attribute
*attr
, const char *buf
, size_t size
)
1225 struct nvdimm_bus_descriptor
*nd_desc
;
1229 rc
= kstrtol(buf
, 0, &val
);
1234 nd_desc
= dev_get_drvdata(dev
);
1236 struct acpi_nfit_desc
*acpi_desc
= to_acpi_desc(nd_desc
);
1239 case HW_ERROR_SCRUB_ON
:
1240 acpi_desc
->scrub_mode
= HW_ERROR_SCRUB_ON
;
1242 case HW_ERROR_SCRUB_OFF
:
1243 acpi_desc
->scrub_mode
= HW_ERROR_SCRUB_OFF
;
1255 static DEVICE_ATTR_RW(hw_error_scrub
);
1258 * This shows the number of full Address Range Scrubs that have been
1259 * completed since driver load time. Userspace can wait on this using
1260 * select/poll etc. A '+' at the end indicates an ARS is in progress
1262 static ssize_t
scrub_show(struct device
*dev
,
1263 struct device_attribute
*attr
, char *buf
)
1265 struct nvdimm_bus_descriptor
*nd_desc
;
1266 struct acpi_nfit_desc
*acpi_desc
;
1267 ssize_t rc
= -ENXIO
;
1271 nd_desc
= dev_get_drvdata(dev
);
1276 acpi_desc
= to_acpi_desc(nd_desc
);
1278 mutex_lock(&acpi_desc
->init_mutex
);
1279 busy
= test_bit(ARS_BUSY
, &acpi_desc
->scrub_flags
)
1280 && !test_bit(ARS_CANCEL
, &acpi_desc
->scrub_flags
);
1281 rc
= sysfs_emit(buf
, "%d%s", acpi_desc
->scrub_count
, busy
? "+\n" : "\n");
1282 /* Allow an admin to poll the busy state at a higher rate */
1283 if (busy
&& capable(CAP_SYS_RAWIO
) && !test_and_set_bit(ARS_POLL
,
1284 &acpi_desc
->scrub_flags
)) {
1285 acpi_desc
->scrub_tmo
= 1;
1286 mod_delayed_work(nfit_wq
, &acpi_desc
->dwork
, HZ
);
1289 mutex_unlock(&acpi_desc
->init_mutex
);
1294 static ssize_t
scrub_store(struct device
*dev
,
1295 struct device_attribute
*attr
, const char *buf
, size_t size
)
1297 struct nvdimm_bus_descriptor
*nd_desc
;
1301 rc
= kstrtol(buf
, 0, &val
);
1308 nd_desc
= dev_get_drvdata(dev
);
1310 struct acpi_nfit_desc
*acpi_desc
= to_acpi_desc(nd_desc
);
1312 rc
= acpi_nfit_ars_rescan(acpi_desc
, ARS_REQ_LONG
);
1319 static DEVICE_ATTR_RW(scrub
);
1321 static bool ars_supported(struct nvdimm_bus
*nvdimm_bus
)
1323 struct nvdimm_bus_descriptor
*nd_desc
= to_nd_desc(nvdimm_bus
);
1324 const unsigned long mask
= 1 << ND_CMD_ARS_CAP
| 1 << ND_CMD_ARS_START
1325 | 1 << ND_CMD_ARS_STATUS
;
1327 return (nd_desc
->cmd_mask
& mask
) == mask
;
1330 static umode_t
nfit_visible(struct kobject
*kobj
, struct attribute
*a
, int n
)
1332 struct device
*dev
= kobj_to_dev(kobj
);
1333 struct nvdimm_bus
*nvdimm_bus
= to_nvdimm_bus(dev
);
1335 if (a
== &dev_attr_scrub
.attr
)
1336 return ars_supported(nvdimm_bus
) ? a
->mode
: 0;
1338 if (a
== &dev_attr_firmware_activate_noidle
.attr
)
1339 return intel_fwa_supported(nvdimm_bus
) ? a
->mode
: 0;
1344 static struct attribute
*acpi_nfit_attributes
[] = {
1345 &dev_attr_revision
.attr
,
1346 &dev_attr_scrub
.attr
,
1347 &dev_attr_hw_error_scrub
.attr
,
1348 &dev_attr_bus_dsm_mask
.attr
,
1349 &dev_attr_firmware_activate_noidle
.attr
,
1353 static const struct attribute_group acpi_nfit_attribute_group
= {
1355 .attrs
= acpi_nfit_attributes
,
1356 .is_visible
= nfit_visible
,
1359 static const struct attribute_group
*acpi_nfit_attribute_groups
[] = {
1360 &acpi_nfit_attribute_group
,
1364 static struct acpi_nfit_memory_map
*to_nfit_memdev(struct device
*dev
)
1366 struct nvdimm
*nvdimm
= to_nvdimm(dev
);
1367 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
1369 return __to_nfit_memdev(nfit_mem
);
1372 static struct acpi_nfit_control_region
*to_nfit_dcr(struct device
*dev
)
1374 struct nvdimm
*nvdimm
= to_nvdimm(dev
);
1375 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
1377 return nfit_mem
->dcr
;
1380 static ssize_t
handle_show(struct device
*dev
,
1381 struct device_attribute
*attr
, char *buf
)
1383 struct acpi_nfit_memory_map
*memdev
= to_nfit_memdev(dev
);
1385 return sysfs_emit(buf
, "%#x\n", memdev
->device_handle
);
1387 static DEVICE_ATTR_RO(handle
);
1389 static ssize_t
phys_id_show(struct device
*dev
,
1390 struct device_attribute
*attr
, char *buf
)
1392 struct acpi_nfit_memory_map
*memdev
= to_nfit_memdev(dev
);
1394 return sysfs_emit(buf
, "%#x\n", memdev
->physical_id
);
1396 static DEVICE_ATTR_RO(phys_id
);
1398 static ssize_t
vendor_show(struct device
*dev
,
1399 struct device_attribute
*attr
, char *buf
)
1401 struct acpi_nfit_control_region
*dcr
= to_nfit_dcr(dev
);
1403 return sysfs_emit(buf
, "0x%04x\n", be16_to_cpu(dcr
->vendor_id
));
1405 static DEVICE_ATTR_RO(vendor
);
1407 static ssize_t
rev_id_show(struct device
*dev
,
1408 struct device_attribute
*attr
, char *buf
)
1410 struct acpi_nfit_control_region
*dcr
= to_nfit_dcr(dev
);
1412 return sysfs_emit(buf
, "0x%04x\n", be16_to_cpu(dcr
->revision_id
));
1414 static DEVICE_ATTR_RO(rev_id
);
1416 static ssize_t
device_show(struct device
*dev
,
1417 struct device_attribute
*attr
, char *buf
)
1419 struct acpi_nfit_control_region
*dcr
= to_nfit_dcr(dev
);
1421 return sysfs_emit(buf
, "0x%04x\n", be16_to_cpu(dcr
->device_id
));
1423 static DEVICE_ATTR_RO(device
);
1425 static ssize_t
subsystem_vendor_show(struct device
*dev
,
1426 struct device_attribute
*attr
, char *buf
)
1428 struct acpi_nfit_control_region
*dcr
= to_nfit_dcr(dev
);
1430 return sysfs_emit(buf
, "0x%04x\n", be16_to_cpu(dcr
->subsystem_vendor_id
));
1432 static DEVICE_ATTR_RO(subsystem_vendor
);
1434 static ssize_t
subsystem_rev_id_show(struct device
*dev
,
1435 struct device_attribute
*attr
, char *buf
)
1437 struct acpi_nfit_control_region
*dcr
= to_nfit_dcr(dev
);
1439 return sysfs_emit(buf
, "0x%04x\n",
1440 be16_to_cpu(dcr
->subsystem_revision_id
));
1442 static DEVICE_ATTR_RO(subsystem_rev_id
);
1444 static ssize_t
subsystem_device_show(struct device
*dev
,
1445 struct device_attribute
*attr
, char *buf
)
1447 struct acpi_nfit_control_region
*dcr
= to_nfit_dcr(dev
);
1449 return sysfs_emit(buf
, "0x%04x\n", be16_to_cpu(dcr
->subsystem_device_id
));
1451 static DEVICE_ATTR_RO(subsystem_device
);
1453 static int num_nvdimm_formats(struct nvdimm
*nvdimm
)
1455 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
1458 if (nfit_mem
->memdev_pmem
)
1463 static ssize_t
format_show(struct device
*dev
,
1464 struct device_attribute
*attr
, char *buf
)
1466 struct acpi_nfit_control_region
*dcr
= to_nfit_dcr(dev
);
1468 return sysfs_emit(buf
, "0x%04x\n", le16_to_cpu(dcr
->code
));
1470 static DEVICE_ATTR_RO(format
);
1472 static ssize_t
format1_show(struct device
*dev
,
1473 struct device_attribute
*attr
, char *buf
)
1476 ssize_t rc
= -ENXIO
;
1477 struct nfit_mem
*nfit_mem
;
1478 struct nfit_memdev
*nfit_memdev
;
1479 struct acpi_nfit_desc
*acpi_desc
;
1480 struct nvdimm
*nvdimm
= to_nvdimm(dev
);
1481 struct acpi_nfit_control_region
*dcr
= to_nfit_dcr(dev
);
1483 nfit_mem
= nvdimm_provider_data(nvdimm
);
1484 acpi_desc
= nfit_mem
->acpi_desc
;
1485 handle
= to_nfit_memdev(dev
)->device_handle
;
1487 /* assumes DIMMs have at most 2 published interface codes */
1488 mutex_lock(&acpi_desc
->init_mutex
);
1489 list_for_each_entry(nfit_memdev
, &acpi_desc
->memdevs
, list
) {
1490 struct acpi_nfit_memory_map
*memdev
= nfit_memdev
->memdev
;
1491 struct nfit_dcr
*nfit_dcr
;
1493 if (memdev
->device_handle
!= handle
)
1496 list_for_each_entry(nfit_dcr
, &acpi_desc
->dcrs
, list
) {
1497 if (nfit_dcr
->dcr
->region_index
!= memdev
->region_index
)
1499 if (nfit_dcr
->dcr
->code
== dcr
->code
)
1501 rc
= sysfs_emit(buf
, "0x%04x\n",
1502 le16_to_cpu(nfit_dcr
->dcr
->code
));
1508 mutex_unlock(&acpi_desc
->init_mutex
);
1511 static DEVICE_ATTR_RO(format1
);
1513 static ssize_t
formats_show(struct device
*dev
,
1514 struct device_attribute
*attr
, char *buf
)
1516 struct nvdimm
*nvdimm
= to_nvdimm(dev
);
1518 return sysfs_emit(buf
, "%d\n", num_nvdimm_formats(nvdimm
));
1520 static DEVICE_ATTR_RO(formats
);
1522 static ssize_t
serial_show(struct device
*dev
,
1523 struct device_attribute
*attr
, char *buf
)
1525 struct acpi_nfit_control_region
*dcr
= to_nfit_dcr(dev
);
1527 return sysfs_emit(buf
, "0x%08x\n", be32_to_cpu(dcr
->serial_number
));
1529 static DEVICE_ATTR_RO(serial
);
1531 static ssize_t
family_show(struct device
*dev
,
1532 struct device_attribute
*attr
, char *buf
)
1534 struct nvdimm
*nvdimm
= to_nvdimm(dev
);
1535 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
1537 if (nfit_mem
->family
< 0)
1539 return sysfs_emit(buf
, "%d\n", nfit_mem
->family
);
1541 static DEVICE_ATTR_RO(family
);
1543 static ssize_t
dsm_mask_show(struct device
*dev
,
1544 struct device_attribute
*attr
, char *buf
)
1546 struct nvdimm
*nvdimm
= to_nvdimm(dev
);
1547 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
1549 if (nfit_mem
->family
< 0)
1551 return sysfs_emit(buf
, "%#lx\n", nfit_mem
->dsm_mask
);
1553 static DEVICE_ATTR_RO(dsm_mask
);
1555 static ssize_t
flags_show(struct device
*dev
,
1556 struct device_attribute
*attr
, char *buf
)
1558 struct nvdimm
*nvdimm
= to_nvdimm(dev
);
1559 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
1560 u16 flags
= __to_nfit_memdev(nfit_mem
)->flags
;
1562 if (test_bit(NFIT_MEM_DIRTY
, &nfit_mem
->flags
))
1563 flags
|= ACPI_NFIT_MEM_FLUSH_FAILED
;
1565 return sysfs_emit(buf
, "%s%s%s%s%s%s%s\n",
1566 flags
& ACPI_NFIT_MEM_SAVE_FAILED
? "save_fail " : "",
1567 flags
& ACPI_NFIT_MEM_RESTORE_FAILED
? "restore_fail " : "",
1568 flags
& ACPI_NFIT_MEM_FLUSH_FAILED
? "flush_fail " : "",
1569 flags
& ACPI_NFIT_MEM_NOT_ARMED
? "not_armed " : "",
1570 flags
& ACPI_NFIT_MEM_HEALTH_OBSERVED
? "smart_event " : "",
1571 flags
& ACPI_NFIT_MEM_MAP_FAILED
? "map_fail " : "",
1572 flags
& ACPI_NFIT_MEM_HEALTH_ENABLED
? "smart_notify " : "");
1574 static DEVICE_ATTR_RO(flags
);
1576 static ssize_t
id_show(struct device
*dev
,
1577 struct device_attribute
*attr
, char *buf
)
1579 struct nvdimm
*nvdimm
= to_nvdimm(dev
);
1580 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
1582 return sysfs_emit(buf
, "%s\n", nfit_mem
->id
);
1584 static DEVICE_ATTR_RO(id
);
1586 static ssize_t
dirty_shutdown_show(struct device
*dev
,
1587 struct device_attribute
*attr
, char *buf
)
1589 struct nvdimm
*nvdimm
= to_nvdimm(dev
);
1590 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
1592 return sysfs_emit(buf
, "%d\n", nfit_mem
->dirty_shutdown
);
1594 static DEVICE_ATTR_RO(dirty_shutdown
);
1596 static struct attribute
*acpi_nfit_dimm_attributes
[] = {
1597 &dev_attr_handle
.attr
,
1598 &dev_attr_phys_id
.attr
,
1599 &dev_attr_vendor
.attr
,
1600 &dev_attr_device
.attr
,
1601 &dev_attr_rev_id
.attr
,
1602 &dev_attr_subsystem_vendor
.attr
,
1603 &dev_attr_subsystem_device
.attr
,
1604 &dev_attr_subsystem_rev_id
.attr
,
1605 &dev_attr_format
.attr
,
1606 &dev_attr_formats
.attr
,
1607 &dev_attr_format1
.attr
,
1608 &dev_attr_serial
.attr
,
1609 &dev_attr_flags
.attr
,
1611 &dev_attr_family
.attr
,
1612 &dev_attr_dsm_mask
.attr
,
1613 &dev_attr_dirty_shutdown
.attr
,
1617 static umode_t
acpi_nfit_dimm_attr_visible(struct kobject
*kobj
,
1618 struct attribute
*a
, int n
)
1620 struct device
*dev
= kobj_to_dev(kobj
);
1621 struct nvdimm
*nvdimm
= to_nvdimm(dev
);
1622 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
1624 if (!to_nfit_dcr(dev
)) {
1625 /* Without a dcr only the memdev attributes can be surfaced */
1626 if (a
== &dev_attr_handle
.attr
|| a
== &dev_attr_phys_id
.attr
1627 || a
== &dev_attr_flags
.attr
1628 || a
== &dev_attr_family
.attr
1629 || a
== &dev_attr_dsm_mask
.attr
)
1634 if (a
== &dev_attr_format1
.attr
&& num_nvdimm_formats(nvdimm
) <= 1)
1637 if (!test_bit(NFIT_MEM_DIRTY_COUNT
, &nfit_mem
->flags
)
1638 && a
== &dev_attr_dirty_shutdown
.attr
)
1644 static const struct attribute_group acpi_nfit_dimm_attribute_group
= {
1646 .attrs
= acpi_nfit_dimm_attributes
,
1647 .is_visible
= acpi_nfit_dimm_attr_visible
,
1650 static const struct attribute_group
*acpi_nfit_dimm_attribute_groups
[] = {
1651 &acpi_nfit_dimm_attribute_group
,
1655 static struct nvdimm
*acpi_nfit_dimm_by_handle(struct acpi_nfit_desc
*acpi_desc
,
1658 struct nfit_mem
*nfit_mem
;
1660 list_for_each_entry(nfit_mem
, &acpi_desc
->dimms
, list
)
1661 if (__to_nfit_memdev(nfit_mem
)->device_handle
== device_handle
)
1662 return nfit_mem
->nvdimm
;
1667 void __acpi_nvdimm_notify(struct device
*dev
, u32 event
)
1669 struct nfit_mem
*nfit_mem
;
1670 struct acpi_nfit_desc
*acpi_desc
;
1672 dev_dbg(dev
->parent
, "%s: event: %d\n", dev_name(dev
),
1675 if (event
!= NFIT_NOTIFY_DIMM_HEALTH
) {
1676 dev_dbg(dev
->parent
, "%s: unknown event: %d\n", dev_name(dev
),
1681 acpi_desc
= dev_get_drvdata(dev
->parent
);
1686 * If we successfully retrieved acpi_desc, then we know nfit_mem data
1689 nfit_mem
= dev_get_drvdata(dev
);
1690 if (nfit_mem
&& nfit_mem
->flags_attr
)
1691 sysfs_notify_dirent(nfit_mem
->flags_attr
);
1693 EXPORT_SYMBOL_GPL(__acpi_nvdimm_notify
);
1695 static void acpi_nvdimm_notify(acpi_handle handle
, u32 event
, void *data
)
1697 struct acpi_device
*adev
= data
;
1698 struct device
*dev
= &adev
->dev
;
1700 device_lock(dev
->parent
);
1701 __acpi_nvdimm_notify(dev
, event
);
1702 device_unlock(dev
->parent
);
1705 static bool acpi_nvdimm_has_method(struct acpi_device
*adev
, char *method
)
1710 status
= acpi_get_handle(adev
->handle
, method
, &handle
);
1712 if (ACPI_SUCCESS(status
))
1717 __weak
void nfit_intel_shutdown_status(struct nfit_mem
*nfit_mem
)
1719 struct device
*dev
= &nfit_mem
->adev
->dev
;
1720 struct nd_intel_smart smart
= { 0 };
1721 union acpi_object in_buf
= {
1722 .buffer
.type
= ACPI_TYPE_BUFFER
,
1725 union acpi_object in_obj
= {
1726 .package
.type
= ACPI_TYPE_PACKAGE
,
1728 .package
.elements
= &in_buf
,
1730 const u8 func
= ND_INTEL_SMART
;
1731 const guid_t
*guid
= to_nfit_uuid(nfit_mem
->family
);
1732 u8 revid
= nfit_dsm_revid(nfit_mem
->family
, func
);
1733 struct acpi_device
*adev
= nfit_mem
->adev
;
1734 acpi_handle handle
= adev
->handle
;
1735 union acpi_object
*out_obj
;
1737 if ((nfit_mem
->dsm_mask
& (1 << func
)) == 0)
1740 out_obj
= acpi_evaluate_dsm_typed(handle
, guid
, revid
, func
, &in_obj
, ACPI_TYPE_BUFFER
);
1741 if (!out_obj
|| out_obj
->buffer
.length
< sizeof(smart
)) {
1742 dev_dbg(dev
->parent
, "%s: failed to retrieve initial health\n",
1747 memcpy(&smart
, out_obj
->buffer
.pointer
, sizeof(smart
));
1750 if (smart
.flags
& ND_INTEL_SMART_SHUTDOWN_VALID
) {
1751 if (smart
.shutdown_state
)
1752 set_bit(NFIT_MEM_DIRTY
, &nfit_mem
->flags
);
1755 if (smart
.flags
& ND_INTEL_SMART_SHUTDOWN_COUNT_VALID
) {
1756 set_bit(NFIT_MEM_DIRTY_COUNT
, &nfit_mem
->flags
);
1757 nfit_mem
->dirty_shutdown
= smart
.shutdown_count
;
1761 static void populate_shutdown_status(struct nfit_mem
*nfit_mem
)
1764 * For DIMMs that provide a dynamic facility to retrieve a
1765 * dirty-shutdown status and/or a dirty-shutdown count, cache
1766 * these values in nfit_mem.
1768 if (nfit_mem
->family
== NVDIMM_FAMILY_INTEL
)
1769 nfit_intel_shutdown_status(nfit_mem
);
1772 static int acpi_nfit_add_dimm(struct acpi_nfit_desc
*acpi_desc
,
1773 struct nfit_mem
*nfit_mem
, u32 device_handle
)
1775 struct nvdimm_bus_descriptor
*nd_desc
= &acpi_desc
->nd_desc
;
1776 struct acpi_device
*adev
, *adev_dimm
;
1777 struct device
*dev
= acpi_desc
->dev
;
1778 unsigned long dsm_mask
, label_mask
;
1782 struct acpi_nfit_control_region
*dcr
= nfit_mem
->dcr
;
1784 /* nfit test assumes 1:1 relationship between commands and dsms */
1785 nfit_mem
->dsm_mask
= acpi_desc
->dimm_cmd_force_en
;
1786 nfit_mem
->family
= NVDIMM_FAMILY_INTEL
;
1787 set_bit(NVDIMM_FAMILY_INTEL
, &nd_desc
->dimm_family_mask
);
1789 if (dcr
->valid_fields
& ACPI_NFIT_CONTROL_MFG_INFO_VALID
)
1790 sprintf(nfit_mem
->id
, "%04x-%02x-%04x-%08x",
1791 be16_to_cpu(dcr
->vendor_id
),
1792 dcr
->manufacturing_location
,
1793 be16_to_cpu(dcr
->manufacturing_date
),
1794 be32_to_cpu(dcr
->serial_number
));
1796 sprintf(nfit_mem
->id
, "%04x-%08x",
1797 be16_to_cpu(dcr
->vendor_id
),
1798 be32_to_cpu(dcr
->serial_number
));
1800 adev
= to_acpi_dev(acpi_desc
);
1802 /* unit test case */
1803 populate_shutdown_status(nfit_mem
);
1807 adev_dimm
= acpi_find_child_device(adev
, device_handle
, false);
1808 nfit_mem
->adev
= adev_dimm
;
1810 dev_err(dev
, "no ACPI.NFIT device with _ADR %#x, disabling...\n",
1812 return force_enable_dimms
? 0 : -ENODEV
;
1815 if (ACPI_FAILURE(acpi_install_notify_handler(adev_dimm
->handle
,
1816 ACPI_DEVICE_NOTIFY
, acpi_nvdimm_notify
, adev_dimm
))) {
1817 dev_err(dev
, "%s: notification registration failed\n",
1818 dev_name(&adev_dimm
->dev
));
1822 * Record nfit_mem for the notification path to track back to
1823 * the nfit sysfs attributes for this dimm device object.
1825 dev_set_drvdata(&adev_dimm
->dev
, nfit_mem
);
1828 * There are 4 "legacy" NVDIMM command sets
1829 * (NVDIMM_FAMILY_{INTEL,MSFT,HPE1,HPE2}) that were created before
1830 * an EFI working group was established to constrain this
1831 * proliferation. The nfit driver probes for the supported command
1832 * set by GUID. Note, if you're a platform developer looking to add
1833 * a new command set to this probe, consider using an existing set,
1834 * or otherwise seek approval to publish the command set at
1835 * http://www.uefi.org/RFIC_LIST.
1837 * Note, that checking for function0 (bit0) tells us if any commands
1838 * are reachable through this GUID.
1840 clear_bit(NVDIMM_FAMILY_INTEL
, &nd_desc
->dimm_family_mask
);
1841 for (i
= 0; i
<= NVDIMM_FAMILY_MAX
; i
++)
1842 if (acpi_check_dsm(adev_dimm
->handle
, to_nfit_uuid(i
), 1, 1)) {
1843 set_bit(i
, &nd_desc
->dimm_family_mask
);
1844 if (family
< 0 || i
== default_dsm_family
)
1848 /* limit the supported commands to those that are publicly documented */
1849 nfit_mem
->family
= family
;
1850 if (override_dsm_mask
&& !disable_vendor_specific
)
1851 dsm_mask
= override_dsm_mask
;
1852 else if (nfit_mem
->family
== NVDIMM_FAMILY_INTEL
) {
1853 dsm_mask
= NVDIMM_INTEL_CMDMASK
;
1854 if (disable_vendor_specific
)
1855 dsm_mask
&= ~(1 << ND_CMD_VENDOR
);
1856 } else if (nfit_mem
->family
== NVDIMM_FAMILY_HPE1
) {
1857 dsm_mask
= 0x1c3c76;
1858 } else if (nfit_mem
->family
== NVDIMM_FAMILY_HPE2
) {
1860 if (disable_vendor_specific
)
1861 dsm_mask
&= ~(1 << 8);
1862 } else if (nfit_mem
->family
== NVDIMM_FAMILY_MSFT
) {
1863 dsm_mask
= 0xffffffff;
1864 } else if (nfit_mem
->family
== NVDIMM_FAMILY_HYPERV
) {
1867 dev_dbg(dev
, "unknown dimm command family\n");
1868 nfit_mem
->family
= -1;
1869 /* DSMs are optional, continue loading the driver... */
1874 * Function 0 is the command interrogation function, don't
1875 * export it to potential userspace use, and enable it to be
1876 * used as an error value in acpi_nfit_ctl().
1880 guid
= to_nfit_uuid(nfit_mem
->family
);
1881 for_each_set_bit(i
, &dsm_mask
, BITS_PER_LONG
)
1882 if (acpi_check_dsm(adev_dimm
->handle
, guid
,
1883 nfit_dsm_revid(nfit_mem
->family
, i
),
1885 set_bit(i
, &nfit_mem
->dsm_mask
);
1888 * Prefer the NVDIMM_FAMILY_INTEL label read commands if present
1889 * due to their better semantics handling locked capacity.
1891 label_mask
= 1 << ND_CMD_GET_CONFIG_SIZE
| 1 << ND_CMD_GET_CONFIG_DATA
1892 | 1 << ND_CMD_SET_CONFIG_DATA
;
1893 if (family
== NVDIMM_FAMILY_INTEL
1894 && (dsm_mask
& label_mask
) == label_mask
)
1895 /* skip _LS{I,R,W} enabling */;
1897 if (acpi_nvdimm_has_method(adev_dimm
, "_LSI")
1898 && acpi_nvdimm_has_method(adev_dimm
, "_LSR")) {
1899 dev_dbg(dev
, "%s: has _LSR\n", dev_name(&adev_dimm
->dev
));
1900 set_bit(NFIT_MEM_LSR
, &nfit_mem
->flags
);
1903 if (test_bit(NFIT_MEM_LSR
, &nfit_mem
->flags
)
1904 && acpi_nvdimm_has_method(adev_dimm
, "_LSW")) {
1905 dev_dbg(dev
, "%s: has _LSW\n", dev_name(&adev_dimm
->dev
));
1906 set_bit(NFIT_MEM_LSW
, &nfit_mem
->flags
);
1910 * Quirk read-only label configurations to preserve
1911 * access to label-less namespaces by default.
1913 if (!test_bit(NFIT_MEM_LSW
, &nfit_mem
->flags
)
1915 dev_dbg(dev
, "%s: No _LSW, disable labels\n",
1916 dev_name(&adev_dimm
->dev
));
1917 clear_bit(NFIT_MEM_LSR
, &nfit_mem
->flags
);
1919 dev_dbg(dev
, "%s: Force enable labels\n",
1920 dev_name(&adev_dimm
->dev
));
1923 populate_shutdown_status(nfit_mem
);
1928 static void shutdown_dimm_notify(void *data
)
1930 struct acpi_nfit_desc
*acpi_desc
= data
;
1931 struct nfit_mem
*nfit_mem
;
1933 mutex_lock(&acpi_desc
->init_mutex
);
1935 * Clear out the nfit_mem->flags_attr and shut down dimm event
1938 list_for_each_entry(nfit_mem
, &acpi_desc
->dimms
, list
) {
1939 struct acpi_device
*adev_dimm
= nfit_mem
->adev
;
1941 if (nfit_mem
->flags_attr
) {
1942 sysfs_put(nfit_mem
->flags_attr
);
1943 nfit_mem
->flags_attr
= NULL
;
1946 acpi_remove_notify_handler(adev_dimm
->handle
,
1947 ACPI_DEVICE_NOTIFY
, acpi_nvdimm_notify
);
1948 dev_set_drvdata(&adev_dimm
->dev
, NULL
);
1951 mutex_unlock(&acpi_desc
->init_mutex
);
1954 static const struct nvdimm_security_ops
*acpi_nfit_get_security_ops(int family
)
1957 case NVDIMM_FAMILY_INTEL
:
1958 return intel_security_ops
;
1964 static const struct nvdimm_fw_ops
*acpi_nfit_get_fw_ops(
1965 struct nfit_mem
*nfit_mem
)
1968 struct acpi_nfit_desc
*acpi_desc
= nfit_mem
->acpi_desc
;
1969 struct nvdimm_bus_descriptor
*nd_desc
= &acpi_desc
->nd_desc
;
1971 if (!nd_desc
->fw_ops
)
1974 if (nfit_mem
->family
!= NVDIMM_FAMILY_INTEL
)
1977 mask
= nfit_mem
->dsm_mask
& NVDIMM_INTEL_FW_ACTIVATE_CMDMASK
;
1978 if (mask
!= NVDIMM_INTEL_FW_ACTIVATE_CMDMASK
)
1981 return intel_fw_ops
;
1984 static int acpi_nfit_register_dimms(struct acpi_nfit_desc
*acpi_desc
)
1986 struct nfit_mem
*nfit_mem
;
1987 int dimm_count
= 0, rc
;
1988 struct nvdimm
*nvdimm
;
1990 list_for_each_entry(nfit_mem
, &acpi_desc
->dimms
, list
) {
1991 struct acpi_nfit_flush_address
*flush
;
1992 unsigned long flags
= 0, cmd_mask
;
1993 struct nfit_memdev
*nfit_memdev
;
1997 device_handle
= __to_nfit_memdev(nfit_mem
)->device_handle
;
1998 nvdimm
= acpi_nfit_dimm_by_handle(acpi_desc
, device_handle
);
2004 /* collate flags across all memdevs for this dimm */
2005 list_for_each_entry(nfit_memdev
, &acpi_desc
->memdevs
, list
) {
2006 struct acpi_nfit_memory_map
*dimm_memdev
;
2008 dimm_memdev
= __to_nfit_memdev(nfit_mem
);
2009 if (dimm_memdev
->device_handle
2010 != nfit_memdev
->memdev
->device_handle
)
2012 dimm_memdev
->flags
|= nfit_memdev
->memdev
->flags
;
2015 mem_flags
= __to_nfit_memdev(nfit_mem
)->flags
;
2016 if (mem_flags
& ACPI_NFIT_MEM_NOT_ARMED
)
2017 set_bit(NDD_UNARMED
, &flags
);
2019 rc
= acpi_nfit_add_dimm(acpi_desc
, nfit_mem
, device_handle
);
2024 * TODO: provide translation for non-NVDIMM_FAMILY_INTEL
2025 * devices (i.e. from nd_cmd to acpi_dsm) to standardize the
2026 * userspace interface.
2028 cmd_mask
= 1UL << ND_CMD_CALL
;
2029 if (nfit_mem
->family
== NVDIMM_FAMILY_INTEL
) {
2031 * These commands have a 1:1 correspondence
2032 * between DSM payload and libnvdimm ioctl
2035 cmd_mask
|= nfit_mem
->dsm_mask
& NVDIMM_STANDARD_CMDMASK
;
2038 if (test_bit(NFIT_MEM_LSR
, &nfit_mem
->flags
)) {
2039 set_bit(ND_CMD_GET_CONFIG_SIZE
, &cmd_mask
);
2040 set_bit(ND_CMD_GET_CONFIG_DATA
, &cmd_mask
);
2042 if (test_bit(NFIT_MEM_LSW
, &nfit_mem
->flags
))
2043 set_bit(ND_CMD_SET_CONFIG_DATA
, &cmd_mask
);
2045 flush
= nfit_mem
->nfit_flush
? nfit_mem
->nfit_flush
->flush
2047 nvdimm
= __nvdimm_create(acpi_desc
->nvdimm_bus
, nfit_mem
,
2048 acpi_nfit_dimm_attribute_groups
,
2049 flags
, cmd_mask
, flush
? flush
->hint_count
: 0,
2050 nfit_mem
->flush_wpq
, &nfit_mem
->id
[0],
2051 acpi_nfit_get_security_ops(nfit_mem
->family
),
2052 acpi_nfit_get_fw_ops(nfit_mem
));
2056 nfit_mem
->nvdimm
= nvdimm
;
2059 if ((mem_flags
& ACPI_NFIT_MEM_FAILED_MASK
) == 0)
2062 dev_err(acpi_desc
->dev
, "Error found in NVDIMM %s flags:%s%s%s%s%s\n",
2063 nvdimm_name(nvdimm
),
2064 mem_flags
& ACPI_NFIT_MEM_SAVE_FAILED
? " save_fail" : "",
2065 mem_flags
& ACPI_NFIT_MEM_RESTORE_FAILED
? " restore_fail":"",
2066 mem_flags
& ACPI_NFIT_MEM_FLUSH_FAILED
? " flush_fail" : "",
2067 mem_flags
& ACPI_NFIT_MEM_NOT_ARMED
? " not_armed" : "",
2068 mem_flags
& ACPI_NFIT_MEM_MAP_FAILED
? " map_fail" : "");
2072 rc
= nvdimm_bus_check_dimm_count(acpi_desc
->nvdimm_bus
, dimm_count
);
2077 * Now that dimms are successfully registered, and async registration
2078 * is flushed, attempt to enable event notification.
2080 list_for_each_entry(nfit_mem
, &acpi_desc
->dimms
, list
) {
2081 struct kernfs_node
*nfit_kernfs
;
2083 nvdimm
= nfit_mem
->nvdimm
;
2087 nfit_kernfs
= sysfs_get_dirent(nvdimm_kobj(nvdimm
)->sd
, "nfit");
2089 nfit_mem
->flags_attr
= sysfs_get_dirent(nfit_kernfs
,
2091 sysfs_put(nfit_kernfs
);
2092 if (!nfit_mem
->flags_attr
)
2093 dev_warn(acpi_desc
->dev
, "%s: notifications disabled\n",
2094 nvdimm_name(nvdimm
));
2097 return devm_add_action_or_reset(acpi_desc
->dev
, shutdown_dimm_notify
,
2102 * These constants are private because there are no kernel consumers of
2105 enum nfit_aux_cmds
{
2106 NFIT_CMD_TRANSLATE_SPA
= 5,
2107 NFIT_CMD_ARS_INJECT_SET
= 7,
2108 NFIT_CMD_ARS_INJECT_CLEAR
= 8,
2109 NFIT_CMD_ARS_INJECT_GET
= 9,
2112 static void acpi_nfit_init_dsms(struct acpi_nfit_desc
*acpi_desc
)
2114 struct nvdimm_bus_descriptor
*nd_desc
= &acpi_desc
->nd_desc
;
2115 const guid_t
*guid
= to_nfit_uuid(NFIT_DEV_BUS
);
2116 unsigned long dsm_mask
, *mask
;
2117 struct acpi_device
*adev
;
2120 set_bit(ND_CMD_CALL
, &nd_desc
->cmd_mask
);
2121 set_bit(NVDIMM_BUS_FAMILY_NFIT
, &nd_desc
->bus_family_mask
);
2123 /* enable nfit_test to inject bus command emulation */
2124 if (acpi_desc
->bus_cmd_force_en
) {
2125 nd_desc
->cmd_mask
= acpi_desc
->bus_cmd_force_en
;
2126 mask
= &nd_desc
->bus_family_mask
;
2127 if (acpi_desc
->family_dsm_mask
[NVDIMM_BUS_FAMILY_INTEL
]) {
2128 set_bit(NVDIMM_BUS_FAMILY_INTEL
, mask
);
2129 nd_desc
->fw_ops
= intel_bus_fw_ops
;
2133 adev
= to_acpi_dev(acpi_desc
);
2137 for (i
= ND_CMD_ARS_CAP
; i
<= ND_CMD_CLEAR_ERROR
; i
++)
2138 if (acpi_check_dsm(adev
->handle
, guid
, 1, 1ULL << i
))
2139 set_bit(i
, &nd_desc
->cmd_mask
);
2142 (1 << ND_CMD_ARS_CAP
) |
2143 (1 << ND_CMD_ARS_START
) |
2144 (1 << ND_CMD_ARS_STATUS
) |
2145 (1 << ND_CMD_CLEAR_ERROR
) |
2146 (1 << NFIT_CMD_TRANSLATE_SPA
) |
2147 (1 << NFIT_CMD_ARS_INJECT_SET
) |
2148 (1 << NFIT_CMD_ARS_INJECT_CLEAR
) |
2149 (1 << NFIT_CMD_ARS_INJECT_GET
);
2150 for_each_set_bit(i
, &dsm_mask
, BITS_PER_LONG
)
2151 if (acpi_check_dsm(adev
->handle
, guid
, 1, 1ULL << i
))
2152 set_bit(i
, &acpi_desc
->bus_dsm_mask
);
2154 /* Enumerate allowed NVDIMM_BUS_FAMILY_INTEL commands */
2155 dsm_mask
= NVDIMM_BUS_INTEL_FW_ACTIVATE_CMDMASK
;
2156 guid
= to_nfit_bus_uuid(NVDIMM_BUS_FAMILY_INTEL
);
2157 mask
= &acpi_desc
->family_dsm_mask
[NVDIMM_BUS_FAMILY_INTEL
];
2158 for_each_set_bit(i
, &dsm_mask
, BITS_PER_LONG
)
2159 if (acpi_check_dsm(adev
->handle
, guid
, 1, 1ULL << i
))
2162 if (*mask
== dsm_mask
) {
2163 set_bit(NVDIMM_BUS_FAMILY_INTEL
, &nd_desc
->bus_family_mask
);
2164 nd_desc
->fw_ops
= intel_bus_fw_ops
;
2168 static ssize_t
range_index_show(struct device
*dev
,
2169 struct device_attribute
*attr
, char *buf
)
2171 struct nd_region
*nd_region
= to_nd_region(dev
);
2172 struct nfit_spa
*nfit_spa
= nd_region_provider_data(nd_region
);
2174 return sysfs_emit(buf
, "%d\n", nfit_spa
->spa
->range_index
);
2176 static DEVICE_ATTR_RO(range_index
);
2178 static struct attribute
*acpi_nfit_region_attributes
[] = {
2179 &dev_attr_range_index
.attr
,
2183 static const struct attribute_group acpi_nfit_region_attribute_group
= {
2185 .attrs
= acpi_nfit_region_attributes
,
2188 static const struct attribute_group
*acpi_nfit_region_attribute_groups
[] = {
2189 &acpi_nfit_region_attribute_group
,
2193 /* enough info to uniquely specify an interleave set */
2194 struct nfit_set_info
{
2200 struct nfit_set_info2
{
2204 u16 manufacturing_date
;
2205 u8 manufacturing_location
;
2209 static int cmp_map_compat(const void *m0
, const void *m1
)
2211 const struct nfit_set_info
*map0
= m0
;
2212 const struct nfit_set_info
*map1
= m1
;
2214 return memcmp(&map0
->region_offset
, &map1
->region_offset
,
2218 static int cmp_map(const void *m0
, const void *m1
)
2220 const struct nfit_set_info
*map0
= m0
;
2221 const struct nfit_set_info
*map1
= m1
;
2223 if (map0
->region_offset
< map1
->region_offset
)
2225 else if (map0
->region_offset
> map1
->region_offset
)
2230 static int cmp_map2(const void *m0
, const void *m1
)
2232 const struct nfit_set_info2
*map0
= m0
;
2233 const struct nfit_set_info2
*map1
= m1
;
2235 if (map0
->region_offset
< map1
->region_offset
)
2237 else if (map0
->region_offset
> map1
->region_offset
)
2242 /* Retrieve the nth entry referencing this spa */
2243 static struct acpi_nfit_memory_map
*memdev_from_spa(
2244 struct acpi_nfit_desc
*acpi_desc
, u16 range_index
, int n
)
2246 struct nfit_memdev
*nfit_memdev
;
2248 list_for_each_entry(nfit_memdev
, &acpi_desc
->memdevs
, list
)
2249 if (nfit_memdev
->memdev
->range_index
== range_index
)
2251 return nfit_memdev
->memdev
;
2255 static int acpi_nfit_init_interleave_set(struct acpi_nfit_desc
*acpi_desc
,
2256 struct nd_region_desc
*ndr_desc
,
2257 struct acpi_nfit_system_address
*spa
)
2259 u16 nr
= ndr_desc
->num_mappings
;
2260 struct nfit_set_info2
*info2
__free(kfree
) =
2261 kcalloc(nr
, sizeof(*info2
), GFP_KERNEL
);
2262 struct nfit_set_info
*info
__free(kfree
) =
2263 kcalloc(nr
, sizeof(*info
), GFP_KERNEL
);
2264 struct device
*dev
= acpi_desc
->dev
;
2265 struct nd_interleave_set
*nd_set
;
2268 if (!info
|| !info2
)
2271 nd_set
= devm_kzalloc(dev
, sizeof(*nd_set
), GFP_KERNEL
);
2274 import_guid(&nd_set
->type_guid
, spa
->range_guid
);
2276 for (i
= 0; i
< nr
; i
++) {
2277 struct nd_mapping_desc
*mapping
= &ndr_desc
->mapping
[i
];
2278 struct nvdimm
*nvdimm
= mapping
->nvdimm
;
2279 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
2280 struct nfit_set_info
*map
= &info
[i
];
2281 struct nfit_set_info2
*map2
= &info2
[i
];
2282 struct acpi_nfit_memory_map
*memdev
=
2283 memdev_from_spa(acpi_desc
, spa
->range_index
, i
);
2284 struct acpi_nfit_control_region
*dcr
= nfit_mem
->dcr
;
2286 if (!memdev
|| !nfit_mem
->dcr
) {
2287 dev_err(dev
, "%s: failed to find DCR\n", __func__
);
2291 map
->region_offset
= memdev
->region_offset
;
2292 map
->serial_number
= dcr
->serial_number
;
2294 map2
->region_offset
= memdev
->region_offset
;
2295 map2
->serial_number
= dcr
->serial_number
;
2296 map2
->vendor_id
= dcr
->vendor_id
;
2297 map2
->manufacturing_date
= dcr
->manufacturing_date
;
2298 map2
->manufacturing_location
= dcr
->manufacturing_location
;
2301 /* v1.1 namespaces */
2302 sort(info
, nr
, sizeof(*info
), cmp_map
, NULL
);
2303 nd_set
->cookie1
= nd_fletcher64(info
, sizeof(*info
) * nr
, 0);
2305 /* v1.2 namespaces */
2306 sort(info2
, nr
, sizeof(*info2
), cmp_map2
, NULL
);
2307 nd_set
->cookie2
= nd_fletcher64(info2
, sizeof(*info2
) * nr
, 0);
2309 /* support v1.1 namespaces created with the wrong sort order */
2310 sort(info
, nr
, sizeof(*info
), cmp_map_compat
, NULL
);
2311 nd_set
->altcookie
= nd_fletcher64(info
, sizeof(*info
) * nr
, 0);
2313 /* record the result of the sort for the mapping position */
2314 for (i
= 0; i
< nr
; i
++) {
2315 struct nfit_set_info2
*map2
= &info2
[i
];
2318 for (j
= 0; j
< nr
; j
++) {
2319 struct nd_mapping_desc
*mapping
= &ndr_desc
->mapping
[j
];
2320 struct nvdimm
*nvdimm
= mapping
->nvdimm
;
2321 struct nfit_mem
*nfit_mem
= nvdimm_provider_data(nvdimm
);
2322 struct acpi_nfit_control_region
*dcr
= nfit_mem
->dcr
;
2324 if (map2
->serial_number
== dcr
->serial_number
&&
2325 map2
->vendor_id
== dcr
->vendor_id
&&
2326 map2
->manufacturing_date
== dcr
->manufacturing_date
&&
2327 map2
->manufacturing_location
2328 == dcr
->manufacturing_location
) {
2329 mapping
->position
= i
;
2335 ndr_desc
->nd_set
= nd_set
;
2340 static int ars_get_cap(struct acpi_nfit_desc
*acpi_desc
,
2341 struct nd_cmd_ars_cap
*cmd
, struct nfit_spa
*nfit_spa
)
2343 struct nvdimm_bus_descriptor
*nd_desc
= &acpi_desc
->nd_desc
;
2344 struct acpi_nfit_system_address
*spa
= nfit_spa
->spa
;
2347 cmd
->address
= spa
->address
;
2348 cmd
->length
= spa
->length
;
2349 rc
= nd_desc
->ndctl(nd_desc
, NULL
, ND_CMD_ARS_CAP
, cmd
,
2350 sizeof(*cmd
), &cmd_rc
);
2356 static int ars_start(struct acpi_nfit_desc
*acpi_desc
,
2357 struct nfit_spa
*nfit_spa
, enum nfit_ars_state req_type
)
2361 struct nd_cmd_ars_start ars_start
;
2362 struct acpi_nfit_system_address
*spa
= nfit_spa
->spa
;
2363 struct nvdimm_bus_descriptor
*nd_desc
= &acpi_desc
->nd_desc
;
2365 memset(&ars_start
, 0, sizeof(ars_start
));
2366 ars_start
.address
= spa
->address
;
2367 ars_start
.length
= spa
->length
;
2368 if (req_type
== ARS_REQ_SHORT
)
2369 ars_start
.flags
= ND_ARS_RETURN_PREV_DATA
;
2370 if (nfit_spa_type(spa
) == NFIT_SPA_PM
)
2371 ars_start
.type
= ND_ARS_PERSISTENT
;
2372 else if (nfit_spa_type(spa
) == NFIT_SPA_VOLATILE
)
2373 ars_start
.type
= ND_ARS_VOLATILE
;
2377 rc
= nd_desc
->ndctl(nd_desc
, NULL
, ND_CMD_ARS_START
, &ars_start
,
2378 sizeof(ars_start
), &cmd_rc
);
2384 set_bit(ARS_VALID
, &acpi_desc
->scrub_flags
);
2388 static int ars_continue(struct acpi_nfit_desc
*acpi_desc
)
2391 struct nd_cmd_ars_start ars_start
;
2392 struct nvdimm_bus_descriptor
*nd_desc
= &acpi_desc
->nd_desc
;
2393 struct nd_cmd_ars_status
*ars_status
= acpi_desc
->ars_status
;
2395 ars_start
= (struct nd_cmd_ars_start
) {
2396 .address
= ars_status
->restart_address
,
2397 .length
= ars_status
->restart_length
,
2398 .type
= ars_status
->type
,
2400 rc
= nd_desc
->ndctl(nd_desc
, NULL
, ND_CMD_ARS_START
, &ars_start
,
2401 sizeof(ars_start
), &cmd_rc
);
2407 static int ars_get_status(struct acpi_nfit_desc
*acpi_desc
)
2409 struct nvdimm_bus_descriptor
*nd_desc
= &acpi_desc
->nd_desc
;
2410 struct nd_cmd_ars_status
*ars_status
= acpi_desc
->ars_status
;
2413 rc
= nd_desc
->ndctl(nd_desc
, NULL
, ND_CMD_ARS_STATUS
, ars_status
,
2414 acpi_desc
->max_ars
, &cmd_rc
);
2420 static void ars_complete(struct acpi_nfit_desc
*acpi_desc
,
2421 struct nfit_spa
*nfit_spa
)
2423 struct nd_cmd_ars_status
*ars_status
= acpi_desc
->ars_status
;
2424 struct acpi_nfit_system_address
*spa
= nfit_spa
->spa
;
2425 struct nd_region
*nd_region
= nfit_spa
->nd_region
;
2428 lockdep_assert_held(&acpi_desc
->init_mutex
);
2430 * Only advance the ARS state for ARS runs initiated by the
2431 * kernel, ignore ARS results from BIOS initiated runs for scrub
2432 * completion tracking.
2434 if (acpi_desc
->scrub_spa
!= nfit_spa
)
2437 if ((ars_status
->address
>= spa
->address
&& ars_status
->address
2438 < spa
->address
+ spa
->length
)
2439 || (ars_status
->address
< spa
->address
)) {
2441 * Assume that if a scrub starts at an offset from the
2442 * start of nfit_spa that we are in the continuation
2445 * Otherwise, if the scrub covers the spa range, mark
2446 * any pending request complete.
2448 if (ars_status
->address
+ ars_status
->length
2449 >= spa
->address
+ spa
->length
)
2456 acpi_desc
->scrub_spa
= NULL
;
2458 dev
= nd_region_dev(nd_region
);
2459 nvdimm_region_notify(nd_region
, NVDIMM_REVALIDATE_POISON
);
2461 dev
= acpi_desc
->dev
;
2462 dev_dbg(dev
, "ARS: range %d complete\n", spa
->range_index
);
2465 static int ars_status_process_records(struct acpi_nfit_desc
*acpi_desc
)
2467 struct nvdimm_bus
*nvdimm_bus
= acpi_desc
->nvdimm_bus
;
2468 struct nd_cmd_ars_status
*ars_status
= acpi_desc
->ars_status
;
2473 * First record starts at 44 byte offset from the start of the
2476 if (ars_status
->out_length
< 44)
2480 * Ignore potentially stale results that are only refreshed
2481 * after a start-ARS event.
2483 if (!test_and_clear_bit(ARS_VALID
, &acpi_desc
->scrub_flags
)) {
2484 dev_dbg(acpi_desc
->dev
, "skip %d stale records\n",
2485 ars_status
->num_records
);
2489 for (i
= 0; i
< ars_status
->num_records
; i
++) {
2490 /* only process full records */
2491 if (ars_status
->out_length
2492 < 44 + sizeof(struct nd_ars_record
) * (i
+ 1))
2494 rc
= nvdimm_bus_add_badrange(nvdimm_bus
,
2495 ars_status
->records
[i
].err_address
,
2496 ars_status
->records
[i
].length
);
2500 if (i
< ars_status
->num_records
)
2501 dev_warn(acpi_desc
->dev
, "detected truncated ars results\n");
2506 static void acpi_nfit_remove_resource(void *data
)
2508 struct resource
*res
= data
;
2510 remove_resource(res
);
2513 static int acpi_nfit_insert_resource(struct acpi_nfit_desc
*acpi_desc
,
2514 struct nd_region_desc
*ndr_desc
)
2516 struct resource
*res
, *nd_res
= ndr_desc
->res
;
2519 /* No operation if the region is already registered as PMEM */
2520 is_pmem
= region_intersects(nd_res
->start
, resource_size(nd_res
),
2521 IORESOURCE_MEM
, IORES_DESC_PERSISTENT_MEMORY
);
2522 if (is_pmem
== REGION_INTERSECTS
)
2525 res
= devm_kzalloc(acpi_desc
->dev
, sizeof(*res
), GFP_KERNEL
);
2529 res
->name
= "Persistent Memory";
2530 res
->start
= nd_res
->start
;
2531 res
->end
= nd_res
->end
;
2532 res
->flags
= IORESOURCE_MEM
;
2533 res
->desc
= IORES_DESC_PERSISTENT_MEMORY
;
2535 ret
= insert_resource(&iomem_resource
, res
);
2539 ret
= devm_add_action_or_reset(acpi_desc
->dev
,
2540 acpi_nfit_remove_resource
,
2548 static int acpi_nfit_init_mapping(struct acpi_nfit_desc
*acpi_desc
,
2549 struct nd_mapping_desc
*mapping
, struct nd_region_desc
*ndr_desc
,
2550 struct acpi_nfit_memory_map
*memdev
,
2551 struct nfit_spa
*nfit_spa
)
2553 struct nvdimm
*nvdimm
= acpi_nfit_dimm_by_handle(acpi_desc
,
2554 memdev
->device_handle
);
2555 struct acpi_nfit_system_address
*spa
= nfit_spa
->spa
;
2558 dev_err(acpi_desc
->dev
, "spa%d dimm: %#x not found\n",
2559 spa
->range_index
, memdev
->device_handle
);
2563 mapping
->nvdimm
= nvdimm
;
2564 switch (nfit_spa_type(spa
)) {
2566 case NFIT_SPA_VOLATILE
:
2567 mapping
->start
= memdev
->address
;
2568 mapping
->size
= memdev
->region_size
;
2575 static bool nfit_spa_is_virtual(struct acpi_nfit_system_address
*spa
)
2577 return (nfit_spa_type(spa
) == NFIT_SPA_VDISK
||
2578 nfit_spa_type(spa
) == NFIT_SPA_VCD
||
2579 nfit_spa_type(spa
) == NFIT_SPA_PDISK
||
2580 nfit_spa_type(spa
) == NFIT_SPA_PCD
);
2583 static bool nfit_spa_is_volatile(struct acpi_nfit_system_address
*spa
)
2585 return (nfit_spa_type(spa
) == NFIT_SPA_VDISK
||
2586 nfit_spa_type(spa
) == NFIT_SPA_VCD
||
2587 nfit_spa_type(spa
) == NFIT_SPA_VOLATILE
);
2590 static int acpi_nfit_register_region(struct acpi_nfit_desc
*acpi_desc
,
2591 struct nfit_spa
*nfit_spa
)
2593 static struct nd_mapping_desc mappings
[ND_MAX_MAPPINGS
];
2594 struct acpi_nfit_system_address
*spa
= nfit_spa
->spa
;
2595 struct nd_region_desc
*ndr_desc
, _ndr_desc
;
2596 struct nfit_memdev
*nfit_memdev
;
2597 struct nvdimm_bus
*nvdimm_bus
;
2598 struct resource res
;
2601 if (nfit_spa
->nd_region
)
2604 if (spa
->range_index
== 0 && !nfit_spa_is_virtual(spa
)) {
2605 dev_dbg(acpi_desc
->dev
, "detected invalid spa index\n");
2609 memset(&res
, 0, sizeof(res
));
2610 memset(&mappings
, 0, sizeof(mappings
));
2611 memset(&_ndr_desc
, 0, sizeof(_ndr_desc
));
2612 res
.start
= spa
->address
;
2613 res
.end
= res
.start
+ spa
->length
- 1;
2614 ndr_desc
= &_ndr_desc
;
2615 ndr_desc
->res
= &res
;
2616 ndr_desc
->provider_data
= nfit_spa
;
2617 ndr_desc
->attr_groups
= acpi_nfit_region_attribute_groups
;
2618 if (spa
->flags
& ACPI_NFIT_PROXIMITY_VALID
) {
2619 ndr_desc
->numa_node
= pxm_to_online_node(spa
->proximity_domain
);
2620 ndr_desc
->target_node
= pxm_to_node(spa
->proximity_domain
);
2622 ndr_desc
->numa_node
= NUMA_NO_NODE
;
2623 ndr_desc
->target_node
= NUMA_NO_NODE
;
2626 /* Fallback to address based numa information if node lookup failed */
2627 if (ndr_desc
->numa_node
== NUMA_NO_NODE
) {
2628 ndr_desc
->numa_node
= memory_add_physaddr_to_nid(spa
->address
);
2629 dev_info(acpi_desc
->dev
, "changing numa node from %d to %d for nfit region [%pa-%pa]",
2630 NUMA_NO_NODE
, ndr_desc
->numa_node
, &res
.start
, &res
.end
);
2632 if (ndr_desc
->target_node
== NUMA_NO_NODE
) {
2633 ndr_desc
->target_node
= phys_to_target_node(spa
->address
);
2634 dev_info(acpi_desc
->dev
, "changing target node from %d to %d for nfit region [%pa-%pa]",
2635 NUMA_NO_NODE
, ndr_desc
->numa_node
, &res
.start
, &res
.end
);
2639 * Persistence domain bits are hierarchical, if
2640 * ACPI_NFIT_CAPABILITY_CACHE_FLUSH is set then
2641 * ACPI_NFIT_CAPABILITY_MEM_FLUSH is implied.
2643 if (acpi_desc
->platform_cap
& ACPI_NFIT_CAPABILITY_CACHE_FLUSH
)
2644 set_bit(ND_REGION_PERSIST_CACHE
, &ndr_desc
->flags
);
2645 else if (acpi_desc
->platform_cap
& ACPI_NFIT_CAPABILITY_MEM_FLUSH
)
2646 set_bit(ND_REGION_PERSIST_MEMCTRL
, &ndr_desc
->flags
);
2648 list_for_each_entry(nfit_memdev
, &acpi_desc
->memdevs
, list
) {
2649 struct acpi_nfit_memory_map
*memdev
= nfit_memdev
->memdev
;
2650 struct nd_mapping_desc
*mapping
;
2652 /* range index 0 == unmapped in SPA or invalid-SPA */
2653 if (memdev
->range_index
== 0 || spa
->range_index
== 0)
2655 if (memdev
->range_index
!= spa
->range_index
)
2657 if (count
>= ND_MAX_MAPPINGS
) {
2658 dev_err(acpi_desc
->dev
, "spa%d exceeds max mappings %d\n",
2659 spa
->range_index
, ND_MAX_MAPPINGS
);
2662 mapping
= &mappings
[count
++];
2663 rc
= acpi_nfit_init_mapping(acpi_desc
, mapping
, ndr_desc
,
2669 ndr_desc
->mapping
= mappings
;
2670 ndr_desc
->num_mappings
= count
;
2671 rc
= acpi_nfit_init_interleave_set(acpi_desc
, ndr_desc
, spa
);
2675 nvdimm_bus
= acpi_desc
->nvdimm_bus
;
2676 if (nfit_spa_type(spa
) == NFIT_SPA_PM
) {
2677 rc
= acpi_nfit_insert_resource(acpi_desc
, ndr_desc
);
2679 dev_warn(acpi_desc
->dev
,
2680 "failed to insert pmem resource to iomem: %d\n",
2685 nfit_spa
->nd_region
= nvdimm_pmem_region_create(nvdimm_bus
,
2687 if (!nfit_spa
->nd_region
)
2689 } else if (nfit_spa_is_volatile(spa
)) {
2690 nfit_spa
->nd_region
= nvdimm_volatile_region_create(nvdimm_bus
,
2692 if (!nfit_spa
->nd_region
)
2694 } else if (nfit_spa_is_virtual(spa
)) {
2695 nfit_spa
->nd_region
= nvdimm_pmem_region_create(nvdimm_bus
,
2697 if (!nfit_spa
->nd_region
)
2703 dev_err(acpi_desc
->dev
, "failed to register spa range %d\n",
2704 nfit_spa
->spa
->range_index
);
2708 static int ars_status_alloc(struct acpi_nfit_desc
*acpi_desc
)
2710 struct device
*dev
= acpi_desc
->dev
;
2711 struct nd_cmd_ars_status
*ars_status
;
2713 if (acpi_desc
->ars_status
) {
2714 memset(acpi_desc
->ars_status
, 0, acpi_desc
->max_ars
);
2718 ars_status
= devm_kzalloc(dev
, acpi_desc
->max_ars
, GFP_KERNEL
);
2721 acpi_desc
->ars_status
= ars_status
;
2725 static int acpi_nfit_query_poison(struct acpi_nfit_desc
*acpi_desc
)
2729 if (ars_status_alloc(acpi_desc
))
2732 rc
= ars_get_status(acpi_desc
);
2734 if (rc
< 0 && rc
!= -ENOSPC
)
2737 if (ars_status_process_records(acpi_desc
))
2738 dev_err(acpi_desc
->dev
, "Failed to process ARS records\n");
2743 static int ars_register(struct acpi_nfit_desc
*acpi_desc
,
2744 struct nfit_spa
*nfit_spa
)
2748 if (test_bit(ARS_FAILED
, &nfit_spa
->ars_state
))
2749 return acpi_nfit_register_region(acpi_desc
, nfit_spa
);
2751 set_bit(ARS_REQ_SHORT
, &nfit_spa
->ars_state
);
2753 set_bit(ARS_REQ_LONG
, &nfit_spa
->ars_state
);
2755 switch (acpi_nfit_query_poison(acpi_desc
)) {
2759 rc
= ars_start(acpi_desc
, nfit_spa
, ARS_REQ_SHORT
);
2760 /* shouldn't happen, try again later */
2764 set_bit(ARS_FAILED
, &nfit_spa
->ars_state
);
2767 clear_bit(ARS_REQ_SHORT
, &nfit_spa
->ars_state
);
2768 rc
= acpi_nfit_query_poison(acpi_desc
);
2771 acpi_desc
->scrub_spa
= nfit_spa
;
2772 ars_complete(acpi_desc
, nfit_spa
);
2774 * If ars_complete() says we didn't complete the
2775 * short scrub, we'll try again with a long
2778 acpi_desc
->scrub_spa
= NULL
;
2783 * BIOS was using ARS, wait for it to complete (or
2784 * resources to become available) and then perform our
2789 set_bit(ARS_FAILED
, &nfit_spa
->ars_state
);
2793 return acpi_nfit_register_region(acpi_desc
, nfit_spa
);
2796 static void ars_complete_all(struct acpi_nfit_desc
*acpi_desc
)
2798 struct nfit_spa
*nfit_spa
;
2800 list_for_each_entry(nfit_spa
, &acpi_desc
->spas
, list
) {
2801 if (test_bit(ARS_FAILED
, &nfit_spa
->ars_state
))
2803 ars_complete(acpi_desc
, nfit_spa
);
2807 static unsigned int __acpi_nfit_scrub(struct acpi_nfit_desc
*acpi_desc
,
2810 unsigned int tmo
= acpi_desc
->scrub_tmo
;
2811 struct device
*dev
= acpi_desc
->dev
;
2812 struct nfit_spa
*nfit_spa
;
2814 lockdep_assert_held(&acpi_desc
->init_mutex
);
2816 if (test_bit(ARS_CANCEL
, &acpi_desc
->scrub_flags
))
2819 if (query_rc
== -EBUSY
) {
2820 dev_dbg(dev
, "ARS: ARS busy\n");
2821 return min(30U * 60U, tmo
* 2);
2823 if (query_rc
== -ENOSPC
) {
2824 dev_dbg(dev
, "ARS: ARS continue\n");
2825 ars_continue(acpi_desc
);
2828 if (query_rc
&& query_rc
!= -EAGAIN
) {
2829 unsigned long long addr
, end
;
2831 addr
= acpi_desc
->ars_status
->address
;
2832 end
= addr
+ acpi_desc
->ars_status
->length
;
2833 dev_dbg(dev
, "ARS: %llx-%llx failed (%d)\n", addr
, end
,
2837 ars_complete_all(acpi_desc
);
2838 list_for_each_entry(nfit_spa
, &acpi_desc
->spas
, list
) {
2839 enum nfit_ars_state req_type
;
2842 if (test_bit(ARS_FAILED
, &nfit_spa
->ars_state
))
2845 /* prefer short ARS requests first */
2846 if (test_bit(ARS_REQ_SHORT
, &nfit_spa
->ars_state
))
2847 req_type
= ARS_REQ_SHORT
;
2848 else if (test_bit(ARS_REQ_LONG
, &nfit_spa
->ars_state
))
2849 req_type
= ARS_REQ_LONG
;
2852 rc
= ars_start(acpi_desc
, nfit_spa
, req_type
);
2854 dev
= nd_region_dev(nfit_spa
->nd_region
);
2855 dev_dbg(dev
, "ARS: range %d ARS start %s (%d)\n",
2856 nfit_spa
->spa
->range_index
,
2857 req_type
== ARS_REQ_SHORT
? "short" : "long",
2860 * Hmm, we raced someone else starting ARS? Try again in
2866 dev_WARN_ONCE(dev
, acpi_desc
->scrub_spa
,
2867 "scrub start while range %d active\n",
2868 acpi_desc
->scrub_spa
->spa
->range_index
);
2869 clear_bit(req_type
, &nfit_spa
->ars_state
);
2870 acpi_desc
->scrub_spa
= nfit_spa
;
2872 * Consider this spa last for future scrub
2875 list_move_tail(&nfit_spa
->list
, &acpi_desc
->spas
);
2879 dev_err(dev
, "ARS: range %d ARS failed (%d)\n",
2880 nfit_spa
->spa
->range_index
, rc
);
2881 set_bit(ARS_FAILED
, &nfit_spa
->ars_state
);
2886 static void __sched_ars(struct acpi_nfit_desc
*acpi_desc
, unsigned int tmo
)
2888 lockdep_assert_held(&acpi_desc
->init_mutex
);
2890 set_bit(ARS_BUSY
, &acpi_desc
->scrub_flags
);
2891 /* note this should only be set from within the workqueue */
2893 acpi_desc
->scrub_tmo
= tmo
;
2894 queue_delayed_work(nfit_wq
, &acpi_desc
->dwork
, tmo
* HZ
);
2897 static void sched_ars(struct acpi_nfit_desc
*acpi_desc
)
2899 __sched_ars(acpi_desc
, 0);
2902 static void notify_ars_done(struct acpi_nfit_desc
*acpi_desc
)
2904 lockdep_assert_held(&acpi_desc
->init_mutex
);
2906 clear_bit(ARS_BUSY
, &acpi_desc
->scrub_flags
);
2907 acpi_desc
->scrub_count
++;
2908 if (acpi_desc
->scrub_count_state
)
2909 sysfs_notify_dirent(acpi_desc
->scrub_count_state
);
2912 static void acpi_nfit_scrub(struct work_struct
*work
)
2914 struct acpi_nfit_desc
*acpi_desc
;
2918 acpi_desc
= container_of(work
, typeof(*acpi_desc
), dwork
.work
);
2919 mutex_lock(&acpi_desc
->init_mutex
);
2920 query_rc
= acpi_nfit_query_poison(acpi_desc
);
2921 tmo
= __acpi_nfit_scrub(acpi_desc
, query_rc
);
2923 __sched_ars(acpi_desc
, tmo
);
2925 notify_ars_done(acpi_desc
);
2926 memset(acpi_desc
->ars_status
, 0, acpi_desc
->max_ars
);
2927 clear_bit(ARS_POLL
, &acpi_desc
->scrub_flags
);
2928 mutex_unlock(&acpi_desc
->init_mutex
);
2931 static void acpi_nfit_init_ars(struct acpi_nfit_desc
*acpi_desc
,
2932 struct nfit_spa
*nfit_spa
)
2934 int type
= nfit_spa_type(nfit_spa
->spa
);
2935 struct nd_cmd_ars_cap ars_cap
;
2938 set_bit(ARS_FAILED
, &nfit_spa
->ars_state
);
2939 memset(&ars_cap
, 0, sizeof(ars_cap
));
2940 rc
= ars_get_cap(acpi_desc
, &ars_cap
, nfit_spa
);
2943 /* check that the supported scrub types match the spa type */
2944 if (type
== NFIT_SPA_VOLATILE
&& ((ars_cap
.status
>> 16)
2945 & ND_ARS_VOLATILE
) == 0)
2947 if (type
== NFIT_SPA_PM
&& ((ars_cap
.status
>> 16)
2948 & ND_ARS_PERSISTENT
) == 0)
2951 nfit_spa
->max_ars
= ars_cap
.max_ars_out
;
2952 nfit_spa
->clear_err_unit
= ars_cap
.clear_err_unit
;
2953 acpi_desc
->max_ars
= max(nfit_spa
->max_ars
, acpi_desc
->max_ars
);
2954 clear_bit(ARS_FAILED
, &nfit_spa
->ars_state
);
2957 static int acpi_nfit_register_regions(struct acpi_nfit_desc
*acpi_desc
)
2959 struct nfit_spa
*nfit_spa
;
2960 int rc
, do_sched_ars
= 0;
2962 set_bit(ARS_VALID
, &acpi_desc
->scrub_flags
);
2963 list_for_each_entry(nfit_spa
, &acpi_desc
->spas
, list
) {
2964 switch (nfit_spa_type(nfit_spa
->spa
)) {
2965 case NFIT_SPA_VOLATILE
:
2967 acpi_nfit_init_ars(acpi_desc
, nfit_spa
);
2972 list_for_each_entry(nfit_spa
, &acpi_desc
->spas
, list
) {
2973 switch (nfit_spa_type(nfit_spa
->spa
)) {
2974 case NFIT_SPA_VOLATILE
:
2976 /* register regions and kick off initial ARS run */
2977 rc
= ars_register(acpi_desc
, nfit_spa
);
2982 * Kick off background ARS if at least one
2983 * region successfully registered ARS
2985 if (!test_bit(ARS_FAILED
, &nfit_spa
->ars_state
))
2989 /* nothing to register */
2992 case NFIT_SPA_VDISK
:
2994 case NFIT_SPA_PDISK
:
2996 /* register known regions that don't support ARS */
2997 rc
= acpi_nfit_register_region(acpi_desc
, nfit_spa
);
3002 /* don't register unknown regions */
3008 sched_ars(acpi_desc
);
3012 static int acpi_nfit_check_deletions(struct acpi_nfit_desc
*acpi_desc
,
3013 struct nfit_table_prev
*prev
)
3015 struct device
*dev
= acpi_desc
->dev
;
3017 if (!list_empty(&prev
->spas
) ||
3018 !list_empty(&prev
->memdevs
) ||
3019 !list_empty(&prev
->dcrs
) ||
3020 !list_empty(&prev
->bdws
) ||
3021 !list_empty(&prev
->idts
) ||
3022 !list_empty(&prev
->flushes
)) {
3023 dev_err(dev
, "new nfit deletes entries (unsupported)\n");
3029 static int acpi_nfit_desc_init_scrub_attr(struct acpi_nfit_desc
*acpi_desc
)
3031 struct device
*dev
= acpi_desc
->dev
;
3032 struct kernfs_node
*nfit
;
3033 struct device
*bus_dev
;
3035 if (!ars_supported(acpi_desc
->nvdimm_bus
))
3038 bus_dev
= to_nvdimm_bus_dev(acpi_desc
->nvdimm_bus
);
3039 nfit
= sysfs_get_dirent(bus_dev
->kobj
.sd
, "nfit");
3041 dev_err(dev
, "sysfs_get_dirent 'nfit' failed\n");
3044 acpi_desc
->scrub_count_state
= sysfs_get_dirent(nfit
, "scrub");
3046 if (!acpi_desc
->scrub_count_state
) {
3047 dev_err(dev
, "sysfs_get_dirent 'scrub' failed\n");
3054 static void acpi_nfit_unregister(void *data
)
3056 struct acpi_nfit_desc
*acpi_desc
= data
;
3058 nvdimm_bus_unregister(acpi_desc
->nvdimm_bus
);
3061 int acpi_nfit_init(struct acpi_nfit_desc
*acpi_desc
, void *data
, acpi_size sz
)
3063 struct device
*dev
= acpi_desc
->dev
;
3064 struct nfit_table_prev prev
;
3068 if (!acpi_desc
->nvdimm_bus
) {
3069 acpi_nfit_init_dsms(acpi_desc
);
3071 acpi_desc
->nvdimm_bus
= nvdimm_bus_register(dev
,
3072 &acpi_desc
->nd_desc
);
3073 if (!acpi_desc
->nvdimm_bus
)
3076 rc
= devm_add_action_or_reset(dev
, acpi_nfit_unregister
,
3081 rc
= acpi_nfit_desc_init_scrub_attr(acpi_desc
);
3085 /* register this acpi_desc for mce notifications */
3086 mutex_lock(&acpi_desc_lock
);
3087 list_add_tail(&acpi_desc
->list
, &acpi_descs
);
3088 mutex_unlock(&acpi_desc_lock
);
3091 mutex_lock(&acpi_desc
->init_mutex
);
3093 INIT_LIST_HEAD(&prev
.spas
);
3094 INIT_LIST_HEAD(&prev
.memdevs
);
3095 INIT_LIST_HEAD(&prev
.dcrs
);
3096 INIT_LIST_HEAD(&prev
.bdws
);
3097 INIT_LIST_HEAD(&prev
.idts
);
3098 INIT_LIST_HEAD(&prev
.flushes
);
3100 list_cut_position(&prev
.spas
, &acpi_desc
->spas
,
3101 acpi_desc
->spas
.prev
);
3102 list_cut_position(&prev
.memdevs
, &acpi_desc
->memdevs
,
3103 acpi_desc
->memdevs
.prev
);
3104 list_cut_position(&prev
.dcrs
, &acpi_desc
->dcrs
,
3105 acpi_desc
->dcrs
.prev
);
3106 list_cut_position(&prev
.bdws
, &acpi_desc
->bdws
,
3107 acpi_desc
->bdws
.prev
);
3108 list_cut_position(&prev
.idts
, &acpi_desc
->idts
,
3109 acpi_desc
->idts
.prev
);
3110 list_cut_position(&prev
.flushes
, &acpi_desc
->flushes
,
3111 acpi_desc
->flushes
.prev
);
3114 while (!IS_ERR_OR_NULL(data
))
3115 data
= add_table(acpi_desc
, &prev
, data
, end
);
3118 dev_dbg(dev
, "nfit table parsing error: %ld\n", PTR_ERR(data
));
3123 rc
= acpi_nfit_check_deletions(acpi_desc
, &prev
);
3127 rc
= nfit_mem_init(acpi_desc
);
3131 rc
= acpi_nfit_register_dimms(acpi_desc
);
3135 rc
= acpi_nfit_register_regions(acpi_desc
);
3138 mutex_unlock(&acpi_desc
->init_mutex
);
3141 EXPORT_SYMBOL_GPL(acpi_nfit_init
);
3143 static int acpi_nfit_flush_probe(struct nvdimm_bus_descriptor
*nd_desc
)
3145 struct acpi_nfit_desc
*acpi_desc
= to_acpi_desc(nd_desc
);
3146 struct device
*dev
= acpi_desc
->dev
;
3148 /* Bounce the device lock to flush acpi_nfit_add / acpi_nfit_notify */
3152 /* Bounce the init_mutex to complete initial registration */
3153 mutex_lock(&acpi_desc
->init_mutex
);
3154 mutex_unlock(&acpi_desc
->init_mutex
);
3159 static int __acpi_nfit_clear_to_send(struct nvdimm_bus_descriptor
*nd_desc
,
3160 struct nvdimm
*nvdimm
, unsigned int cmd
)
3162 struct acpi_nfit_desc
*acpi_desc
= to_acpi_desc(nd_desc
);
3166 if (cmd
!= ND_CMD_ARS_START
)
3170 * The kernel and userspace may race to initiate a scrub, but
3171 * the scrub thread is prepared to lose that initial race. It
3172 * just needs guarantees that any ARS it initiates are not
3173 * interrupted by any intervening start requests from userspace.
3175 if (work_busy(&acpi_desc
->dwork
.work
))
3182 * Prevent security and firmware activate commands from being issued via
3185 static int acpi_nfit_clear_to_send(struct nvdimm_bus_descriptor
*nd_desc
,
3186 struct nvdimm
*nvdimm
, unsigned int cmd
, void *buf
)
3188 struct nd_cmd_pkg
*call_pkg
= buf
;
3191 if (nvdimm
&& cmd
== ND_CMD_CALL
&&
3192 call_pkg
->nd_family
== NVDIMM_FAMILY_INTEL
) {
3193 func
= call_pkg
->nd_command
;
3194 if (func
> NVDIMM_CMD_MAX
||
3195 (1 << func
) & NVDIMM_INTEL_DENY_CMDMASK
)
3199 /* block all non-nfit bus commands */
3200 if (!nvdimm
&& cmd
== ND_CMD_CALL
&&
3201 call_pkg
->nd_family
!= NVDIMM_BUS_FAMILY_NFIT
)
3204 return __acpi_nfit_clear_to_send(nd_desc
, nvdimm
, cmd
);
3207 int acpi_nfit_ars_rescan(struct acpi_nfit_desc
*acpi_desc
,
3208 enum nfit_ars_state req_type
)
3210 struct device
*dev
= acpi_desc
->dev
;
3211 int scheduled
= 0, busy
= 0;
3212 struct nfit_spa
*nfit_spa
;
3214 mutex_lock(&acpi_desc
->init_mutex
);
3215 if (test_bit(ARS_CANCEL
, &acpi_desc
->scrub_flags
)) {
3216 mutex_unlock(&acpi_desc
->init_mutex
);
3220 list_for_each_entry(nfit_spa
, &acpi_desc
->spas
, list
) {
3221 int type
= nfit_spa_type(nfit_spa
->spa
);
3223 if (type
!= NFIT_SPA_PM
&& type
!= NFIT_SPA_VOLATILE
)
3225 if (test_bit(ARS_FAILED
, &nfit_spa
->ars_state
))
3228 if (test_and_set_bit(req_type
, &nfit_spa
->ars_state
))
3234 sched_ars(acpi_desc
);
3235 dev_dbg(dev
, "ars_scan triggered\n");
3237 mutex_unlock(&acpi_desc
->init_mutex
);
3246 void acpi_nfit_desc_init(struct acpi_nfit_desc
*acpi_desc
, struct device
*dev
)
3248 struct nvdimm_bus_descriptor
*nd_desc
;
3250 dev_set_drvdata(dev
, acpi_desc
);
3251 acpi_desc
->dev
= dev
;
3252 nd_desc
= &acpi_desc
->nd_desc
;
3253 nd_desc
->provider_name
= "ACPI.NFIT";
3254 nd_desc
->module
= THIS_MODULE
;
3255 nd_desc
->ndctl
= acpi_nfit_ctl
;
3256 nd_desc
->flush_probe
= acpi_nfit_flush_probe
;
3257 nd_desc
->clear_to_send
= acpi_nfit_clear_to_send
;
3258 nd_desc
->attr_groups
= acpi_nfit_attribute_groups
;
3260 INIT_LIST_HEAD(&acpi_desc
->spas
);
3261 INIT_LIST_HEAD(&acpi_desc
->dcrs
);
3262 INIT_LIST_HEAD(&acpi_desc
->bdws
);
3263 INIT_LIST_HEAD(&acpi_desc
->idts
);
3264 INIT_LIST_HEAD(&acpi_desc
->flushes
);
3265 INIT_LIST_HEAD(&acpi_desc
->memdevs
);
3266 INIT_LIST_HEAD(&acpi_desc
->dimms
);
3267 INIT_LIST_HEAD(&acpi_desc
->list
);
3268 mutex_init(&acpi_desc
->init_mutex
);
3269 acpi_desc
->scrub_tmo
= 1;
3270 INIT_DELAYED_WORK(&acpi_desc
->dwork
, acpi_nfit_scrub
);
3272 EXPORT_SYMBOL_GPL(acpi_nfit_desc_init
);
3274 static void acpi_nfit_put_table(void *table
)
3276 acpi_put_table(table
);
3279 static void acpi_nfit_notify(acpi_handle handle
, u32 event
, void *data
)
3281 struct acpi_device
*adev
= data
;
3283 device_lock(&adev
->dev
);
3284 __acpi_nfit_notify(&adev
->dev
, handle
, event
);
3285 device_unlock(&adev
->dev
);
3288 static void acpi_nfit_remove_notify_handler(void *data
)
3290 struct acpi_device
*adev
= data
;
3292 acpi_dev_remove_notify_handler(adev
, ACPI_DEVICE_NOTIFY
,
3296 void acpi_nfit_shutdown(void *data
)
3298 struct acpi_nfit_desc
*acpi_desc
= data
;
3299 struct device
*bus_dev
= to_nvdimm_bus_dev(acpi_desc
->nvdimm_bus
);
3302 * Destruct under acpi_desc_lock so that nfit_handle_mce does not
3305 mutex_lock(&acpi_desc_lock
);
3306 list_del(&acpi_desc
->list
);
3307 mutex_unlock(&acpi_desc_lock
);
3309 mutex_lock(&acpi_desc
->init_mutex
);
3310 set_bit(ARS_CANCEL
, &acpi_desc
->scrub_flags
);
3311 mutex_unlock(&acpi_desc
->init_mutex
);
3312 cancel_delayed_work_sync(&acpi_desc
->dwork
);
3315 * Bounce the nvdimm bus lock to make sure any in-flight
3316 * acpi_nfit_ars_rescan() submissions have had a chance to
3317 * either submit or see ->cancel set.
3319 device_lock(bus_dev
);
3320 device_unlock(bus_dev
);
3322 flush_workqueue(nfit_wq
);
3324 EXPORT_SYMBOL_GPL(acpi_nfit_shutdown
);
3326 static int acpi_nfit_add(struct acpi_device
*adev
)
3328 struct acpi_buffer buf
= { ACPI_ALLOCATE_BUFFER
, NULL
};
3329 struct acpi_nfit_desc
*acpi_desc
;
3330 struct device
*dev
= &adev
->dev
;
3331 struct acpi_table_header
*tbl
;
3332 acpi_status status
= AE_OK
;
3336 rc
= acpi_dev_install_notify_handler(adev
, ACPI_DEVICE_NOTIFY
,
3337 acpi_nfit_notify
, adev
);
3341 rc
= devm_add_action_or_reset(dev
, acpi_nfit_remove_notify_handler
,
3346 status
= acpi_get_table(ACPI_SIG_NFIT
, 0, &tbl
);
3347 if (ACPI_FAILURE(status
)) {
3348 /* The NVDIMM root device allows OS to trigger enumeration of
3349 * NVDIMMs through NFIT at boot time and re-enumeration at
3350 * root level via the _FIT method during runtime.
3351 * This is ok to return 0 here, we could have an nvdimm
3352 * hotplugged later and evaluate _FIT method which returns
3353 * data in the format of a series of NFIT Structures.
3355 dev_dbg(dev
, "failed to find NFIT at startup\n");
3359 rc
= devm_add_action_or_reset(dev
, acpi_nfit_put_table
, tbl
);
3364 acpi_desc
= devm_kzalloc(dev
, sizeof(*acpi_desc
), GFP_KERNEL
);
3367 acpi_nfit_desc_init(acpi_desc
, &adev
->dev
);
3369 /* Save the acpi header for exporting the revision via sysfs */
3370 acpi_desc
->acpi_header
= *tbl
;
3372 /* Evaluate _FIT and override with that if present */
3373 status
= acpi_evaluate_object(adev
->handle
, "_FIT", NULL
, &buf
);
3374 if (ACPI_SUCCESS(status
) && buf
.length
> 0) {
3375 union acpi_object
*obj
= buf
.pointer
;
3377 if (obj
->type
== ACPI_TYPE_BUFFER
)
3378 rc
= acpi_nfit_init(acpi_desc
, obj
->buffer
.pointer
,
3379 obj
->buffer
.length
);
3381 dev_dbg(dev
, "invalid type %d, ignoring _FIT\n",
3385 /* skip over the lead-in header table */
3386 rc
= acpi_nfit_init(acpi_desc
, (void *) tbl
3387 + sizeof(struct acpi_table_nfit
),
3388 sz
- sizeof(struct acpi_table_nfit
));
3393 return devm_add_action_or_reset(dev
, acpi_nfit_shutdown
, acpi_desc
);
3396 static void acpi_nfit_update_notify(struct device
*dev
, acpi_handle handle
)
3398 struct acpi_nfit_desc
*acpi_desc
= dev_get_drvdata(dev
);
3399 struct acpi_buffer buf
= { ACPI_ALLOCATE_BUFFER
, NULL
};
3400 union acpi_object
*obj
;
3405 /* dev->driver may be null if we're being removed */
3406 dev_dbg(dev
, "no driver found for dev\n");
3411 acpi_desc
= devm_kzalloc(dev
, sizeof(*acpi_desc
), GFP_KERNEL
);
3414 acpi_nfit_desc_init(acpi_desc
, dev
);
3417 * Finish previous registration before considering new
3420 flush_workqueue(nfit_wq
);
3424 status
= acpi_evaluate_object(handle
, "_FIT", NULL
, &buf
);
3425 if (ACPI_FAILURE(status
)) {
3426 dev_err(dev
, "failed to evaluate _FIT\n");
3431 if (obj
->type
== ACPI_TYPE_BUFFER
) {
3432 ret
= acpi_nfit_init(acpi_desc
, obj
->buffer
.pointer
,
3433 obj
->buffer
.length
);
3435 dev_err(dev
, "failed to merge updated NFIT\n");
3437 dev_err(dev
, "Invalid _FIT\n");
3441 static void acpi_nfit_uc_error_notify(struct device
*dev
, acpi_handle handle
)
3443 struct acpi_nfit_desc
*acpi_desc
= dev_get_drvdata(dev
);
3445 if (acpi_desc
->scrub_mode
== HW_ERROR_SCRUB_ON
)
3446 acpi_nfit_ars_rescan(acpi_desc
, ARS_REQ_LONG
);
3448 acpi_nfit_ars_rescan(acpi_desc
, ARS_REQ_SHORT
);
3451 void __acpi_nfit_notify(struct device
*dev
, acpi_handle handle
, u32 event
)
3453 dev_dbg(dev
, "event: 0x%x\n", event
);
3456 case NFIT_NOTIFY_UPDATE
:
3457 return acpi_nfit_update_notify(dev
, handle
);
3458 case NFIT_NOTIFY_UC_MEMORY_ERROR
:
3459 return acpi_nfit_uc_error_notify(dev
, handle
);
3464 EXPORT_SYMBOL_GPL(__acpi_nfit_notify
);
3466 static const struct acpi_device_id acpi_nfit_ids
[] = {
3470 MODULE_DEVICE_TABLE(acpi
, acpi_nfit_ids
);
3472 static struct acpi_driver acpi_nfit_driver
= {
3473 .name
= KBUILD_MODNAME
,
3474 .ids
= acpi_nfit_ids
,
3476 .add
= acpi_nfit_add
,
3480 static __init
int nfit_init(void)
3484 BUILD_BUG_ON(sizeof(struct acpi_table_nfit
) != 40);
3485 BUILD_BUG_ON(sizeof(struct acpi_nfit_system_address
) != 64);
3486 BUILD_BUG_ON(sizeof(struct acpi_nfit_memory_map
) != 48);
3487 BUILD_BUG_ON(sizeof(struct acpi_nfit_interleave
) != 16);
3488 BUILD_BUG_ON(sizeof(struct acpi_nfit_smbios
) != 8);
3489 BUILD_BUG_ON(sizeof(struct acpi_nfit_control_region
) != 80);
3490 BUILD_BUG_ON(sizeof(struct acpi_nfit_data_region
) != 40);
3491 BUILD_BUG_ON(sizeof(struct acpi_nfit_capabilities
) != 16);
3493 guid_parse(UUID_VOLATILE_MEMORY
, &nfit_uuid
[NFIT_SPA_VOLATILE
]);
3494 guid_parse(UUID_PERSISTENT_MEMORY
, &nfit_uuid
[NFIT_SPA_PM
]);
3495 guid_parse(UUID_CONTROL_REGION
, &nfit_uuid
[NFIT_SPA_DCR
]);
3496 guid_parse(UUID_DATA_REGION
, &nfit_uuid
[NFIT_SPA_BDW
]);
3497 guid_parse(UUID_VOLATILE_VIRTUAL_DISK
, &nfit_uuid
[NFIT_SPA_VDISK
]);
3498 guid_parse(UUID_VOLATILE_VIRTUAL_CD
, &nfit_uuid
[NFIT_SPA_VCD
]);
3499 guid_parse(UUID_PERSISTENT_VIRTUAL_DISK
, &nfit_uuid
[NFIT_SPA_PDISK
]);
3500 guid_parse(UUID_PERSISTENT_VIRTUAL_CD
, &nfit_uuid
[NFIT_SPA_PCD
]);
3501 guid_parse(UUID_NFIT_BUS
, &nfit_uuid
[NFIT_DEV_BUS
]);
3502 guid_parse(UUID_NFIT_DIMM
, &nfit_uuid
[NFIT_DEV_DIMM
]);
3503 guid_parse(UUID_NFIT_DIMM_N_HPE1
, &nfit_uuid
[NFIT_DEV_DIMM_N_HPE1
]);
3504 guid_parse(UUID_NFIT_DIMM_N_HPE2
, &nfit_uuid
[NFIT_DEV_DIMM_N_HPE2
]);
3505 guid_parse(UUID_NFIT_DIMM_N_MSFT
, &nfit_uuid
[NFIT_DEV_DIMM_N_MSFT
]);
3506 guid_parse(UUID_NFIT_DIMM_N_HYPERV
, &nfit_uuid
[NFIT_DEV_DIMM_N_HYPERV
]);
3507 guid_parse(UUID_INTEL_BUS
, &nfit_uuid
[NFIT_BUS_INTEL
]);
3509 nfit_wq
= create_singlethread_workqueue("nfit");
3513 nfit_mce_register();
3514 ret
= acpi_bus_register_driver(&acpi_nfit_driver
);
3516 nfit_mce_unregister();
3517 destroy_workqueue(nfit_wq
);
3524 static __exit
void nfit_exit(void)
3526 nfit_mce_unregister();
3527 acpi_bus_unregister_driver(&acpi_nfit_driver
);
3528 destroy_workqueue(nfit_wq
);
3529 WARN_ON(!list_empty(&acpi_descs
));
3532 module_init(nfit_init
);
3533 module_exit(nfit_exit
);
3534 MODULE_DESCRIPTION("ACPI NVDIMM Firmware Interface Table (NFIT) driver");
3535 MODULE_LICENSE("GPL v2");
3536 MODULE_AUTHOR("Intel Corporation");