• 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 * Memory24() Memory Resource Descriptor Macro
33 */
34
35Name (p40e, Package() {
36	ResourceTemplate () {
37		Memory24 (ReadOnly, 0xf0f1, 0xf2f3, 0xf4f5, 0xf6f7)
38	},
39	ResourceTemplate () {
40		Memory24 (ReadWrite, 0xf0f1, 0xf2f3, 0xf4f5, 0xf6f7)
41	},
42	ResourceTemplate () {
43		Memory24 ( , 0, 0, 0, 0)
44	},
45})
46
47/*
48ACPI Specification, Revision 3.0, September 2, 2004
496.4.3.1   24-Bit Memory Range Descriptor
50
5124-Bit Memory Range Descriptor layout:
52
53Byte 0 (Tag Bits): Value = 10000001B (0x81) (Type = 1, Large item name = 0x1)
54Byte 1 (Length, bits[7:0]): Value = 00001001B (9)
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]):
62	Address bits[15:8] of the minimum base memory address
63	for which the card may be configured.
64Byte 5 (Range minimum base address, _MIN, bits[15:8]):
65	Address bits[23:16] of the minimum base memory address
66	for which the card may be configured
67Byte 6 (Range maximum base address, _MAX, bits[7:0]):
68	Address bits[15:8] of the maximum base memory address
69	for which the card may be configured.
70Byte 7 (Range maximum base address, _MAX, bits[15:8]):
71	Address bits[23:16] of the maximum base memory address
72	for which the card may be configured
73Byte 8 (Base alignment, _ALN, bits[7:0]):
74	This field contains the lower eight bits of the base alignment.
75	The base alignment provides the increment for the minimum base
76	address. (0x0000 = 64 KB)
77Byte 9 (Base alignment, _ALN, bits[15:8]):
78	This field contains the upper eight bits of the base alignment.
79Byte 10 (Range length, _LEN, bits[7:0]):
80	This field contains the lower eight bits of the memory range length.
81	The range length provides the length of the memory range in 256 byte blocks.
82Byte 11 (Range length, _LEN, bits[15:8]):
83	This field contains the upper eight bits of the memory range length.
84
85*/
86
87Name (p40f, Package() {
88	Buffer () {0x81, 0x09, 0x00, 0x00, 0xf1, 0xf0, 0xf3, 0xf2, 0xf5, 0xf4, 0xf7, 0xf6, 0x79, 0x00},
89	Buffer () {0x81, 0x09, 0x00, 0x01, 0xf1, 0xf0, 0xf3, 0xf2, 0xf5, 0xf4, 0xf7, 0xf6, 0x79, 0x00},
90	Buffer () {0x81, 0x09, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79, 0x00},
91})
92
93Method(RT08,, Serialized)
94{
95	Name(ts, "RT08")
96
97	// Emit test header, set the filename
98
99	THDR (ts, "Memory24 Resource Descriptor Macro", __FILE__)
100
101    // Main test case for packages above
102
103	m330(ts, 3, "p40e", p40e, p40f)
104
105    // Check resource descriptor tag offsets
106
107	Store (
108		ResourceTemplate () {
109			Memory24 (ReadOnly, 0xf0f1, 0xf2f3, 0xf4f5, 0xf6f7, M240)
110			Memory24 (ReadOnly, 0xf0f1, 0xf2f3, 0xf4f5, 0xf6f7, M241)
111		}, Local0)
112
113	m331(ts, 1, M240._RW,  0x18, M241._RW,  0x78, "_RW")
114	m331(ts, 2, M240._MIN, 0x20, M241._MIN, 0x80, "_MIN")
115	m331(ts, 3, M240._MAX, 0x30, M241._MAX, 0x90, "_MAX")
116	m331(ts, 4, M240._ALN, 0x40, M241._ALN, 0xA0, "_ALN")
117	m331(ts, 5, M240._LEN, 0x50, M241._LEN, 0xB0, "_LEN")
118}
119