From: Luke Kenneth Casson Leighton Date: Mon, 29 Nov 2021 17:19:05 +0000 (+0000) Subject: add gpio and start doing print-outs to find out what is in Blinker.gpio X-Git-Url: https://git.libre-soc.org/?p=pinmux.git;a=commitdiff_plain;h=4aead07c5c5328434bd3ee07bd2275fd33cd9e74 add gpio and start doing print-outs to find out what is in Blinker.gpio --- diff --git a/src/spec/testing_stage1.py b/src/spec/testing_stage1.py index 141463e..c0fbc8e 100644 --- a/src/spec/testing_stage1.py +++ b/src/spec/testing_stage1.py @@ -172,6 +172,10 @@ class Blinker(Elaboratable): m.d.comb += uart.tx.eq(intermediary) m.d.comb += intermediary.eq(uart.rx) + # to even be able to get at objects, you first have to make them + # available - i.e. not as local variables + self.gpio = gpio + return self.jtag.boundary_elaborate(m, platform) def ports(self): @@ -373,6 +377,17 @@ if False: def test_case0(): print("Starting sanity test case!") + print("printing out list of stuff in top") + print(dir(top)) + # ok top now has a variable named "gpio", let's enumerate that too + print("printing out list of stuff in top.gpio and its type") + print(top.gpio.__class__.__name__, dir(top.gpio)) + # ok, it's a nmigen Record, therefore it has a layout. let's print + # that too + print("top.gpio is a Record therefore has fields and a layout") + print(" layout:", top.gpio.layout) + print(" fields:", top.gpio.fields) + # etc etc. you get the general idea yield top.gpio_0__gpio0__o__o.eq(0) yield top.gpio_0__gpio0__o__core__o.eq(0) yield top.gpio_0__gpio1__o.eq(0)