From 4642bffae7d0a384d03f937e764780a5eab8f4bd Mon Sep 17 00:00:00 2001 From: "-T.K.-" Date: Sat, 10 Feb 2024 23:03:19 -0800 Subject: [PATCH] FIX: add missing chipid harness --- generators/chipyard/src/main/scala/config/AbstractConfig.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/generators/chipyard/src/main/scala/config/AbstractConfig.scala b/generators/chipyard/src/main/scala/config/AbstractConfig.scala index 751915e2..96d252f7 100644 --- a/generators/chipyard/src/main/scala/config/AbstractConfig.scala +++ b/generators/chipyard/src/main/scala/config/AbstractConfig.scala @@ -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 */ @@ -147,7 +148,7 @@ class AbstractConfig extends Config( // power - + // ================================== // Base Settings // ==================================