Vijay Khemka | a2d52f1 | 2019-03-27 14:54:00 -0700 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (c) 2018-present Facebook. All Rights Reserved. |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #pragma once |
| 18 | |
| 19 | enum fb_app_cmds |
| 20 | { |
| 21 | CMD_APP_SET_ACPI = 0x06, |
| 22 | CMD_APP_GET_ACPI = 0x07, |
| 23 | CMD_APP_GET_DEV_GUID = 0x08, |
| 24 | CMD_APP_RESET_WD = 0x22, |
| 25 | CMD_APP_SET_WD = 0x24, |
| 26 | CMD_APP_GET_WD = 0x25, |
| 27 | CMD_APP_SET_GLOBAL_ENABLES = 0x2E, |
| 28 | CMD_APP_GET_GLOBAL_ENABLES = 0x2F, |
| 29 | CMD_APP_GET_MSG_FLAGS = 0x31, |
| 30 | CMD_APP_READ_EVENT = 0x35, |
| 31 | CMD_APP_GET_CAP_BIT = 0x36, |
| 32 | CMD_APP_GET_SYS_GUID = 0x37, |
| 33 | CMD_APP_SET_CHAN_ACCESS = 0x40, |
| 34 | CMD_APP_GET_CHANNEL_ACCESS = 0x41, |
| 35 | CMD_APP_GET_CHAN_INFO = 0x42, |
| 36 | |
| 37 | }; |