lib.rs 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809
  1. //! `aml` is a pure-Rust AML (ACPI Machine Language) parser, used for parsing the DSDT and
  2. //! SSDT tables from ACPI. This crate can be used by kernels to gather information about the
  3. //! hardware, and invoke control methods (this is not yet supported) to query and change the state
  4. //! of devices in a hardware-independent way.
  5. //!
  6. //! ### Using the library
  7. //! To use the library, you will mostly interact with the `AmlContext` type. You should create an
  8. //! instance of this type using `AmlContext::new()`, and then pass it tables containing AML
  9. //! (probably from the `acpi` crate), which you've mapped into the virtual address space. This will
  10. //! parse the table, populating the namespace with objects encoded by the AML. After this, you may
  11. //! unmap the memory the table was mapped into - all the information needed will be extracted and
  12. //! allocated on the heap.
  13. //!
  14. //! You can then access specific objects by name like so: e.g.
  15. //! ```ignore
  16. //! let my_aml_value = aml_context.lookup(&AmlName::from_str("\\_SB.PCI0.S08._ADR").unwrap());
  17. //! ```
  18. // TODO: add example of invoking a method
  19. //!
  20. //! ### About the parser
  21. //! The parser is written using a set of custom parser combinators - the code can be confusing on
  22. //! first reading, but provides an extensible and type-safe way to write parsers. For an easy
  23. //! introduction to parser combinators and the foundations used for this library, I suggest reading
  24. //! [Bodil's fantastic blog post](https://bodil.lol/parser-combinators/).
  25. //!
  26. //! The actual combinators can be found in `parser.rs`. Various tricks are used to provide a nice
  27. //! API and work around limitations in the type system, such as the concrete types like
  28. //! `MapWithContext`, and the `make_parser_concrete` hack macro.
  29. //!
  30. //! The actual parsers are then grouped into categories based loosely on the AML grammar sections in
  31. //! the ACPI spec. Most are written in terms of combinators, but some have to be written in a more
  32. //! imperitive style, either because they're clearer, or because we haven't yet found good
  33. //! combinator patterns to express the parse.
  34. #![no_std]
  35. #![feature(decl_macro, type_ascription, box_syntax, bool_to_option)]
  36. extern crate alloc;
  37. #[cfg(test)]
  38. extern crate std;
  39. #[cfg(test)]
  40. mod test_utils;
  41. pub(crate) mod misc;
  42. pub(crate) mod name_object;
  43. pub(crate) mod namespace;
  44. pub(crate) mod opcode;
  45. pub(crate) mod parser;
  46. pub mod pci_routing;
  47. pub(crate) mod pkg_length;
  48. pub mod resource;
  49. pub(crate) mod term_object;
  50. pub(crate) mod type1;
  51. pub(crate) mod type2;
  52. pub mod value;
  53. pub use crate::{
  54. namespace::{AmlHandle, AmlName, Namespace},
  55. value::AmlValue,
  56. };
  57. use alloc::{boxed::Box, string::ToString};
  58. use core::mem;
  59. use log::{error, warn};
  60. use misc::{ArgNum, LocalNum};
  61. use name_object::Target;
  62. use namespace::LevelType;
  63. use parser::{Parser, Propagate};
  64. use pkg_length::PkgLength;
  65. use term_object::term_list;
  66. use value::{AmlType, Args};
  67. /// AML has a `RevisionOp` operator that returns the "AML interpreter revision". It's not clear
  68. /// what this is actually used for, but this is ours.
  69. pub const AML_INTERPRETER_REVISION: u64 = 0;
  70. /// Describes how much debug information the parser should emit. Set the "maximum" expected verbosity in
  71. /// the context's `debug_verbosity` - everything will be printed that is less or equal in 'verbosity'.
  72. #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug)]
  73. pub enum DebugVerbosity {
  74. /// Print no debug information
  75. None,
  76. /// Print heads and tails when entering and leaving scopes of major objects, but not more minor ones.
  77. Scopes,
  78. /// Print heads and tails when entering and leaving scopes of all objects.
  79. AllScopes,
  80. /// Print heads and tails of all objects, and extra debug information as it's parsed.
  81. All,
  82. }
  83. struct MethodContext {
  84. /// AML local variables. These are used when we invoke a control method. A `None` value represents a null AML
  85. /// object.
  86. locals: [Option<AmlValue>; 8],
  87. /// If we're currently invoking a control method, this stores the arguments that were passed to
  88. /// it. It's `None` if we aren't invoking a method.
  89. args: Args,
  90. }
  91. impl MethodContext {
  92. fn new(args: Args) -> MethodContext {
  93. // XXX: this is required because `Option<AmlValue>` is not `Copy`, so it can't be used to initialize an
  94. // array, but consts can :(
  95. const NONE_BUT_CONST: Option<AmlValue> = None;
  96. MethodContext { locals: [NONE_BUT_CONST; 8], args }
  97. }
  98. }
  99. pub struct AmlContext {
  100. /// The `Handler` passed from the library user. This is stored as a boxed trait object simply to avoid having
  101. /// to add a lifetime and type parameter to `AmlContext`, as they would massively complicate the parser types.
  102. handler: Box<dyn Handler>,
  103. pub namespace: Namespace,
  104. method_context: Option<MethodContext>,
  105. /*
  106. * These track the state of the context while it's parsing an AML table.
  107. */
  108. current_scope: AmlName,
  109. scope_indent: usize,
  110. debug_verbosity: DebugVerbosity,
  111. }
  112. impl AmlContext {
  113. /// Creates a new `AmlContext` - the central type in managing the AML tables. Only one of these should be
  114. /// created, and it should be passed the DSDT and all SSDTs defined by the hardware.
  115. pub fn new(handler: Box<dyn Handler>, debug_verbosity: DebugVerbosity) -> AmlContext {
  116. let mut context = AmlContext {
  117. handler,
  118. namespace: Namespace::new(),
  119. method_context: None,
  120. current_scope: AmlName::root(),
  121. scope_indent: 0,
  122. debug_verbosity,
  123. };
  124. context.add_predefined_objects();
  125. context
  126. }
  127. pub fn parse_table(&mut self, stream: &[u8]) -> Result<(), AmlError> {
  128. if stream.len() == 0 {
  129. return Err(AmlError::UnexpectedEndOfStream);
  130. }
  131. let table_length = PkgLength::from_raw_length(stream, stream.len() as u32).unwrap();
  132. match term_object::term_list(table_length).parse(stream, self) {
  133. Ok(_) => Ok(()),
  134. Err((_, _, Propagate::Err(err))) => {
  135. error!("Failed to parse AML stream. Err = {:?}", err);
  136. Err(err)
  137. }
  138. Err((_, _, other)) => {
  139. error!("AML table evaluated to unexpected result: {:?}", other);
  140. Err(AmlError::MalformedStream)
  141. }
  142. }
  143. }
  144. // TODO: docs
  145. pub fn invoke_method(&mut self, path: &AmlName, args: Args) -> Result<AmlValue, AmlError> {
  146. use value::MethodCode;
  147. match self.namespace.get_by_path(path)?.clone() {
  148. AmlValue::Method { flags, code } => {
  149. /*
  150. * First, set up the state we expect to enter the method with, but clearing local
  151. * variables to "null" and setting the arguments. Save the current method state and scope, so if we're
  152. * already executing another control method, we resume into it correctly.
  153. */
  154. let old_context = mem::replace(&mut self.method_context, Some(MethodContext::new(args)));
  155. let old_scope = mem::replace(&mut self.current_scope, path.clone());
  156. /*
  157. * Create a namespace level to store local objects created by the invocation.
  158. */
  159. self.namespace.add_level(path.clone(), LevelType::MethodLocals)?;
  160. let return_value = match code {
  161. MethodCode::Aml(ref code) => {
  162. match term_list(PkgLength::from_raw_length(code, code.len() as u32).unwrap())
  163. .parse(code, self)
  164. {
  165. // If the method doesn't return a value, we implicitly return `0`
  166. Ok(_) => Ok(AmlValue::Integer(0)),
  167. Err((_, _, Propagate::Return(result))) => Ok(result),
  168. Err((_, _, Propagate::Break)) => Err(AmlError::BreakInInvalidPosition),
  169. Err((_, _, Propagate::Continue)) => Err(AmlError::ContinueInInvalidPosition),
  170. Err((_, _, Propagate::Err(err))) => {
  171. error!("Failed to execute control method: {:?}", err);
  172. Err(err)
  173. }
  174. }
  175. }
  176. MethodCode::Native(ref method) => match (method)(self) {
  177. Ok(result) => Ok(result),
  178. Err(err) => {
  179. error!("Failed to execute control method: {:?}", err);
  180. Err(err)
  181. }
  182. },
  183. };
  184. /*
  185. * Locally-created objects should be destroyed on method exit (see §5.5.2.3 of the ACPI spec). We do
  186. * this by simply removing the method's local object layer.
  187. */
  188. // TODO: this should also remove objects created by the method outside the method's scope, if they
  189. // weren't statically created. This is harder.
  190. self.namespace.remove_level(path.clone())?;
  191. /*
  192. * Restore the old state.
  193. */
  194. self.method_context = old_context;
  195. self.current_scope = old_scope;
  196. return_value
  197. }
  198. /*
  199. * AML can encode methods that don't require any computation simply as the value that would otherwise be
  200. * returned (e.g. a `_STA` object simply being an `AmlValue::Integer`, instead of a method that just
  201. * returns an integer).
  202. */
  203. value => Ok(value),
  204. }
  205. }
  206. // TODO: docs
  207. pub fn initialize_objects(&mut self) -> Result<(), AmlError> {
  208. use name_object::NameSeg;
  209. use namespace::NamespaceLevel;
  210. use value::StatusObject;
  211. /*
  212. * If `\_SB._INI` exists, we unconditionally execute it at the beginning of device initialization.
  213. */
  214. match self.invoke_method(&AmlName::from_str("\\_SB._INI").unwrap(), Args::default()) {
  215. Ok(_) => (),
  216. Err(AmlError::ValueDoesNotExist(_)) => (),
  217. Err(err) => return Err(err),
  218. }
  219. /*
  220. * Next, we traverse the namespace, looking for devices.
  221. *
  222. * XXX: we clone the namespace here, which obviously drives up heap burden quite a bit (not as much as you
  223. * might first expect though - we're only duplicating the level data structure, not all the objects). The
  224. * issue here is that we need to access the namespace during traversal (e.g. to invoke a method), which the
  225. * borrow checker really doesn't like. A better solution could be a iterator-like traversal system that
  226. * keeps track of the namespace without keeping it borrowed. This works for now.
  227. */
  228. self.namespace.clone().traverse(|path, level: &NamespaceLevel| match level.typ {
  229. LevelType::Device => {
  230. let status = if level.values.contains_key(&NameSeg::from_str("_STA").unwrap()) {
  231. self.invoke_method(&AmlName::from_str("_STA").unwrap().resolve(&path)?, Args::default())?
  232. .as_status()?
  233. } else {
  234. StatusObject::default()
  235. };
  236. /*
  237. * If the device is present and has an `_INI` method, invoke it.
  238. */
  239. if status.present && level.values.contains_key(&NameSeg::from_str("_INI").unwrap()) {
  240. log::info!("Invoking _INI at level: {}", path);
  241. self.invoke_method(&AmlName::from_str("_INI").unwrap().resolve(&path)?, Args::default())?;
  242. }
  243. /*
  244. * We traverse the children of this device if it's present, or isn't present but is functional.
  245. */
  246. Ok(status.present || status.functional)
  247. }
  248. LevelType::Scope => Ok(true),
  249. // TODO: can any of these contain devices?
  250. LevelType::Processor => Ok(false),
  251. LevelType::PowerResource => Ok(false),
  252. LevelType::ThermalZone => Ok(false),
  253. LevelType::MethodLocals => Ok(false),
  254. })?;
  255. Ok(())
  256. }
  257. pub(crate) fn read_target(&self, target: &Target) -> Result<&AmlValue, AmlError> {
  258. match target {
  259. Target::Null => todo!(),
  260. Target::Name(name) => {
  261. let (_, handle) = self.namespace.search(name, &self.current_scope)?;
  262. self.namespace.get(handle)
  263. }
  264. Target::Debug => todo!(),
  265. Target::Arg(arg) => self.current_arg(*arg),
  266. Target::Local(local) => self.local(*local),
  267. }
  268. }
  269. /// Get the value of an argument by its argument number. Can only be executed from inside a control method.
  270. pub(crate) fn current_arg(&self, arg: ArgNum) -> Result<&AmlValue, AmlError> {
  271. self.method_context.as_ref().ok_or(AmlError::NotExecutingControlMethod)?.args.arg(arg)
  272. }
  273. /// Get the current value of a local by its local number. Can only be executed from inside a control method.
  274. pub(crate) fn local(&self, local: LocalNum) -> Result<&AmlValue, AmlError> {
  275. if let None = self.method_context {
  276. return Err(AmlError::NotExecutingControlMethod);
  277. }
  278. if local > 7 {
  279. return Err(AmlError::InvalidLocalAccess(local));
  280. }
  281. self.method_context.as_ref().unwrap().locals[local as usize]
  282. .as_ref()
  283. .ok_or(AmlError::InvalidLocalAccess(local))
  284. }
  285. /// Perform a store into a `Target`, according to the rules specified by §19.3.5.8. This returns a value read
  286. /// out of the target, if neccessary, as values can be altered during a store in some circumstances. When
  287. /// required, this also performs required implicit conversions, otherwise stores are semantically equivalent to
  288. /// a `CopyObject`.
  289. pub(crate) fn store(&mut self, target: Target, value: AmlValue) -> Result<AmlValue, AmlError> {
  290. match target {
  291. Target::Name(ref path) => {
  292. let (_, handle) = self.namespace.search(path, &self.current_scope)?;
  293. match self.namespace.get(handle).unwrap().type_of() {
  294. AmlType::FieldUnit => {
  295. let mut field = self.namespace.get(handle).unwrap().clone();
  296. field.write_field(value, self)?;
  297. field.read_field(self)
  298. }
  299. AmlType::BufferField => {
  300. log::info!("Trying to write to buffer field!");
  301. todo!()
  302. }
  303. typ => {
  304. *self.namespace.get_mut(handle)? = value.as_type(typ, self)?;
  305. Ok(self.namespace.get(handle)?.clone())
  306. }
  307. }
  308. }
  309. Target::Debug => {
  310. // TODO
  311. unimplemented!()
  312. }
  313. Target::Arg(arg_num) => {
  314. if let None = self.method_context {
  315. return Err(AmlError::NotExecutingControlMethod);
  316. }
  317. /*
  318. * Stores into `Arg` objects are simply copied with no conversion applied, unless the `Arg`
  319. * contains an Object Reference, in which case an automatic de-reference occurs and the object is
  320. * copied to the target of the Object Reference, instead of overwriting the `Arg.`
  321. */
  322. // TODO: implement behaviour for object references
  323. self.method_context.as_mut().unwrap().args.store_arg(arg_num, value.clone())?;
  324. Ok(value)
  325. }
  326. Target::Local(local_num) => {
  327. if let None = self.method_context {
  328. return Err(AmlError::NotExecutingControlMethod);
  329. }
  330. /*
  331. * Stores into `Local` objects are always simply copied into the destination with no conversion
  332. * applied, even if it contains an Object Reference.
  333. */
  334. self.method_context.as_mut().unwrap().locals[local_num as usize] = Some(value.clone());
  335. Ok(value)
  336. }
  337. Target::Null => Ok(value),
  338. }
  339. }
  340. /// Read from an operation-region, performing only standard-sized reads (supported powers-of-2 only. If a field
  341. /// is not one of these sizes, it may need to be masked, or multiple reads may need to be performed).
  342. pub(crate) fn read_region(&self, region_handle: AmlHandle, offset: u64, length: u64) -> Result<u64, AmlError> {
  343. use bit_field::BitField;
  344. use core::convert::TryInto;
  345. use value::RegionSpace;
  346. let (region_space, region_base, region_length, parent_device) = {
  347. if let AmlValue::OpRegion { region, offset, length, parent_device } =
  348. self.namespace.get(region_handle)?
  349. {
  350. (region, offset, length, parent_device)
  351. } else {
  352. return Err(AmlError::FieldRegionIsNotOpRegion);
  353. }
  354. };
  355. match region_space {
  356. RegionSpace::SystemMemory => {
  357. let address = (region_base + offset).try_into().map_err(|_| AmlError::FieldInvalidAddress)?;
  358. match length {
  359. 8 => Ok(self.handler.read_u8(address) as u64),
  360. 16 => Ok(self.handler.read_u16(address) as u64),
  361. 32 => Ok(self.handler.read_u32(address) as u64),
  362. 64 => Ok(self.handler.read_u64(address)),
  363. _ => Err(AmlError::FieldInvalidAccessSize),
  364. }
  365. }
  366. RegionSpace::SystemIo => {
  367. let port = (region_base + offset).try_into().map_err(|_| AmlError::FieldInvalidAddress)?;
  368. match length {
  369. 8 => Ok(self.handler.read_io_u8(port) as u64),
  370. 16 => Ok(self.handler.read_io_u16(port) as u64),
  371. 32 => Ok(self.handler.read_io_u32(port) as u64),
  372. _ => Err(AmlError::FieldInvalidAccessSize),
  373. }
  374. }
  375. RegionSpace::PciConfig => {
  376. /*
  377. * First, we need to get some extra information out of objects in the parent object. Both
  378. * `_SEG` and `_BBN` seem optional, with defaults that line up with legacy PCI implementations
  379. * (e.g. systems with a single segment group and a single root, respectively).
  380. */
  381. let parent_device = parent_device.as_ref().unwrap();
  382. let seg = match self.namespace.search(&AmlName::from_str("_SEG").unwrap(), parent_device) {
  383. Ok((_, handle)) => self
  384. .namespace
  385. .get(handle)?
  386. .as_integer(self)?
  387. .try_into()
  388. .map_err(|_| AmlError::FieldInvalidAddress)?,
  389. Err(AmlError::ValueDoesNotExist(_)) => 0,
  390. Err(err) => return Err(err),
  391. };
  392. let bbn = match self.namespace.search(&AmlName::from_str("_BBN").unwrap(), parent_device) {
  393. Ok((_, handle)) => self
  394. .namespace
  395. .get(handle)?
  396. .as_integer(self)?
  397. .try_into()
  398. .map_err(|_| AmlError::FieldInvalidAddress)?,
  399. Err(AmlError::ValueDoesNotExist(_)) => 0,
  400. Err(err) => return Err(err),
  401. };
  402. let adr = {
  403. let (_, handle) = self.namespace.search(&AmlName::from_str("_ADR").unwrap(), parent_device)?;
  404. self.namespace.get(handle)?.as_integer(self)?
  405. };
  406. let device = adr.get_bits(16..24) as u8;
  407. let function = adr.get_bits(0..8) as u8;
  408. let offset = (region_base + offset).try_into().map_err(|_| AmlError::FieldInvalidAddress)?;
  409. match length {
  410. 8 => Ok(self.handler.read_pci_u8(seg, bbn, device, function, offset) as u64),
  411. 16 => Ok(self.handler.read_pci_u16(seg, bbn, device, function, offset) as u64),
  412. 32 => Ok(self.handler.read_pci_u32(seg, bbn, device, function, offset) as u64),
  413. _ => Err(AmlError::FieldInvalidAccessSize),
  414. }
  415. }
  416. // TODO
  417. _ => unimplemented!(),
  418. }
  419. }
  420. pub(crate) fn write_region(
  421. &mut self,
  422. region_handle: AmlHandle,
  423. offset: u64,
  424. length: u64,
  425. value: u64,
  426. ) -> Result<(), AmlError> {
  427. use bit_field::BitField;
  428. use core::convert::TryInto;
  429. use value::RegionSpace;
  430. let (region_space, region_base, region_length, parent_device) = {
  431. if let AmlValue::OpRegion { region, offset, length, parent_device } =
  432. self.namespace.get(region_handle)?
  433. {
  434. (region, offset, length, parent_device)
  435. } else {
  436. return Err(AmlError::FieldRegionIsNotOpRegion);
  437. }
  438. };
  439. match region_space {
  440. RegionSpace::SystemMemory => {
  441. let address = (region_base + offset).try_into().map_err(|_| AmlError::FieldInvalidAddress)?;
  442. match length {
  443. 8 => Ok(self.handler.write_u8(address, value as u8)),
  444. 16 => Ok(self.handler.write_u16(address, value as u16)),
  445. 32 => Ok(self.handler.write_u32(address, value as u32)),
  446. 64 => Ok(self.handler.write_u64(address, value)),
  447. _ => Err(AmlError::FieldInvalidAccessSize),
  448. }
  449. }
  450. RegionSpace::SystemIo => {
  451. let port = (region_base + offset).try_into().map_err(|_| AmlError::FieldInvalidAddress)?;
  452. match length {
  453. 8 => Ok(self.handler.write_io_u8(port, value as u8)),
  454. 16 => Ok(self.handler.write_io_u16(port, value as u16)),
  455. 32 => Ok(self.handler.write_io_u32(port, value as u32)),
  456. _ => Err(AmlError::FieldInvalidAccessSize),
  457. }
  458. }
  459. RegionSpace::PciConfig => {
  460. /*
  461. * First, we need to get some extra information out of objects in the parent object. Both
  462. * `_SEG` and `_BBN` seem optional, with defaults that line up with legacy PCI implementations
  463. * (e.g. systems with a single segment group and a single root, respectively).
  464. */
  465. let parent_device = parent_device.as_ref().unwrap();
  466. let seg = match self.namespace.search(&AmlName::from_str("_SEG").unwrap(), parent_device) {
  467. Ok((_, handle)) => self
  468. .namespace
  469. .get(handle)?
  470. .as_integer(self)?
  471. .try_into()
  472. .map_err(|_| AmlError::FieldInvalidAddress)?,
  473. Err(AmlError::ValueDoesNotExist(_)) => 0,
  474. Err(err) => return Err(err),
  475. };
  476. let bbn = match self.namespace.search(&AmlName::from_str("_BBN").unwrap(), parent_device) {
  477. Ok((_, handle)) => self
  478. .namespace
  479. .get(handle)?
  480. .as_integer(self)?
  481. .try_into()
  482. .map_err(|_| AmlError::FieldInvalidAddress)?,
  483. Err(AmlError::ValueDoesNotExist(_)) => 0,
  484. Err(err) => return Err(err),
  485. };
  486. let adr = {
  487. let (_, handle) = self.namespace.search(&AmlName::from_str("_ADR").unwrap(), parent_device)?;
  488. self.namespace.get(handle)?.as_integer(self)?
  489. };
  490. let device = adr.get_bits(16..24) as u8;
  491. let function = adr.get_bits(0..8) as u8;
  492. let offset = (region_base + offset).try_into().map_err(|_| AmlError::FieldInvalidAddress)?;
  493. match length {
  494. 8 => Ok(self.handler.write_pci_u8(seg, bbn, device, function, offset, value as u8)),
  495. 16 => Ok(self.handler.write_pci_u16(seg, bbn, device, function, offset, value as u16)),
  496. 32 => Ok(self.handler.write_pci_u32(seg, bbn, device, function, offset, value as u32)),
  497. _ => Err(AmlError::FieldInvalidAccessSize),
  498. }
  499. }
  500. // TODO
  501. _ => unimplemented!(),
  502. }
  503. }
  504. fn add_predefined_objects(&mut self) {
  505. /*
  506. * These are the scopes predefined by the spec. Some tables will try to access them without defining them
  507. * themselves, and so we have to pre-create them.
  508. */
  509. self.namespace.add_level(AmlName::from_str("\\_GPE").unwrap(), LevelType::Scope).unwrap();
  510. self.namespace.add_level(AmlName::from_str("\\_SB").unwrap(), LevelType::Scope).unwrap();
  511. self.namespace.add_level(AmlName::from_str("\\_SI").unwrap(), LevelType::Scope).unwrap();
  512. self.namespace.add_level(AmlName::from_str("\\_PR").unwrap(), LevelType::Scope).unwrap();
  513. self.namespace.add_level(AmlName::from_str("\\_TZ").unwrap(), LevelType::Scope).unwrap();
  514. /*
  515. * In the dark ages of ACPI 1.0, before `\_OSI`, `\_OS` was used to communicate to the firmware which OS
  516. * was running. This was predictably not very good, and so was replaced in ACPI 3.0 with `_OSI`, which
  517. * allows support for individual capabilities to be queried. `_OS` should not be used by modern firmwares,
  518. * but to avoid problems we follow Linux in returning `"Microsoft Windows NT"`.
  519. *
  520. * See https://www.kernel.org/doc/html/latest/firmware-guide/acpi/osi.html for more information.
  521. */
  522. self.namespace
  523. .add_value(AmlName::from_str("\\_OS").unwrap(), AmlValue::String("Microsoft Windows NT".to_string()))
  524. .unwrap();
  525. /*
  526. * `\_OSI` was introduced by ACPI 3.0 to improve the situation created by `\_OS`. Unfortunately, exactly
  527. * the same problem was immediately repeated by introducing capabilities reflecting that an ACPI
  528. * implementation is exactly the same as a particular version of Windows' (e.g. firmwares will call
  529. * `\_OSI("Windows 2001")`).
  530. *
  531. * We basically follow suit with whatever Linux does, as this will hopefully minimise breakage:
  532. * - We always claim `Windows *` compatability
  533. * - We answer 'yes' to `_OSI("Darwin")
  534. * - We answer 'no' to `_OSI("Linux")`, and report that the tables are doing the wrong thing
  535. */
  536. self.namespace
  537. .add_value(
  538. AmlName::from_str("\\_OSI").unwrap(),
  539. AmlValue::native_method(1, false, 0, |context| {
  540. Ok(match context.current_arg(0)?.as_string(context)?.as_str() {
  541. "Windows 2000" => true, // 2000
  542. "Windows 2001" => true, // XP
  543. "Windows 2001 SP1" => true, // XP SP1
  544. "Windows 2001 SP2" => true, // XP SP2
  545. "Windows 2001.1" => true, // Server 2003
  546. "Windows 2001.1 SP1" => true, // Server 2003 SP1
  547. "Windows 2006" => true, // Vista
  548. "Windows 2006 SP1" => true, // Vista SP1
  549. "Windows 2006 SP2" => true, // Vista SP2
  550. "Windows 2006.1" => true, // Server 2008
  551. "Windows 2009" => true, // 7 and Server 2008 R2
  552. "Windows 2012" => true, // 8 and Server 2012
  553. "Windows 2013" => true, // 8.1 and Server 2012 R2
  554. "Windows 2015" => true, // 10
  555. "Windows 2016" => true, // 10 version 1607
  556. "Windows 2017" => true, // 10 version 1703
  557. "Windows 2017.2" => true, // 10 version 1709
  558. "Windows 2018" => true, // 10 version 1803
  559. "Windows 2018.2" => true, // 10 version 1809
  560. "Windows 2019" => true, // 10 version 1903
  561. "Darwin" => true,
  562. "Linux" => {
  563. // TODO: should we allow users to specify that this should be true? Linux has a
  564. // command line option for this.
  565. warn!("ACPI evaluated `_OSI(\"Linux\")`. This is a bug. Reporting no support.");
  566. false
  567. }
  568. "Extended Address Space Descriptor" => true,
  569. // TODO: support module devices
  570. "Module Device" => false,
  571. "3.0 Thermal Model" => true,
  572. "3.0 _SCP Extensions" => true,
  573. // TODO: support processor aggregator devices
  574. "Processor Aggregator Device" => false,
  575. _ => false,
  576. }
  577. .then_some(AmlValue::ones())
  578. .unwrap_or(AmlValue::zero()))
  579. }),
  580. )
  581. .unwrap();
  582. /*
  583. * `\_REV` evaluates to the version of the ACPI specification supported by this interpreter. Linux did this
  584. * correctly until 2015, but firmwares misused this to detect Linux (as even modern versions of Windows
  585. * return `2`), and so they switched to just returning `2` (as we'll also do). `_REV` should be considered
  586. * useless and deprecated (this is mirrored in newer specs, which claim `2` means "ACPI 2 or greater").
  587. */
  588. self.namespace.add_value(AmlName::from_str("\\_REV").unwrap(), AmlValue::Integer(2)).unwrap();
  589. }
  590. }
  591. // TODO: docs
  592. pub trait Handler: Send + Sync {
  593. fn read_u8(&self, address: usize) -> u8;
  594. fn read_u16(&self, address: usize) -> u16;
  595. fn read_u32(&self, address: usize) -> u32;
  596. fn read_u64(&self, address: usize) -> u64;
  597. fn write_u8(&mut self, address: usize, value: u8);
  598. fn write_u16(&mut self, address: usize, value: u16);
  599. fn write_u32(&mut self, address: usize, value: u32);
  600. fn write_u64(&mut self, address: usize, value: u64);
  601. fn read_io_u8(&self, port: u16) -> u8;
  602. fn read_io_u16(&self, port: u16) -> u16;
  603. fn read_io_u32(&self, port: u16) -> u32;
  604. fn write_io_u8(&self, port: u16, value: u8);
  605. fn write_io_u16(&self, port: u16, value: u16);
  606. fn write_io_u32(&self, port: u16, value: u32);
  607. fn read_pci_u8(&self, segment: u16, bus: u8, device: u8, function: u8, offset: u16) -> u8;
  608. fn read_pci_u16(&self, segment: u16, bus: u8, device: u8, function: u8, offset: u16) -> u16;
  609. fn read_pci_u32(&self, segment: u16, bus: u8, device: u8, function: u8, offset: u16) -> u32;
  610. fn write_pci_u8(&self, segment: u16, bus: u8, device: u8, function: u8, offset: u16, value: u8);
  611. fn write_pci_u16(&self, segment: u16, bus: u8, device: u8, function: u8, offset: u16, value: u16);
  612. fn write_pci_u32(&self, segment: u16, bus: u8, device: u8, function: u8, offset: u16, value: u32);
  613. fn handle_fatal_error(&self, fatal_type: u8, fatal_code: u32, fatal_arg: u64) {
  614. panic!("Fatal error while executing AML (encountered DefFatal op). fatal_type = {:?}, fatal_code = {:?}, fatal_arg = {:?}", fatal_type, fatal_code, fatal_arg);
  615. }
  616. }
  617. #[derive(Clone, PartialEq, Eq, Debug)]
  618. pub enum AmlError {
  619. /*
  620. * Errors produced parsing the AML stream.
  621. */
  622. UnexpectedEndOfStream,
  623. UnexpectedByte(u8),
  624. /// Produced when the stream evaluates to something other than nothing or an error.
  625. MalformedStream,
  626. InvalidNameSeg,
  627. InvalidPkgLength,
  628. InvalidFieldFlags,
  629. UnterminatedStringConstant,
  630. InvalidStringConstant,
  631. InvalidRegionSpace(u8),
  632. /// Produced when a `DefPackage` contains a different number of elements to the package's length.
  633. MalformedPackage,
  634. /// Produced when a `DefBuffer` contains more bytes that its size.
  635. MalformedBuffer,
  636. /// Emitted by a parser when it's clear that the stream doesn't encode the object parsed by
  637. /// that parser (e.g. the wrong opcode starts the stream). This is handled specially by some
  638. /// parsers such as `or` and `choice!`.
  639. WrongParser,
  640. /// Returned when a `DefFatal` op is encountered. This is separately reported using [`Handler::handle_fatal_error`].
  641. FatalError,
  642. /*
  643. * Errors produced manipulating AML names.
  644. */
  645. EmptyNamesAreInvalid,
  646. /// Produced when trying to normalize a path that does not point to a valid level of the
  647. /// namespace. E.g. `\_SB.^^PCI0` goes above the root of the namespace. The contained value is the name that
  648. /// normalization was attempted upon.
  649. InvalidNormalizedName(AmlName),
  650. RootHasNoParent,
  651. /*
  652. * Errors produced working with the namespace.
  653. */
  654. /// Produced when a sub-level or value is added to a level that has not yet been added to the namespace. The
  655. /// `AmlName` is the name of the entire sub-level/value.
  656. LevelDoesNotExist(AmlName),
  657. ValueDoesNotExist(AmlName),
  658. /// Produced when two values with the same name are added to the namespace.
  659. NameCollision(AmlName),
  660. TriedToRemoveRootNamespace,
  661. /*
  662. * Errors produced executing control methods.
  663. */
  664. /// Produced when AML tries to do something only possible in a control method (e.g. read from an argument)
  665. /// when there's no control method executing.
  666. NotExecutingControlMethod,
  667. /// Produced when a method accesses an argument it does not have (e.g. a method that takes 2
  668. /// arguments accesses `Arg4`). The inner value is the number of the argument accessed.
  669. InvalidArgAccess(ArgNum),
  670. /// Produced when a method accesses a local that it has not stored into.
  671. InvalidLocalAccess(LocalNum),
  672. /// Tried to invoke a method with too many arguments.
  673. TooManyArgs,
  674. /// A `DefBreak` operation was performed outside of a `DefWhile` or `DefSwitch`.
  675. BreakInInvalidPosition,
  676. /// A `DefContinue` operation was performed outside of a `DefWhile`.
  677. ContinueInInvalidPosition,
  678. /*
  679. * Errors produced parsing the PCI routing tables (_PRT objects).
  680. */
  681. PrtInvalidAddress,
  682. PrtInvalidPin,
  683. PrtInvalidSource,
  684. PrtInvalidGsi,
  685. /// Produced when the PRT doesn't contain an entry for the requested address + pin
  686. PrtNoEntry,
  687. /*
  688. * Errors produced parsing Resource Descriptors.
  689. */
  690. ReservedResourceType,
  691. ResourceDescriptorTooShort,
  692. ResourceDescriptorTooLong,
  693. UnexpectedResourceType,
  694. /*
  695. * Errors produced working with AML values.
  696. */
  697. IncompatibleValueConversion {
  698. current: AmlType,
  699. target: AmlType,
  700. },
  701. InvalidStatusObject,
  702. InvalidShiftLeft,
  703. InvalidShiftRight,
  704. FieldRegionIsNotOpRegion,
  705. FieldInvalidAddress,
  706. FieldInvalidAccessSize,
  707. TypeCannotBeCompared(AmlType),
  708. /// Produced when the `Mid` operator is applied to a value of a type other than `Buffer` or `String`.
  709. TypeCannotBeSliced(AmlType),
  710. }
  711. #[cfg(test)]
  712. mod tests {
  713. use super::*;
  714. #[test]
  715. fn test_send_sync() {
  716. // verify that AmlContext implements Send and Sync
  717. fn test_send_sync<T: Send + Sync>() {}
  718. test_send_sync::<AmlContext>();
  719. }
  720. }