aboutsummaryrefslogtreecommitdiff
path: root/libflash
diff options
context:
space:
mode:
authorAlistair Popple <alistair@popple.id.au>2015-03-20 14:59:15 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2015-03-26 11:12:18 +1100
commitfc2906d321adf27db33918711b1055a8ea5b34f9 (patch)
tree609849d3bbc735d0643d9cb42fa5e2764ab8da88 /libflash
parent822403ea5dcc51a5c70c0ab061ef49adb17d82e4 (diff)
downloadskiboot-fc2906d321adf27db33918711b1055a8ea5b34f9.zip
skiboot-fc2906d321adf27db33918711b1055a8ea5b34f9.tar.gz
skiboot-fc2906d321adf27db33918711b1055a8ea5b34f9.tar.bz2
memboot: Add a memboot flash backend
memboot uses bmc system memory instead of a real flash chip. This patch adds a flash backend for bmc system memory to allow use of the memboot tool (in external/memboot) to boot the system. Signed-off-by: Alistair Popple <alistair@popple.id.au> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'libflash')
-rw-r--r--libflash/libflash.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libflash/libflash.c b/libflash/libflash.c
index a229668..5b8a0ac 100644
--- a/libflash/libflash.c
+++ b/libflash/libflash.c
@@ -33,6 +33,7 @@ static const struct flash_info flash_info[] = {
FL_ERASE_BULK | FL_MICRON_BUGS,
"Micron N25Qx512Ax" },
{ 0x55aa55, 0x00100000, FL_ERASE_ALL | FL_CAN_4B, "TEST_FLASH" },
+ { 0xaa55aa, 0x02000000, FL_ERASE_ALL | FL_CAN_4B, "EMULATED_FLASH"},
};
struct flash_chip {