X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fspec%2Fi_class.py;h=780decd39376b8318ecb808f4e6efe37644c7448;hb=533aeace8a6542358837d7945df95266ad12720a;hp=81872fc9b70ed54b023adb16cb565dcfc6dc4be4;hpb=0cc6c6d4ec0b5bbcf00e9f3c0eb9a08256bebd40;p=pinmux.git diff --git a/src/spec/i_class.py b/src/spec/i_class.py index 81872fc..780decd 100644 --- a/src/spec/i_class.py +++ b/src/spec/i_class.py @@ -11,6 +11,7 @@ def pinspec(): 'A': (28, 4), 'B': (18, 4), 'C': (24, 1), + 'D': (92, 1), } fixedpins = { 'CTRL_SYS': [ @@ -60,7 +61,7 @@ def pinspec(): } ps = PinSpec(pinbanks, fixedpins, function_names, - ['lcd', 'jtag', 'fb']) + ['lcd', 'jtag', 'fb', 'sdr']) # Bank A, 0-27 ps.gpio("", ('A', 0), 0, 0, 28) @@ -100,6 +101,9 @@ def pinspec(): ps.flexbus2("", ('C', 0), 0) + ps.sdram1("", ('D', 0), 0) + ps.sdram3("", ('D', 35), 0) + # Scenarios below can be spec'd out as either "find first interface" # by name/number e.g. SPI1, or as "find in bank/mux" which must be # spec'd as "BM:Name" where B is bank (A-F), M is Mux (0-3)