error: Eliminate error_propagate() with Coccinelle, part 1
[qemu/ar7.git] / hw / mem / nvdimm.c
blobd0d6e553cf531811b46e4a142f2984fda678ae34
1 /*
2 * Non-Volatile Dual In-line Memory Module Virtualization Implementation
4 * Copyright(C) 2015 Intel Corporation.
6 * Author:
7 * Xiao Guangrong <guangrong.xiao@linux.intel.com>
9 * Currently, it only supports PMEM Virtualization.
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, see <http://www.gnu.org/licenses/>
25 #include "qemu/osdep.h"
26 #include "qemu/module.h"
27 #include "qemu/pmem.h"
28 #include "qapi/error.h"
29 #include "qapi/visitor.h"
30 #include "hw/mem/nvdimm.h"
31 #include "hw/qdev-properties.h"
32 #include "hw/mem/memory-device.h"
33 #include "sysemu/hostmem.h"
35 static void nvdimm_get_label_size(Object *obj, Visitor *v, const char *name,
36 void *opaque, Error **errp)
38 NVDIMMDevice *nvdimm = NVDIMM(obj);
39 uint64_t value = nvdimm->label_size;
41 visit_type_size(v, name, &value, errp);
44 static void nvdimm_set_label_size(Object *obj, Visitor *v, const char *name,
45 void *opaque, Error **errp)
47 NVDIMMDevice *nvdimm = NVDIMM(obj);
48 uint64_t value;
50 if (nvdimm->nvdimm_mr) {
51 error_setg(errp, "cannot change property value");
52 return;
55 if (!visit_type_size(v, name, &value, errp)) {
56 return;
58 if (value < MIN_NAMESPACE_LABEL_SIZE) {
59 error_setg(errp, "Property '%s.%s' (0x%" PRIx64 ") is required"
60 " at least 0x%lx", object_get_typename(obj), name, value,
61 MIN_NAMESPACE_LABEL_SIZE);
62 return;
65 nvdimm->label_size = value;
68 static void nvdimm_get_uuid(Object *obj, Visitor *v, const char *name,
69 void *opaque, Error **errp)
71 NVDIMMDevice *nvdimm = NVDIMM(obj);
72 char *value = NULL;
74 value = qemu_uuid_unparse_strdup(&nvdimm->uuid);
76 visit_type_str(v, name, &value, errp);
77 g_free(value);
81 static void nvdimm_set_uuid(Object *obj, Visitor *v, const char *name,
82 void *opaque, Error **errp)
84 NVDIMMDevice *nvdimm = NVDIMM(obj);
85 char *value;
87 if (!visit_type_str(v, name, &value, errp)) {
88 return;
91 if (qemu_uuid_parse(value, &nvdimm->uuid) != 0) {
92 error_setg(errp, "Property '%s.%s' has invalid value",
93 object_get_typename(obj), name);
96 g_free(value);
100 static void nvdimm_init(Object *obj)
102 object_property_add(obj, NVDIMM_LABEL_SIZE_PROP, "int",
103 nvdimm_get_label_size, nvdimm_set_label_size, NULL,
104 NULL);
106 object_property_add(obj, NVDIMM_UUID_PROP, "QemuUUID", nvdimm_get_uuid,
107 nvdimm_set_uuid, NULL, NULL);
110 static void nvdimm_finalize(Object *obj)
112 NVDIMMDevice *nvdimm = NVDIMM(obj);
114 g_free(nvdimm->nvdimm_mr);
117 static void nvdimm_prepare_memory_region(NVDIMMDevice *nvdimm, Error **errp)
119 PCDIMMDevice *dimm = PC_DIMM(nvdimm);
120 uint64_t align, pmem_size, size;
121 MemoryRegion *mr;
123 g_assert(!nvdimm->nvdimm_mr);
125 if (!dimm->hostmem) {
126 error_setg(errp, "'" PC_DIMM_MEMDEV_PROP "' property must be set");
127 return;
130 mr = host_memory_backend_get_memory(dimm->hostmem);
131 align = memory_region_get_alignment(mr);
132 size = memory_region_size(mr);
134 pmem_size = size - nvdimm->label_size;
135 nvdimm->label_data = memory_region_get_ram_ptr(mr) + pmem_size;
136 pmem_size = QEMU_ALIGN_DOWN(pmem_size, align);
138 if (size <= nvdimm->label_size || !pmem_size) {
139 HostMemoryBackend *hostmem = dimm->hostmem;
140 char *path = object_get_canonical_path_component(OBJECT(hostmem));
142 error_setg(errp, "the size of memdev %s (0x%" PRIx64 ") is too "
143 "small to contain nvdimm label (0x%" PRIx64 ") and "
144 "aligned PMEM (0x%" PRIx64 ")",
145 path, memory_region_size(mr), nvdimm->label_size, align);
146 g_free(path);
147 return;
150 nvdimm->nvdimm_mr = g_new(MemoryRegion, 1);
151 memory_region_init_alias(nvdimm->nvdimm_mr, OBJECT(dimm),
152 "nvdimm-memory", mr, 0, pmem_size);
153 memory_region_set_nonvolatile(nvdimm->nvdimm_mr, true);
154 nvdimm->nvdimm_mr->align = align;
157 static MemoryRegion *nvdimm_md_get_memory_region(MemoryDeviceState *md,
158 Error **errp)
160 NVDIMMDevice *nvdimm = NVDIMM(md);
161 Error *local_err = NULL;
163 if (!nvdimm->nvdimm_mr) {
164 nvdimm_prepare_memory_region(nvdimm, &local_err);
165 if (local_err) {
166 error_propagate(errp, local_err);
167 return NULL;
170 return nvdimm->nvdimm_mr;
173 static void nvdimm_realize(PCDIMMDevice *dimm, Error **errp)
175 NVDIMMDevice *nvdimm = NVDIMM(dimm);
177 if (!nvdimm->nvdimm_mr) {
178 nvdimm_prepare_memory_region(nvdimm, errp);
183 * the caller should check the input parameters before calling
184 * label read/write functions.
186 static void nvdimm_validate_rw_label_data(NVDIMMDevice *nvdimm, uint64_t size,
187 uint64_t offset)
189 assert((nvdimm->label_size >= size + offset) && (offset + size > offset));
192 static void nvdimm_read_label_data(NVDIMMDevice *nvdimm, void *buf,
193 uint64_t size, uint64_t offset)
195 nvdimm_validate_rw_label_data(nvdimm, size, offset);
197 memcpy(buf, nvdimm->label_data + offset, size);
200 static void nvdimm_write_label_data(NVDIMMDevice *nvdimm, const void *buf,
201 uint64_t size, uint64_t offset)
203 MemoryRegion *mr;
204 PCDIMMDevice *dimm = PC_DIMM(nvdimm);
205 bool is_pmem = object_property_get_bool(OBJECT(dimm->hostmem),
206 "pmem", NULL);
207 uint64_t backend_offset;
209 nvdimm_validate_rw_label_data(nvdimm, size, offset);
211 if (!is_pmem) {
212 memcpy(nvdimm->label_data + offset, buf, size);
213 } else {
214 pmem_memcpy_persist(nvdimm->label_data + offset, buf, size);
217 mr = host_memory_backend_get_memory(dimm->hostmem);
218 backend_offset = memory_region_size(mr) - nvdimm->label_size + offset;
219 memory_region_set_dirty(mr, backend_offset, size);
222 static Property nvdimm_properties[] = {
223 DEFINE_PROP_BOOL(NVDIMM_UNARMED_PROP, NVDIMMDevice, unarmed, false),
224 DEFINE_PROP_END_OF_LIST(),
227 static void nvdimm_class_init(ObjectClass *oc, void *data)
229 PCDIMMDeviceClass *ddc = PC_DIMM_CLASS(oc);
230 MemoryDeviceClass *mdc = MEMORY_DEVICE_CLASS(oc);
231 NVDIMMClass *nvc = NVDIMM_CLASS(oc);
232 DeviceClass *dc = DEVICE_CLASS(oc);
234 ddc->realize = nvdimm_realize;
235 mdc->get_memory_region = nvdimm_md_get_memory_region;
236 device_class_set_props(dc, nvdimm_properties);
238 nvc->read_label_data = nvdimm_read_label_data;
239 nvc->write_label_data = nvdimm_write_label_data;
242 static TypeInfo nvdimm_info = {
243 .name = TYPE_NVDIMM,
244 .parent = TYPE_PC_DIMM,
245 .class_size = sizeof(NVDIMMClass),
246 .class_init = nvdimm_class_init,
247 .instance_size = sizeof(NVDIMMDevice),
248 .instance_init = nvdimm_init,
249 .instance_finalize = nvdimm_finalize,
252 static void nvdimm_register_types(void)
254 type_register_static(&nvdimm_info);
257 type_init(nvdimm_register_types)