Skip to content

Commit

Permalink
[ci skip] Update comments for FakePLLClockBinder
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryz123 committed Apr 8, 2023
1 parent 7064333 commit 32f0f83
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ class WithPLLSelectorDividerClockGenerator extends OverrideLazyIOBinder({
val slowClockSource = ClockSourceNode(Seq(ClockSourceParameters()))
val pllClockSource = ClockSourceNode(Seq(ClockSourceParameters()))

// The order of the connections to clockSelector.clockNode configures what
// The order of the connections to clockSelector.clockNode configures the inputs
// of the clockSelector's clockMux. Default to using the slowClockSource,
// software should enable the PLL, then switch to the pllClockSource
clockSelector.clockNode := slowClockSource
clockSelector.clockNode := pllClockSource

Expand Down
4 changes: 3 additions & 1 deletion generators/chipyard/src/main/scala/example/FlatChipTop.scala
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ class FlatChipTop(implicit p: Parameters) extends LazyModule {
val slowClockSource = ClockSourceNode(Seq(ClockSourceParameters()))
val pllClockSource = ClockSourceNode(Seq(ClockSourceParameters()))

// The order of the connections to clockSelector.clockNode configures what
// The order of the connections to clockSelector.clockNode configures the inputs
// of the clockSelector's clockMux. Default to using the slowClockSource,
// software should enable the PLL, then switch to the pllClockSource
clockSelector.clockNode := slowClockSource
clockSelector.clockNode := pllClockSource

Expand Down

0 comments on commit 32f0f83

Please sign in to comment.