blob: 4ea68daff8e95a6d4df399ecd12001e6498e79e3 [file] [log] [blame]
Jerry Zhang769a9c12018-05-15 17:02:50 -07001/*
2 * Copyright (C) 2018 The Android Open Source Project
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#pragma once
17
18#define FB_CMD_GETVAR "getvar"
19#define FB_CMD_DOWNLOAD "download"
20#define FB_CMD_UPLOAD "upload"
Jerry Zhang769a9c12018-05-15 17:02:50 -070021#define FB_CMD_FLASH "flash"
22#define FB_CMD_ERASE "erase"
23#define FB_CMD_BOOT "boot"
24#define FB_CMD_SET_ACTIVE "set_active"
25#define FB_CMD_CONTINUE "continue"
26#define FB_CMD_REBOOT "reboot"
27#define FB_CMD_SHUTDOWN "shutdown"
28#define FB_CMD_REBOOT_BOOTLOADER "reboot-bootloader"
Hridya Valsarajudea91b42018-07-17 11:14:01 -070029#define FB_CMD_REBOOT_RECOVERY "reboot-recovery"
30#define FB_CMD_REBOOT_FASTBOOT "reboot-fastboot"
David Anderson0d4277d2018-07-31 13:27:37 -070031#define FB_CMD_CREATE_PARTITION "create-logical-partition"
32#define FB_CMD_DELETE_PARTITION "delete-logical-partition"
33#define FB_CMD_RESIZE_PARTITION "resize-logical-partition"
David Anderson38b3c7a2018-08-15 16:27:42 -070034#define FB_CMD_UPDATE_SUPER "update-super"
Hridya Valsarajua15fe312018-09-14 13:58:21 -070035#define FB_CMD_OEM "oem"
David Anderson1d504e32019-01-15 14:38:20 -080036#define FB_CMD_GSI "gsi"
David Andersonab8f4662019-10-21 16:45:59 -070037#define FB_CMD_SNAPSHOT_UPDATE "snapshot-update"
Yifan Honga4eb4752021-02-16 19:37:21 -080038#define FB_CMD_FETCH "fetch"
Jerry Zhang769a9c12018-05-15 17:02:50 -070039
40#define RESPONSE_OKAY "OKAY"
41#define RESPONSE_FAIL "FAIL"
42#define RESPONSE_DATA "DATA"
43#define RESPONSE_INFO "INFO"
44
45#define FB_COMMAND_SZ 64
Bowgo Tsai27d5fb32020-02-05 10:16:21 +080046#define FB_RESPONSE_SZ 256
Jerry Zhang769a9c12018-05-15 17:02:50 -070047
48#define FB_VAR_VERSION "version"
49#define FB_VAR_VERSION_BOOTLOADER "version-bootloader"
50#define FB_VAR_VERSION_BASEBAND "version-baseband"
Bowgo Tsai99f9a382020-01-21 18:31:23 +080051#define FB_VAR_VERSION_OS "version-os"
52#define FB_VAR_VERSION_VNDK "version-vndk"
Jerry Zhang769a9c12018-05-15 17:02:50 -070053#define FB_VAR_PRODUCT "product"
54#define FB_VAR_SERIALNO "serialno"
55#define FB_VAR_SECURE "secure"
56#define FB_VAR_UNLOCKED "unlocked"
57#define FB_VAR_CURRENT_SLOT "current-slot"
58#define FB_VAR_MAX_DOWNLOAD_SIZE "max-download-size"
59#define FB_VAR_HAS_SLOT "has-slot"
60#define FB_VAR_SLOT_COUNT "slot-count"
61#define FB_VAR_PARTITION_SIZE "partition-size"
Hridya Valsarajubf9f8d12018-09-05 16:57:24 -070062#define FB_VAR_PARTITION_TYPE "partition-type"
Hridya Valsaraju31d2c262018-07-20 13:35:50 -070063#define FB_VAR_SLOT_SUCCESSFUL "slot-successful"
64#define FB_VAR_SLOT_UNBOOTABLE "slot-unbootable"
David Anderson0d4277d2018-07-31 13:27:37 -070065#define FB_VAR_IS_LOGICAL "is-logical"
David Andersond9ba0612018-08-02 11:05:00 -070066#define FB_VAR_IS_USERSPACE "is-userspace"
David Andersonc091c172018-09-04 18:11:03 -070067#define FB_VAR_HW_REVISION "hw-revision"
Hridya Valsaraju4af80902018-09-26 13:08:16 -070068#define FB_VAR_VARIANT "variant"
Hridya Valsaraju7c9bbe92018-09-27 10:41:01 -070069#define FB_VAR_OFF_MODE_CHARGE_STATE "off-mode-charge"
Hridya Valsaraju47658ca2018-09-28 11:41:22 -070070#define FB_VAR_BATTERY_VOLTAGE "battery-voltage"
Hridya Valsarajua534a5a2018-10-03 15:53:22 -070071#define FB_VAR_BATTERY_SOC_OK "battery-soc-ok"
David Anderson90fe0a42018-11-05 18:01:32 -080072#define FB_VAR_SUPER_PARTITION_NAME "super-partition-name"
David Andersonab8f4662019-10-21 16:45:59 -070073#define FB_VAR_SNAPSHOT_UPDATE_STATUS "snapshot-update-status"
Bowgo Tsai33da5c92019-11-13 17:13:49 +080074#define FB_VAR_CPU_ABI "cpu-abi"
Bowgo Tsai99f9a382020-01-21 18:31:23 +080075#define FB_VAR_SYSTEM_FINGERPRINT "system-fingerprint"
76#define FB_VAR_VENDOR_FINGERPRINT "vendor-fingerprint"
77#define FB_VAR_DYNAMIC_PARTITION "dynamic-partition"
78#define FB_VAR_FIRST_API_LEVEL "first-api-level"
79#define FB_VAR_SECURITY_PATCH_LEVEL "security-patch-level"
80#define FB_VAR_TREBLE_ENABLED "treble-enabled"
Yifan Hongb299cb72021-02-17 13:44:49 -080081#define FB_VAR_MAX_FETCH_SIZE "max-fetch-size"