Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CHANGE: Organize abstract config into sections and change comment format to docstrings #1722

Merged
merged 8 commits into from
Feb 11, 2024
Prev Previous commit
FIX: add missing chipid harness
  • Loading branch information
T-K-233 committed Feb 11, 2024
commit 4642bffae7d0a384d03f937e764780a5eab8f4bd
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class AbstractConfig extends Config(
new chipyard.harness.WithTieOffInterrupts ++ /** tie-off interrupt ports, if present */
new chipyard.harness.WithTieOffL2FBusAXI ++ /** tie-off external AXI4 master, if present */
new chipyard.harness.WithCustomBootPinPlusArg ++ /** drive custom-boot pin with a plusarg, if custom-boot-pin is present */
new chipyard.harness.WithDriveChipIdPin ++ /** drive chip id pin from harness binder, if chip id pin is present */
new chipyard.harness.WithSimUARTToUARTTSI ++ /** connect a SimUART to the UART-TSI port */
new chipyard.harness.WithClockFromHarness ++ /** all Clock I/O in ChipTop should be driven by harnessClockInstantiator */
new chipyard.harness.WithResetFromHarness ++ /** reset controlled by harness */
Expand Down Expand Up @@ -147,7 +148,7 @@ class AbstractConfig extends Config(

// power


// ==================================
// Base Settings
// ==================================
Expand Down
Loading