Blame view

include/cavium/atf_part.h 407 Bytes
d41ce506b   Eric Lee   Initial Release, ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  /**
   * (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