rsio.c 9.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*******************************************************************************
 *
 * Module Name: rsio - IO and DMA resource descriptors
 *
 ******************************************************************************/

/*
8
 * Copyright (C) 2000 - 2011, Intel Corp.
L
Linus Torvalds 已提交
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
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

#include <acpi/acpi.h>
L
Len Brown 已提交
45 46
#include "accommon.h"
#include "acresrc.h"
L
Linus Torvalds 已提交
47 48

#define _COMPONENT          ACPI_RESOURCES
L
Len Brown 已提交
49
ACPI_MODULE_NAME("rsio")
L
Linus Torvalds 已提交
50 51 52

/*******************************************************************************
 *
B
Bob Moore 已提交
53
 * acpi_rs_convert_io
L
Linus Torvalds 已提交
54 55
 *
 ******************************************************************************/
B
Bob Moore 已提交
56 57 58 59
struct acpi_rsconvert_info acpi_rs_convert_io[5] = {
	{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_IO,
	 ACPI_RS_SIZE(struct acpi_resource_io),
	 ACPI_RSC_TABLE_SIZE(acpi_rs_convert_io)},
L
Linus Torvalds 已提交
60

B
Bob Moore 已提交
61 62 63
	{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_IO,
	 sizeof(struct aml_resource_io),
	 0},
L
Linus Torvalds 已提交
64

B
Bob Moore 已提交
65
	/* Decode flag */
R
Robert Moore 已提交
66

B
Bob Moore 已提交
67 68 69
	{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.io.io_decode),
	 AML_OFFSET(io.flags),
	 0},
B
Bob Moore 已提交
70
	/*
B
Bob Moore 已提交
71
	 * These fields are contiguous in both the source and destination:
B
Bob Moore 已提交
72 73
	 * Address Alignment
	 * Length
B
Bob Moore 已提交
74 75
	 * Minimum Base Address
	 * Maximum Base Address
B
Bob Moore 已提交
76
	 */
B
Bob Moore 已提交
77 78 79
	{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.io.alignment),
	 AML_OFFSET(io.alignment),
	 2},
L
Linus Torvalds 已提交
80

B
Bob Moore 已提交
81 82 83 84
	{ACPI_RSC_MOVE16, ACPI_RS_OFFSET(data.io.minimum),
	 AML_OFFSET(io.minimum),
	 2}
};
L
Linus Torvalds 已提交
85 86 87

/*******************************************************************************
 *
B
Bob Moore 已提交
88
 * acpi_rs_convert_fixed_io
L
Linus Torvalds 已提交
89 90 91
 *
 ******************************************************************************/

B
Bob Moore 已提交
92 93 94 95
struct acpi_rsconvert_info acpi_rs_convert_fixed_io[4] = {
	{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_FIXED_IO,
	 ACPI_RS_SIZE(struct acpi_resource_fixed_io),
	 ACPI_RSC_TABLE_SIZE(acpi_rs_convert_fixed_io)},
L
Linus Torvalds 已提交
96

B
Bob Moore 已提交
97 98 99
	{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_FIXED_IO,
	 sizeof(struct aml_resource_fixed_io),
	 0},
B
Bob Moore 已提交
100
	/*
B
Bob Moore 已提交
101 102
	 * These fields are contiguous in both the source and destination:
	 * Base Address
B
Bob Moore 已提交
103 104
	 * Length
	 */
B
Bob Moore 已提交
105 106 107
	{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.fixed_io.address_length),
	 AML_OFFSET(fixed_io.address_length),
	 1},
R
Robert Moore 已提交
108

B
Bob Moore 已提交
109 110 111 112
	{ACPI_RSC_MOVE16, ACPI_RS_OFFSET(data.fixed_io.address),
	 AML_OFFSET(fixed_io.address),
	 1}
};
L
Linus Torvalds 已提交
113 114 115

/*******************************************************************************
 *
B
Bob Moore 已提交
116
 * acpi_rs_convert_generic_reg
L
Linus Torvalds 已提交
117 118 119
 *
 ******************************************************************************/

B
Bob Moore 已提交
120 121 122 123
struct acpi_rsconvert_info acpi_rs_convert_generic_reg[4] = {
	{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_GENERIC_REGISTER,
	 ACPI_RS_SIZE(struct acpi_resource_generic_register),
	 ACPI_RSC_TABLE_SIZE(acpi_rs_convert_generic_reg)},
R
Robert Moore 已提交
124

B
Bob Moore 已提交
125 126 127
	{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_GENERIC_REGISTER,
	 sizeof(struct aml_resource_generic_register),
	 0},
B
Bob Moore 已提交
128
	/*
B
Bob Moore 已提交
129 130 131 132 133
	 * These fields are contiguous in both the source and destination:
	 * Address Space ID
	 * Register Bit Width
	 * Register Bit Offset
	 * Access Size
B
Bob Moore 已提交
134
	 */
B
Bob Moore 已提交
135 136 137
	{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.generic_reg.space_id),
	 AML_OFFSET(generic_reg.address_space_id),
	 4},
L
Linus Torvalds 已提交
138

B
Bob Moore 已提交
139
	/* Get the Register Address */
L
Linus Torvalds 已提交
140

B
Bob Moore 已提交
141 142 143 144
	{ACPI_RSC_MOVE64, ACPI_RS_OFFSET(data.generic_reg.address),
	 AML_OFFSET(generic_reg.address),
	 1}
};
L
Linus Torvalds 已提交
145 146 147

/*******************************************************************************
 *
B
Bob Moore 已提交
148
 * acpi_rs_convert_end_dpf
L
Linus Torvalds 已提交
149
 *
B
Bob Moore 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162
 ******************************************************************************/

struct acpi_rsconvert_info acpi_rs_convert_end_dpf[2] = {
	{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_END_DEPENDENT,
	 ACPI_RS_SIZE_MIN,
	 ACPI_RSC_TABLE_SIZE(acpi_rs_convert_end_dpf)},

	{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_END_DEPENDENT,
	 sizeof(struct aml_resource_end_dependent),
	 0}
};

/*******************************************************************************
L
Linus Torvalds 已提交
163
 *
B
Bob Moore 已提交
164
 * acpi_rs_convert_end_tag
L
Linus Torvalds 已提交
165 166 167
 *
 ******************************************************************************/

B
Bob Moore 已提交
168 169 170 171
struct acpi_rsconvert_info acpi_rs_convert_end_tag[2] = {
	{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_END_TAG,
	 ACPI_RS_SIZE_MIN,
	 ACPI_RSC_TABLE_SIZE(acpi_rs_convert_end_tag)},
B
Bob Moore 已提交
172 173

	/*
B
Bob Moore 已提交
174 175 176
	 * Note: The checksum field is set to zero, meaning that the resource
	 * data is treated as if the checksum operation succeeded.
	 * (ACPI Spec 1.0b Section 6.4.2.8)
B
Bob Moore 已提交
177
	 */
B
Bob Moore 已提交
178 179 180 181
	{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_END_TAG,
	 sizeof(struct aml_resource_end_tag),
	 0}
};
L
Linus Torvalds 已提交
182 183 184

/*******************************************************************************
 *
B
Bob Moore 已提交
185
 * acpi_rs_get_start_dpf
L
Linus Torvalds 已提交
186 187 188
 *
 ******************************************************************************/

189
struct acpi_rsconvert_info acpi_rs_get_start_dpf[6] = {
B
Bob Moore 已提交
190 191 192
	{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_START_DEPENDENT,
	 ACPI_RS_SIZE(struct acpi_resource_start_dependent),
	 ACPI_RSC_TABLE_SIZE(acpi_rs_get_start_dpf)},
L
Linus Torvalds 已提交
193

B
Bob Moore 已提交
194
	/* Defaults for Compatibility and Performance priorities */
L
Linus Torvalds 已提交
195

B
Bob Moore 已提交
196 197 198
	{ACPI_RSC_SET8, ACPI_RS_OFFSET(data.start_dpf.compatibility_priority),
	 ACPI_ACCEPTABLE_CONFIGURATION,
	 2},
L
Linus Torvalds 已提交
199

200 201 202 203 204 205
	/* Get the descriptor length (0 or 1 for Start Dpf descriptor) */

	{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.start_dpf.descriptor_length),
	 AML_OFFSET(start_dpf.descriptor_type),
	 0},

B
Bob Moore 已提交
206
	/* All done if there is no flag byte present in the descriptor */
L
Linus Torvalds 已提交
207

B
Bob Moore 已提交
208
	{ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_AML_LENGTH, 0, 1},
R
Robert Moore 已提交
209

B
Bob Moore 已提交
210
	/* Flag byte is present, get the flags */
R
Robert Moore 已提交
211

B
Bob Moore 已提交
212 213 214 215
	{ACPI_RSC_2BITFLAG,
	 ACPI_RS_OFFSET(data.start_dpf.compatibility_priority),
	 AML_OFFSET(start_dpf.flags),
	 0},
L
Linus Torvalds 已提交
216

B
Bob Moore 已提交
217 218 219 220 221
	{ACPI_RSC_2BITFLAG,
	 ACPI_RS_OFFSET(data.start_dpf.performance_robustness),
	 AML_OFFSET(start_dpf.flags),
	 2}
};
L
Linus Torvalds 已提交
222 223 224

/*******************************************************************************
 *
B
Bob Moore 已提交
225
 * acpi_rs_set_start_dpf
L
Linus Torvalds 已提交
226 227 228
 *
 ******************************************************************************/

229 230 231
struct acpi_rsconvert_info acpi_rs_set_start_dpf[10] = {
	/* Start with a default descriptor of length 1 */

B
Bob Moore 已提交
232 233 234
	{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_START_DEPENDENT,
	 sizeof(struct aml_resource_start_dependent),
	 ACPI_RSC_TABLE_SIZE(acpi_rs_set_start_dpf)},
L
Linus Torvalds 已提交
235

B
Bob Moore 已提交
236
	/* Set the default flag values */
R
Robert Moore 已提交
237

B
Bob Moore 已提交
238 239 240 241
	{ACPI_RSC_2BITFLAG,
	 ACPI_RS_OFFSET(data.start_dpf.compatibility_priority),
	 AML_OFFSET(start_dpf.flags),
	 0},
L
Linus Torvalds 已提交
242

B
Bob Moore 已提交
243 244 245 246
	{ACPI_RSC_2BITFLAG,
	 ACPI_RS_OFFSET(data.start_dpf.performance_robustness),
	 AML_OFFSET(start_dpf.flags),
	 2},
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
	/*
	 * All done if the output descriptor length is required to be 1
	 * (i.e., optimization to 0 bytes cannot be attempted)
	 */
	{ACPI_RSC_EXIT_EQ, ACPI_RSC_COMPARE_VALUE,
	 ACPI_RS_OFFSET(data.start_dpf.descriptor_length),
	 1},

	/* Set length to 0 bytes (no flags byte) */

	{ACPI_RSC_LENGTH, 0, 0,
	 sizeof(struct aml_resource_start_dependent_noprio)},

	/*
	 * All done if the output descriptor length is required to be 0.
	 *
	 * TBD: Perhaps we should check for error if input flags are not
	 * compatible with a 0-byte descriptor.
	 */
	{ACPI_RSC_EXIT_EQ, ACPI_RSC_COMPARE_VALUE,
	 ACPI_RS_OFFSET(data.start_dpf.descriptor_length),
	 0},

	/* Reset length to 1 byte (descriptor with flags byte) */

272
	{ACPI_RSC_LENGTH, 0, 0, sizeof(struct aml_resource_start_dependent)},
273

B
Bob Moore 已提交
274 275 276 277 278 279 280
	/*
	 * All done if flags byte is necessary -- if either priority value
	 * is not ACPI_ACCEPTABLE_CONFIGURATION
	 */
	{ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_VALUE,
	 ACPI_RS_OFFSET(data.start_dpf.compatibility_priority),
	 ACPI_ACCEPTABLE_CONFIGURATION},
L
Linus Torvalds 已提交
281

B
Bob Moore 已提交
282 283 284
	{ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_VALUE,
	 ACPI_RS_OFFSET(data.start_dpf.performance_robustness),
	 ACPI_ACCEPTABLE_CONFIGURATION},
L
Linus Torvalds 已提交
285

B
Bob Moore 已提交
286
	/* Flag byte is not necessary */
R
Robert Moore 已提交
287

B
Bob Moore 已提交
288 289 290
	{ACPI_RSC_LENGTH, 0, 0,
	 sizeof(struct aml_resource_start_dependent_noprio)}
};