1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * UPL handoff command functions 4 * 5 * Copyright 2024 Google LLC 6 * Written by Simon Glass <sjg@chromium.org> 7 */ 8 9 #ifndef __UPL_COMMON_H 10 #define __UPL_COMMON_H 11 12 /* Names of bootmodes */ 13 extern const char *const bootmode_names[UPLBM_COUNT]; 14 15 /* Names of memory usages */ 16 extern const char *const usage_names[UPLUS_COUNT]; 17 18 /* Names of access types */ 19 extern const char *const access_types[UPLUS_COUNT]; 20 21 /* Names of graphics formats */ 22 extern const char *const graphics_formats[UPLUS_COUNT]; 23 24 #endif /* __UPL_COMMON_H */ 25