`ifndef _BVM_MACROS201112_SVH_ `define _BVM_MACROS201112_SVH_ /** * @brief Basic Driver. * * Receives transactions of type @c T from an @c ovm_get_port and * forwards them to the method @c do_drive of an interface of * type @c _if_, modport @c driver. The interface method @c * driver_initial is called at initialisation. * * @param _if_ An interface providing methods @c driver_initial * and @c do_drive via modport @c driver. * @param _tran_ Transaction type, input to @c do_drive. * * @param in The ovm_get_port. * @param vif Virtual interface. */ `define bvm_driver_declaration(_if_, _tran_) class _if_``_driver extends ovm_component; \ `ovm_component_utils(_if_``_driver) \ \ ovm_get_port #(_tran_) in; \ virtual _if_ vif; \ _tran_ sample; \ \ function new(string name, ovm_component parent); \ super.new(name, parent); \ in = new("in", this); \ endfunction \ \ task run(); \ recording_detail = OVM_FULL; \ \ vif.driver.driver_initial(); \ \ forever begin \ in.get(sample); \ \ begin_tr(sample, {m_name, "_tran"}, "Driven stimulus"); \ vif.driver.do_drive(sample); \ end_tr(sample); \ end \ endtask \ endclass /** * @brief Basic Responder. * * Interacts with an interface of type @c _if_, modport @c * responder, via its method @c do_respond and forwards the completed * transactions of type @c _tran_ to an @c ovm_put_port. The interface * method @c responder_initial is called at initialisation. * * @param _if_ An interface providing methods @c * responder_initial and @c do_respond via modport @c responder. * @param _tran_ Transaction type, output from @c do_respond. * * @param vif Virtual interface. * @param out The ovm_put_port. */ `define bvm_responder_declaration(_if_, _tran_) class _if_``_responder extends ovm_component; \ `ovm_component_utils(_if_``_responder) \ \ ovm_put_port #(_tran_) out; \ virtual _if_ vif; \ _tran_ sample; \ \ function new(string name, ovm_component parent); \ super.new(name, parent); \ out = new("out", this); \ endfunction \ \ task run(); \ recording_detail = OVM_FULL; \ \ vif.responder.responder_initial(); \ forever begin \ sample = new; \ begin_tr(sample, {m_name, "_tran"}, "Received output"); \ vif.responder.do_respond(sample); \ out.put(sample); \ end_tr(sample); \ end \ endtask \ endclass /** * @brief Basic Monitor. * * Monitors an interface of type @c _if_, modport @c monitor, * via its method @c do_monitor, and forwards the generated * transactions of type @c _tran_ to an @c ovm_put_port. The interface * method monitor_initial is called at initialisation. * * @param _if_ An interface providing methods @c monitor_initial * and @c do_monitor via modport @c monitor. * @param _tran_ Transaction type, output from @c do_monitor. * * @param vif Virtual interface. * @param out The ovm_put_port. */ `define bvm_monitor_declaration(_if_, _tran_) class _if_``_monitor extends ovm_component; \ `ovm_component_utils(_if_``_monitor) \ \ ovm_put_port #(_tran_) out; \ virtual _if_ vif; \ _tran_ sample; \ \ function new(string name, ovm_component parent); \ super.new(name, parent); \ out = new("out", this); \ endfunction \ \ task run(); \ recording_detail = OVM_FULL; \ \ vif.monitor.monitor_initial(); \ \ forever begin \ sample = new; \ begin_tr(sample, {m_name, "_tran"}, "Observed output"); \ vif.monitor.do_monitor(sample); \ out.put(sample); \ end_tr(sample); \ end \ endtask \ endclass `define bvm_interface_utils(_if_, _tran_) \ `bvm_driver_declaration(_if_, _tran_) \ `bvm_responder_declaration(_if_, _tran_) \ `bvm_monitor_declaration(_if_, _tran_) `endif // _BVM_MACROS201112_SVH_