ARM: dts: sirf: add missed chhifbg node in prima2 and atlas6 dts
[linux-2.6.git] / drivers / acpi / acpica / utstring.c
blobcb1e9cc32d5f8d89e7d8ba954d5c0928a0ff5f66
1 /*******************************************************************************
3 * Module Name: utstring - Common functions for strings and characters
5 ******************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2013, Intel Corp.
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 "accommon.h"
46 #include "acnamesp.h"
48 #define _COMPONENT ACPI_UTILITIES
49 ACPI_MODULE_NAME("utstring")
52 * Non-ANSI C library functions - strlwr, strupr, stricmp, and a 64-bit
53 * version of strtoul.
55 #ifdef ACPI_ASL_COMPILER
56 /*******************************************************************************
58 * FUNCTION: acpi_ut_strlwr (strlwr)
60 * PARAMETERS: src_string - The source string to convert
62 * RETURN: None
64 * DESCRIPTION: Convert string to lowercase
66 * NOTE: This is not a POSIX function, so it appears here, not in utclib.c
68 ******************************************************************************/
69 void acpi_ut_strlwr(char *src_string)
71 char *string;
73 ACPI_FUNCTION_ENTRY();
75 if (!src_string) {
76 return;
79 /* Walk entire string, lowercasing the letters */
81 for (string = src_string; *string; string++) {
82 *string = (char)ACPI_TOLOWER(*string);
85 return;
88 /******************************************************************************
90 * FUNCTION: acpi_ut_stricmp (stricmp)
92 * PARAMETERS: string1 - first string to compare
93 * string2 - second string to compare
95 * RETURN: int that signifies string relationship. Zero means strings
96 * are equal.
98 * DESCRIPTION: Implementation of the non-ANSI stricmp function (compare
99 * strings with no case sensitivity)
101 ******************************************************************************/
103 int acpi_ut_stricmp(char *string1, char *string2)
105 int c1;
106 int c2;
108 do {
109 c1 = tolower((int)*string1);
110 c2 = tolower((int)*string2);
112 string1++;
113 string2++;
115 while ((c1 == c2) && (c1));
117 return (c1 - c2);
119 #endif
121 /*******************************************************************************
123 * FUNCTION: acpi_ut_strupr (strupr)
125 * PARAMETERS: src_string - The source string to convert
127 * RETURN: None
129 * DESCRIPTION: Convert string to uppercase
131 * NOTE: This is not a POSIX function, so it appears here, not in utclib.c
133 ******************************************************************************/
135 void acpi_ut_strupr(char *src_string)
137 char *string;
139 ACPI_FUNCTION_ENTRY();
141 if (!src_string) {
142 return;
145 /* Walk entire string, uppercasing the letters */
147 for (string = src_string; *string; string++) {
148 *string = (char)ACPI_TOUPPER(*string);
151 return;
154 /*******************************************************************************
156 * FUNCTION: acpi_ut_strtoul64
158 * PARAMETERS: string - Null terminated string
159 * base - Radix of the string: 16 or ACPI_ANY_BASE;
160 * ACPI_ANY_BASE means 'in behalf of to_integer'
161 * ret_integer - Where the converted integer is returned
163 * RETURN: Status and Converted value
165 * DESCRIPTION: Convert a string into an unsigned value. Performs either a
166 * 32-bit or 64-bit conversion, depending on the current mode
167 * of the interpreter.
168 * NOTE: Does not support Octal strings, not needed.
170 ******************************************************************************/
172 acpi_status acpi_ut_strtoul64(char *string, u32 base, u64 *ret_integer)
174 u32 this_digit = 0;
175 u64 return_value = 0;
176 u64 quotient;
177 u64 dividend;
178 u32 to_integer_op = (base == ACPI_ANY_BASE);
179 u32 mode32 = (acpi_gbl_integer_byte_width == 4);
180 u8 valid_digits = 0;
181 u8 sign_of0x = 0;
182 u8 term = 0;
184 ACPI_FUNCTION_TRACE_STR(ut_stroul64, string);
186 switch (base) {
187 case ACPI_ANY_BASE:
188 case 16:
190 break;
192 default:
194 /* Invalid Base */
196 return_ACPI_STATUS(AE_BAD_PARAMETER);
199 if (!string) {
200 goto error_exit;
203 /* Skip over any white space in the buffer */
205 while ((*string) && (ACPI_IS_SPACE(*string) || *string == '\t')) {
206 string++;
209 if (to_integer_op) {
211 * Base equal to ACPI_ANY_BASE means 'ToInteger operation case'.
212 * We need to determine if it is decimal or hexadecimal.
214 if ((*string == '0') && (ACPI_TOLOWER(*(string + 1)) == 'x')) {
215 sign_of0x = 1;
216 base = 16;
218 /* Skip over the leading '0x' */
219 string += 2;
220 } else {
221 base = 10;
225 /* Any string left? Check that '0x' is not followed by white space. */
227 if (!(*string) || ACPI_IS_SPACE(*string) || *string == '\t') {
228 if (to_integer_op) {
229 goto error_exit;
230 } else {
231 goto all_done;
236 * Perform a 32-bit or 64-bit conversion, depending upon the current
237 * execution mode of the interpreter
239 dividend = (mode32) ? ACPI_UINT32_MAX : ACPI_UINT64_MAX;
241 /* Main loop: convert the string to a 32- or 64-bit integer */
243 while (*string) {
244 if (ACPI_IS_DIGIT(*string)) {
246 /* Convert ASCII 0-9 to Decimal value */
248 this_digit = ((u8)*string) - '0';
249 } else if (base == 10) {
251 /* Digit is out of range; possible in to_integer case only */
253 term = 1;
254 } else {
255 this_digit = (u8)ACPI_TOUPPER(*string);
256 if (ACPI_IS_XDIGIT((char)this_digit)) {
258 /* Convert ASCII Hex char to value */
260 this_digit = this_digit - 'A' + 10;
261 } else {
262 term = 1;
266 if (term) {
267 if (to_integer_op) {
268 goto error_exit;
269 } else {
270 break;
272 } else if ((valid_digits == 0) && (this_digit == 0)
273 && !sign_of0x) {
275 /* Skip zeros */
276 string++;
277 continue;
280 valid_digits++;
282 if (sign_of0x
283 && ((valid_digits > 16)
284 || ((valid_digits > 8) && mode32))) {
286 * This is to_integer operation case.
287 * No any restrictions for string-to-integer conversion,
288 * see ACPI spec.
290 goto error_exit;
293 /* Divide the digit into the correct position */
295 (void)acpi_ut_short_divide((dividend - (u64)this_digit),
296 base, &quotient, NULL);
298 if (return_value > quotient) {
299 if (to_integer_op) {
300 goto error_exit;
301 } else {
302 break;
306 return_value *= base;
307 return_value += this_digit;
308 string++;
311 /* All done, normal exit */
313 all_done:
315 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Converted value: %8.8X%8.8X\n",
316 ACPI_FORMAT_UINT64(return_value)));
318 *ret_integer = return_value;
319 return_ACPI_STATUS(AE_OK);
321 error_exit:
322 /* Base was set/validated above */
324 if (base == 10) {
325 return_ACPI_STATUS(AE_BAD_DECIMAL_CONSTANT);
326 } else {
327 return_ACPI_STATUS(AE_BAD_HEX_CONSTANT);
331 /*******************************************************************************
333 * FUNCTION: acpi_ut_print_string
335 * PARAMETERS: string - Null terminated ASCII string
336 * max_length - Maximum output length. Used to constrain the
337 * length of strings during debug output only.
339 * RETURN: None
341 * DESCRIPTION: Dump an ASCII string with support for ACPI-defined escape
342 * sequences.
344 ******************************************************************************/
346 void acpi_ut_print_string(char *string, u16 max_length)
348 u32 i;
350 if (!string) {
351 acpi_os_printf("<\"NULL STRING PTR\">");
352 return;
355 acpi_os_printf("\"");
356 for (i = 0; string[i] && (i < max_length); i++) {
358 /* Escape sequences */
360 switch (string[i]) {
361 case 0x07:
363 acpi_os_printf("\\a"); /* BELL */
364 break;
366 case 0x08:
368 acpi_os_printf("\\b"); /* BACKSPACE */
369 break;
371 case 0x0C:
373 acpi_os_printf("\\f"); /* FORMFEED */
374 break;
376 case 0x0A:
378 acpi_os_printf("\\n"); /* LINEFEED */
379 break;
381 case 0x0D:
383 acpi_os_printf("\\r"); /* CARRIAGE RETURN */
384 break;
386 case 0x09:
388 acpi_os_printf("\\t"); /* HORIZONTAL TAB */
389 break;
391 case 0x0B:
393 acpi_os_printf("\\v"); /* VERTICAL TAB */
394 break;
396 case '\'': /* Single Quote */
397 case '\"': /* Double Quote */
398 case '\\': /* Backslash */
400 acpi_os_printf("\\%c", (int)string[i]);
401 break;
403 default:
405 /* Check for printable character or hex escape */
407 if (ACPI_IS_PRINT(string[i])) {
408 /* This is a normal character */
410 acpi_os_printf("%c", (int)string[i]);
411 } else {
412 /* All others will be Hex escapes */
414 acpi_os_printf("\\x%2.2X", (s32) string[i]);
416 break;
419 acpi_os_printf("\"");
421 if (i == max_length && string[i]) {
422 acpi_os_printf("...");
426 /*******************************************************************************
428 * FUNCTION: acpi_ut_valid_acpi_char
430 * PARAMETERS: char - The character to be examined
431 * position - Byte position (0-3)
433 * RETURN: TRUE if the character is valid, FALSE otherwise
435 * DESCRIPTION: Check for a valid ACPI character. Must be one of:
436 * 1) Upper case alpha
437 * 2) numeric
438 * 3) underscore
440 * We allow a '!' as the last character because of the ASF! table
442 ******************************************************************************/
444 u8 acpi_ut_valid_acpi_char(char character, u32 position)
447 if (!((character >= 'A' && character <= 'Z') ||
448 (character >= '0' && character <= '9') || (character == '_'))) {
450 /* Allow a '!' in the last position */
452 if (character == '!' && position == 3) {
453 return (TRUE);
456 return (FALSE);
459 return (TRUE);
462 /*******************************************************************************
464 * FUNCTION: acpi_ut_valid_acpi_name
466 * PARAMETERS: name - The name to be examined. Does not have to
467 * be NULL terminated string.
469 * RETURN: TRUE if the name is valid, FALSE otherwise
471 * DESCRIPTION: Check for a valid ACPI name. Each character must be one of:
472 * 1) Upper case alpha
473 * 2) numeric
474 * 3) underscore
476 ******************************************************************************/
478 u8 acpi_ut_valid_acpi_name(char *name)
480 u32 i;
482 ACPI_FUNCTION_ENTRY();
484 for (i = 0; i < ACPI_NAME_SIZE; i++) {
485 if (!acpi_ut_valid_acpi_char(name[i], i)) {
486 return (FALSE);
490 return (TRUE);
493 /*******************************************************************************
495 * FUNCTION: acpi_ut_repair_name
497 * PARAMETERS: name - The ACPI name to be repaired
499 * RETURN: Repaired version of the name
501 * DESCRIPTION: Repair an ACPI name: Change invalid characters to '*' and
502 * return the new name. NOTE: the Name parameter must reside in
503 * read/write memory, cannot be a const.
505 * An ACPI Name must consist of valid ACPI characters. We will repair the name
506 * if necessary because we don't want to abort because of this, but we want
507 * all namespace names to be printable. A warning message is appropriate.
509 * This issue came up because there are in fact machines that exhibit
510 * this problem, and we want to be able to enable ACPI support for them,
511 * even though there are a few bad names.
513 ******************************************************************************/
515 void acpi_ut_repair_name(char *name)
517 u32 i;
518 u8 found_bad_char = FALSE;
519 u32 original_name;
521 ACPI_FUNCTION_NAME(ut_repair_name);
523 ACPI_MOVE_NAME(&original_name, name);
525 /* Check each character in the name */
527 for (i = 0; i < ACPI_NAME_SIZE; i++) {
528 if (acpi_ut_valid_acpi_char(name[i], i)) {
529 continue;
533 * Replace a bad character with something printable, yet technically
534 * still invalid. This prevents any collisions with existing "good"
535 * names in the namespace.
537 name[i] = '*';
538 found_bad_char = TRUE;
541 if (found_bad_char) {
543 /* Report warning only if in strict mode or debug mode */
545 if (!acpi_gbl_enable_interpreter_slack) {
546 ACPI_WARNING((AE_INFO,
547 "Invalid character(s) in name (0x%.8X), repaired: [%4.4s]",
548 original_name, name));
549 } else {
550 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
551 "Invalid character(s) in name (0x%.8X), repaired: [%4.4s]",
552 original_name, name));
557 #if defined ACPI_ASL_COMPILER || defined ACPI_EXEC_APP
558 /*******************************************************************************
560 * FUNCTION: ut_convert_backslashes
562 * PARAMETERS: pathname - File pathname string to be converted
564 * RETURN: Modifies the input Pathname
566 * DESCRIPTION: Convert all backslashes (0x5C) to forward slashes (0x2F) within
567 * the entire input file pathname string.
569 ******************************************************************************/
571 void ut_convert_backslashes(char *pathname)
574 if (!pathname) {
575 return;
578 while (*pathname) {
579 if (*pathname == '\\') {
580 *pathname = '/';
583 pathname++;
586 #endif