pc-dimm: correct comment of MemoryHotplugState
[qemu/ar7.git] / include / hw / mem / pc-dimm.h
blob8cdc3266b30e552615cee26dbbf26147ec35466e
1 /*
2 * PC DIMM device
4 * Copyright ProfitBricks GmbH 2012
5 * Copyright (C) 2013-2014 Red Hat Inc
7 * Authors:
8 * Vasilis Liaskovitis <vasilis.liaskovitis@profitbricks.com>
9 * Igor Mammedov <imammedo@redhat.com>
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
16 #ifndef QEMU_PC_DIMM_H
17 #define QEMU_PC_DIMM_H
19 #include "exec/memory.h"
20 #include "sysemu/hostmem.h"
21 #include "hw/qdev.h"
23 #define TYPE_PC_DIMM "pc-dimm"
24 #define PC_DIMM(obj) \
25 OBJECT_CHECK(PCDIMMDevice, (obj), TYPE_PC_DIMM)
26 #define PC_DIMM_CLASS(oc) \
27 OBJECT_CLASS_CHECK(PCDIMMDeviceClass, (oc), TYPE_PC_DIMM)
28 #define PC_DIMM_GET_CLASS(obj) \
29 OBJECT_GET_CLASS(PCDIMMDeviceClass, (obj), TYPE_PC_DIMM)
31 #define PC_DIMM_ADDR_PROP "addr"
32 #define PC_DIMM_SLOT_PROP "slot"
33 #define PC_DIMM_NODE_PROP "node"
34 #define PC_DIMM_SIZE_PROP "size"
35 #define PC_DIMM_MEMDEV_PROP "memdev"
37 #define PC_DIMM_UNASSIGNED_SLOT -1
39 /**
40 * PCDIMMDevice:
41 * @addr: starting guest physical address, where @PCDIMMDevice is mapped.
42 * Default value: 0, means that address is auto-allocated.
43 * @node: numa node to which @PCDIMMDevice is attached.
44 * @slot: slot number into which @PCDIMMDevice is plugged in.
45 * Default value: -1, means that slot is auto-allocated.
46 * @hostmem: host memory backend providing memory for @PCDIMMDevice
48 typedef struct PCDIMMDevice {
49 /* private */
50 DeviceState parent_obj;
52 /* public */
53 uint64_t addr;
54 uint32_t node;
55 int32_t slot;
56 HostMemoryBackend *hostmem;
57 } PCDIMMDevice;
59 /**
60 * PCDIMMDeviceClass:
61 * @get_memory_region: returns #MemoryRegion associated with @dimm
63 typedef struct PCDIMMDeviceClass {
64 /* private */
65 DeviceClass parent_class;
67 /* public */
68 MemoryRegion *(*get_memory_region)(PCDIMMDevice *dimm);
69 } PCDIMMDeviceClass;
71 /**
72 * MemoryHotplugState:
73 * @base: address in guest physical address space where hotplug memory
74 * address space begins.
75 * @mr: hotplug memory address space container
77 typedef struct MemoryHotplugState {
78 hwaddr base;
79 MemoryRegion mr;
80 } MemoryHotplugState;
82 uint64_t pc_dimm_get_free_addr(uint64_t address_space_start,
83 uint64_t address_space_size,
84 uint64_t *hint, uint64_t align, uint64_t size,
85 Error **errp);
87 int pc_dimm_get_free_slot(const int *hint, int max_slots, Error **errp);
89 int qmp_pc_dimm_device_list(Object *obj, void *opaque);
90 uint64_t pc_existing_dimms_capacity(Error **errp);
91 void pc_dimm_memory_plug(DeviceState *dev, MemoryHotplugState *hpms,
92 MemoryRegion *mr, uint64_t align, Error **errp);
93 void pc_dimm_memory_unplug(DeviceState *dev, MemoryHotplugState *hpms,
94 MemoryRegion *mr);
95 #endif