2 * Dimm device for Memory Hotplug
4 * Copyright ProfitBricks GmbH 2012
5 * Copyright (C) 2014 Red Hat Inc
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>
21 #include "qemu/osdep.h"
22 #include "hw/mem/pc-dimm.h"
23 #include "qapi/error.h"
24 #include "qemu/config-file.h"
25 #include "qapi/visitor.h"
26 #include "qemu/range.h"
27 #include "sysemu/numa.h"
28 #include "sysemu/kvm.h"
30 #include "hw/virtio/vhost.h"
32 typedef struct pc_dimms_capacity
{
37 void pc_dimm_memory_plug(DeviceState
*dev
, MemoryHotplugState
*hpms
,
38 MemoryRegion
*mr
, uint64_t align
, Error
**errp
)
41 MachineState
*machine
= MACHINE(qdev_get_machine());
42 PCDIMMDevice
*dimm
= PC_DIMM(dev
);
43 PCDIMMDeviceClass
*ddc
= PC_DIMM_GET_CLASS(dimm
);
44 MemoryRegion
*vmstate_mr
= ddc
->get_vmstate_memory_region(dimm
);
45 Error
*local_err
= NULL
;
46 uint64_t existing_dimms_capacity
= 0;
49 addr
= object_property_get_int(OBJECT(dimm
), PC_DIMM_ADDR_PROP
, &local_err
);
54 addr
= pc_dimm_get_free_addr(hpms
->base
,
55 memory_region_size(&hpms
->mr
),
56 !addr
? NULL
: &addr
, align
,
57 memory_region_size(mr
), &local_err
);
62 existing_dimms_capacity
= pc_existing_dimms_capacity(&local_err
);
67 if (existing_dimms_capacity
+ memory_region_size(mr
) >
68 machine
->maxram_size
- machine
->ram_size
) {
69 error_setg(&local_err
, "not enough space, currently 0x%" PRIx64
70 " in use of total hot pluggable 0x" RAM_ADDR_FMT
,
71 existing_dimms_capacity
,
72 machine
->maxram_size
- machine
->ram_size
);
76 object_property_set_int(OBJECT(dev
), addr
, PC_DIMM_ADDR_PROP
, &local_err
);
80 trace_mhp_pc_dimm_assigned_address(addr
);
82 slot
= object_property_get_int(OBJECT(dev
), PC_DIMM_SLOT_PROP
, &local_err
);
87 slot
= pc_dimm_get_free_slot(slot
== PC_DIMM_UNASSIGNED_SLOT
? NULL
: &slot
,
88 machine
->ram_slots
, &local_err
);
92 object_property_set_int(OBJECT(dev
), slot
, PC_DIMM_SLOT_PROP
, &local_err
);
96 trace_mhp_pc_dimm_assigned_slot(slot
);
98 if (kvm_enabled() && !kvm_has_free_slot(machine
)) {
99 error_setg(&local_err
, "hypervisor has no free memory slots left");
103 if (!vhost_has_free_slot()) {
104 error_setg(&local_err
, "a used vhost backend has no free"
105 " memory slots left");
109 memory_region_add_subregion(&hpms
->mr
, addr
- hpms
->base
, mr
);
110 vmstate_register_ram(vmstate_mr
, dev
);
111 numa_set_mem_node_id(addr
, memory_region_size(mr
), dimm
->node
);
114 error_propagate(errp
, local_err
);
117 void pc_dimm_memory_unplug(DeviceState
*dev
, MemoryHotplugState
*hpms
,
120 PCDIMMDevice
*dimm
= PC_DIMM(dev
);
121 PCDIMMDeviceClass
*ddc
= PC_DIMM_GET_CLASS(dimm
);
122 MemoryRegion
*vmstate_mr
= ddc
->get_vmstate_memory_region(dimm
);
124 numa_unset_mem_node_id(dimm
->addr
, memory_region_size(mr
), dimm
->node
);
125 memory_region_del_subregion(&hpms
->mr
, mr
);
126 vmstate_unregister_ram(vmstate_mr
, dev
);
129 static int pc_existing_dimms_capacity_internal(Object
*obj
, void *opaque
)
131 pc_dimms_capacity
*cap
= opaque
;
132 uint64_t *size
= &cap
->size
;
134 if (object_dynamic_cast(obj
, TYPE_PC_DIMM
)) {
135 DeviceState
*dev
= DEVICE(obj
);
138 (*size
) += object_property_get_int(obj
, PC_DIMM_SIZE_PROP
,
142 if (cap
->errp
&& *cap
->errp
) {
146 object_child_foreach(obj
, pc_existing_dimms_capacity_internal
, opaque
);
150 uint64_t pc_existing_dimms_capacity(Error
**errp
)
152 pc_dimms_capacity cap
;
157 pc_existing_dimms_capacity_internal(qdev_get_machine(), &cap
);
161 int qmp_pc_dimm_device_list(Object
*obj
, void *opaque
)
163 MemoryDeviceInfoList
***prev
= opaque
;
165 if (object_dynamic_cast(obj
, TYPE_PC_DIMM
)) {
166 DeviceState
*dev
= DEVICE(obj
);
169 MemoryDeviceInfoList
*elem
= g_new0(MemoryDeviceInfoList
, 1);
170 MemoryDeviceInfo
*info
= g_new0(MemoryDeviceInfo
, 1);
171 PCDIMMDeviceInfo
*di
= g_new0(PCDIMMDeviceInfo
, 1);
172 DeviceClass
*dc
= DEVICE_GET_CLASS(obj
);
173 PCDIMMDevice
*dimm
= PC_DIMM(obj
);
177 di
->id
= g_strdup(dev
->id
);
179 di
->hotplugged
= dev
->hotplugged
;
180 di
->hotpluggable
= dc
->hotpluggable
;
181 di
->addr
= dimm
->addr
;
182 di
->slot
= dimm
->slot
;
183 di
->node
= dimm
->node
;
184 di
->size
= object_property_get_int(OBJECT(dimm
), PC_DIMM_SIZE_PROP
,
186 di
->memdev
= object_get_canonical_path(OBJECT(dimm
->hostmem
));
188 info
->u
.dimm
.data
= di
;
196 object_child_foreach(obj
, qmp_pc_dimm_device_list
, opaque
);
200 static int pc_dimm_slot2bitmap(Object
*obj
, void *opaque
)
202 unsigned long *bitmap
= opaque
;
204 if (object_dynamic_cast(obj
, TYPE_PC_DIMM
)) {
205 DeviceState
*dev
= DEVICE(obj
);
206 if (dev
->realized
) { /* count only realized DIMMs */
207 PCDIMMDevice
*d
= PC_DIMM(obj
);
208 set_bit(d
->slot
, bitmap
);
212 object_child_foreach(obj
, pc_dimm_slot2bitmap
, opaque
);
216 int pc_dimm_get_free_slot(const int *hint
, int max_slots
, Error
**errp
)
218 unsigned long *bitmap
= bitmap_new(max_slots
);
221 object_child_foreach(qdev_get_machine(), pc_dimm_slot2bitmap
, bitmap
);
223 /* check if requested slot is not occupied */
225 if (*hint
>= max_slots
) {
226 error_setg(errp
, "invalid slot# %d, should be less than %d",
228 } else if (!test_bit(*hint
, bitmap
)) {
231 error_setg(errp
, "slot %d is busy", *hint
);
236 /* search for free slot */
237 slot
= find_first_zero_bit(bitmap
, max_slots
);
238 if (slot
== max_slots
) {
239 error_setg(errp
, "no free slots available");
246 static gint
pc_dimm_addr_sort(gconstpointer a
, gconstpointer b
)
248 PCDIMMDevice
*x
= PC_DIMM(a
);
249 PCDIMMDevice
*y
= PC_DIMM(b
);
250 Int128 diff
= int128_sub(int128_make64(x
->addr
), int128_make64(y
->addr
));
252 if (int128_lt(diff
, int128_zero())) {
254 } else if (int128_gt(diff
, int128_zero())) {
260 static int pc_dimm_built_list(Object
*obj
, void *opaque
)
262 GSList
**list
= opaque
;
264 if (object_dynamic_cast(obj
, TYPE_PC_DIMM
)) {
265 DeviceState
*dev
= DEVICE(obj
);
266 if (dev
->realized
) { /* only realized DIMMs matter */
267 *list
= g_slist_insert_sorted(*list
, dev
, pc_dimm_addr_sort
);
271 object_child_foreach(obj
, pc_dimm_built_list
, opaque
);
275 uint64_t pc_dimm_get_free_addr(uint64_t address_space_start
,
276 uint64_t address_space_size
,
277 uint64_t *hint
, uint64_t align
, uint64_t size
,
280 GSList
*list
= NULL
, *item
;
281 uint64_t new_addr
, ret
= 0;
282 uint64_t address_space_end
= address_space_start
+ address_space_size
;
284 g_assert(QEMU_ALIGN_UP(address_space_start
, align
) == address_space_start
);
286 if (!address_space_size
) {
287 error_setg(errp
, "memory hotplug is not enabled, "
288 "please add maxmem option");
292 if (hint
&& QEMU_ALIGN_UP(*hint
, align
) != *hint
) {
293 error_setg(errp
, "address must be aligned to 0x%" PRIx64
" bytes",
298 if (QEMU_ALIGN_UP(size
, align
) != size
) {
299 error_setg(errp
, "backend memory size must be multiple of 0x%"
304 assert(address_space_end
> address_space_start
);
305 object_child_foreach(qdev_get_machine(), pc_dimm_built_list
, &list
);
310 new_addr
= address_space_start
;
313 /* find address range that will fit new DIMM */
314 for (item
= list
; item
; item
= g_slist_next(item
)) {
315 PCDIMMDevice
*dimm
= item
->data
;
316 uint64_t dimm_size
= object_property_get_int(OBJECT(dimm
),
323 if (ranges_overlap(dimm
->addr
, dimm_size
, new_addr
, size
)) {
325 DeviceState
*d
= DEVICE(dimm
);
326 error_setg(errp
, "address range conflicts with '%s'", d
->id
);
329 new_addr
= QEMU_ALIGN_UP(dimm
->addr
+ dimm_size
, align
);
334 if (new_addr
< address_space_start
) {
335 error_setg(errp
, "can't add memory [0x%" PRIx64
":0x%" PRIx64
336 "] at 0x%" PRIx64
, new_addr
, size
, address_space_start
);
337 } else if ((new_addr
+ size
) > address_space_end
) {
338 error_setg(errp
, "can't add memory [0x%" PRIx64
":0x%" PRIx64
339 "] beyond 0x%" PRIx64
, new_addr
, size
, address_space_end
);
347 static Property pc_dimm_properties
[] = {
348 DEFINE_PROP_UINT64(PC_DIMM_ADDR_PROP
, PCDIMMDevice
, addr
, 0),
349 DEFINE_PROP_UINT32(PC_DIMM_NODE_PROP
, PCDIMMDevice
, node
, 0),
350 DEFINE_PROP_INT32(PC_DIMM_SLOT_PROP
, PCDIMMDevice
, slot
,
351 PC_DIMM_UNASSIGNED_SLOT
),
352 DEFINE_PROP_END_OF_LIST(),
355 static void pc_dimm_get_size(Object
*obj
, Visitor
*v
, const char *name
,
356 void *opaque
, Error
**errp
)
360 PCDIMMDevice
*dimm
= PC_DIMM(obj
);
361 PCDIMMDeviceClass
*ddc
= PC_DIMM_GET_CLASS(obj
);
363 mr
= ddc
->get_memory_region(dimm
);
364 value
= memory_region_size(mr
);
366 visit_type_int(v
, name
, &value
, errp
);
369 static void pc_dimm_check_memdev_is_busy(Object
*obj
, const char *name
,
370 Object
*val
, Error
**errp
)
372 Error
*local_err
= NULL
;
374 if (host_memory_backend_is_mapped(MEMORY_BACKEND(val
))) {
375 char *path
= object_get_canonical_path_component(val
);
376 error_setg(&local_err
, "can't use already busy memdev: %s", path
);
379 qdev_prop_allow_set_link_before_realize(obj
, name
, val
, &local_err
);
382 error_propagate(errp
, local_err
);
385 static void pc_dimm_init(Object
*obj
)
387 PCDIMMDevice
*dimm
= PC_DIMM(obj
);
389 object_property_add(obj
, PC_DIMM_SIZE_PROP
, "int", pc_dimm_get_size
,
390 NULL
, NULL
, NULL
, &error_abort
);
391 object_property_add_link(obj
, PC_DIMM_MEMDEV_PROP
, TYPE_MEMORY_BACKEND
,
392 (Object
**)&dimm
->hostmem
,
393 pc_dimm_check_memdev_is_busy
,
394 OBJ_PROP_LINK_UNREF_ON_RELEASE
,
398 static void pc_dimm_realize(DeviceState
*dev
, Error
**errp
)
400 PCDIMMDevice
*dimm
= PC_DIMM(dev
);
401 PCDIMMDeviceClass
*ddc
= PC_DIMM_GET_CLASS(dimm
);
403 if (!dimm
->hostmem
) {
404 error_setg(errp
, "'" PC_DIMM_MEMDEV_PROP
"' property is not set");
407 if (((nb_numa_nodes
> 0) && (dimm
->node
>= nb_numa_nodes
)) ||
408 (!nb_numa_nodes
&& dimm
->node
)) {
409 error_setg(errp
, "'DIMM property " PC_DIMM_NODE_PROP
" has value %"
410 PRIu32
"' which exceeds the number of numa nodes: %d",
411 dimm
->node
, nb_numa_nodes
? nb_numa_nodes
: 1);
416 ddc
->realize(dimm
, errp
);
419 host_memory_backend_set_mapped(dimm
->hostmem
, true);
422 static void pc_dimm_unrealize(DeviceState
*dev
, Error
**errp
)
424 PCDIMMDevice
*dimm
= PC_DIMM(dev
);
426 host_memory_backend_set_mapped(dimm
->hostmem
, false);
429 static MemoryRegion
*pc_dimm_get_memory_region(PCDIMMDevice
*dimm
)
431 return host_memory_backend_get_memory(dimm
->hostmem
, &error_abort
);
434 static MemoryRegion
*pc_dimm_get_vmstate_memory_region(PCDIMMDevice
*dimm
)
436 return host_memory_backend_get_memory(dimm
->hostmem
, &error_abort
);
439 static void pc_dimm_class_init(ObjectClass
*oc
, void *data
)
441 DeviceClass
*dc
= DEVICE_CLASS(oc
);
442 PCDIMMDeviceClass
*ddc
= PC_DIMM_CLASS(oc
);
444 dc
->realize
= pc_dimm_realize
;
445 dc
->unrealize
= pc_dimm_unrealize
;
446 dc
->props
= pc_dimm_properties
;
447 dc
->desc
= "DIMM memory module";
449 ddc
->get_memory_region
= pc_dimm_get_memory_region
;
450 ddc
->get_vmstate_memory_region
= pc_dimm_get_vmstate_memory_region
;
453 static TypeInfo pc_dimm_info
= {
454 .name
= TYPE_PC_DIMM
,
455 .parent
= TYPE_DEVICE
,
456 .instance_size
= sizeof(PCDIMMDevice
),
457 .instance_init
= pc_dimm_init
,
458 .class_init
= pc_dimm_class_init
,
459 .class_size
= sizeof(PCDIMMDeviceClass
),
462 static void pc_dimm_register_types(void)
464 type_register_static(&pc_dimm_info
);
467 type_init(pc_dimm_register_types
)