Physical Interface ================== `Input`, `Output` and `Wire` objects within a chip are implemented using a synchronous interconnect bus. The details of the interconnect bus are described here. This section will be of most use to developers who want to integrate a *Chips* design into a larger design, or to generate an HDL wrapper to support a *Chips* design in new hardware. .. aafig:: rst >-o------------------------------+ | | clk >-+--o------------------------+ | | | | | | | +-----------+ | | +--------------+ | | | TX | | | | RX | | +-->+ | | +----->+ | | | | | | | +----->+ | +-------->+ | | | | | | | "" | | | +=================>+ | | | "_stb" | | | +----------------->+ | | | "_ack" | | | +<-----------------+ | | | | | +-----------+ +--------------+ Global Signals -------------- +------+-----------+------+-------------+ | Name | Direction | Type | Description | +------+-----------+------+-------------+ | clk | input | bit | Clock | +------+-----------+------+-------------+ | rst | input | bit | Reset | +------+-----------+------+-------------+ Interconnect Signals -------------------- +----------------+-----------+------+-----------------------------------------------------------+ | Name | Direction | Type | Description | +----------------+-----------+------+-----------------------------------------------------------+ | | TX to RX | bus | Payload Data | +----------------+-----------+------+-----------------------------------------------------------+ | _stb | TX to RX | bit | '1' indicates that payload data is valid and TX is ready. | +----------------+-----------+------+-----------------------------------------------------------+ | _ack | TX to RX | bit | '1' indicates that RX is ready. | +----------------+-----------+------+-----------------------------------------------------------+ Interconnect Bus Transaction ---------------------------- 1. Both transmitter and receiver **shall** be synchronised to the 0 to 1 transition of `clk`. #. If `rst` is set to 1, upon the 0 to 1 transition of `clk` the transmitter **shall** terminate any active bus transaction and set `_stb` to 0. #. If `rst` is set to 1, upon the 0 to 1 transition of `clk` the receiver **shall** terminate any active bus transaction and set `_ack` to 0. #. If `rst` is set to 0, normal operation **shall** commence. #. The transmitter **may** insert wait states on the bus by setting `_stb` to 0. #. The transmitter **shall** set `_stb` to 1 to signify that data is valid. #. Once `_stb` has been set to 1, it **shall** remain at 1 until the transaction completes. #. The transmitter **shall** ensure that `` contains valid data for the entire period that `_stb` is 1. #. The transmitter **may** set `` to any value when `_stb` is 0. #. The receiver **may** insert wait states on the bus by setting `_ack` to 0. #. The receiver **shall** set `_ack` to 1 to signify that it is ready to receive data. #. Once `_ack` has been set to 1, it **shall** remain at 1 until the transaction completes. #. Whenever `_stb` is 1 and `_ack` are 1, a bus transaction **shall** complete on the following 0 to 1 transition of `clk`. #. Both the transmitter and receiver **may** commence a new transaction without inserting any wait states. #. The receiver **may** delay a transaction by inserting wait states until the transmitter indicates that data is available. #. The transmitter **shall** not delay a transaction by inserting wait states until the receiver is ready to accept data. Deadlock would occur if both the transmitter and receiver delayed a transaction until the other was ready. .. aafig:: "rst" _______________________________________ _ _ _ _ _ _ _ _ _ _ "clk" _| |_| |_| |_| |_| |_| |_| |_| |_| |_| _______________________________________ "" | VALID | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ _______ "_stb" _____| |_________________________ ___ "_ack" _________| |_________________________ ^^^^ "RX adds wait states" |||| ^^^^ "Data transfers" |||| "rst" _______________________________________ _ _ _ _ _ _ _ _ _ _ "clk" _| |_| |_| |_| |_| |_| |_| |_| |_| |_| _______________________________________ "" | VALID | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ___ "_stb" _________| |_________________________ _______ "_ack" _____| |_________________________ ^^^^ "TX adds wait states" |||| ^^^^ "Data transfers" |||| "rst" _______________________________________ __ __ __ __ __ __ _ "clk" _| |__| |__| |__| |__| |__| |__| _______________________________________ "" | D0 | D1 | D2 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ _________________ "_stb" _____________| |_______ _______________________ "_ack" _______| |_______ ^^^^ "TX adds wait states" |||| ^^^^ "Data transfers" |||| ^^^^ "stb and ack needn't return to 0 between data words" |||| ..