diff options
| author | Simon Glass <[email protected]> | 2011-12-10 11:07:59 +0000 |
|---|---|---|
| committer | Wolfgang Denk <[email protected]> | 2012-03-18 21:24:21 +0100 |
| commit | 90e153d7709634eec903fc9c1a60878379915e33 (patch) | |
| tree | a9e2e66bc2d24f7840e223693f1f98d6cbff3e81 /include | |
| parent | 8ade95063815d8ffca7cededa6c40cddec857d38 (diff) | |
bootstage: Convert IDE progress numbers to enums
This changes over the IDE progress numbers to use enums from bootstage.h.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/bootstage.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/bootstage.h b/include/bootstage.h index a828f5c83d4..fec3c3cb81d 100644 --- a/include/bootstage.h +++ b/include/bootstage.h @@ -91,6 +91,20 @@ enum bootstage_id { BOOTSTAGE_ID_BOARD_DONE, /* Board init done, off to main loop */ /* ^^^ here ends the x86 sequence */ + /* Boot stages related to loading a kernel from an IDE device */ + BOOTSTAGE_ID_IDE_START = 41, + BOOTSTAGE_ID_IDE_ADDR, + BOOTSTAGE_ID_IDE_BOOT_DEVICE, + BOOTSTAGE_ID_IDE_TYPE, + + BOOTSTAGE_ID_IDE_PART, + BOOTSTAGE_ID_IDE_PART_INFO, + BOOTSTAGE_ID_IDE_PART_TYPE, + BOOTSTAGE_ID_IDE_PART_READ, + BOOTSTAGE_ID_IDE_FORMAT, + + BOOTSTAGE_ID_IDE_CHECKSUM, /* 50 */ + BOOTSTAGE_ID_IDE_READ, }; /* |
