aboutsummaryrefslogtreecommitdiff
path: root/drivers/acpi/resources/rsio.c
blob: 0dab8cdfa80072a66a36db70b2d3c3bf43e226d9 (plain)
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
/*******************************************************************************
 *
 * Module Name: rsio - IO and DMA resource descriptors
 *
 ******************************************************************************/

/*
 * Copyright (C) 2000 - 2005, R. Byron Moore
 * 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>
#include <acpi/acresrc.h>

#define _COMPONENT          ACPI_RESOURCES
ACPI_MODULE_NAME("rsio")

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_get_io
 *
 * PARAMETERS:  Aml                 - Pointer to the AML resource descriptor
 *              aml_resource_length - Length of the resource from the AML header
 *              Resource            - Where the internal resource is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert a raw AML resource descriptor to the corresponding
 *              internal resource descriptor, simplifying bitflags and handling
 *              alignment and endian issues if necessary.
 *
 ******************************************************************************/
acpi_status
acpi_rs_get_io(union aml_resource *aml,
	       u16 aml_resource_length, struct acpi_resource *resource)
{
	ACPI_FUNCTION_TRACE("rs_get_io");

	/* Get the Decode flag */

	resource->data.io.io_decode = aml->io.information & 0x01;

	/*
	 * Get the following contiguous fields from the AML descriptor:
	 * Minimum Base Address
	 * Maximum Base Address
	 * Address Alignment
	 * Length
	 */
	ACPI_MOVE_16_TO_32(&resource->data.io.minimum, &aml->io.minimum);
	ACPI_MOVE_16_TO_32(&resource->data.io.maximum, &aml->io.maximum);
	resource->data.io.alignment = aml->io.alignment;
	resource->data.io.address_length = aml->io.address_length;

	/* Complete the resource header */

	resource->type = ACPI_RESOURCE_TYPE_IO;
	resource->length = ACPI_SIZEOF_RESOURCE(struct acpi_resource_io);
	return_ACPI_STATUS(AE_OK);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_set_io
 *
 * PARAMETERS:  Resource            - Pointer to the resource descriptor
 *              Aml                 - Where the AML descriptor is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert an internal resource descriptor to the corresponding
 *              external AML resource descriptor.
 *
 ******************************************************************************/

acpi_status
acpi_rs_set_io(struct acpi_resource *resource, union aml_resource *aml)
{
	ACPI_FUNCTION_TRACE("rs_set_io");

	/* I/O Information Byte */

	aml->io.information = (u8) (resource->data.io.io_decode & 0x01);

	/*
	 * Set the following contiguous fields in the AML descriptor:
	 * Minimum Base Address
	 * Maximum Base Address
	 * Address Alignment
	 * Length
	 */
	ACPI_MOVE_32_TO_16(&aml->io.minimum, &resource->data.io.minimum);
	ACPI_MOVE_32_TO_16(&aml->io.maximum, &resource->data.io.maximum);
	aml->io.alignment = (u8) resource->data.io.alignment;
	aml->io.address_length = (u8) resource->data.io.address_length;

	/* Complete the AML descriptor header */

	acpi_rs_set_resource_header(ACPI_RESOURCE_NAME_IO,
				    sizeof(struct aml_resource_io), aml);
	return_ACPI_STATUS(AE_OK);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_get_fixed_io
 *
 * PARAMETERS:  Aml                 - Pointer to the AML resource descriptor
 *              aml_resource_length - Length of the resource from the AML header
 *              Resource            - Where the internal resource is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert a raw AML resource descriptor to the corresponding
 *              internal resource descriptor, simplifying bitflags and handling
 *              alignment and endian issues if necessary.
 *
 ******************************************************************************/

acpi_status
acpi_rs_get_fixed_io(union aml_resource *aml,
		     u16 aml_resource_length, struct acpi_resource *resource)
{
	ACPI_FUNCTION_TRACE("rs_get_fixed_io");

	/*
	 * Get the following contiguous fields from the AML descriptor:
	 * Base Address
	 * Length
	 */
	ACPI_MOVE_16_TO_32(&resource->data.fixed_io.address,
			   &aml->fixed_io.address);
	resource->data.fixed_io.address_length = aml->fixed_io.address_length;

	/* Complete the resource header */

	resource->type = ACPI_RESOURCE_TYPE_FIXED_IO;
	resource->length = ACPI_SIZEOF_RESOURCE(struct acpi_resource_fixed_io);
	return_ACPI_STATUS(AE_OK);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_set_fixed_io
 *
 * PARAMETERS:  Resource            - Pointer to the resource descriptor
 *              Aml                 - Where the AML descriptor is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert an internal resource descriptor to the corresponding
 *              external AML resource descriptor.
 *
 ******************************************************************************/

acpi_status
acpi_rs_set_fixed_io(struct acpi_resource *resource, union aml_resource *aml)
{
	ACPI_FUNCTION_TRACE("rs_set_fixed_io");

	/*
	 * Set the following contiguous fields in the AML descriptor:
	 * Base Address
	 * Length
	 */
	ACPI_MOVE_32_TO_16(&aml->fixed_io.address,
			   &resource->data.fixed_io.address);
	aml->fixed_io.address_length =
	    (u8) resource->data.fixed_io.address_length;

	/* Complete the AML descriptor header */

	acpi_rs_set_resource_header(ACPI_RESOURCE_NAME_FIXED_IO,
				    sizeof(struct aml_resource_fixed_io), aml);
	return_ACPI_STATUS(AE_OK);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_get_dma
 *
 * PARAMETERS:  Aml                 - Pointer to the AML resource descriptor
 *              aml_resource_length - Length of the resource from the AML header
 *              Resource            - Where the internal resource is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert a raw AML resource descriptor to the corresponding
 *              internal resource descriptor, simplifying bitflags and handling
 *              alignment and endian issues if necessary.
 *
 ******************************************************************************/

acpi_status
acpi_rs_get_dma(union aml_resource *aml,
		u16 aml_resource_length, struct acpi_resource *resource)
{
	u32 channel_count = 0;
	u32 i;
	u8 temp8;

	ACPI_FUNCTION_TRACE("rs_get_dma");

	/* Decode the DMA channel bits */

	for (i = 0; i < 8; i++) {
		if ((aml->dma.dma_channel_mask >> i) & 0x01) {
			resource->data.dma.channels[channel_count] = i;
			channel_count++;
		}
	}

	resource->length = 0;
	resource->data.dma.channel_count = channel_count;

	/*
	 * Calculate the structure size based upon the number of channels
	 * Note: Zero DMA channels is valid
	 */
	if (channel_count > 0) {
		resource->length = (u32) (channel_count - 1) * 4;
	}

	/* Get the flags: transfer preference, bus mastering, channel speed */

	temp8 = aml->dma.flags;
	resource->data.dma.transfer = temp8 & 0x03;
	resource->data.dma.bus_master = (temp8 >> 2) & 0x01;
	resource->data.dma.type = (temp8 >> 5) & 0x03;

	if (resource->data.dma.transfer == 0x03) {
		ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
				  "Invalid DMA.Transfer preference (3)\n"));
		return_ACPI_STATUS(AE_BAD_DATA);
	}

	/* Complete the resource header */

	resource->type = ACPI_RESOURCE_TYPE_DMA;
	resource->length += ACPI_SIZEOF_RESOURCE(struct acpi_resource_dma);
	return_ACPI_STATUS(AE_OK);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_set_dma
 *
 * PARAMETERS:  Resource            - Pointer to the resource descriptor
 *              Aml                 - Where the AML descriptor is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert an internal resource descriptor to the corresponding
 *              external AML resource descriptor.
 *
 ******************************************************************************/

acpi_status
acpi_rs_set_dma(struct acpi_resource *resource, union aml_resource *aml)
{
	u8 i;

	ACPI_FUNCTION_TRACE("rs_set_dma");

	/* Convert channel list to 8-bit DMA channel bitmask */

	aml->dma.dma_channel_mask = 0;
	for (i = 0; i < resource->data.dma.channel_count; i++) {
		aml->dma.dma_channel_mask |=
		    (1 << resource->data.dma.channels[i]);
	}

	/* Set the DMA Flag bits */

	aml->dma.flags = (u8)
	    (((resource->data.dma.type & 0x03) << 5) |
	     ((resource->data.dma.bus_master & 0x01) << 2) |
	     (resource->data.dma.transfer & 0x03));

	/* Complete the AML descriptor header */

	acpi_rs_set_resource_header(ACPI_RESOURCE_NAME_DMA,
				    sizeof(struct aml_resource_dma), aml);
	return_ACPI_STATUS(AE_OK);
}