Browse Source

Merge pull request #114 from Dentosal/pci-route-method

Make AML PciRoutingTable::route call LinkObject methods when required
Isaac Woods 3 years ago
parent
commit
69971d0444
2 changed files with 5 additions and 3 deletions
  1. 3 3
      aml/src/pci_routing.rs
  2. 2 0
      aml/src/value.rs

+ 3 - 3
aml/src/pci_routing.rs

@@ -172,10 +172,10 @@ impl PciRoutingTable {
                 irq: gsi,
             }),
             PciRouteType::LinkObject(ref name) => {
-                let link_crs =
-                    context.namespace.get_by_path(&AmlName::from_str("_CRS").unwrap().resolve(name)?)?;
+                let path = AmlName::from_str("_CRS").unwrap().resolve(name)?;
+                let link_crs = context.invoke_method(&path, Args::EMPTY)?;
 
-                let resources = resource::resource_descriptor_list(link_crs)?;
+                let resources = resource::resource_descriptor_list(&link_crs)?;
                 match resources.as_slice() {
                     [Resource::Irq(descriptor)] => Ok(descriptor.clone()),
                     _ => Err(AmlError::UnexpectedResourceType),

+ 2 - 0
aml/src/value.rs

@@ -605,6 +605,8 @@ impl AmlValue {
 pub struct Args(pub [Option<AmlValue>; 7]);
 
 impl Args {
+    pub const EMPTY: Self = Self([None, None, None, None, None, None, None]);
+
     pub fn from_list(list: Vec<AmlValue>) -> Result<Args, AmlError> {
         use core::convert::TryInto;