OpenCores
URL https://opencores.org/ocsvn/neorv32/neorv32/trunk

Subversion Repositories neorv32

[/] [neorv32/] [trunk/] [docs/] [datasheet/] [soc_bootrom.adoc] - Diff between revs 61 and 72

Only display areas with differences | Details | Blame | View Log

Rev 61 Rev 72
<<<
<<<
:sectnums:
:sectnums:
==== Bootloader ROM (BOOTROM)
==== Bootloader ROM (BOOTROM)
[cols="<3,<3,<4"]
[cols="<3,<3,<4"]
[frame="topbot",grid="none"]
[frame="topbot",grid="none"]
|=======================
|=======================
| Hardware source file(s): | neorv32_boot_rom.vhd |
| Hardware source file(s): | neorv32_boot_rom.vhd |
| Software driver file(s): | none             | _implicitly used_
| Software driver file(s): | none             | _implicitly used_
| Top entity port:         | none             |
| Top entity port:         | none             |
| Configuration generics:  | _INT_BOOTLOADER_EN_ | implement processor-internal bootloader when _true_
| Configuration generics:  | _INT_BOOTLOADER_EN_ | implement processor-internal bootloader when _true_
| CPU interrupts:          | none             |
| CPU interrupts:          | none             |
|=======================
|=======================
[NOTE]
[NOTE]
The default `neorv32_boot_rom.vhd` HDL source file provides a _generic_ memory design that infers embedded
The default `neorv32_boot_rom.vhd` HDL source file provides a _generic_ memory design that infers embedded
memory for _larger_ memory configurations. You might need to replace/modify the source file in order to use
memory for _larger_ memory configurations. You might need to replace/modify the source file in order to use
platform-specific features (like advanced memory resources) or to improve technology mapping and/or timing.
platform-specific features (like advanced memory resources) or to improve technology mapping and/or timing.
This HDL modules provides a read-only memory that contain the executable code image of the bootloader.
This HDL modules provides a read-only memory that contain the executable code image of the bootloader.
If the <<_int_bootloader_en>> generic is _true_ this module will be implemented and the CPU boot address
If the <<_int_bootloader_en>> generic is _true_ this module will be implemented and the CPU boot address
is modified to directly execute the code from the bootloader ROM after reset.
is modified to directly execute the code from the bootloader ROM after reset.
The bootloader ROM is located at address `0xFFFF0000` and can occupy a address space of up to 32kB. The base
The bootloader ROM is located at address `0xFFFF0000` and can occupy a address space of up to 32kB. The base
address as well as the maximum address space size are fixed and cannot (should not!) be modified as this
address as well as the maximum address space size are fixed and cannot (should not!) be modified as this
might address collision with other processor modules.
might address collision with other processor modules.
The bootloader memory is _read-only_ and is automatically initialized with the bootloader executable image
The bootloader memory is _read-only_ and is automatically initialized with the bootloader executable image
`rtl/core/neorv32_bootloader_image.vhd` during synthesis. The actual _physical_ size of the ROM is also
`rtl/core/neorv32_bootloader_image.vhd` during synthesis. The actual _physical_ size of the ROM is also
determined via synthesis and expanded to the next power of two. For example, if the bootloader code requires
determined via synthesis and expanded to the next power of two. For example, if the bootloader code requires
10kB of storage, a ROM with 16kB will be generated. The maximum size must not exceed 32kB.
10kB of storage, a ROM with 16kB will be generated. The maximum size must not exceed 32kB.
 
 
 
[NOTE]
 
Any write access to the BOOTROM will raise a _store access fault_ exception.
 
 
.Bootloader - Software
.Bootloader - Software
[TIP]
[TIP]
See section <<_bootloader>> for more information regarding the actual bootloader software/executable itself.
See section <<_bootloader>> for more information regarding the actual bootloader software/executable itself.
.Boot Configuration
.Boot Configuration
[TIP]
[TIP]
See section <<_boot_configuration>> for more information regarding the processor's different boot scenarios.
See section <<_boot_configuration>> for more information regarding the processor's different boot scenarios.
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.