1 #include "qemu/osdep.h"
2 #include "hw/acpi/memory_hotplug.h"
3 #include "hw/mem/pc-dimm.h"
4 #include "hw/qdev-core.h"
5 #include "migration/vmstate.h"
7 #include "qapi/error.h"
8 #include "qapi/qapi-events-acpi.h"
9 #include "qapi/qapi-events-machine.h"
10 #include "qapi/qapi-events-qdev.h"
12 #define MEMORY_SLOTS_NUMBER "MDNR"
13 #define MEMORY_HOTPLUG_IO_REGION "HPMR"
14 #define MEMORY_SLOT_ADDR_LOW "MRBL"
15 #define MEMORY_SLOT_ADDR_HIGH "MRBH"
16 #define MEMORY_SLOT_SIZE_LOW "MRLL"
17 #define MEMORY_SLOT_SIZE_HIGH "MRLH"
18 #define MEMORY_SLOT_PROXIMITY "MPX"
19 #define MEMORY_SLOT_ENABLED "MES"
20 #define MEMORY_SLOT_INSERT_EVENT "MINS"
21 #define MEMORY_SLOT_REMOVE_EVENT "MRMV"
22 #define MEMORY_SLOT_EJECT "MEJ"
23 #define MEMORY_SLOT_SLECTOR "MSEL"
24 #define MEMORY_SLOT_OST_EVENT "MOEV"
25 #define MEMORY_SLOT_OST_STATUS "MOSC"
26 #define MEMORY_SLOT_LOCK "MLCK"
27 #define MEMORY_SLOT_STATUS_METHOD "MRST"
28 #define MEMORY_SLOT_CRS_METHOD "MCRS"
29 #define MEMORY_SLOT_OST_METHOD "MOST"
30 #define MEMORY_SLOT_PROXIMITY_METHOD "MPXM"
31 #define MEMORY_SLOT_EJECT_METHOD "MEJ0"
32 #define MEMORY_SLOT_NOTIFY_METHOD "MTFY"
33 #define MEMORY_HOTPLUG_DEVICE "MHPD"
35 static ACPIOSTInfo
*acpi_memory_device_status(int slot
, MemStatus
*mdev
)
37 ACPIOSTInfo
*info
= g_new0(ACPIOSTInfo
, 1);
39 info
->slot_type
= ACPI_SLOT_TYPE_DIMM
;
40 info
->slot
= g_strdup_printf("%d", slot
);
41 info
->source
= mdev
->ost_event
;
42 info
->status
= mdev
->ost_status
;
44 DeviceState
*dev
= DEVICE(mdev
->dimm
);
46 info
->device
= g_strdup(dev
->id
);
47 info
->has_device
= true;
53 void acpi_memory_ospm_status(MemHotplugState
*mem_st
, ACPIOSTInfoList
***list
)
55 ACPIOSTInfoList
***tail
= list
;
58 for (i
= 0; i
< mem_st
->dev_count
; i
++) {
59 QAPI_LIST_APPEND(*tail
,
60 acpi_memory_device_status(i
, &mem_st
->devs
[i
]));
64 static uint64_t acpi_memory_hotplug_read(void *opaque
, hwaddr addr
,
68 MemHotplugState
*mem_st
= opaque
;
72 if (mem_st
->selector
>= mem_st
->dev_count
) {
73 trace_mhp_acpi_invalid_slot_selected(mem_st
->selector
);
77 mdev
= &mem_st
->devs
[mem_st
->selector
];
78 o
= OBJECT(mdev
->dimm
);
80 case 0x0: /* Lo part of phys address where DIMM is mapped */
81 val
= o
? object_property_get_uint(o
, PC_DIMM_ADDR_PROP
, NULL
) : 0;
82 trace_mhp_acpi_read_addr_lo(mem_st
->selector
, val
);
84 case 0x4: /* Hi part of phys address where DIMM is mapped */
86 o
? object_property_get_uint(o
, PC_DIMM_ADDR_PROP
, NULL
) >> 32 : 0;
87 trace_mhp_acpi_read_addr_hi(mem_st
->selector
, val
);
89 case 0x8: /* Lo part of DIMM size */
90 val
= o
? object_property_get_uint(o
, PC_DIMM_SIZE_PROP
, NULL
) : 0;
91 trace_mhp_acpi_read_size_lo(mem_st
->selector
, val
);
93 case 0xc: /* Hi part of DIMM size */
95 o
? object_property_get_uint(o
, PC_DIMM_SIZE_PROP
, NULL
) >> 32 : 0;
96 trace_mhp_acpi_read_size_hi(mem_st
->selector
, val
);
98 case 0x10: /* node proximity for _PXM method */
99 val
= o
? object_property_get_uint(o
, PC_DIMM_NODE_PROP
, NULL
) : 0;
100 trace_mhp_acpi_read_pxm(mem_st
->selector
, val
);
102 case 0x14: /* pack and return is_* fields */
103 val
|= mdev
->is_enabled
? 1 : 0;
104 val
|= mdev
->is_inserting
? 2 : 0;
105 val
|= mdev
->is_removing
? 4 : 0;
106 trace_mhp_acpi_read_flags(mem_st
->selector
, val
);
115 static void acpi_memory_hotplug_write(void *opaque
, hwaddr addr
, uint64_t data
,
118 MemHotplugState
*mem_st
= opaque
;
121 DeviceState
*dev
= NULL
;
122 HotplugHandler
*hotplug_ctrl
= NULL
;
123 Error
*local_err
= NULL
;
125 if (!mem_st
->dev_count
) {
130 if (mem_st
->selector
>= mem_st
->dev_count
) {
131 trace_mhp_acpi_invalid_slot_selected(mem_st
->selector
);
137 case 0x0: /* DIMM slot selector */
138 mem_st
->selector
= data
;
139 trace_mhp_acpi_write_slot(mem_st
->selector
);
141 case 0x4: /* _OST event */
142 mdev
= &mem_st
->devs
[mem_st
->selector
];
144 /* TODO: handle device insert OST event */
145 } else if (data
== 3) {
146 /* TODO: handle device remove OST event */
148 mdev
->ost_event
= data
;
149 trace_mhp_acpi_write_ost_ev(mem_st
->selector
, mdev
->ost_event
);
151 case 0x8: /* _OST status */
152 mdev
= &mem_st
->devs
[mem_st
->selector
];
153 mdev
->ost_status
= data
;
154 trace_mhp_acpi_write_ost_status(mem_st
->selector
, mdev
->ost_status
);
155 /* TODO: implement memory removal on guest signal */
157 info
= acpi_memory_device_status(mem_st
->selector
, mdev
);
158 qapi_event_send_acpi_device_ost(info
);
159 qapi_free_ACPIOSTInfo(info
);
161 case 0x14: /* set is_* fields */
162 mdev
= &mem_st
->devs
[mem_st
->selector
];
163 if (data
& 2) { /* clear insert event */
164 mdev
->is_inserting
= false;
165 trace_mhp_acpi_clear_insert_evt(mem_st
->selector
);
166 } else if (data
& 4) {
167 mdev
->is_removing
= false;
168 trace_mhp_acpi_clear_remove_evt(mem_st
->selector
);
169 } else if (data
& 8) {
170 if (!mdev
->is_enabled
) {
171 trace_mhp_acpi_ejecting_invalid_slot(mem_st
->selector
);
175 dev
= DEVICE(mdev
->dimm
);
176 hotplug_ctrl
= qdev_get_hotplug_handler(dev
);
177 /* call pc-dimm unplug cb */
178 hotplug_handler_unplug(hotplug_ctrl
, dev
, &local_err
);
180 trace_mhp_acpi_pc_dimm_delete_failed(mem_st
->selector
);
183 * Send both MEM_UNPLUG_ERROR and DEVICE_UNPLUG_GUEST_ERROR
184 * while the deprecation of MEM_UNPLUG_ERROR is
187 qapi_event_send_mem_unplug_error(dev
->id
? : "",
188 error_get_pretty(local_err
));
189 qapi_event_send_device_unplug_guest_error(!!dev
->id
, dev
->id
,
190 dev
->canonical_path
);
191 error_free(local_err
);
194 object_unparent(OBJECT(dev
));
195 trace_mhp_acpi_pc_dimm_deleted(mem_st
->selector
);
203 static const MemoryRegionOps acpi_memory_hotplug_ops
= {
204 .read
= acpi_memory_hotplug_read
,
205 .write
= acpi_memory_hotplug_write
,
206 .endianness
= DEVICE_LITTLE_ENDIAN
,
208 .min_access_size
= 1,
209 .max_access_size
= 4,
213 void acpi_memory_hotplug_init(MemoryRegion
*as
, Object
*owner
,
214 MemHotplugState
*state
, hwaddr io_base
)
216 MachineState
*machine
= MACHINE(qdev_get_machine());
218 state
->dev_count
= machine
->ram_slots
;
219 if (!state
->dev_count
) {
223 state
->devs
= g_malloc0(sizeof(*state
->devs
) * state
->dev_count
);
224 memory_region_init_io(&state
->io
, owner
, &acpi_memory_hotplug_ops
, state
,
225 "acpi-mem-hotplug", MEMORY_HOTPLUG_IO_LEN
);
226 memory_region_add_subregion(as
, io_base
, &state
->io
);
230 * acpi_memory_slot_status:
231 * @mem_st: memory hotplug state
233 * @errp: set in case of an error
235 * Obtain a single memory slot status.
237 * This function will be called by memory unplug request cb and unplug cb.
240 acpi_memory_slot_status(MemHotplugState
*mem_st
,
241 DeviceState
*dev
, Error
**errp
)
243 Error
*local_err
= NULL
;
244 int slot
= object_property_get_int(OBJECT(dev
), PC_DIMM_SLOT_PROP
,
248 error_propagate(errp
, local_err
);
252 if (slot
>= mem_st
->dev_count
) {
253 char *dev_path
= object_get_canonical_path(OBJECT(dev
));
254 error_setg(errp
, "acpi_memory_slot_status: "
255 "device [%s] returned invalid memory slot[%d]",
261 return &mem_st
->devs
[slot
];
264 void acpi_memory_plug_cb(HotplugHandler
*hotplug_dev
, MemHotplugState
*mem_st
,
265 DeviceState
*dev
, Error
**errp
)
268 DeviceClass
*dc
= DEVICE_GET_CLASS(dev
);
270 if (!dc
->hotpluggable
) {
274 mdev
= acpi_memory_slot_status(mem_st
, dev
, errp
);
280 mdev
->is_enabled
= true;
281 if (dev
->hotplugged
) {
282 mdev
->is_inserting
= true;
283 acpi_send_event(DEVICE(hotplug_dev
), ACPI_MEMORY_HOTPLUG_STATUS
);
287 void acpi_memory_unplug_request_cb(HotplugHandler
*hotplug_dev
,
288 MemHotplugState
*mem_st
,
289 DeviceState
*dev
, Error
**errp
)
293 mdev
= acpi_memory_slot_status(mem_st
, dev
, errp
);
298 mdev
->is_removing
= true;
299 acpi_send_event(DEVICE(hotplug_dev
), ACPI_MEMORY_HOTPLUG_STATUS
);
302 void acpi_memory_unplug_cb(MemHotplugState
*mem_st
,
303 DeviceState
*dev
, Error
**errp
)
307 mdev
= acpi_memory_slot_status(mem_st
, dev
, errp
);
312 mdev
->is_enabled
= false;
316 static const VMStateDescription vmstate_memhp_sts
= {
317 .name
= "memory hotplug device state",
319 .minimum_version_id
= 1,
320 .fields
= (VMStateField
[]) {
321 VMSTATE_BOOL(is_enabled
, MemStatus
),
322 VMSTATE_BOOL(is_inserting
, MemStatus
),
323 VMSTATE_UINT32(ost_event
, MemStatus
),
324 VMSTATE_UINT32(ost_status
, MemStatus
),
325 VMSTATE_END_OF_LIST()
329 const VMStateDescription vmstate_memory_hotplug
= {
330 .name
= "memory hotplug state",
332 .minimum_version_id
= 1,
333 .fields
= (VMStateField
[]) {
334 VMSTATE_UINT32(selector
, MemHotplugState
),
335 VMSTATE_STRUCT_VARRAY_POINTER_UINT32(devs
, MemHotplugState
, dev_count
,
336 vmstate_memhp_sts
, MemStatus
),
337 VMSTATE_END_OF_LIST()
341 void build_memory_hotplug_aml(Aml
*table
, uint32_t nr_mem
,
342 const char *res_root
,
343 const char *event_handler_method
,
344 AmlRegionSpace rs
, hwaddr memhp_io_base
)
353 mhp_res_path
= g_strdup_printf("%s." MEMORY_HOTPLUG_DEVICE
, res_root
);
354 mem_ctrl_dev
= aml_device("%s", mhp_res_path
);
358 aml_append(mem_ctrl_dev
, aml_name_decl("_HID", aml_string("PNP0A06")));
359 aml_append(mem_ctrl_dev
,
360 aml_name_decl("_UID", aml_string("Memory hotplug resources")));
362 crs
= aml_resource_template();
363 if (rs
== AML_SYSTEM_IO
) {
365 aml_io(AML_DECODE16
, memhp_io_base
, memhp_io_base
, 0,
366 MEMORY_HOTPLUG_IO_LEN
)
369 aml_append(crs
, aml_memory32_fixed(memhp_io_base
,
370 MEMORY_HOTPLUG_IO_LEN
, AML_READ_WRITE
));
372 aml_append(mem_ctrl_dev
, aml_name_decl("_CRS", crs
));
374 aml_append(mem_ctrl_dev
, aml_operation_region(
375 MEMORY_HOTPLUG_IO_REGION
, rs
,
376 aml_int(memhp_io_base
), MEMORY_HOTPLUG_IO_LEN
)
380 aml_append(table
, mem_ctrl_dev
);
382 dev_container
= aml_device(MEMORY_DEVICES_CONTAINER
);
385 Aml
*one
= aml_int(1);
386 Aml
*zero
= aml_int(0);
387 Aml
*ret_val
= aml_local(0);
388 Aml
*slot_arg0
= aml_arg(0);
389 Aml
*slots_nr
= aml_name(MEMORY_SLOTS_NUMBER
);
390 Aml
*ctrl_lock
= aml_name(MEMORY_SLOT_LOCK
);
391 Aml
*slot_selector
= aml_name(MEMORY_SLOT_SLECTOR
);
392 char *mmio_path
= g_strdup_printf("%s." MEMORY_HOTPLUG_IO_REGION
,
395 aml_append(dev_container
, aml_name_decl("_HID", aml_string("PNP0A06")));
396 aml_append(dev_container
,
397 aml_name_decl("_UID", aml_string("DIMM devices")));
399 assert(nr_mem
<= ACPI_MAX_RAM_SLOTS
);
400 aml_append(dev_container
,
401 aml_name_decl(MEMORY_SLOTS_NUMBER
, aml_int(nr_mem
))
404 field
= aml_field(mmio_path
, AML_DWORD_ACC
,
405 AML_NOLOCK
, AML_PRESERVE
);
406 aml_append(field
, /* read only */
407 aml_named_field(MEMORY_SLOT_ADDR_LOW
, 32));
408 aml_append(field
, /* read only */
409 aml_named_field(MEMORY_SLOT_ADDR_HIGH
, 32));
410 aml_append(field
, /* read only */
411 aml_named_field(MEMORY_SLOT_SIZE_LOW
, 32));
412 aml_append(field
, /* read only */
413 aml_named_field(MEMORY_SLOT_SIZE_HIGH
, 32));
414 aml_append(field
, /* read only */
415 aml_named_field(MEMORY_SLOT_PROXIMITY
, 32));
416 aml_append(dev_container
, field
);
418 field
= aml_field(mmio_path
, AML_BYTE_ACC
,
419 AML_NOLOCK
, AML_WRITE_AS_ZEROS
);
420 aml_append(field
, aml_reserved_field(160 /* bits, Offset(20) */));
421 aml_append(field
, /* 1 if enabled, read only */
422 aml_named_field(MEMORY_SLOT_ENABLED
, 1));
424 /*(read) 1 if has a insert event. (write) 1 to clear event */
425 aml_named_field(MEMORY_SLOT_INSERT_EVENT
, 1));
427 /* (read) 1 if has a remove event. (write) 1 to clear event */
428 aml_named_field(MEMORY_SLOT_REMOVE_EVENT
, 1));
430 /* initiates device eject, write only */
431 aml_named_field(MEMORY_SLOT_EJECT
, 1));
432 aml_append(dev_container
, field
);
434 field
= aml_field(mmio_path
, AML_DWORD_ACC
,
435 AML_NOLOCK
, AML_PRESERVE
);
436 aml_append(field
, /* DIMM selector, write only */
437 aml_named_field(MEMORY_SLOT_SLECTOR
, 32));
438 aml_append(field
, /* _OST event code, write only */
439 aml_named_field(MEMORY_SLOT_OST_EVENT
, 32));
440 aml_append(field
, /* _OST status code, write only */
441 aml_named_field(MEMORY_SLOT_OST_STATUS
, 32));
442 aml_append(dev_container
, field
);
445 method
= aml_method("_STA", 0, AML_NOTSERIALIZED
);
446 ifctx
= aml_if(aml_equal(slots_nr
, zero
));
448 aml_append(ifctx
, aml_return(zero
));
450 aml_append(method
, ifctx
);
451 /* present, functioning, decoding, not shown in UI */
452 aml_append(method
, aml_return(aml_int(0xB)));
453 aml_append(dev_container
, method
);
455 aml_append(dev_container
, aml_mutex(MEMORY_SLOT_LOCK
, 0));
457 method
= aml_method(MEMORY_SLOT_SCAN_METHOD
, 0, AML_NOTSERIALIZED
);
461 Aml
*idx
= aml_local(0);
462 Aml
*eject_req
= aml_int(3);
463 Aml
*dev_chk
= aml_int(1);
465 ifctx
= aml_if(aml_equal(slots_nr
, zero
));
467 aml_append(ifctx
, aml_return(zero
));
469 aml_append(method
, ifctx
);
471 aml_append(method
, aml_store(zero
, idx
));
472 aml_append(method
, aml_acquire(ctrl_lock
, 0xFFFF));
474 * loops over all slots and Notifies DIMMs with
475 * Device Check or Eject Request notifications if
476 * slot has corresponding status bit set and clears
479 while_ctx
= aml_while(aml_lless(idx
, slots_nr
));
481 Aml
*ins_evt
= aml_name(MEMORY_SLOT_INSERT_EVENT
);
482 Aml
*rm_evt
= aml_name(MEMORY_SLOT_REMOVE_EVENT
);
484 aml_append(while_ctx
, aml_store(idx
, slot_selector
));
485 ifctx
= aml_if(aml_equal(ins_evt
, one
));
488 aml_call2(MEMORY_SLOT_NOTIFY_METHOD
,
490 aml_append(ifctx
, aml_store(one
, ins_evt
));
492 aml_append(while_ctx
, ifctx
);
494 else_ctx
= aml_else();
495 ifctx
= aml_if(aml_equal(rm_evt
, one
));
498 aml_call2(MEMORY_SLOT_NOTIFY_METHOD
,
500 aml_append(ifctx
, aml_store(one
, rm_evt
));
502 aml_append(else_ctx
, ifctx
);
503 aml_append(while_ctx
, else_ctx
);
505 aml_append(while_ctx
, aml_add(idx
, one
, idx
));
507 aml_append(method
, while_ctx
);
508 aml_append(method
, aml_release(ctrl_lock
));
509 aml_append(method
, aml_return(one
));
511 aml_append(dev_container
, method
);
513 method
= aml_method(MEMORY_SLOT_STATUS_METHOD
, 1, AML_NOTSERIALIZED
);
515 Aml
*slot_enabled
= aml_name(MEMORY_SLOT_ENABLED
);
517 aml_append(method
, aml_store(zero
, ret_val
));
518 aml_append(method
, aml_acquire(ctrl_lock
, 0xFFFF));
520 aml_store(aml_to_integer(slot_arg0
), slot_selector
));
522 ifctx
= aml_if(aml_equal(slot_enabled
, one
));
524 aml_append(ifctx
, aml_store(aml_int(0xF), ret_val
));
526 aml_append(method
, ifctx
);
528 aml_append(method
, aml_release(ctrl_lock
));
529 aml_append(method
, aml_return(ret_val
));
531 aml_append(dev_container
, method
);
533 method
= aml_method(MEMORY_SLOT_CRS_METHOD
, 1, AML_SERIALIZED
);
535 Aml
*mr64
= aml_name("MR64");
536 Aml
*mr32
= aml_name("MR32");
537 Aml
*crs_tmpl
= aml_resource_template();
538 Aml
*minl
= aml_name("MINL");
539 Aml
*minh
= aml_name("MINH");
540 Aml
*maxl
= aml_name("MAXL");
541 Aml
*maxh
= aml_name("MAXH");
542 Aml
*lenl
= aml_name("LENL");
543 Aml
*lenh
= aml_name("LENH");
545 aml_append(method
, aml_acquire(ctrl_lock
, 0xFFFF));
546 aml_append(method
, aml_store(aml_to_integer(slot_arg0
),
550 aml_qword_memory(AML_POS_DECODE
, AML_MIN_FIXED
, AML_MAX_FIXED
,
551 AML_CACHEABLE
, AML_READ_WRITE
,
552 0, 0x0, 0xFFFFFFFFFFFFFFFEULL
, 0,
553 0xFFFFFFFFFFFFFFFFULL
));
554 aml_append(method
, aml_name_decl("MR64", crs_tmpl
));
556 aml_create_dword_field(mr64
, aml_int(14), "MINL"));
558 aml_create_dword_field(mr64
, aml_int(18), "MINH"));
560 aml_create_dword_field(mr64
, aml_int(38), "LENL"));
562 aml_create_dword_field(mr64
, aml_int(42), "LENH"));
564 aml_create_dword_field(mr64
, aml_int(22), "MAXL"));
566 aml_create_dword_field(mr64
, aml_int(26), "MAXH"));
569 aml_store(aml_name(MEMORY_SLOT_ADDR_HIGH
), minh
));
571 aml_store(aml_name(MEMORY_SLOT_ADDR_LOW
), minl
));
573 aml_store(aml_name(MEMORY_SLOT_SIZE_HIGH
), lenh
));
575 aml_store(aml_name(MEMORY_SLOT_SIZE_LOW
), lenl
));
577 /* 64-bit math: MAX = MIN + LEN - 1 */
578 aml_append(method
, aml_add(minl
, lenl
, maxl
));
579 aml_append(method
, aml_add(minh
, lenh
, maxh
));
580 ifctx
= aml_if(aml_lless(maxl
, minl
));
582 aml_append(ifctx
, aml_add(maxh
, one
, maxh
));
584 aml_append(method
, ifctx
);
585 ifctx
= aml_if(aml_lless(maxl
, one
));
587 aml_append(ifctx
, aml_subtract(maxh
, one
, maxh
));
589 aml_append(method
, ifctx
);
590 aml_append(method
, aml_subtract(maxl
, one
, maxl
));
592 /* return 32-bit _CRS if addr/size is in low mem */
593 /* TODO: remove it since all hotplugged DIMMs are in high mem */
594 ifctx
= aml_if(aml_equal(maxh
, zero
));
596 crs_tmpl
= aml_resource_template();
598 aml_dword_memory(AML_POS_DECODE
, AML_MIN_FIXED
,
599 AML_MAX_FIXED
, AML_CACHEABLE
,
601 0, 0x0, 0xFFFFFFFE, 0,
603 aml_append(ifctx
, aml_name_decl("MR32", crs_tmpl
));
605 aml_create_dword_field(mr32
, aml_int(10), "MIN"));
607 aml_create_dword_field(mr32
, aml_int(14), "MAX"));
609 aml_create_dword_field(mr32
, aml_int(22), "LEN"));
610 aml_append(ifctx
, aml_store(minl
, aml_name("MIN")));
611 aml_append(ifctx
, aml_store(maxl
, aml_name("MAX")));
612 aml_append(ifctx
, aml_store(lenl
, aml_name("LEN")));
614 aml_append(ifctx
, aml_release(ctrl_lock
));
615 aml_append(ifctx
, aml_return(mr32
));
617 aml_append(method
, ifctx
);
619 aml_append(method
, aml_release(ctrl_lock
));
620 aml_append(method
, aml_return(mr64
));
622 aml_append(dev_container
, method
);
624 method
= aml_method(MEMORY_SLOT_PROXIMITY_METHOD
, 1,
627 Aml
*proximity
= aml_name(MEMORY_SLOT_PROXIMITY
);
629 aml_append(method
, aml_acquire(ctrl_lock
, 0xFFFF));
630 aml_append(method
, aml_store(aml_to_integer(slot_arg0
),
632 aml_append(method
, aml_store(proximity
, ret_val
));
633 aml_append(method
, aml_release(ctrl_lock
));
634 aml_append(method
, aml_return(ret_val
));
636 aml_append(dev_container
, method
);
638 method
= aml_method(MEMORY_SLOT_OST_METHOD
, 4, AML_NOTSERIALIZED
);
640 Aml
*ost_evt
= aml_name(MEMORY_SLOT_OST_EVENT
);
641 Aml
*ost_status
= aml_name(MEMORY_SLOT_OST_STATUS
);
643 aml_append(method
, aml_acquire(ctrl_lock
, 0xFFFF));
644 aml_append(method
, aml_store(aml_to_integer(slot_arg0
),
646 aml_append(method
, aml_store(aml_arg(1), ost_evt
));
647 aml_append(method
, aml_store(aml_arg(2), ost_status
));
648 aml_append(method
, aml_release(ctrl_lock
));
650 aml_append(dev_container
, method
);
652 method
= aml_method(MEMORY_SLOT_EJECT_METHOD
, 2, AML_NOTSERIALIZED
);
654 Aml
*eject
= aml_name(MEMORY_SLOT_EJECT
);
656 aml_append(method
, aml_acquire(ctrl_lock
, 0xFFFF));
657 aml_append(method
, aml_store(aml_to_integer(slot_arg0
),
659 aml_append(method
, aml_store(one
, eject
));
660 aml_append(method
, aml_release(ctrl_lock
));
662 aml_append(dev_container
, method
);
664 /* build memory devices */
665 for (i
= 0; i
< nr_mem
; i
++) {
669 dev
= aml_device("MP%02X", i
);
670 aml_append(dev
, aml_name_decl("_UID", aml_string("0x%02X", i
)));
671 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0C80")));
673 method
= aml_method("_CRS", 0, AML_NOTSERIALIZED
);
674 s
= MEMORY_SLOT_CRS_METHOD
;
675 aml_append(method
, aml_return(aml_call1(s
, aml_name("_UID"))));
676 aml_append(dev
, method
);
678 method
= aml_method("_STA", 0, AML_NOTSERIALIZED
);
679 s
= MEMORY_SLOT_STATUS_METHOD
;
680 aml_append(method
, aml_return(aml_call1(s
, aml_name("_UID"))));
681 aml_append(dev
, method
);
683 method
= aml_method("_PXM", 0, AML_NOTSERIALIZED
);
684 s
= MEMORY_SLOT_PROXIMITY_METHOD
;
685 aml_append(method
, aml_return(aml_call1(s
, aml_name("_UID"))));
686 aml_append(dev
, method
);
688 method
= aml_method("_OST", 3, AML_NOTSERIALIZED
);
689 s
= MEMORY_SLOT_OST_METHOD
;
691 aml_call4(s
, aml_name("_UID"), aml_arg(0),
692 aml_arg(1), aml_arg(2)));
693 aml_append(dev
, method
);
695 method
= aml_method("_EJ0", 1, AML_NOTSERIALIZED
);
696 s
= MEMORY_SLOT_EJECT_METHOD
;
698 aml_call2(s
, aml_name("_UID"), aml_arg(0)));
699 aml_append(dev
, method
);
701 aml_append(dev_container
, dev
);
704 /* build Method(MEMORY_SLOT_NOTIFY_METHOD, 2) {
705 * If (LEqual(Arg0, 0x00)) {Notify(MP00, Arg1)} ... }
707 method
= aml_method(MEMORY_SLOT_NOTIFY_METHOD
, 2, AML_NOTSERIALIZED
);
708 for (i
= 0; i
< nr_mem
; i
++) {
709 ifctx
= aml_if(aml_equal(aml_arg(0), aml_int(i
)));
711 aml_notify(aml_name("MP%.02X", i
), aml_arg(1))
713 aml_append(method
, ifctx
);
715 aml_append(dev_container
, method
);
717 aml_append(table
, dev_container
);
719 if (event_handler_method
) {
720 method
= aml_method(event_handler_method
, 0, AML_NOTSERIALIZED
);
721 aml_append(method
, aml_call0(MEMORY_DEVICES_CONTAINER
"."
722 MEMORY_SLOT_SCAN_METHOD
));
723 aml_append(table
, method
);
726 g_free(mhp_res_path
);