SerialInterfaceWidth is not actually configurable

This commit is contained in:
Howard Mao
2017-07-21 06:12:25 +00:00
parent ada96f3724
commit f28f2379a4
3 changed files with 1 additions and 4 deletions

View File

@@ -50,7 +50,6 @@ class WithSimNetwork extends Config((site, here, up) => {
})
class BaseExampleConfig extends Config(
new WithSerialAdapter ++
new freechips.rocketchip.chip.DefaultConfig)
class DefaultExampleConfig extends Config(

View File

@@ -1,7 +1,6 @@
package tlserdes
import freechips.rocketchip.config.{Parameters, Config}
import testchipip.WithSerialAdapter
class WithTLSerdes extends Config((site, here, up) => {
case TLSerdesWidth => 16
@@ -9,7 +8,6 @@ class WithTLSerdes extends Config((site, here, up) => {
class DefaultSerdesConfig extends Config(
new WithTLSerdes ++
new WithSerialAdapter ++
new freechips.rocketchip.chip.DefaultConfig)
class WithTwoMemChannels extends example.WithTwoMemChannels