Searched refs:aml (Results 1 - 15 of 15) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/utilities/
H A Dutresrc.c258 acpi_ut_walk_aml_resources(u8 * aml, argument
278 end_aml = aml + aml_length;
282 while (aml < end_aml) {
286 status = acpi_ut_validate_resource(aml, &resource_index);
293 length = acpi_ut_get_descriptor_length(aml);
299 user_function(aml, length, offset, resource_index,
308 if (acpi_ut_get_resource_type(aml) ==
314 if ((aml + 1) >= end_aml) {
321 *context = aml;
329 aml
354 acpi_ut_validate_resource(void *aml, u8 * return_index) argument
468 acpi_ut_get_resource_type(void *aml) argument
502 acpi_ut_get_resource_length(void *aml) argument
540 acpi_ut_get_resource_header_length(void *aml) argument
567 acpi_ut_get_descriptor_length(void *aml) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/resources/
H A Drslist.c65 acpi_rs_convert_aml_to_resources(u8 * aml, argument
91 aml),
97 *aml));
103 acpi_ut_get_resource_type(aml), length,
135 u8 *aml = output_buffer; local
143 while (aml < end_aml) {
158 aml),
172 (union aml_resource, aml), NULL);
190 aml += acpi_ut_get_descriptor_length(aml);
[all...]
H A Drsmisc.c71 union aml_resource *aml,
96 aml_resource_length = acpi_ut_get_resource_length(aml);
109 source = ACPI_ADD_PTR(void, aml, info->aml_offset);
200 if (!acpi_rs_get_address_common(resource, aml)) {
213 destination, aml, NULL);
227 (acpi_rs_length) (((item_count - 1) * sizeof(u32)) + info->value), destination, aml, target);
324 union aml_resource *aml,
348 destination = ACPI_ADD_PTR(void, aml, info->aml_offset);
353 ACPI_MEMSET(aml, 0, INIT_RESOURCE_LENGTH(info));
356 aml_length, aml); local
70 acpi_rs_convert_aml_to_resource(struct acpi_resource *resource, union aml_resource *aml, struct acpi_rsconvert_info *info) argument
323 acpi_rs_convert_resource_to_aml(struct acpi_resource *resource, union aml_resource *aml, struct acpi_rsconvert_info *info) argument
[all...]
H A Drsutils.c194 union aml_resource *aml)
203 (total_length - acpi_ut_get_resource_header_length(aml));
207 if (aml->small_header.descriptor_type & ACPI_RESOURCE_NAME_LARGE) {
211 ACPI_MOVE_16_TO_16(&aml->large_header.resource_length,
216 aml->small_header.descriptor_type = (u8)
219 ((aml->small_header.
246 union aml_resource *aml)
252 aml->small_header.descriptor_type = descriptor_type;
256 acpi_rs_set_resource_length(total_length, aml);
314 union aml_resource * aml, cha
193 acpi_rs_set_resource_length(acpi_rsdesc_size total_length, union aml_resource *aml) argument
244 acpi_rs_set_resource_header(u8 descriptor_type, acpi_rsdesc_size total_length, union aml_resource *aml) argument
311 acpi_rs_get_resource_source(acpi_rs_length resource_length, acpi_rs_length minimum_length, struct acpi_resource_source * resource_source, union aml_resource * aml, char *string_ptr) argument
398 acpi_rs_set_resource_source(union aml_resource * aml, acpi_rs_length minimum_length, struct acpi_resource_source * resource_source) argument
[all...]
H A Drsaddr.c307 union aml_resource *aml)
313 if ((aml->address.resource_type > 2)
314 && (aml->address.resource_type < 0xC0)) {
320 (void)acpi_rs_convert_aml_to_resource(resource, aml,
326 (void)acpi_rs_convert_aml_to_resource(resource, aml,
329 (void)acpi_rs_convert_aml_to_resource(resource, aml,
335 aml->address.specific_flags;
356 acpi_rs_set_address_common(union aml_resource *aml, argument
363 (void)acpi_rs_convert_resource_to_aml(resource, aml,
369 (void)acpi_rs_convert_resource_to_aml(resource, aml,
306 acpi_rs_get_address_common(struct acpi_resource *resource, union aml_resource *aml) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/parser/
H A Dpsargs.c77 u8 *aml = parser_state->aml; local
88 byte_count = (aml[0] >> 6);
89 parser_state->aml += (byte_count + 1);
101 package_length |= (aml[byte_count] << ((byte_count << 3) - 4));
109 package_length |= (aml[0] & byte_zero_mask);
128 u8 *start = parser_state->aml;
157 u8 *start = parser_state->aml;
158 u8 *end = parser_state->aml;
203 parser_state->aml
392 u8 *aml = parser_state->aml; local
[all...]
H A Dpsparse.c102 u8 *aml; local
105 aml = parser_state->aml;
106 opcode = (u16) ACPI_GET8(aml);
112 aml++;
113 opcode = (u16) ((opcode << 8) | ACPI_GET8(aml));
344 parser_state->aml = parser_state->aml_end;
350 parser_state->aml = walk_state->aml_last_while;
360 parser_state->aml = walk_state->aml_last_while;
369 parser_state->aml
[all...]
H A Dpsloop.c106 (u32) ACPI_PTR_DIFF(walk_state->parser_state.aml,
135 walk_state->opcode, walk_state->parser_state.aml,
138 ACPI_DUMP_BUFFER(walk_state->parser_state.aml, 128);
142 walk_state->parser_state.aml++;
149 walk_state->parser_state.aml +=
401 (u32) ACPI_PTR_DIFF(walk_state->parser_state.aml,
447 walk_state->parser_state.aml =
466 op->named.data = walk_state->parser_state.aml;
469 walk_state->parser_state.aml);
473 walk_state->parser_state.aml
[all...]
H A Dpsscope.c86 ((parser_state->aml >= parser_state->scope->parse_scope.arg_end
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/acpi/
H A Dacresrc.h209 acpi_rs_convert_aml_to_resources(u8 * aml,
221 acpi_rs_set_address_common(union aml_resource *aml,
226 union aml_resource *aml);
233 union aml_resource *aml,
238 union aml_resource *aml,
256 union aml_resource *aml, char *string_ptr);
259 acpi_rs_set_resource_source(union aml_resource *aml,
266 union aml_resource *aml);
270 union aml_resource *aml);
H A Dacutils.h81 acpi_status(*acpi_walk_aml_callback) (u8 * aml,
501 acpi_ut_walk_aml_resources(u8 * aml,
506 acpi_status acpi_ut_validate_resource(void *aml, u8 * return_index);
508 u32 acpi_ut_get_descriptor_length(void *aml);
510 u16 acpi_ut_get_resource_length(void *aml);
512 u8 acpi_ut_get_resource_header_length(void *aml);
514 u8 acpi_ut_get_resource_type(void *aml);
H A Daclocal.h56 /* Total number of aml opcodes defined */
682 u8 *aml; /* Next AML byte */ member in struct:acpi_parse_state
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/dispatcher/
H A Ddswexec.c744 if (walk_state->parser_state.aml == walk_state->parser_state.aml_end) {
H A Ddsopcode.c922 walk_state->parser_state.aml - 1;
H A Ddswstate.c711 walk_state->parser_state.aml =

Completed in 885 milliseconds