1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #include <boot_device.h>
5 * 0x80000000 is this start of RAM. We currently need to load coreboot.rom into
6 * RAM on SPIKE, because SPIKE doesn't support loading custom code into the
9 static const struct mem_region_device boot_dev
=
10 MEM_REGION_DEV_RO_INIT(0x80000000, CONFIG_ROM_SIZE
);
12 const struct region_device
*boot_device_ro(void)
14 return &boot_dev
.rdev
;