.. _IP:ddrio_out: PoC.io.ddrio.out ################ .. only:: html .. |gh-src| image:: /_static/logos/GitHub-Mark-32px.png :scale: 40 :target: https://github.com/VLSI-EDA/PoC/blob/master/src/io/ddrio/ddrio_out.vhdl :alt: Source Code on GitHub .. |gh-tb| image:: /_static/logos/GitHub-Mark-32px.png :scale: 40 :target: https://github.com/VLSI-EDA/PoC/blob/master/tb/io/ddrio/ddrio_out_tb.vhdl :alt: Source Code on GitHub .. sidebar:: GitHub Links * |gh-src| :pocsrc:`Sourcecode ` * |gh-tb| :poctb:`Testbench ` Instantiates chip-specific :abbr:`DDR (Double Data Rate)` output registers. Both data ``DataOut_high/low`` as well as ``OutputEnable`` are sampled with the ``rising_edge(Clock)`` from the on-chip logic. ``DataOut_high`` is brought out with this rising edge. ``DataOut_low`` is brought out with the falling edge. ``OutputEnable`` (Tri-State) is high-active. It is automatically inverted if necessary. If an output enable is not required, you may save some logic by setting ``NO_OUTPUT_ENABLE = true``. If ``NO_OUTPUT_ENABLE = false`` then output is disabled after power-up. If ``NO_OUTPUT_ENABLE = true`` then output after power-up equals ``INIT_VALUE``. .. wavedrom:: { signal: [ ['DataOut', {name: 'ClockOut', wave: 'L.H.L.H.L.H.L.H.'}, {name: 'ClockOutEnable', wave: '01...........0..'}, {name: 'OutputEnable', wave: '01.......0......'}, {name: 'DataOut_low', wave: 'x2...4...x......', data: ['0', '2'], node: '.k...m'}, {name: 'DataOut_high', wave: 'x3...5...x......', data: ['1', '3'], node: '.l...n'} ], {}, {name: 'Pad', wave: 'x.....2.3.4.5.z.', data: ['0', '1', '2', '3'], node: '......a.b.c.d.'}, ], edge: ['k~>a', 'l~>b', 'm~>c', 'n~>d'], foot: { text: ['tspan', ['tspan', {'font-weight': 'bold'}, 'PoC.io.ddrio.out'], ' -- DDR Data Output sampled from pad.' ] } } ``Pad`` must be connected to a PAD because FPGAs only have these registers in IOBs. .. rubric:: Entity Declaration: .. literalinclude:: ../../../../src/io/ddrio/ddrio_out.vhdl :language: vhdl :tab-width: 2 :linenos: :lines: 79-93 .. only:: latex Source file: :pocsrc:`io/ddrio/ddrio_out.vhdl `