upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
407 B
27 lines
407 B
9 years ago
|
/**
|
||
|
* (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
|