[PATCH] W1: w1_netlink: New init/fini netlink callbacks.
[linux-2.6/verdex.git] / drivers / acpi / resources / rsmemory.c
blobdaba1a1ed46db522d747241567db8685e385e497
1 /*******************************************************************************
3 * Module Name: rsmem24 - Memory resource descriptors
5 ******************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2005, R. Byron Moore
9 * All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
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.
30 * NO WARRANTY
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
55 * stream
56 * bytes_consumed - Pointer to where the number of bytes
57 * consumed the byte_stream_buffer is
58 * returned
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
63 * RETURN: Status
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 ******************************************************************************/
70 acpi_status
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;
77 u16 temp16 = 0;
78 u8 temp8 = 0;
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 */
86 buffer += 1;
88 ACPI_MOVE_16_TO_16(&temp16, buffer);
89 buffer += 2;
90 *bytes_consumed = (acpi_size) temp16 + 3;
91 output_struct->id = ACPI_RSTYPE_MEM24;
93 /* Check Byte 3 the Read/Write bit */
95 temp8 = *buffer;
96 buffer += 1;
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);
102 buffer += 2;
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);
108 buffer += 2;
109 output_struct->data.memory24.max_base_address = temp16;
111 /* Get Alignment (Bytes 8-9) */
113 ACPI_MOVE_16_TO_16(&temp16, buffer);
114 buffer += 2;
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
141 * RETURN: Status
143 * DESCRIPTION: Take the linked list resource structure and fills in the
144 * the appropriate bytes in a byte stream
146 ******************************************************************************/
148 acpi_status
149 acpi_rs_memory24_stream(struct acpi_resource *linked_list,
150 u8 ** output_buffer, acpi_size * bytes_consumed)
152 u8 *buffer = *output_buffer;
153 u16 temp16 = 0;
154 u8 temp8 = 0;
156 ACPI_FUNCTION_TRACE("rs_memory24_stream");
158 /* The descriptor field is static */
160 *buffer = 0x81;
161 buffer += 1;
163 /* The length field is static */
165 temp16 = 0x09;
166 ACPI_MOVE_16_TO_16(buffer, &temp16);
167 buffer += 2;
169 /* Set the Information Byte */
171 temp8 = (u8) (linked_list->data.memory24.read_write_attribute & 0x01);
172 *buffer = temp8;
173 buffer += 1;
175 /* Set the Range minimum base address */
177 ACPI_MOVE_32_TO_16(buffer,
178 &linked_list->data.memory24.min_base_address);
179 buffer += 2;
181 /* Set the Range maximum base address */
183 ACPI_MOVE_32_TO_16(buffer,
184 &linked_list->data.memory24.max_base_address);
185 buffer += 2;
187 /* Set the base alignment */
189 ACPI_MOVE_32_TO_16(buffer, &linked_list->data.memory24.alignment);
190 buffer += 2;
192 /* Set the range length */
194 ACPI_MOVE_32_TO_16(buffer, &linked_list->data.memory24.range_length);
195 buffer += 2;
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
208 * stream
209 * bytes_consumed - Pointer to where the number of bytes
210 * consumed the byte_stream_buffer is
211 * returned
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
216 * RETURN: Status
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 ******************************************************************************/
224 acpi_status
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;
231 u16 temp16 = 0;
232 u8 temp8 = 0;
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 */
240 buffer += 1;
242 ACPI_MOVE_16_TO_16(&temp16, buffer);
243 buffer += 2;
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
250 * begin.
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 */
260 temp8 = *buffer;
261 buffer += 1;
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,
268 buffer);
269 buffer += 4;
271 /* Get max_base_address (Bytes 8-11) */
273 ACPI_MOVE_32_TO_32(&output_struct->data.memory32.max_base_address,
274 buffer);
275 buffer += 4;
277 /* Get Alignment (Bytes 12-15) */
279 ACPI_MOVE_32_TO_32(&output_struct->data.memory32.alignment, buffer);
280 buffer += 4;
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
301 * stream
302 * bytes_consumed - Pointer to where the number of bytes
303 * consumed the byte_stream_buffer is
304 * returned
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
309 * RETURN: Status
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 ******************************************************************************/
317 acpi_status
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;
324 u16 temp16 = 0;
325 u8 temp8 = 0;
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 */
333 buffer += 1;
334 ACPI_MOVE_16_TO_16(&temp16, buffer);
336 buffer += 2;
337 *bytes_consumed = (acpi_size) temp16 + 3;
339 output_struct->id = ACPI_RSTYPE_FIXED_MEM32;
341 /* Check Byte 3 the Read/Write bit */
343 temp8 = *buffer;
344 buffer += 1;
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);
351 buffer += 4;
353 /* Get range_length (Bytes 8-11) */
355 ACPI_MOVE_32_TO_32(&output_struct->data.fixed_memory32.range_length,
356 buffer);
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
377 * RETURN: Status
379 * DESCRIPTION: Take the linked list resource structure and fills in the
380 * the appropriate bytes in a byte stream
382 ******************************************************************************/
384 acpi_status
385 acpi_rs_memory32_range_stream(struct acpi_resource *linked_list,
386 u8 ** output_buffer, acpi_size * bytes_consumed)
388 u8 *buffer = *output_buffer;
389 u16 temp16 = 0;
390 u8 temp8 = 0;
392 ACPI_FUNCTION_TRACE("rs_memory32_range_stream");
394 /* The descriptor field is static */
396 *buffer = 0x85;
397 buffer += 1;
399 /* The length field is static */
401 temp16 = 0x11;
403 ACPI_MOVE_16_TO_16(buffer, &temp16);
404 buffer += 2;
406 /* Set the Information Byte */
408 temp8 = (u8) (linked_list->data.memory32.read_write_attribute & 0x01);
409 *buffer = temp8;
410 buffer += 1;
412 /* Set the Range minimum base address */
414 ACPI_MOVE_32_TO_32(buffer,
415 &linked_list->data.memory32.min_base_address);
416 buffer += 4;
418 /* Set the Range maximum base address */
420 ACPI_MOVE_32_TO_32(buffer,
421 &linked_list->data.memory32.max_base_address);
422 buffer += 4;
424 /* Set the base alignment */
426 ACPI_MOVE_32_TO_32(buffer, &linked_list->data.memory32.alignment);
427 buffer += 4;
429 /* Set the range length */
431 ACPI_MOVE_32_TO_32(buffer, &linked_list->data.memory32.range_length);
432 buffer += 4;
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
449 * RETURN: Status
451 * DESCRIPTION: Take the linked list resource structure and fills in the
452 * the appropriate bytes in a byte stream
454 ******************************************************************************/
456 acpi_status
457 acpi_rs_fixed_memory32_stream(struct acpi_resource *linked_list,
458 u8 ** output_buffer, acpi_size * bytes_consumed)
460 u8 *buffer = *output_buffer;
461 u16 temp16 = 0;
462 u8 temp8 = 0;
464 ACPI_FUNCTION_TRACE("rs_fixed_memory32_stream");
466 /* The descriptor field is static */
468 *buffer = 0x86;
469 buffer += 1;
471 /* The length field is static */
473 temp16 = 0x09;
475 ACPI_MOVE_16_TO_16(buffer, &temp16);
476 buffer += 2;
478 /* Set the Information Byte */
480 temp8 =
481 (u8) (linked_list->data.fixed_memory32.read_write_attribute & 0x01);
482 *buffer = temp8;
483 buffer += 1;
485 /* Set the Range base address */
487 ACPI_MOVE_32_TO_32(buffer,
488 &linked_list->data.fixed_memory32.
489 range_base_address);
490 buffer += 4;
492 /* Set the range length */
494 ACPI_MOVE_32_TO_32(buffer,
495 &linked_list->data.fixed_memory32.range_length);
496 buffer += 4;
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);