blob: cc517dc1de9ec8b7372aacf1f408666bfb27cc82 [file] [log] [blame]
Simon Glass77459f42024-08-07 16:47:27 -06001/* 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 */
13extern const char *const bootmode_names[UPLBM_COUNT];
14
15/* Names of memory usages */
16extern const char *const usage_names[UPLUS_COUNT];
17
18/* Names of access types */
19extern const char *const access_types[UPLUS_COUNT];
20
21/* Names of graphics formats */
22extern const char *const graphics_formats[UPLUS_COUNT];
23
24#endif /* __UPL_COMMON_H */