Files
Kevin 68d74d3181 avionic design with actual uboot and tooling
submodule of avionic design uboot bootloader and with included tools to
get you started , read readme.md and readme-tk1-loader.md
2026-03-03 21:46:32 +02:00

27 lines
407 B
C

/**
* (C) Copyright 2014, Cavium Inc.
*
* SPDX-License-Identifier: GPL-2.0+
**/
#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