soc/cores/clock: change drp_locked to CSRStatus and connect it :)
This commit is contained in:
parent
36107cdfd7
commit
6883a43680
|
@ -92,7 +92,7 @@ class XilinxClocking(Module, AutoCSR):
|
||||||
|
|
||||||
def expose_drp(self):
|
def expose_drp(self):
|
||||||
self.drp_reset = CSR()
|
self.drp_reset = CSR()
|
||||||
self.drp_locked = CSR()
|
self.drp_locked = CSRStatus()
|
||||||
self.drp_read = CSR()
|
self.drp_read = CSR()
|
||||||
self.drp_write = CSR()
|
self.drp_write = CSR()
|
||||||
self.drp_drdy = CSRStatus()
|
self.drp_drdy = CSRStatus()
|
||||||
|
@ -119,6 +119,7 @@ class XilinxClocking(Module, AutoCSR):
|
||||||
self.drp_drdy.status.eq(1)
|
self.drp_drdy.status.eq(1)
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
self.comb += self.drp_locked.status.eq(self.locked)
|
||||||
|
|
||||||
def do_finalize(self):
|
def do_finalize(self):
|
||||||
assert hasattr(self, "clkin")
|
assert hasattr(self, "clkin")
|
||||||
|
|
Loading…
Reference in New Issue