|
@@ -97,7 +97,15 @@ where
|
|
|
comment_scope(
|
|
|
DebugVerbosity::AllScopes,
|
|
|
"NamedObj",
|
|
|
- choice!(def_op_region(), def_field(), def_method(), def_device(), def_processor(), def_mutex()),
|
|
|
+ choice!(
|
|
|
+ def_op_region(),
|
|
|
+ def_field(),
|
|
|
+ def_method(),
|
|
|
+ def_device(),
|
|
|
+ def_processor(),
|
|
|
+ def_power_res(),
|
|
|
+ def_mutex()
|
|
|
+ ),
|
|
|
)
|
|
|
}
|
|
|
|
|
@@ -235,6 +243,56 @@ where
|
|
|
.discard_result()
|
|
|
}
|
|
|
|
|
|
+pub fn def_power_res<'a, 'c>() -> impl Parser<'a, 'c, ()>
|
|
|
+where
|
|
|
+ 'c: 'a,
|
|
|
+{
|
|
|
+ /*
|
|
|
+ * DefPowerRes := ExtOpPrefix 0x84 PkgLength NameString SystemLevel ResourceOrder TermList
|
|
|
+ * SystemLevel := ByteData
|
|
|
+ * ResourceOrder := WordData
|
|
|
+ */
|
|
|
+ ext_opcode(opcode::EXT_DEF_POWER_RES_OP)
|
|
|
+ .then(comment_scope(
|
|
|
+ DebugVerbosity::Scopes,
|
|
|
+ "DefPowerRes",
|
|
|
+ pkg_length()
|
|
|
+ .then(name_string())
|
|
|
+ .then(take())
|
|
|
+ .then(take_u16())
|
|
|
+ .map_with_context(|(((pkg_length, name), system_level), resource_order), context| {
|
|
|
+ /*
|
|
|
+ * `PowerResource` objects contain data within themselves, and can also have sub-objects,
|
|
|
+ * so we add both a level for the sub-objects, and a value for the data.
|
|
|
+ */
|
|
|
+ let resolved_name = try_with_context!(context, name.resolve(&context.current_scope));
|
|
|
+ try_with_context!(
|
|
|
+ context,
|
|
|
+ context.namespace.add_level(resolved_name.clone(), LevelType::PowerResource)
|
|
|
+ );
|
|
|
+ try_with_context!(
|
|
|
+ context,
|
|
|
+ context.namespace.add_value(
|
|
|
+ resolved_name.clone(),
|
|
|
+ AmlValue::PowerResource { system_level, resource_order }
|
|
|
+ )
|
|
|
+ );
|
|
|
+ let previous_scope = context.current_scope.clone();
|
|
|
+ context.current_scope = resolved_name;
|
|
|
+
|
|
|
+ (Ok((previous_scope, pkg_length)), context)
|
|
|
+ })
|
|
|
+ .feed(move |(previous_scope, pkg_length)| {
|
|
|
+ term_list(pkg_length).map(move |_| Ok(previous_scope.clone()))
|
|
|
+ })
|
|
|
+ .map_with_context(|previous_scope, context| {
|
|
|
+ context.current_scope = previous_scope;
|
|
|
+ (Ok(()), context)
|
|
|
+ }),
|
|
|
+ ))
|
|
|
+ .discard_result()
|
|
|
+}
|
|
|
+
|
|
|
pub fn def_field<'a, 'c>() -> impl Parser<'a, 'c, ()>
|
|
|
where
|
|
|
'c: 'a,
|