Skip to content

Commit

Permalink
Merge pull request #807 from ucb-bar/tile_clk_assignment_fix
Browse files Browse the repository at this point in the history
Use "tile" instead of "core" to assign freq's in WithTileFrequency config. fragment
  • Loading branch information
abejgonzalez authored Mar 3, 2021
2 parents 43a408e + 6145b1d commit a165763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/chipyard/src/main/scala/ConfigFragments.scala
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class WithTLBackingMemory extends Config((site, here, up) => {
case ExtTLMem => up(ExtMem, site) // enable TL backing memory
})

class WithTileFrequency(fMHz: Double) extends ClockNameContainsAssignment("core", fMHz)
class WithTileFrequency(fMHz: Double) extends ClockNameContainsAssignment("tile", fMHz)

class WithPeripheryBusFrequencyAsDefault extends Config((site, here, up) => {
case DefaultClockFrequencyKey => (site(PeripheryBusKey).dtsFrequency.get / (1000 * 1000)).toDouble
Expand Down

0 comments on commit a165763

Please sign in to comment.