• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /barrelfish-2018-10-04/lib/acpica/tests/aslts/src/runtime/collections/functional/descriptor/
1/*
2 * Some or all of this work - Copyright (c) 2006 - 2016, Intel Corp.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without modification,
6 * are permitted provided that the following conditions are met:
7 *
8 * Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * Neither the name of Intel Corporation nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
26 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/*
30 * Resource Descriptor macros
31 *
32 * Memory32() Memory Resource Descriptor Macro
33 */
34
35Name (p412, Package() {
36	ResourceTemplate () {
37		Memory32 (ReadOnly, 0xf0f1f2f3, 0xf4f5f6f7, 0xf8f9fafb, 0xfcfdfeff)
38	},
39	ResourceTemplate () {
40		Memory32 (ReadWrite, 0xf0f1f2f3, 0xf4f5f6f7, 0xf8f9fafb, 0xfcfdfeff)
41	},
42	ResourceTemplate () {
43		Memory32 ( , 0, 0, 0, 0)
44	},
45})
46
47/*
48ACPI Specification, Revision 3.0, September 2, 2004
496.4.3.3   32-Bit Memory Range Descriptor
50
5132-Bit Memory Range Descriptor layout:
52
53Byte 0 (Tag Bits): Value = 10000101B (0x85) (Type = 1, Large item name = 0x5)
54Byte 1 (Length, bits[7:0]): Value = 00010001B (17)
55Byte 2 (Length, bits[15:8]): Value = 00000000B (0)
56Byte 3 (Information):
57	Bit[7:1]	Ignored
58	Bit[0]		Write status, _RW
59			1	writeable (read/write)
60			0	non-writeable (read-only)
61Byte 4 (Range minimum base address, _MIN, bits[7:0])
62Byte 5 (Range minimum base address, _MIN, bits[15:8]
63Byte 6 (Range minimum base address, _MIN, bits[23:16])
64Byte 7 (Range minimum base address, _MIN, bits[31:24])
65Byte 8 (Range maximum base address, _MAX, bits[7:0])
66Byte 9 (Range maximum base address, _MAX, bits[15:8])
67Byte 10 (Range maximum base address, _MAX, bits[23:16])
68Byte 11 (Range maximum base address, _MAX, bits[31:24])
69Byte 12 (Base alignment, _ALN bits[7:0])
70Byte 13 (Base alignment, _ALN bits[15:8])
71Byte 14 (Base alignment, _ALN bits[23:16])
72Byte 15 (Base alignment, _ALN bits[31:24])
73Byte 16 (Range length, _LEN bits[7:0])
74Byte 17 (Range length, _LEN, bits[15:8])
75Byte 18 (Range length, _LEN, bits[23:16])
76Byte 19 (Range length, _LEN, bits[31:24])
77*/
78
79Name (p413, Package() {
80	Buffer () {0x85, 0x11, 0x00, 0x00,
81		0xf3, 0xf2, 0xf1, 0xf0, 0xf7, 0xf6, 0xf5, 0xf4,
82		0xfb, 0xfa, 0xf9, 0xf8, 0xff, 0xfe, 0xfd, 0xfc, 0x79, 0x00},
83	Buffer () {0x85, 0x11, 0x00, 0x01,
84		0xf3, 0xf2, 0xf1, 0xf0, 0xf7, 0xf6, 0xf5, 0xf4,
85		0xfb, 0xfa, 0xf9, 0xf8, 0xff, 0xfe, 0xfd, 0xfc, 0x79, 0x00},
86	Buffer () {0x85, 0x11, 0x00, 0x01,
87		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
88		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79, 0x00},
89})
90
91Method(RT0a,, Serialized)
92{
93	Name(ts, "RT0a")
94
95	// Emit test header, set the filename
96
97	THDR (ts, "Memory32 Resource Descriptor Macro", __FILE__)
98
99    // Main test case for packages above
100
101	m330(ts, 3, "p412", p412, p413)
102
103    // Check resource descriptor tag offsets
104
105	Store (
106		ResourceTemplate () {
107			Memory32 (ReadOnly, 0xf0f1f2f3, 0xf4f5f6f7, 0xf8f9fafb, 0xfcfdfeff, M320)
108			Memory32 (ReadOnly, 0xf0f1f2f3, 0xf4f5f6f7, 0xf8f9fafb, 0xfcfdfeff, M321)
109		}, Local0)
110
111	m331(ts, 1, M320._RW,  0x18, M321._RW,  0xB8, "_RW")
112	m331(ts, 2, M320._MIN, 0x20, M321._MIN, 0xC0, "_MIN")
113	m331(ts, 3, M320._MAX, 0x40, M321._MAX, 0xE0, "_MAX")
114	m331(ts, 4, M320._ALN, 0x60, M321._ALN, 0x0100, "_ALN")
115	m331(ts, 5, M320._LEN, 0x80, M321._LEN, 0x0120, "_LEN")
116}
117