acpi/dsdt/
resources.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use super::objects::*;

pub trait ResourceObject {
    fn append_to_vec(&self, byte_stream: &mut Vec<u8>);

    fn to_bytes(&self) -> Vec<u8> {
        let mut byte_stream = Vec::new();
        self.append_to_vec(&mut byte_stream);
        byte_stream
    }
}

pub struct Memory32Fixed {
    is_writeable: bool,
    base_address: u32,
    length: u32,
}

impl Memory32Fixed {
    pub fn new(base_address: u32, length: u32, is_writeable: bool) -> Self {
        Self {
            is_writeable,
            base_address,
            length,
        }
    }
}

impl ResourceObject for Memory32Fixed {
    fn append_to_vec(&self, byte_stream: &mut Vec<u8>) {
        byte_stream.extend_from_slice(&[0x86, 9, 0]);
        byte_stream.push(if self.is_writeable { 1 } else { 0 });
        byte_stream.extend_from_slice(&self.base_address.to_le_bytes());
        byte_stream.extend_from_slice(&self.length.to_le_bytes());
    }
}

#[repr(u8)]
#[derive(Copy, Clone, Debug)]
pub enum MemoryAttribute {
    Memory = 0,
    _Reserved = 8,
    _Acpi = 0x10,
    _Nvs = 0x18,
}

#[repr(u8)]
#[derive(Copy, Clone, Debug)]
pub enum MemoryCacheType {
    _NonCacheable = 0,
    Cacheable = 2,
    _CacheableWriteCombining = 4,
    _CacheableAndPrefetchable = 6,
}

pub struct DwordMemory {
    pub length: u32,
    pub translation_offset: u32,
    pub address_max: u32,
    pub address_min: u32,
    pub granularity: u32,
    pub attributes: MemoryAttribute,
    pub cacheability: MemoryCacheType,
    pub is_writeable: bool,
    pub is_max_address_fixed: bool,
    pub is_min_address_fixed: bool,
    pub is_subtractive_decode: bool,
}

impl ResourceObject for DwordMemory {
    fn append_to_vec(&self, byte_stream: &mut Vec<u8>) {
        byte_stream.extend_from_slice(&[0x87, 0x17, 0, 0]);
        byte_stream.push(
            if self.is_subtractive_decode { 2 } else { 0 }
                | if self.is_min_address_fixed { 4 } else { 0 }
                | if self.is_max_address_fixed { 8 } else { 0 },
        );
        byte_stream.push(
            if self.is_writeable { 1 } else { 0 } | self.cacheability as u8 | self.attributes as u8,
        );
        byte_stream.extend_from_slice(&self.granularity.to_le_bytes());
        byte_stream.extend_from_slice(&self.address_min.to_le_bytes());
        byte_stream.extend_from_slice(&self.address_max.to_le_bytes());
        byte_stream.extend_from_slice(&self.translation_offset.to_le_bytes());
        byte_stream.extend_from_slice(&self.length.to_le_bytes());
    }
}

#[cfg(test)]
impl DwordMemory {
    pub fn new(address: u32, length: u32) -> Self {
        assert!(address as u64 + length as u64 - 1 <= u32::MAX as u64);
        Self {
            length,
            translation_offset: 0,
            address_max: address + (length - 1),
            address_min: address,
            granularity: 0,
            attributes: MemoryAttribute::Memory,
            cacheability: MemoryCacheType::Cacheable,
            is_writeable: true,
            is_max_address_fixed: true,
            is_min_address_fixed: true,
            is_subtractive_decode: false,
        }
    }
}

pub struct QwordMemory {
    pub is_io_backed: bool,
    pub attributes: MemoryAttribute,
    pub cacheability: MemoryCacheType,
    pub is_writeable: bool,
    pub min_address: u64,
    pub max_address: u64,
    pub length: u64,
}

impl QwordMemory {
    pub fn new(address: u64, length: u64) -> Self {
        assert!(address as u128 + length as u128 - 1 <= u64::MAX as u128);
        Self {
            is_io_backed: false,
            attributes: MemoryAttribute::Memory,
            cacheability: MemoryCacheType::Cacheable,
            is_writeable: true,
            min_address: address,
            max_address: address + (length - 1),
            length,
        }
    }
}

impl ResourceObject for QwordMemory {
    fn append_to_vec(&self, byte_stream: &mut Vec<u8>) {
        byte_stream.extend_from_slice(&[0x8a, 0x2b, 0, 0, 0xc]);
        byte_stream.push(
            if self.is_io_backed { 0x20 } else { 0 }
                | self.attributes as u8
                | self.cacheability as u8
                | if self.is_writeable { 1 } else { 0 },
        );
        byte_stream.extend_from_slice(&(0_u64).to_le_bytes()); // granularity
        byte_stream.extend_from_slice(&self.min_address.to_le_bytes());
        byte_stream.extend_from_slice(&self.max_address.to_le_bytes());
        byte_stream.extend_from_slice(&(0_u64).to_le_bytes()); // translation offset
        byte_stream.extend_from_slice(&self.length.to_le_bytes());
    }
}

/// An ACPI bus number.
pub struct BusNumber {
    pub attributes: MemoryAttribute,
    pub min_address: u16,
    pub max_address: u16,
    pub length: u16,
}

impl BusNumber {
    /// Constructs a new bus number.
    pub fn new(address: u16, length: u16) -> Self {
        Self {
            attributes: MemoryAttribute::Memory,
            min_address: address,
            max_address: address + (length - 1),
            length,
        }
    }
}

impl ResourceObject for BusNumber {
    fn append_to_vec(&self, byte_stream: &mut Vec<u8>) {
        byte_stream.extend_from_slice(&[0x88, 0x0d, 0, 2, 0x0c]);
        byte_stream.push(0);
        byte_stream.extend_from_slice(&(0u16).to_le_bytes()); // granularity
        byte_stream.extend_from_slice(&self.min_address.to_le_bytes());
        byte_stream.extend_from_slice(&self.max_address.to_le_bytes());
        byte_stream.extend_from_slice(&(0u16).to_le_bytes()); // translation offset
        byte_stream.extend_from_slice(&self.length.to_le_bytes());
    }
}

pub struct Interrupt {
    pub is_wake_capable: bool,
    pub is_shared: bool,
    pub is_low_polarity: bool,
    pub is_edge_triggered: bool,
    pub is_consumer: bool,
    number: u32,
}

impl Interrupt {
    pub fn new(number: u32) -> Self {
        Self {
            is_wake_capable: false,
            is_shared: false,
            is_low_polarity: false,
            is_edge_triggered: false,
            is_consumer: true,
            number,
        }
    }
}

impl ResourceObject for Interrupt {
    fn append_to_vec(&self, byte_stream: &mut Vec<u8>) {
        byte_stream.extend_from_slice(&[0x89, 6, 0]);
        byte_stream.push(
            if self.is_wake_capable { 0x10 } else { 0 }
                | if self.is_shared { 8 } else { 0 }
                | if self.is_low_polarity { 4 } else { 0 }
                | if self.is_edge_triggered { 2 } else { 0 }
                | if self.is_consumer { 1 } else { 0 },
        );
        byte_stream.push(1);
        byte_stream.extend_from_slice(&self.number.to_le_bytes());
    }
}

pub struct IoPort {
    pub is_16bit_aware: bool,
    pub base_address: u16,
    pub end_address: u16,
    pub alignment: u8,
    pub length: u8,
}

impl IoPort {
    pub fn new(start: u16, end: u16, length: u8) -> Self {
        Self {
            is_16bit_aware: true,
            base_address: start,
            end_address: end,
            alignment: 1,
            length,
        }
    }
}

impl ResourceObject for IoPort {
    fn append_to_vec(&self, byte_stream: &mut Vec<u8>) {
        byte_stream.push(0x47);
        byte_stream.push(if self.is_16bit_aware { 1 } else { 0 });
        byte_stream.extend_from_slice(&self.base_address.to_le_bytes());
        byte_stream.extend_from_slice(&self.end_address.to_le_bytes());
        byte_stream.push(self.alignment);
        byte_stream.push(self.length);
    }
}

pub struct CurrentResourceSettings {
    resources: Vec<u8>,
}

impl CurrentResourceSettings {
    pub fn new() -> Self {
        Self { resources: vec![] }
    }

    pub fn add_resource(&mut self, resource: &impl ResourceObject) {
        resource.append_to_vec(&mut self.resources);
    }
}

impl DsdtObject for CurrentResourceSettings {
    fn append_to_vec(&self, byte_stream: &mut Vec<u8>) {
        let mut resource_bytes = self.resources.clone();
        // Add end of resource marker
        resource_bytes.extend_from_slice(&[0x79, 0]);

        // Generate _CRS buffer
        let nobj = NamedObject::new(b"_CRS", &Buffer(resource_bytes));
        nobj.append_to_vec(byte_stream);
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::dsdt::tests::verify_expected_bytes;

    #[test]
    fn verify_memory_resource_object() {
        let memory = Memory32Fixed::new(0xfee00000, 0x1000, true);
        let mut crs = CurrentResourceSettings::new();
        crs.add_resource(&memory);
        let bytes = crs.to_bytes();
        verify_expected_bytes(
            &bytes,
            &[
                0x08, b'_', b'C', b'R', b'S', 0x11, 17, 0x0a, 14, 0x86, 0x09, 0, 1, 0, 0, 0xe0,
                0xfe, 0, 0x10, 0, 0, 0x79, 0,
            ],
        );
    }

    #[test]
    fn verify_dword_memory_resource_object() {
        let memory = DwordMemory::new(0x10000000, 0x10000000);
        let mut crs = CurrentResourceSettings::new();
        crs.add_resource(&memory);
        let bytes = crs.to_bytes();
        verify_expected_bytes(
            &bytes,
            &[
                0x08, b'_', b'C', b'R', b'S', 0x11, 0x1f, 0x0a, 0x1c, 0x87, 0x17, 0x00, 0x00, 0x0C,
                0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0xFF, 0xFF, 0xFF, 0x1F, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x79, 0x00,
            ],
        );
    }

    #[test]
    fn verify_qword_memory_resource_object() {
        let memory = QwordMemory::new(0x100000000, 0x100000000);
        let mut crs = CurrentResourceSettings::new();
        crs.add_resource(&memory);
        let bytes = crs.to_bytes();
        verify_expected_bytes(
            &bytes,
            &[
                0x08, b'_', b'C', b'R', b'S', 0x11, 51, 0x0a, 48, 0x8A, 0x2B, 0x00, 0x00, 0x0C,
                0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
                0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x79,
                0x00,
            ],
        );
    }

    #[test]
    fn verify_ioport_resource_object() {
        let mut crs = CurrentResourceSettings::new();
        crs.add_resource(&IoPort::new(0x3f8, 0x3f8, 8));
        let bytes = crs.to_bytes();
        verify_expected_bytes(
            &bytes,
            &[
                0x08, b'_', b'C', b'R', b'S', 0x11, 13, 0x0a, 10, 0x47, 0x01, 0xF8, 0x03, 0xF8,
                0x03, 0x01, 0x08, 0x79, 0x00,
            ],
        );
    }

    #[test]
    fn verify_interrupt_resource_object() {
        let mut crs = CurrentResourceSettings::new();
        let mut interrupt = Interrupt::new(4);
        interrupt.is_edge_triggered = true;
        crs.add_resource(&interrupt);
        let bytes = crs.to_bytes();
        verify_expected_bytes(
            &bytes,
            &[
                0x08, b'_', b'C', b'R', b'S', 0x11, 14, 0x0a, 11, 0x89, 0x06, 0x00, 0x03, 0x01,
                0x04, 0x00, 0x00, 0x00, 0x79, 0x00,
            ],
        );
    }

    #[test]
    fn verify_resource_object_multi() {
        let mut crs = CurrentResourceSettings::new();
        crs.add_resource(&Memory32Fixed::new(0xfee00000, 0x1000, true));
        crs.add_resource(&Memory32Fixed::new(0xfec00000, 0x1000, true));
        let bytes = crs.to_bytes();
        verify_expected_bytes(
            &bytes,
            &[
                0x08, b'_', b'C', b'R', b'S', 0x11, 0x1d, 0x0a, 0x1a, 0x86, 0x09, 0x00, 0x01, 0x00,
                0x00, 0xe0, 0xFE, 0x00, 0x10, 0x00, 0x00, 0x86, 0x09, 0x00, 0x01, 0x00, 0x00, 0xC0,
                0xFE, 0x00, 0x10, 0x00, 0x00, 0x79, 0x00,
            ],
        );
    }

    #[test]
    fn verify_resource_object_multi2() {
        let mut crs = CurrentResourceSettings::new();
        crs.add_resource(&IoPort::new(0x3f8, 0x3f8, 8));
        let mut interrupt = Interrupt::new(4);
        interrupt.is_edge_triggered = true;
        crs.add_resource(&interrupt);
        let bytes = crs.to_bytes();
        verify_expected_bytes(
            &bytes,
            &[
                0x08, 0x5F, 0x43, 0x52, 0x53, 0x11, 0x16, 0x0A, 0x13, 0x47, 0x01, 0xF8, 0x03, 0xF8,
                0x03, 0x01, 0x08, 0x89, 0x06, 0x00, 0x03, 0x01, 0x04, 0x00, 0x00, 0x00, 0x79, 0x00,
            ],
        );
    }
}