Skip to content

Commit

Permalink
Merge branch 'main' into caliptra-aes
Browse files Browse the repository at this point in the history
  • Loading branch information
abejgonzalez authored Nov 3, 2023
2 parents 7525b9f + d75e028 commit 9d917d6
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
12 changes: 9 additions & 3 deletions .github/scripts/check-commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ search () {
done
}

submodules=("cva6" "boom" "ibex" "gemmini" "hwacha" "icenet" "nvdla" "rocket-chip" "sha3" "sifive-blocks" "sifive-cache" "testchipip" "riscv-sodor" "mempress" "bar-fetchers" "shuttle" "caliptra-aes-acc" "rocc-acc-utils")
submodules=("cva6" "boom" "ibex" "gemmini" "hwacha" "icenet" "nvdla" "rocket-chip" "sha3" "sifive-blocks" "sifive-cache" "testchipip" "riscv-sodor" "mempress" "bar-fetchers" "shuttle" "constellation" "fft-generator" "hardfloat" "caliptra-aes-acc" "rocc-acc-utils")
dir="generators"
branches=("master" "main" "dev")
search
Expand Down Expand Up @@ -81,14 +81,20 @@ dir="toolchains"
branches=("master")
search

submodules=("firesim")
dir="sims"
branches=("main")
search


submodules=("coremark" "firemarshal" "nvdla-workload" "spec2017")
dir="software"
branches=("master" "dev")
search

submodules=("DRAMSim2" "axe" "barstools" "dsptools" "rocket-dsp-utils" "torture")
submodules=("DRAMSim2" "axe" "barstools" "dsptools" "rocket-dsp-utils" "torture" "fixedpoint" "cde")
dir="tools"
branches=("master" "dev")
branches=("master" "dev" "main")
search

submodules=("fpga-shells")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ These additional publications cover many of the internal components used in Chip

## Acknowledgements

This work is supported by the NSF CCRI ENS Chipyard Award #201662.
This work is supported by the NSF CCRI ENS Chipyard Award #2016662.

[hwacha]:https://www2.eecs.berkeley.edu/Pubs/TechRpts/2015/EECS-2015-262.pdf
[hammer]:https://github.com/ucb-bar/hammer
Expand Down
2 changes: 1 addition & 1 deletion docs/Customization/Boot-Process.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Device Tree Binary (dtb) which details the components of the system.
The assembly for the BootROM code is located in
`generators/testchipip/src/main/resources/testchipip/bootrom/bootrom.S <https://github.com/ucb-bar/testchipip/blob/master/src/main/resources/testchipip/bootrom/bootrom.S>`_.
The BootROM address space starts at ``0x10000`` (determined by the ``BootROMParams`` key in the configuration) and execution starts at address
``0x10040`` (given by the linker script and reset vector in the ``BootROMParams``), which is marked by the ``_hang`` label in the BootROM assembly.
``0x10000`` (given by the linker script and reset vector in the ``BootROMParams``), which is marked by the ``_hang`` label in the BootROM assembly.

The Chisel generator encodes the assembled instructions into the BootROM
hardware at elaboration time, so if you want to change the BootROM code, you
Expand Down
2 changes: 1 addition & 1 deletion docs/Prototyping/Arty.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Probe an address on the target system:

.. code-block:: shell
./uart_tsi +tty=/dev/ttyUSBX +init_read=0x10040 none
./uart_tsi +tty=/dev/ttyUSBX +init_read=0x10000 none
Write some address before running a program:

Expand Down
2 changes: 1 addition & 1 deletion docs/Prototyping/NexysVideo.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Probe an address on the target system:

.. code-block:: shell
./uart_tsi +tty=/dev/ttyUSBX +init_read=0x10040 none
./uart_tsi +tty=/dev/ttyUSBX +init_read=0x10000 none
Write some address before running a program:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import chipyard.{ExtTLMem}
* @param hang the power-on reset vector, i.e. the program counter will be set to this value on reset
* @param contentFileName the path to the BootROM image
*/
class WithBootROM(address: BigInt = 0x10000, size: Int = 0x10000, hang: BigInt = 0x10040) extends Config((site, here, up) => {
class WithBootROM(address: BigInt = 0x10000, size: Int = 0x10000, hang: BigInt = 0x10000) extends Config((site, here, up) => {
case BootROMLocated(x) => up(BootROMLocated(x), site)
.map(_.copy(
address = address,
Expand Down

0 comments on commit 9d917d6

Please sign in to comment.