diff options
Diffstat (limited to 'roms/u-boot/include/cavium/atf_part.h')
-rw-r--r-- | roms/u-boot/include/cavium/atf_part.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/roms/u-boot/include/cavium/atf_part.h b/roms/u-boot/include/cavium/atf_part.h new file mode 100644 index 000000000..6c00b019c --- /dev/null +++ b/roms/u-boot/include/cavium/atf_part.h @@ -0,0 +1,25 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/** + * (C) Copyright 2014, Cavium Inc. +**/ + +#ifndef __ATF_PART_H__ +#define __ATF_PART_H__ + +struct storage_partition { + unsigned int type; + unsigned int size; + unsigned long offset; +}; + +enum { + PARTITION_NBL1FW_REST = 0, + PARTITION_BL2_BL31 = 1, + PARTITION_UBOOT = 2, + PARTITION_UEFI = 2, + PARTITION_KERNEL = 3, + PARTITION_DEVICE_TREE = 4, + PARTITION_LAST, +}; + +#endif |