1 /*******************************************************************************
3 * Module Name: rsmem24 - Memory resource descriptors
5 ******************************************************************************/
8 * Copyright (C) 2000 - 2005, R. Byron Moore
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
44 #include <acpi/acpi.h>
45 #include <acpi/acresrc.h>
47 #define _COMPONENT ACPI_RESOURCES
48 ACPI_MODULE_NAME("rsmemory")
50 /*******************************************************************************
52 * FUNCTION: acpi_rs_memory24_resource
54 * PARAMETERS: byte_stream_buffer - Pointer to the resource input byte
56 * bytes_consumed - Pointer to where the number of bytes
57 * consumed the byte_stream_buffer is
59 * output_buffer - Pointer to the return data buffer
60 * structure_size - Pointer to where the number of bytes
61 * in the return data struct is returned
65 * DESCRIPTION: Take the resource byte stream and fill out the appropriate
66 * structure pointed to by the output_buffer. Return the
67 * number of bytes consumed from the byte stream.
69 ******************************************************************************/
71 acpi_rs_memory24_resource(u8
* byte_stream_buffer
,
72 acpi_size
* bytes_consumed
,
73 u8
** output_buffer
, acpi_size
* structure_size
)
75 u8
*buffer
= byte_stream_buffer
;
76 struct acpi_resource
*output_struct
= (void *)*output_buffer
;
79 acpi_size struct_size
=
80 ACPI_SIZEOF_RESOURCE(struct acpi_resource_mem24
);
82 ACPI_FUNCTION_TRACE("rs_memory24_resource");
84 /* Point past the Descriptor to get the number of bytes consumed */
88 ACPI_MOVE_16_TO_16(&temp16
, buffer
);
90 *bytes_consumed
= (acpi_size
) temp16
+ 3;
91 output_struct
->id
= ACPI_RSTYPE_MEM24
;
93 /* Check Byte 3 the Read/Write bit */
97 output_struct
->data
.memory24
.read_write_attribute
= temp8
& 0x01;
99 /* Get min_base_address (Bytes 4-5) */
101 ACPI_MOVE_16_TO_16(&temp16
, buffer
);
103 output_struct
->data
.memory24
.min_base_address
= temp16
;
105 /* Get max_base_address (Bytes 6-7) */
107 ACPI_MOVE_16_TO_16(&temp16
, buffer
);
109 output_struct
->data
.memory24
.max_base_address
= temp16
;
111 /* Get Alignment (Bytes 8-9) */
113 ACPI_MOVE_16_TO_16(&temp16
, buffer
);
115 output_struct
->data
.memory24
.alignment
= temp16
;
117 /* Get range_length (Bytes 10-11) */
119 ACPI_MOVE_16_TO_16(&temp16
, buffer
);
120 output_struct
->data
.memory24
.range_length
= temp16
;
122 /* Set the Length parameter */
124 output_struct
->length
= (u32
) struct_size
;
126 /* Return the final size of the structure */
128 *structure_size
= struct_size
;
129 return_ACPI_STATUS(AE_OK
);
132 /*******************************************************************************
134 * FUNCTION: acpi_rs_memory24_stream
136 * PARAMETERS: linked_list - Pointer to the resource linked list
137 * output_buffer - Pointer to the user's return buffer
138 * bytes_consumed - Pointer to where the number of bytes
139 * used in the output_buffer is returned
143 * DESCRIPTION: Take the linked list resource structure and fills in the
144 * the appropriate bytes in a byte stream
146 ******************************************************************************/
149 acpi_rs_memory24_stream(struct acpi_resource
*linked_list
,
150 u8
** output_buffer
, acpi_size
* bytes_consumed
)
152 u8
*buffer
= *output_buffer
;
156 ACPI_FUNCTION_TRACE("rs_memory24_stream");
158 /* The descriptor field is static */
163 /* The length field is static */
166 ACPI_MOVE_16_TO_16(buffer
, &temp16
);
169 /* Set the Information Byte */
171 temp8
= (u8
) (linked_list
->data
.memory24
.read_write_attribute
& 0x01);
175 /* Set the Range minimum base address */
177 ACPI_MOVE_32_TO_16(buffer
,
178 &linked_list
->data
.memory24
.min_base_address
);
181 /* Set the Range maximum base address */
183 ACPI_MOVE_32_TO_16(buffer
,
184 &linked_list
->data
.memory24
.max_base_address
);
187 /* Set the base alignment */
189 ACPI_MOVE_32_TO_16(buffer
, &linked_list
->data
.memory24
.alignment
);
192 /* Set the range length */
194 ACPI_MOVE_32_TO_16(buffer
, &linked_list
->data
.memory24
.range_length
);
197 /* Return the number of bytes consumed in this operation */
199 *bytes_consumed
= ACPI_PTR_DIFF(buffer
, *output_buffer
);
200 return_ACPI_STATUS(AE_OK
);
203 /*******************************************************************************
205 * FUNCTION: acpi_rs_memory32_range_resource
207 * PARAMETERS: byte_stream_buffer - Pointer to the resource input byte
209 * bytes_consumed - Pointer to where the number of bytes
210 * consumed the byte_stream_buffer is
212 * output_buffer - Pointer to the return data buffer
213 * structure_size - Pointer to where the number of bytes
214 * in the return data struct is returned
218 * DESCRIPTION: Take the resource byte stream and fill out the appropriate
219 * structure pointed to by the output_buffer. Return the
220 * number of bytes consumed from the byte stream.
222 ******************************************************************************/
225 acpi_rs_memory32_range_resource(u8
* byte_stream_buffer
,
226 acpi_size
* bytes_consumed
,
227 u8
** output_buffer
, acpi_size
* structure_size
)
229 u8
*buffer
= byte_stream_buffer
;
230 struct acpi_resource
*output_struct
= (void *)*output_buffer
;
233 acpi_size struct_size
=
234 ACPI_SIZEOF_RESOURCE(struct acpi_resource_mem32
);
236 ACPI_FUNCTION_TRACE("rs_memory32_range_resource");
238 /* Point past the Descriptor to get the number of bytes consumed */
242 ACPI_MOVE_16_TO_16(&temp16
, buffer
);
244 *bytes_consumed
= (acpi_size
) temp16
+ 3;
246 output_struct
->id
= ACPI_RSTYPE_MEM32
;
249 * Point to the place in the output buffer where the data portion will
251 * 1. Set the RESOURCE_DATA * Data to point to its own address, then
252 * 2. Set the pointer to the next address.
254 * NOTE: output_struct->Data is cast to u8, otherwise, this addition adds
255 * 4 * sizeof(RESOURCE_DATA) instead of 4 * sizeof(u8)
258 /* Check Byte 3 the Read/Write bit */
263 output_struct
->data
.memory32
.read_write_attribute
= temp8
& 0x01;
265 /* Get min_base_address (Bytes 4-7) */
267 ACPI_MOVE_32_TO_32(&output_struct
->data
.memory32
.min_base_address
,
271 /* Get max_base_address (Bytes 8-11) */
273 ACPI_MOVE_32_TO_32(&output_struct
->data
.memory32
.max_base_address
,
277 /* Get Alignment (Bytes 12-15) */
279 ACPI_MOVE_32_TO_32(&output_struct
->data
.memory32
.alignment
, buffer
);
282 /* Get range_length (Bytes 16-19) */
284 ACPI_MOVE_32_TO_32(&output_struct
->data
.memory32
.range_length
, buffer
);
286 /* Set the Length parameter */
288 output_struct
->length
= (u32
) struct_size
;
290 /* Return the final size of the structure */
292 *structure_size
= struct_size
;
293 return_ACPI_STATUS(AE_OK
);
296 /*******************************************************************************
298 * FUNCTION: acpi_rs_fixed_memory32_resource
300 * PARAMETERS: byte_stream_buffer - Pointer to the resource input byte
302 * bytes_consumed - Pointer to where the number of bytes
303 * consumed the byte_stream_buffer is
305 * output_buffer - Pointer to the return data buffer
306 * structure_size - Pointer to where the number of bytes
307 * in the return data struct is returned
311 * DESCRIPTION: Take the resource byte stream and fill out the appropriate
312 * structure pointed to by the output_buffer. Return the
313 * number of bytes consumed from the byte stream.
315 ******************************************************************************/
318 acpi_rs_fixed_memory32_resource(u8
* byte_stream_buffer
,
319 acpi_size
* bytes_consumed
,
320 u8
** output_buffer
, acpi_size
* structure_size
)
322 u8
*buffer
= byte_stream_buffer
;
323 struct acpi_resource
*output_struct
= (void *)*output_buffer
;
326 acpi_size struct_size
=
327 ACPI_SIZEOF_RESOURCE(struct acpi_resource_fixed_mem32
);
329 ACPI_FUNCTION_TRACE("rs_fixed_memory32_resource");
331 /* Point past the Descriptor to get the number of bytes consumed */
334 ACPI_MOVE_16_TO_16(&temp16
, buffer
);
337 *bytes_consumed
= (acpi_size
) temp16
+ 3;
339 output_struct
->id
= ACPI_RSTYPE_FIXED_MEM32
;
341 /* Check Byte 3 the Read/Write bit */
345 output_struct
->data
.fixed_memory32
.read_write_attribute
= temp8
& 0x01;
347 /* Get range_base_address (Bytes 4-7) */
349 ACPI_MOVE_32_TO_32(&output_struct
->data
.fixed_memory32
.
350 range_base_address
, buffer
);
353 /* Get range_length (Bytes 8-11) */
355 ACPI_MOVE_32_TO_32(&output_struct
->data
.fixed_memory32
.range_length
,
358 /* Set the Length parameter */
360 output_struct
->length
= (u32
) struct_size
;
362 /* Return the final size of the structure */
364 *structure_size
= struct_size
;
365 return_ACPI_STATUS(AE_OK
);
368 /*******************************************************************************
370 * FUNCTION: acpi_rs_memory32_range_stream
372 * PARAMETERS: linked_list - Pointer to the resource linked list
373 * output_buffer - Pointer to the user's return buffer
374 * bytes_consumed - Pointer to where the number of bytes
375 * used in the output_buffer is returned
379 * DESCRIPTION: Take the linked list resource structure and fills in the
380 * the appropriate bytes in a byte stream
382 ******************************************************************************/
385 acpi_rs_memory32_range_stream(struct acpi_resource
*linked_list
,
386 u8
** output_buffer
, acpi_size
* bytes_consumed
)
388 u8
*buffer
= *output_buffer
;
392 ACPI_FUNCTION_TRACE("rs_memory32_range_stream");
394 /* The descriptor field is static */
399 /* The length field is static */
403 ACPI_MOVE_16_TO_16(buffer
, &temp16
);
406 /* Set the Information Byte */
408 temp8
= (u8
) (linked_list
->data
.memory32
.read_write_attribute
& 0x01);
412 /* Set the Range minimum base address */
414 ACPI_MOVE_32_TO_32(buffer
,
415 &linked_list
->data
.memory32
.min_base_address
);
418 /* Set the Range maximum base address */
420 ACPI_MOVE_32_TO_32(buffer
,
421 &linked_list
->data
.memory32
.max_base_address
);
424 /* Set the base alignment */
426 ACPI_MOVE_32_TO_32(buffer
, &linked_list
->data
.memory32
.alignment
);
429 /* Set the range length */
431 ACPI_MOVE_32_TO_32(buffer
, &linked_list
->data
.memory32
.range_length
);
434 /* Return the number of bytes consumed in this operation */
436 *bytes_consumed
= ACPI_PTR_DIFF(buffer
, *output_buffer
);
437 return_ACPI_STATUS(AE_OK
);
440 /*******************************************************************************
442 * FUNCTION: acpi_rs_fixed_memory32_stream
444 * PARAMETERS: linked_list - Pointer to the resource linked list
445 * output_buffer - Pointer to the user's return buffer
446 * bytes_consumed - Pointer to where the number of bytes
447 * used in the output_buffer is returned
451 * DESCRIPTION: Take the linked list resource structure and fills in the
452 * the appropriate bytes in a byte stream
454 ******************************************************************************/
457 acpi_rs_fixed_memory32_stream(struct acpi_resource
*linked_list
,
458 u8
** output_buffer
, acpi_size
* bytes_consumed
)
460 u8
*buffer
= *output_buffer
;
464 ACPI_FUNCTION_TRACE("rs_fixed_memory32_stream");
466 /* The descriptor field is static */
471 /* The length field is static */
475 ACPI_MOVE_16_TO_16(buffer
, &temp16
);
478 /* Set the Information Byte */
481 (u8
) (linked_list
->data
.fixed_memory32
.read_write_attribute
& 0x01);
485 /* Set the Range base address */
487 ACPI_MOVE_32_TO_32(buffer
,
488 &linked_list
->data
.fixed_memory32
.
492 /* Set the range length */
494 ACPI_MOVE_32_TO_32(buffer
,
495 &linked_list
->data
.fixed_memory32
.range_length
);
498 /* Return the number of bytes consumed in this operation */
500 *bytes_consumed
= ACPI_PTR_DIFF(buffer
, *output_buffer
);
501 return_ACPI_STATUS(AE_OK
);