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

12

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/acpi/acpica/
H A Dutresrc.c259 acpi_ut_walk_aml_resources(u8 * aml, argument
279 end_aml = aml + aml_length;
283 while (aml < end_aml) {
287 status = acpi_ut_validate_resource(aml, &resource_index);
294 length = acpi_ut_get_descriptor_length(aml);
300 user_function(aml, length, offset, resource_index,
309 if (acpi_ut_get_resource_type(aml) ==
315 if ((aml + 1) >= end_aml) {
322 *context = aml;
330 aml
355 acpi_ut_validate_resource(void *aml, u8 * return_index) argument
469 acpi_ut_get_resource_type(void *aml) argument
503 acpi_ut_get_resource_length(void *aml) argument
541 acpi_ut_get_resource_header_length(void *aml) argument
568 acpi_ut_get_descriptor_length(void *aml) argument
[all...]
H A Drslist.c66 acpi_rs_convert_aml_to_resources(u8 * aml, argument
92 aml),
98 *aml));
104 acpi_ut_get_resource_type(aml), length,
136 u8 *aml = output_buffer; local
144 while (aml < end_aml) {
159 aml),
173 (union aml_resource, aml), NULL);
191 aml += acpi_ut_get_descriptor_length(aml);
[all...]
H A Dpsargs.c78 u8 *aml = parser_state->aml; local
89 byte_count = (aml[0] >> 6);
90 parser_state->aml += ((acpi_size) byte_count + 1);
102 package_length |= (aml[byte_count] << ((byte_count << 3) - 4));
110 package_length |= (aml[0] & byte_zero_mask);
129 u8 *start = parser_state->aml;
158 u8 *start = parser_state->aml;
159 u8 *end = parser_state->aml;
204 parser_state->aml
396 u8 *aml = parser_state->aml; local
[all...]
H A Drsmisc.c72 union aml_resource *aml,
97 aml_resource_length = acpi_ut_get_resource_length(aml);
110 source = ACPI_ADD_PTR(void, aml, info->aml_offset);
201 if (!acpi_rs_get_address_common(resource, aml)) {
214 destination, aml, NULL);
228 (acpi_rs_length) (((item_count - 1) * sizeof(u32)) + info->value), destination, aml, target);
325 union aml_resource *aml,
349 destination = ACPI_ADD_PTR(void, aml, info->aml_offset);
354 ACPI_MEMSET(aml, 0, INIT_RESOURCE_LENGTH(info));
357 aml_length, aml); local
71 acpi_rs_convert_aml_to_resource(struct acpi_resource *resource, union aml_resource *aml, struct acpi_rsconvert_info *info) argument
324 acpi_rs_convert_resource_to_aml(struct acpi_resource *resource, union aml_resource *aml, struct acpi_rsconvert_info *info) argument
[all...]
H A Drsutils.c195 union aml_resource *aml)
204 (total_length - acpi_ut_get_resource_header_length(aml));
208 if (aml->small_header.descriptor_type & ACPI_RESOURCE_NAME_LARGE) {
212 ACPI_MOVE_16_TO_16(&aml->large_header.resource_length,
217 aml->small_header.descriptor_type = (u8)
220 ((aml->small_header.
247 union aml_resource *aml)
253 aml->small_header.descriptor_type = descriptor_type;
257 acpi_rs_set_resource_length(total_length, aml);
315 union aml_resource * aml, cha
194 acpi_rs_set_resource_length(acpi_rsdesc_size total_length, union aml_resource *aml) argument
245 acpi_rs_set_resource_header(u8 descriptor_type, acpi_rsdesc_size total_length, union aml_resource *aml) argument
312 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
399 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.c308 union aml_resource *aml)
314 if ((aml->address.resource_type > 2)
315 && (aml->address.resource_type < 0xC0)) {
321 (void)acpi_rs_convert_aml_to_resource(resource, aml,
327 (void)acpi_rs_convert_aml_to_resource(resource, aml,
330 (void)acpi_rs_convert_aml_to_resource(resource, aml,
336 aml->address.specific_flags;
357 acpi_rs_set_address_common(union aml_resource *aml, argument
364 (void)acpi_rs_convert_resource_to_aml(resource, aml,
370 (void)acpi_rs_convert_resource_to_aml(resource, aml,
307 acpi_rs_get_address_common(struct acpi_resource *resource, union aml_resource *aml) argument
[all...]
H A Dpsparse.c103 u8 *aml; local
106 aml = parser_state->aml;
107 opcode = (u16) ACPI_GET8(aml);
113 aml++;
114 opcode = (u16) ((opcode << 8) | ACPI_GET8(aml));
341 parser_state->aml = parser_state->aml_end;
347 parser_state->aml = walk_state->aml_last_while;
354 parser_state->aml = walk_state->aml_last_while;
360 parser_state->aml
[all...]
H A Dacresrc.h210 acpi_rs_convert_aml_to_resources(u8 * aml,
222 acpi_rs_set_address_common(union aml_resource *aml,
227 union aml_resource *aml);
234 union aml_resource *aml,
239 union aml_resource *aml,
257 union aml_resource *aml, char *string_ptr);
260 acpi_rs_set_resource_source(union aml_resource *aml,
267 union aml_resource *aml);
271 union aml_resource *aml);
H A Dpsloop.c111 (u32) ACPI_PTR_DIFF(walk_state->parser_state.aml,
140 walk_state->opcode, walk_state->parser_state.aml,
143 ACPI_DUMP_BUFFER(walk_state->parser_state.aml, 128);
147 walk_state->parser_state.aml++;
154 walk_state->parser_state.aml +=
436 (u32) ACPI_PTR_DIFF(walk_state->parser_state.aml,
500 walk_state->parser_state.aml =
543 op->named.data = walk_state->parser_state.aml;
546 walk_state->parser_state.aml);
550 walk_state->parser_state.aml
[all...]
H A Dacutils.h81 acpi_status(*acpi_walk_aml_callback) (u8 * aml,
506 acpi_ut_walk_aml_resources(u8 * aml,
511 acpi_status acpi_ut_validate_resource(void *aml, u8 * return_index);
513 u32 acpi_ut_get_descriptor_length(void *aml);
515 u16 acpi_ut_get_resource_length(void *aml);
517 u8 acpi_ut_get_resource_header_length(void *aml);
519 u8 acpi_ut_get_resource_type(void *aml);
H A Dnsxfname.c535 parser_state.aml = buffer + sizeof(struct acpi_table_header);
543 parser_state.aml += acpi_ps_get_opcode_size(opcode);
546 method_flags = *parser_state.aml++;
547 aml_start = parser_state.aml;
H A Dpsscope.c87 ((parser_state->aml >= parser_state->scope->parse_scope.arg_end
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/acpi/acpica/
H A Dutresrc.c259 acpi_ut_walk_aml_resources(u8 * aml, argument
279 end_aml = aml + aml_length;
283 while (aml < end_aml) {
287 status = acpi_ut_validate_resource(aml, &resource_index);
294 length = acpi_ut_get_descriptor_length(aml);
300 user_function(aml, length, offset, resource_index,
309 if (acpi_ut_get_resource_type(aml) ==
315 if ((aml + 1) >= end_aml) {
322 *context = aml;
330 aml
355 acpi_ut_validate_resource(void *aml, u8 * return_index) argument
469 acpi_ut_get_resource_type(void *aml) argument
503 acpi_ut_get_resource_length(void *aml) argument
541 acpi_ut_get_resource_header_length(void *aml) argument
568 acpi_ut_get_descriptor_length(void *aml) argument
[all...]
H A Drslist.c66 acpi_rs_convert_aml_to_resources(u8 * aml, argument
92 aml),
98 *aml));
104 acpi_ut_get_resource_type(aml), length,
136 u8 *aml = output_buffer; local
144 while (aml < end_aml) {
159 aml),
173 (union aml_resource, aml), NULL);
191 aml += acpi_ut_get_descriptor_length(aml);
[all...]
H A Dpsargs.c78 u8 *aml = parser_state->aml; local
89 byte_count = (aml[0] >> 6);
90 parser_state->aml += ((acpi_size) byte_count + 1);
102 package_length |= (aml[byte_count] << ((byte_count << 3) - 4));
110 package_length |= (aml[0] & byte_zero_mask);
129 u8 *start = parser_state->aml;
158 u8 *start = parser_state->aml;
159 u8 *end = parser_state->aml;
204 parser_state->aml
396 u8 *aml = parser_state->aml; local
[all...]
H A Drsmisc.c72 union aml_resource *aml,
97 aml_resource_length = acpi_ut_get_resource_length(aml);
110 source = ACPI_ADD_PTR(void, aml, info->aml_offset);
201 if (!acpi_rs_get_address_common(resource, aml)) {
214 destination, aml, NULL);
228 (acpi_rs_length) (((item_count - 1) * sizeof(u32)) + info->value), destination, aml, target);
325 union aml_resource *aml,
349 destination = ACPI_ADD_PTR(void, aml, info->aml_offset);
354 ACPI_MEMSET(aml, 0, INIT_RESOURCE_LENGTH(info));
357 aml_length, aml); local
71 acpi_rs_convert_aml_to_resource(struct acpi_resource *resource, union aml_resource *aml, struct acpi_rsconvert_info *info) argument
324 acpi_rs_convert_resource_to_aml(struct acpi_resource *resource, union aml_resource *aml, struct acpi_rsconvert_info *info) argument
[all...]
H A Drsutils.c195 union aml_resource *aml)
204 (total_length - acpi_ut_get_resource_header_length(aml));
208 if (aml->small_header.descriptor_type & ACPI_RESOURCE_NAME_LARGE) {
212 ACPI_MOVE_16_TO_16(&aml->large_header.resource_length,
217 aml->small_header.descriptor_type = (u8)
220 ((aml->small_header.
247 union aml_resource *aml)
253 aml->small_header.descriptor_type = descriptor_type;
257 acpi_rs_set_resource_length(total_length, aml);
315 union aml_resource * aml, cha
194 acpi_rs_set_resource_length(acpi_rsdesc_size total_length, union aml_resource *aml) argument
245 acpi_rs_set_resource_header(u8 descriptor_type, acpi_rsdesc_size total_length, union aml_resource *aml) argument
312 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
399 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.c308 union aml_resource *aml)
314 if ((aml->address.resource_type > 2)
315 && (aml->address.resource_type < 0xC0)) {
321 (void)acpi_rs_convert_aml_to_resource(resource, aml,
327 (void)acpi_rs_convert_aml_to_resource(resource, aml,
330 (void)acpi_rs_convert_aml_to_resource(resource, aml,
336 aml->address.specific_flags;
357 acpi_rs_set_address_common(union aml_resource *aml, argument
364 (void)acpi_rs_convert_resource_to_aml(resource, aml,
370 (void)acpi_rs_convert_resource_to_aml(resource, aml,
307 acpi_rs_get_address_common(struct acpi_resource *resource, union aml_resource *aml) argument
[all...]
H A Dpsparse.c103 u8 *aml; local
106 aml = parser_state->aml;
107 opcode = (u16) ACPI_GET8(aml);
113 aml++;
114 opcode = (u16) ((opcode << 8) | ACPI_GET8(aml));
341 parser_state->aml = parser_state->aml_end;
347 parser_state->aml = walk_state->aml_last_while;
354 parser_state->aml = walk_state->aml_last_while;
360 parser_state->aml
[all...]
H A Dacresrc.h210 acpi_rs_convert_aml_to_resources(u8 * aml,
222 acpi_rs_set_address_common(union aml_resource *aml,
227 union aml_resource *aml);
234 union aml_resource *aml,
239 union aml_resource *aml,
257 union aml_resource *aml, char *string_ptr);
260 acpi_rs_set_resource_source(union aml_resource *aml,
267 union aml_resource *aml);
271 union aml_resource *aml);
H A Dpsloop.c111 (u32) ACPI_PTR_DIFF(walk_state->parser_state.aml,
140 walk_state->opcode, walk_state->parser_state.aml,
143 ACPI_DUMP_BUFFER(walk_state->parser_state.aml, 128);
147 walk_state->parser_state.aml++;
154 walk_state->parser_state.aml +=
436 (u32) ACPI_PTR_DIFF(walk_state->parser_state.aml,
500 walk_state->parser_state.aml =
543 op->named.data = walk_state->parser_state.aml;
546 walk_state->parser_state.aml);
550 walk_state->parser_state.aml
[all...]
H A Dacutils.h81 acpi_status(*acpi_walk_aml_callback) (u8 * aml,
506 acpi_ut_walk_aml_resources(u8 * aml,
511 acpi_status acpi_ut_validate_resource(void *aml, u8 * return_index);
513 u32 acpi_ut_get_descriptor_length(void *aml);
515 u16 acpi_ut_get_resource_length(void *aml);
517 u8 acpi_ut_get_resource_header_length(void *aml);
519 u8 acpi_ut_get_resource_type(void *aml);
H A Dnsxfname.c535 parser_state.aml = buffer + sizeof(struct acpi_table_header);
543 parser_state.aml += acpi_ps_get_opcode_size(opcode);
546 method_flags = *parser_state.aml++;
547 aml_start = parser_state.aml;
H A Dpsscope.c87 ((parser_state->aml >= parser_state->scope->parse_scope.arg_end
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/net/can/
H A Dbfin_can.c135 bfin_write16(&reg->msk[RECEIVE_STD_CHL + i].aml, 0xFFFF);
144 bfin_write16(&reg->msk[RECEIVE_EXT_CHL + i].aml, 0xFFFF);

Completed in 99 milliseconds

12