Skip to content

Commit

Permalink
cfg: Rename boot_rom_size to bootrom_size
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Aug 5, 2024
1 parent 643a7ab commit 85232d4
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/schema/snitch_cluster.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
64
]
},
"boot_rom_size": {
"bootrom_size": {
"type": "number",
"description": "Address region size reserved for the Bootrom-Memory in KiByte.",
"examples": [
Expand Down
2 changes: 1 addition & 1 deletion hw/snitch_cluster/src/snitch_cluster_wrapper.sv.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ module ${cfg['name']}_wrapper (
.TCDMDepth (${cfg['tcdm']['depth']}),
.ZeroMemorySize (${cfg['zero_mem_size']}),
.ClusterPeriphSize (${cfg['cluster_periph_size']}),
.BootRomSize (${cfg['boot_rom_size']}),
.BootRomSize (${cfg['bootrom_size']}),
.NrBanks (${cfg['tcdm']['banks']}),
.DMANumAxInFlight (${cfg['dma_axi_req_fifo_depth']}),
.DMAReqFifoDepth (${cfg['dma_req_fifo_depth']}),
Expand Down
2 changes: 1 addition & 1 deletion target/snitch_cluster/cfg/default.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
cluster_periph_size: 64, // kB
zero_mem_size: 64, // kB
boot_rom_size: 4, // kB
bootrom_size: 4, // kB
alias_region_enable: true,
dma_data_width: 512,
dma_axi_req_fifo_depth: 24,
Expand Down
2 changes: 1 addition & 1 deletion target/snitch_cluster/cfg/dma_mchan.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
cluster_periph_size: 64, // kB
zero_mem_size: 64, // kB
boot_rom_size: 4, // kB
bootrom_size: 4, // kB
alias_region_enable: true,
dma_data_width: 512,
dma_nr_channels: 4,
Expand Down
2 changes: 1 addition & 1 deletion target/snitch_cluster/cfg/fdiv.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
cluster_periph_size: 64, // kB
zero_mem_size: 64, // kB
boot_rom_size: 4, // kB
bootrom_size: 4, // kB
alias_region_enable: true,
dma_data_width: 512,
dma_axi_req_fifo_depth: 24,
Expand Down
2 changes: 1 addition & 1 deletion target/snitch_cluster/cfg/github-ci.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
cluster_periph_size: 64, // kB
zero_mem_size: 64, // kB
boot_rom_size: 4, // kB
bootrom_size: 4, // kB
alias_region_enable: true,
dma_data_width: 512,
dma_axi_req_fifo_depth: 24,
Expand Down
2 changes: 1 addition & 1 deletion target/snitch_cluster/cfg/omega.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
cluster_periph_size: 64, // kB
zero_mem_size: 64, // kB
boot_rom_size: 4, // kB
bootrom_size: 4, // kB
alias_region_enable: true,
dma_data_width: 512,
dma_axi_req_fifo_depth: 24,
Expand Down

0 comments on commit 85232d4

Please sign in to comment.