utclib.c 20.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
/******************************************************************************
 *
 * Module Name: cmclib - Local implementation of C library functions
 *
 *****************************************************************************/

/*
 * Copyright (C) 2000 - 2012, Intel Corp.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

#include <acpi/acpi.h>
#include "accommon.h"

/*
 * These implementations of standard C Library routines can optionally be
 * used if a C library is not available.  In general, they are less efficient
 * than an inline or assembly implementation
 */

#define _COMPONENT          ACPI_UTILITIES
ACPI_MODULE_NAME("cmclib")

#ifndef ACPI_USE_SYSTEM_CLIBRARY
#define NEGATIVE    1
#define POSITIVE    0
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_memcmp (memcmp)
 *
 * PARAMETERS:  buffer1         - First Buffer
 *              buffer2         - Second Buffer
 *              count           - Maximum # of bytes to compare
 *
 * RETURN:      Index where Buffers mismatched, or 0 if Buffers matched
 *
 * DESCRIPTION: Compare two Buffers, with a maximum length
 *
 ******************************************************************************/
int acpi_ut_memcmp(const char *buffer1, const char *buffer2, acpi_size count)
{

	return ((count == ACPI_SIZE_MAX) ? 0 : ((unsigned char)*buffer1 -
						(unsigned char)*buffer2));
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_memcpy (memcpy)
 *
 * PARAMETERS:  dest        - Target of the copy
 *              src         - Source buffer to copy
 *              count       - Number of bytes to copy
 *
 * RETURN:      Dest
 *
 * DESCRIPTION: Copy arbitrary bytes of memory
 *
 ******************************************************************************/

void *acpi_ut_memcpy(void *dest, const void *src, acpi_size count)
{
	char *new = (char *)dest;
	char *old = (char *)src;

	while (count) {
		*new = *old;
		new++;
		old++;
		count--;
	}

	return (dest);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_memset (memset)
 *
 * PARAMETERS:  dest        - Buffer to set
 *              value       - Value to set each byte of memory
 *              count       - Number of bytes to set
 *
 * RETURN:      Dest
 *
 * DESCRIPTION: Initialize a buffer to a known value.
 *
 ******************************************************************************/

void *acpi_ut_memset(void *dest, u8 value, acpi_size count)
{
	char *new = (char *)dest;

	while (count) {
		*new = (char)value;
		new++;
		count--;
	}

	return (dest);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_strlen (strlen)
 *
 * PARAMETERS:  string              - Null terminated string
 *
 * RETURN:      Length
 *
 * DESCRIPTION: Returns the length of the input string
 *
 ******************************************************************************/

acpi_size acpi_ut_strlen(const char *string)
{
	u32 length = 0;

	/* Count the string until a null is encountered */

	while (*string) {
		length++;
		string++;
	}

	return (length);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_strcpy (strcpy)
 *
 * PARAMETERS:  dst_string      - Target of the copy
 *              src_string      - The source string to copy
 *
 * RETURN:      dst_string
 *
 * DESCRIPTION: Copy a null terminated string
 *
 ******************************************************************************/

char *acpi_ut_strcpy(char *dst_string, const char *src_string)
{
	char *string = dst_string;

	/* Move bytes brute force */

	while (*src_string) {
		*string = *src_string;

		string++;
		src_string++;
	}

	/* Null terminate */

	*string = 0;
	return (dst_string);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_strncpy (strncpy)
 *
 * PARAMETERS:  dst_string      - Target of the copy
 *              src_string      - The source string to copy
 *              count           - Maximum # of bytes to copy
 *
 * RETURN:      dst_string
 *
 * DESCRIPTION: Copy a null terminated string, with a maximum length
 *
 ******************************************************************************/

char *acpi_ut_strncpy(char *dst_string, const char *src_string, acpi_size count)
{
	char *string = dst_string;

	/* Copy the string */

	for (string = dst_string;
	     count && (count--, (*string++ = *src_string++));) {;
	}

	/* Pad with nulls if necessary */

	while (count--) {
		*string = 0;
		string++;
	}

	/* Return original pointer */

	return (dst_string);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_strcmp (strcmp)
 *
 * PARAMETERS:  string1         - First string
 *              string2         - Second string
 *
 * RETURN:      Index where strings mismatched, or 0 if strings matched
 *
 * DESCRIPTION: Compare two null terminated strings
 *
 ******************************************************************************/

int acpi_ut_strcmp(const char *string1, const char *string2)
{

	for (; (*string1 == *string2); string2++) {
		if (!*string1++) {
			return (0);
		}
	}

	return ((unsigned char)*string1 - (unsigned char)*string2);
}

#ifdef ACPI_FUTURE_IMPLEMENTATION
/* Not used at this time */
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_strchr (strchr)
 *
 * PARAMETERS:  string          - Search string
 *              ch              - character to search for
 *
 * RETURN:      Ptr to char or NULL if not found
 *
 * DESCRIPTION: Search a string for a character
 *
 ******************************************************************************/

char *acpi_ut_strchr(const char *string, int ch)
{

	for (; (*string); string++) {
		if ((*string) == (char)ch) {
			return ((char *)string);
		}
	}

	return (NULL);
}
#endif

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_strncmp (strncmp)
 *
 * PARAMETERS:  string1         - First string
 *              string2         - Second string
 *              count           - Maximum # of bytes to compare
 *
 * RETURN:      Index where strings mismatched, or 0 if strings matched
 *
 * DESCRIPTION: Compare two null terminated strings, with a maximum length
 *
 ******************************************************************************/

int acpi_ut_strncmp(const char *string1, const char *string2, acpi_size count)
{

	for (; count-- && (*string1 == *string2); string2++) {
		if (!*string1++) {
			return (0);
		}
	}

	return ((count == ACPI_SIZE_MAX) ? 0 : ((unsigned char)*string1 -
						(unsigned char)*string2));
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_strcat (Strcat)
 *
 * PARAMETERS:  dst_string      - Target of the copy
 *              src_string      - The source string to copy
 *
 * RETURN:      dst_string
 *
 * DESCRIPTION: Append a null terminated string to a null terminated string
 *
 ******************************************************************************/

char *acpi_ut_strcat(char *dst_string, const char *src_string)
{
	char *string;

	/* Find end of the destination string */

	for (string = dst_string; *string++;) {;
	}

	/* Concatenate the string */

	for (--string; (*string++ = *src_string++);) {;
	}

	return (dst_string);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_strncat (strncat)
 *
 * PARAMETERS:  dst_string      - Target of the copy
 *              src_string      - The source string to copy
 *              count           - Maximum # of bytes to copy
 *
 * RETURN:      dst_string
 *
 * DESCRIPTION: Append a null terminated string to a null terminated string,
 *              with a maximum count.
 *
 ******************************************************************************/

char *acpi_ut_strncat(char *dst_string, const char *src_string, acpi_size count)
{
	char *string;

	if (count) {

		/* Find end of the destination string */

		for (string = dst_string; *string++;) {;
		}

		/* Concatenate the string */

		for (--string; (*string++ = *src_string++) && --count;) {;
		}

		/* Null terminate if necessary */

		if (!count) {
			*string = 0;
		}
	}

	return (dst_string);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_strstr (strstr)
 *
 * PARAMETERS:  string1         - Target string
 *              string2         - Substring to search for
 *
 * RETURN:      Where substring match starts, Null if no match found
 *
 * DESCRIPTION: Checks if String2 occurs in String1. This is not really a
 *              full implementation of strstr, only sufficient for command
 *              matching
 *
 ******************************************************************************/

char *acpi_ut_strstr(char *string1, char *string2)
{
	char *string;

	if (acpi_ut_strlen(string2) > acpi_ut_strlen(string1)) {
		return (NULL);
	}

	/* Walk entire string, comparing the letters */

	for (string = string1; *string2;) {
		if (*string2 != *string) {
			return (NULL);
		}

		string2++;
		string++;
	}

	return (string1);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_strtoul (strtoul)
 *
 * PARAMETERS:  string          - Null terminated string
 *              terminater      - Where a pointer to the terminating byte is
 *                                returned
 *              base            - Radix of the string
 *
 * RETURN:      Converted value
 *
 * DESCRIPTION: Convert a string into a 32-bit unsigned value.
 *              Note: use acpi_ut_strtoul64 for 64-bit integers.
 *
 ******************************************************************************/

u32 acpi_ut_strtoul(const char *string, char **terminator, u32 base)
{
	u32 converted = 0;
	u32 index;
	u32 sign;
	const char *string_start;
	u32 return_value = 0;
	acpi_status status = AE_OK;

	/*
	 * Save the value of the pointer to the buffer's first
	 * character, save the current errno value, and then
	 * skip over any white space in the buffer:
	 */
	string_start = string;
	while (ACPI_IS_SPACE(*string) || *string == '\t') {
		++string;
	}

	/*
	 * The buffer may contain an optional plus or minus sign.
	 * If it does, then skip over it but remember what is was:
	 */
	if (*string == '-') {
		sign = NEGATIVE;
		++string;
	} else if (*string == '+') {
		++string;
		sign = POSITIVE;
	} else {
		sign = POSITIVE;
	}

	/*
	 * If the input parameter Base is zero, then we need to
	 * determine if it is octal, decimal, or hexadecimal:
	 */
	if (base == 0) {
		if (*string == '0') {
			if (acpi_ut_to_lower(*(++string)) == 'x') {
				base = 16;
				++string;
			} else {
				base = 8;
			}
		} else {
			base = 10;
		}
	} else if (base < 2 || base > 36) {
		/*
		 * The specified Base parameter is not in the domain of
		 * this function:
		 */
		goto done;
	}

	/*
	 * For octal and hexadecimal bases, skip over the leading
	 * 0 or 0x, if they are present.
	 */
	if (base == 8 && *string == '0') {
		string++;
	}

	if (base == 16 &&
	    *string == '0' && acpi_ut_to_lower(*(++string)) == 'x') {
		string++;
	}

	/*
	 * Main loop: convert the string to an unsigned long:
	 */
	while (*string) {
		if (ACPI_IS_DIGIT(*string)) {
			index = (u32)((u8)*string - '0');
		} else {
			index = (u32)acpi_ut_to_upper(*string);
			if (ACPI_IS_UPPER(index)) {
				index = index - 'A' + 10;
			} else {
				goto done;
			}
		}

		if (index >= base) {
			goto done;
		}

		/*
		 * Check to see if value is out of range:
		 */

		if (return_value > ((ACPI_UINT32_MAX - (u32)index) / (u32)base)) {
			status = AE_ERROR;
			return_value = 0;	/* reset */
		} else {
			return_value *= base;
			return_value += index;
			converted = 1;
		}

		++string;
	}

      done:
	/*
	 * If appropriate, update the caller's pointer to the next
	 * unconverted character in the buffer.
	 */
	if (terminator) {
		if (converted == 0 && return_value == 0 && string != NULL) {
			*terminator = (char *)string_start;
		} else {
			*terminator = (char *)string;
		}
	}

	if (status == AE_ERROR) {
		return_value = ACPI_UINT32_MAX;
	}

	/*
	 * If a minus sign was present, then "the conversion is negated":
	 */
	if (sign == NEGATIVE) {
		return_value = (ACPI_UINT32_MAX - return_value) + 1;
	}

	return (return_value);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_to_upper (TOUPPER)
 *
 * PARAMETERS:  c           - Character to convert
 *
 * RETURN:      Converted character as an int
 *
 * DESCRIPTION: Convert character to uppercase
 *
 ******************************************************************************/

int acpi_ut_to_upper(int c)
{

	return (ACPI_IS_LOWER(c) ? ((c) - 0x20) : (c));
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_to_lower (TOLOWER)
 *
 * PARAMETERS:  c           - Character to convert
 *
 * RETURN:      Converted character as an int
 *
 * DESCRIPTION: Convert character to lowercase
 *
 ******************************************************************************/

int acpi_ut_to_lower(int c)
{

	return (ACPI_IS_UPPER(c) ? ((c) + 0x20) : (c));
}

/*******************************************************************************
 *
 * FUNCTION:    is* functions
 *
 * DESCRIPTION: is* functions use the ctype table below
 *
 ******************************************************************************/

const u8 _acpi_ctype[257] = {
	_ACPI_CN,		/* 0x0      0.     */
	_ACPI_CN,		/* 0x1      1.     */
	_ACPI_CN,		/* 0x2      2.     */
	_ACPI_CN,		/* 0x3      3.     */
	_ACPI_CN,		/* 0x4      4.     */
	_ACPI_CN,		/* 0x5      5.     */
	_ACPI_CN,		/* 0x6      6.     */
	_ACPI_CN,		/* 0x7      7.     */
	_ACPI_CN,		/* 0x8      8.     */
	_ACPI_CN | _ACPI_SP,	/* 0x9      9.     */
	_ACPI_CN | _ACPI_SP,	/* 0xA     10.     */
	_ACPI_CN | _ACPI_SP,	/* 0xB     11.     */
	_ACPI_CN | _ACPI_SP,	/* 0xC     12.     */
	_ACPI_CN | _ACPI_SP,	/* 0xD     13.     */
	_ACPI_CN,		/* 0xE     14.     */
	_ACPI_CN,		/* 0xF     15.     */
	_ACPI_CN,		/* 0x10    16.     */
	_ACPI_CN,		/* 0x11    17.     */
	_ACPI_CN,		/* 0x12    18.     */
	_ACPI_CN,		/* 0x13    19.     */
	_ACPI_CN,		/* 0x14    20.     */
	_ACPI_CN,		/* 0x15    21.     */
	_ACPI_CN,		/* 0x16    22.     */
	_ACPI_CN,		/* 0x17    23.     */
	_ACPI_CN,		/* 0x18    24.     */
	_ACPI_CN,		/* 0x19    25.     */
	_ACPI_CN,		/* 0x1A    26.     */
	_ACPI_CN,		/* 0x1B    27.     */
	_ACPI_CN,		/* 0x1C    28.     */
	_ACPI_CN,		/* 0x1D    29.     */
	_ACPI_CN,		/* 0x1E    30.     */
	_ACPI_CN,		/* 0x1F    31.     */
	_ACPI_XS | _ACPI_SP,	/* 0x20    32. ' ' */
	_ACPI_PU,		/* 0x21    33. '!' */
	_ACPI_PU,		/* 0x22    34. '"' */
	_ACPI_PU,		/* 0x23    35. '#' */
	_ACPI_PU,		/* 0x24    36. '$' */
	_ACPI_PU,		/* 0x25    37. '%' */
	_ACPI_PU,		/* 0x26    38. '&' */
	_ACPI_PU,		/* 0x27    39. ''' */
	_ACPI_PU,		/* 0x28    40. '(' */
	_ACPI_PU,		/* 0x29    41. ')' */
	_ACPI_PU,		/* 0x2A    42. '*' */
	_ACPI_PU,		/* 0x2B    43. '+' */
	_ACPI_PU,		/* 0x2C    44. ',' */
	_ACPI_PU,		/* 0x2D    45. '-' */
	_ACPI_PU,		/* 0x2E    46. '.' */
	_ACPI_PU,		/* 0x2F    47. '/' */
	_ACPI_XD | _ACPI_DI,	/* 0x30    48. '0' */
	_ACPI_XD | _ACPI_DI,	/* 0x31    49. '1' */
	_ACPI_XD | _ACPI_DI,	/* 0x32    50. '2' */
	_ACPI_XD | _ACPI_DI,	/* 0x33    51. '3' */
	_ACPI_XD | _ACPI_DI,	/* 0x34    52. '4' */
	_ACPI_XD | _ACPI_DI,	/* 0x35    53. '5' */
	_ACPI_XD | _ACPI_DI,	/* 0x36    54. '6' */
	_ACPI_XD | _ACPI_DI,	/* 0x37    55. '7' */
	_ACPI_XD | _ACPI_DI,	/* 0x38    56. '8' */
	_ACPI_XD | _ACPI_DI,	/* 0x39    57. '9' */
	_ACPI_PU,		/* 0x3A    58. ':' */
	_ACPI_PU,		/* 0x3B    59. ';' */
	_ACPI_PU,		/* 0x3C    60. '<' */
	_ACPI_PU,		/* 0x3D    61. '=' */
	_ACPI_PU,		/* 0x3E    62. '>' */
	_ACPI_PU,		/* 0x3F    63. '?' */
	_ACPI_PU,		/* 0x40    64. '@' */
	_ACPI_XD | _ACPI_UP,	/* 0x41    65. 'A' */
	_ACPI_XD | _ACPI_UP,	/* 0x42    66. 'B' */
	_ACPI_XD | _ACPI_UP,	/* 0x43    67. 'C' */
	_ACPI_XD | _ACPI_UP,	/* 0x44    68. 'D' */
	_ACPI_XD | _ACPI_UP,	/* 0x45    69. 'E' */
	_ACPI_XD | _ACPI_UP,	/* 0x46    70. 'F' */
	_ACPI_UP,		/* 0x47    71. 'G' */
	_ACPI_UP,		/* 0x48    72. 'H' */
	_ACPI_UP,		/* 0x49    73. 'I' */
	_ACPI_UP,		/* 0x4A    74. 'J' */
	_ACPI_UP,		/* 0x4B    75. 'K' */
	_ACPI_UP,		/* 0x4C    76. 'L' */
	_ACPI_UP,		/* 0x4D    77. 'M' */
	_ACPI_UP,		/* 0x4E    78. 'N' */
	_ACPI_UP,		/* 0x4F    79. 'O' */
	_ACPI_UP,		/* 0x50    80. 'P' */
	_ACPI_UP,		/* 0x51    81. 'Q' */
	_ACPI_UP,		/* 0x52    82. 'R' */
	_ACPI_UP,		/* 0x53    83. 'S' */
	_ACPI_UP,		/* 0x54    84. 'T' */
	_ACPI_UP,		/* 0x55    85. 'U' */
	_ACPI_UP,		/* 0x56    86. 'V' */
	_ACPI_UP,		/* 0x57    87. 'W' */
	_ACPI_UP,		/* 0x58    88. 'X' */
	_ACPI_UP,		/* 0x59    89. 'Y' */
	_ACPI_UP,		/* 0x5A    90. 'Z' */
	_ACPI_PU,		/* 0x5B    91. '[' */
	_ACPI_PU,		/* 0x5C    92. '\' */
	_ACPI_PU,		/* 0x5D    93. ']' */
	_ACPI_PU,		/* 0x5E    94. '^' */
	_ACPI_PU,		/* 0x5F    95. '_' */
	_ACPI_PU,		/* 0x60    96. '`' */
	_ACPI_XD | _ACPI_LO,	/* 0x61    97. 'a' */
	_ACPI_XD | _ACPI_LO,	/* 0x62    98. 'b' */
	_ACPI_XD | _ACPI_LO,	/* 0x63    99. 'c' */
	_ACPI_XD | _ACPI_LO,	/* 0x64   100. 'd' */
	_ACPI_XD | _ACPI_LO,	/* 0x65   101. 'e' */
	_ACPI_XD | _ACPI_LO,	/* 0x66   102. 'f' */
	_ACPI_LO,		/* 0x67   103. 'g' */
	_ACPI_LO,		/* 0x68   104. 'h' */
	_ACPI_LO,		/* 0x69   105. 'i' */
	_ACPI_LO,		/* 0x6A   106. 'j' */
	_ACPI_LO,		/* 0x6B   107. 'k' */
	_ACPI_LO,		/* 0x6C   108. 'l' */
	_ACPI_LO,		/* 0x6D   109. 'm' */
	_ACPI_LO,		/* 0x6E   110. 'n' */
	_ACPI_LO,		/* 0x6F   111. 'o' */
	_ACPI_LO,		/* 0x70   112. 'p' */
	_ACPI_LO,		/* 0x71   113. 'q' */
	_ACPI_LO,		/* 0x72   114. 'r' */
	_ACPI_LO,		/* 0x73   115. 's' */
	_ACPI_LO,		/* 0x74   116. 't' */
	_ACPI_LO,		/* 0x75   117. 'u' */
	_ACPI_LO,		/* 0x76   118. 'v' */
	_ACPI_LO,		/* 0x77   119. 'w' */
	_ACPI_LO,		/* 0x78   120. 'x' */
	_ACPI_LO,		/* 0x79   121. 'y' */
	_ACPI_LO,		/* 0x7A   122. 'z' */
	_ACPI_PU,		/* 0x7B   123. '{' */
	_ACPI_PU,		/* 0x7C   124. '|' */
	_ACPI_PU,		/* 0x7D   125. '}' */
	_ACPI_PU,		/* 0x7E   126. '~' */
	_ACPI_CN,		/* 0x7F   127.     */

	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,	/* 0x80 to 0x8F    */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,	/* 0x90 to 0x9F    */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,	/* 0xA0 to 0xAF    */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,	/* 0xB0 to 0xBF    */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,	/* 0xC0 to 0xCF    */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,	/* 0xD0 to 0xDF    */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,	/* 0xE0 to 0xEF    */
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0	/* 0xF0 to 0x100   */
};

#endif				/* ACPI_USE_SYSTEM_CLIBRARY */