blob: 6f69a4f638f8f8130fe0feab4025290f46a113fc [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
Robert Moore44f6c012005-04-18 22:49:35 -04002/******************************************************************************
3 *
4 * Name: acnames.h - Global names and strings
5 *
Bob Mooreda6f8322018-01-04 10:06:38 -08006 * Copyright (C) 2000 - 2018, Intel Corp.
Robert Moore44f6c012005-04-18 22:49:35 -04007 *
Erik Schmauss95857632018-03-14 16:13:07 -07008 *****************************************************************************/
Robert Moore44f6c012005-04-18 22:49:35 -04009
10#ifndef __ACNAMES_H__
11#define __ACNAMES_H__
12
13/* Method names - these methods can appear anywhere in the namespace */
14
Robert Moore44f6c012005-04-18 22:49:35 -040015#define METHOD_NAME__ADR "_ADR"
Zhang Rui25169b72011-11-16 17:03:54 +080016#define METHOD_NAME__AEI "_AEI"
Bob Moorebf4994a2013-10-29 09:29:34 +080017#define METHOD_NAME__BBN "_BBN"
Jiang Liuf4b57a32012-06-22 14:55:16 +080018#define METHOD_NAME__CBA "_CBA"
Bob Moorebf4994a2013-10-29 09:29:34 +080019#define METHOD_NAME__CID "_CID"
Suravee Suthikulpanitf65358e2015-07-01 14:44:04 +080020#define METHOD_NAME__CLS "_CLS"
Bob Moorebf4994a2013-10-29 09:29:34 +080021#define METHOD_NAME__CRS "_CRS"
Bob Moore5f8b35b2014-10-10 10:39:24 +080022#define METHOD_NAME__DDN "_DDN"
Bob Moore137c7832017-08-03 14:27:35 +080023#define METHOD_NAME__DMA "_DMA"
Bob Moorebf4994a2013-10-29 09:29:34 +080024#define METHOD_NAME__HID "_HID"
25#define METHOD_NAME__INI "_INI"
Bob Moorebe030a52012-08-17 13:07:54 +080026#define METHOD_NAME__PLD "_PLD"
David E. Boxa9f65e02014-07-30 12:21:26 +080027#define METHOD_NAME__DSD "_DSD"
Bob Moorebf4994a2013-10-29 09:29:34 +080028#define METHOD_NAME__PRS "_PRS"
29#define METHOD_NAME__PRT "_PRT"
30#define METHOD_NAME__PRW "_PRW"
Bob Moore36d32312014-09-02 08:27:05 +080031#define METHOD_NAME__PS0 "_PS0"
32#define METHOD_NAME__PS1 "_PS1"
33#define METHOD_NAME__PS2 "_PS2"
34#define METHOD_NAME__PS3 "_PS3"
Bob Moorebf4994a2013-10-29 09:29:34 +080035#define METHOD_NAME__REG "_REG"
36#define METHOD_NAME__SB_ "_SB_"
37#define METHOD_NAME__SEG "_SEG"
38#define METHOD_NAME__SRS "_SRS"
39#define METHOD_NAME__STA "_STA"
40#define METHOD_NAME__SUB "_SUB"
41#define METHOD_NAME__UID "_UID"
Robert Moore44f6c012005-04-18 22:49:35 -040042
43/* Method names - these methods must appear at the namespace root */
44
Bob Moore4efeeec2012-03-21 09:42:45 +080045#define METHOD_PATHNAME__PTS "\\_PTS"
46#define METHOD_PATHNAME__SST "\\_SI._SST"
47#define METHOD_PATHNAME__WAK "\\_WAK"
Robert Moore44f6c012005-04-18 22:49:35 -040048
49/* Definitions of the predefined namespace names */
50
Bob Moorea18ecf42005-08-15 03:42:00 -080051#define ACPI_UNKNOWN_NAME (u32) 0x3F3F3F3F /* Unknown name is "????" */
Bob Moorea18ecf42005-08-15 03:42:00 -080052#define ACPI_PREFIX_MIXED (u32) 0x69706341 /* "Acpi" */
53#define ACPI_PREFIX_LOWER (u32) 0x69706361 /* "acpi" */
Robert Moore44f6c012005-04-18 22:49:35 -040054
Bob Moore4032cc32018-05-08 14:06:11 -070055/* Root name stuff */
56
57#define ACPI_ROOT_NAME (u32) 0x5F5F5F5C /* Root name is "\___" */
58#define ACPI_ROOT_PATHNAME "\\___"
59#define ACPI_NAMESPACE_ROOT "Namespace Root"
Robert Moore44f6c012005-04-18 22:49:35 -040060#define ACPI_NS_ROOT_PATH "\\"
Robert Moore44f6c012005-04-18 22:49:35 -040061
Len Brown4be44fc2005-08-05 00:44:28 -040062#endif /* __ACNAMES_H__ */