From cd24a6bf2183ac24080e0348e193ba627711fcbc Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sat, 10 Dec 2011 11:08:00 +0000 Subject: bootstage: Convert NAND progress numbers to enums This changes over the NAND progress numbers to use enums from bootstage.h. Signed-off-by: Simon Glass --- include/bootstage.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'include/bootstage.h') diff --git a/include/bootstage.h b/include/bootstage.h index fec3c3cb81..d58c46b893 100644 --- a/include/bootstage.h +++ b/include/bootstage.h @@ -105,6 +105,21 @@ enum bootstage_id { BOOTSTAGE_ID_IDE_CHECKSUM, /* 50 */ BOOTSTAGE_ID_IDE_READ, + + /* Boot stages related to loading a kernel from an NAND device */ + BOOTSTAGE_ID_NAND_PART, + BOOTSTAGE_ID_NAND_SUFFIX, + BOOTSTAGE_ID_NAND_BOOT_DEVICE, + BOOTSTAGE_ID_NAND_HDR_READ = 55, + BOOTSTAGE_ID_NAND_AVAILABLE = 55, + BOOTSTAGE_ID_NAND_TYPE = 57, + BOOTSTAGE_ID_NAND_READ, + + BOOTSTAGE_ID_IDE_FIT_READ = 140, + BOOTSTAGE_ID_IDE_FIT_READ_OK, + + BOOTSTAGE_ID_NAND_FIT_READ = 150, + BOOTSTAGE_ID_NAND_FIT_READ_OK, }; /* -- cgit v1.2.1