dfii: Really default to HW control

Looks like there was a typo in commit
a595fe07f2
"dfii: simplify control using CSRFields"

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
Benjamin Herrenschmidt 2020-06-10 16:06:46 +10:00
parent 52d7dbe3a6
commit 4580882c69
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class DFIInjector(Module, AutoCSR):
CSRField("sel", size=1, values=[ CSRField("sel", size=1, values=[
("``0b0``", "Software (CPU) control."), ("``0b0``", "Software (CPU) control."),
("``0b1`", "Hardware control (default)."), ("``0b1`", "Hardware control (default)."),
], reset=0b0), # Defaults to HW control. ], reset=0b1), # Defaults to HW control.
CSRField("cke", size=1), CSRField("cke", size=1),
CSRField("odt", size=1), CSRField("odt", size=1),
CSRField("reset_n", size=1), CSRField("reset_n", size=1),