diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-08-27 10:19:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-27 10:19:27 -0700 |
commit | eab3c1432b717bb341773878bf0daece7d39dec8 (patch) | |
tree | e30aa036be3c84d29f357e2faa015190ec8e195c /README.md | |
parent | fdbcf789099d327bd5e9f2e0658cdad754b09db2 (diff) | |
parent | 5fb4b12cb50b870b546d76f9c702678d8f0aa60a (diff) | |
download | yosys-eab3c1432b717bb341773878bf0daece7d39dec8.tar.gz yosys-eab3c1432b717bb341773878bf0daece7d39dec8.tar.bz2 yosys-eab3c1432b717bb341773878bf0daece7d39dec8.zip |
Merge pull request #1292 from YosysHQ/mwk/xilinx_bufgmap
Add clock buffer insertion pass, improve iopadmap.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -332,6 +332,21 @@ Verilog Attributes and non-standard features that represent module parameters or localparams (when the HDL front-end is run in -pwires mode). +- The ``clkbuf_driver`` attribute can be set on an output port of a blackbox + module to mark it as a clock buffer output, and thus prevent ``clkbufmap`` + from inserting another clock buffer on a net driven by such output. + +- The ``clkbuf_sink`` attribute can be set on an input port of a module to + request clock buffer insertion by the ``clkbufmap`` pass. + +- The ``clkbuf_inhibit`` is the default attribute to set on a wire to prevent + automatic clock buffer insertion by ``clkbufmap``. This behaviour can be + overridden by providing a custom selection to ``clkbufmap``. + +- The ``iopad_external_pin`` attribute on a blackbox module's port marks + it as the external-facing pin of an I/O pad, and prevents ``iopadmap`` + from inserting another pad cell on it. + - In addition to the ``(* ... *)`` attribute syntax, Yosys supports the non-standard ``{* ... *}`` attribute syntax to set default attributes for everything that comes after the ``{* ... *}`` statement. (Reset |