summaryrefslogtreecommitdiff
path: root/src/include/program_loading.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/program_loading.h')
-rw-r--r--src/include/program_loading.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/program_loading.h b/src/include/program_loading.h
index 7aba30214c..2e8364604a 100644
--- a/src/include/program_loading.h
+++ b/src/include/program_loading.h
@@ -65,6 +65,7 @@ struct prog {
* payload. For architectures that use a bounce buffer
* then it would represent the bounce buffer. */
enum prog_type type;
+ uint32_t cbfs_type;
const char *name;
struct region_device rdev;
/* Entry to program with optional argument. It's up to the architecture
@@ -89,6 +90,11 @@ static inline enum prog_type prog_type(const struct prog *prog)
return prog->type;
}
+static inline uint32_t prog_cbfs_type(const struct prog *prog)
+{
+ return prog->cbfs_type;
+}
+
static inline struct region_device *prog_rdev(struct prog *prog)
{
return &prog->rdev;