Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
cde47f1
TLB: remove implicit parameters
May 5, 2023
ab51a09
TLB: parameterize
May 5, 2023
641b389
TLB: move source file
May 7, 2023
727fc84
TLB: refactor constructor call parameters
May 7, 2023
7754371
TLB: refactor to Chisel native coverage
May 7, 2023
f014cd6
TLB: move `TLBPermissions`
May 8, 2023
50225e5
TLB: move `Consts`
May 8, 2023
b6d23f4
TLB: refactor traits in `Consts` to objects
May 8, 2023
46cbcac
TLB: add minimal `CSR` for usages in `TLB`
May 8, 2023
9f27cd3
TLB: refactor dependencies
May 8, 2023
f25bb2a
TLB: remove unnecessary dependencies
May 8, 2023
20ae4bc
TLB: remove redundant dependencies
May 8, 2023
5a86910
TLB: refactor deprecated code style
May 8, 2023
79bb9fd
TLB: move `Instructions`
May 10, 2023
e951e2a
TLB: add `util`
May 10, 2023
d53136b
TLB: refactor `TLSlaveParameters` related things
May 15, 2023
f590f91
TLB: refactor memory slave parameters
May 17, 2023
b10b560
TLB: refactor `AddressSet`
May 19, 2023
c0b907d
TLB: minor modifications
May 22, 2023
58c6fe4
TLB: move `AddressDecoder`
May 22, 2023
2d67054
TLB: remove some clutters
Jun 1, 2023
8974671
TLB: fix Option syntax
Jun 1, 2023
030f957
Merge branch 'split' into refactor_tlb
Jun 1, 2023
3e7498b
TLB: resolve collisions
Jun 3, 2023
6134d13
TLB: resolve dependencies
Jun 3, 2023
8bda869
PTW: migration and introduce dependencies
Jun 3, 2023
d7168cf
TLB: resolve dependencies
Jun 5, 2023
2d7cadc
TLB: migrate HellaCache
Jun 5, 2023
8557028
TLB: restore diplomatic
Jun 6, 2023
784e8bb
TLB: resolve diplomatic dependency conflicts
Jun 6, 2023
8d0dac1
Merge branch 'split' into refactor_tlb
Jun 6, 2023
9549113
TLB: remove some diplomatic
Jun 6, 2023
8ee5169
Update .gitignore
Jun 6, 2023
74692e8
Merge branch 'split' into refactor_tlb
Jun 17, 2023
7ba355f
TLB: refactor DCacheParams
Jun 17, 2023
ac589a2
TLB: refactor parameters
Jun 17, 2023
ce34aff
TLB: refactor DCache and resolve imports
Jun 18, 2023
b196b4a
TLB: use cacheParams
Jun 19, 2023
35bf6d1
Merge branch 'split' into refactor_tlb
Jun 23, 2023
ff8657b
TLB: small integration
Jun 23, 2023
2965f5e
TLB: small refactor
Jul 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ out/
.bloop/
.metals/
.vscode/
.scala-build/
.scala-build/
1 change: 1 addition & 0 deletions diplomatic/src/rocket/BaseTile.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import freechips.rocketchip.interrupts._
import freechips.rocketchip.tilelink._
import freechips.rocketchip.util._
import freechips.rocketchip.prci.{ClockSinkParameters}
import freechips.rocketchip.rocket.{PgLevels, ASIdBits, VMIdBits, TracedInstruction, TraceAux}

case object TileVisibilityNodeKey extends Field[TLEphemeralNode]
case object TileKey extends Field[TileParams]
Expand Down
Loading