[sw,rom] Save 32 bytes at top of ROM for digest

Signed-off-by: Rupert Swarbrick <rswarbrick@lowrisc.org>
diff --git a/sw/device/boot_rom/rom_link.ld b/sw/device/boot_rom/rom_link.ld
index ef277b7..6dc74e4 100644
--- a/sw/device/boot_rom/rom_link.ld
+++ b/sw/device/boot_rom/rom_link.ld
@@ -39,8 +39,9 @@
  */
 _flash_header = _flash_start;
 
+_rom_digest_size = 32;
 _chip_info_size = 128;
-_chip_info_start = ORIGIN(rom) + LENGTH(rom) - _chip_info_size;
+_chip_info_start = ORIGIN(rom) + LENGTH(rom) - _rom_digest_size - _chip_info_size;
 
 /* DV Log offset (has to be different to other boot stages). */
 _dv_log_offset = 0x0;