blob: d42a3ca538f2ee183ee0207e639bc2e4ebcbab3e [file]
// $Id: //dvt/vtech/dev/main/ovm/src/tlm/ovm_exports.svh#14 $
//------------------------------------------------------------------------------
// Copyright 2007-2009 Mentor Graphics Corporation
// Copyright 2007-2009 Cadence Design Systems, Inc.
// All Rights Reserved Worldwide
//
// Licensed under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in
// compliance with the License. You may obtain a copy of
// the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in
// writing, software distributed under the License is
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
// CONDITIONS OF ANY KIND, either express or implied. See
// the License for the specific language governing
// permissions and limitations under the License.
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//
// CLASS: ovm_*_export #(T)
//
// The unidirectional ovm_*_export is a port that ~forwards~ or ~promotes~
// an interface implementation from a child component to its parent.
// An export can be connected to any compatible child export or imp port.
// It must ultimately be connected to at least one implementation
// of its associated interface.
//
// The interface type represented by the asterisk is any of the following
//
//| blocking_put
//| nonblocking_put
//| put
//|
//| blocking_get
//| nonblocking_get
//| get
//|
//| blocking_peek
//| nonblocking_peek
//| peek
//|
//| blocking_get_peek
//| nonblocking_get_peek
//| get_peek
//|
//| analysis
//
// Type parameters
//
// T - The type of transaction to be communicated by the export
//
// Exports are connected to interface implementations directly via
// <ovm_*_imp #(T,IMP)> ports or indirectly via other <ovm_*_export #(T)> exports.
//
//------------------------------------------------------------------------------
// Function: new
//
// The ~name~ and ~parent~ are the standard <ovm_component> constructor arguments.
// The ~min_size~ and ~max_size~ specify the minimum and maximum number of
// interfaces that must have been supplied to this port by the end of elaboration.
//
//| function new (string name,
//| ovm_component parent,
//| int min_size=1,
//| int max_size=1)
class ovm_blocking_put_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
`OVM_EXPORT_COMMON(`TLM_BLOCKING_PUT_MASK,"ovm_blocking_put_export")
`BLOCKING_PUT_IMP (this.m_if, T, t)
endclass
class ovm_nonblocking_put_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
`OVM_EXPORT_COMMON(`TLM_NONBLOCKING_PUT_MASK,"ovm_nonblocking_put_export")
`NONBLOCKING_PUT_IMP (this.m_if, T, t)
endclass
class ovm_put_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
`OVM_EXPORT_COMMON(`TLM_PUT_MASK,"ovm_put_export")
`PUT_IMP (this.m_if, T, t)
endclass
class ovm_blocking_get_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
`OVM_EXPORT_COMMON(`TLM_BLOCKING_GET_MASK,"ovm_blocking_get_export")
`BLOCKING_GET_IMP (this.m_if, T, t)
endclass
class ovm_nonblocking_get_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
`OVM_EXPORT_COMMON(`TLM_NONBLOCKING_GET_MASK,"ovm_nonblocking_get_export")
`NONBLOCKING_GET_IMP (this.m_if, T, t)
endclass
class ovm_get_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
`OVM_EXPORT_COMMON(`TLM_GET_MASK,"ovm_get_export")
`GET_IMP (this.m_if, T, t)
endclass
class ovm_blocking_peek_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
`OVM_EXPORT_COMMON(`TLM_BLOCKING_PEEK_MASK,"ovm_blocking_peek_export")
`BLOCKING_PEEK_IMP (this.m_if, T, t)
endclass
class ovm_nonblocking_peek_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
`OVM_EXPORT_COMMON(`TLM_NONBLOCKING_PEEK_MASK,"ovm_nonblocking_peek_export")
`NONBLOCKING_PEEK_IMP (this.m_if, T, t)
endclass
class ovm_peek_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
`OVM_EXPORT_COMMON(`TLM_PEEK_MASK,"ovm_peek_export")
`PEEK_IMP (this.m_if, T, t)
endclass
class ovm_blocking_get_peek_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
`OVM_EXPORT_COMMON(`TLM_BLOCKING_GET_PEEK_MASK,"ovm_blocking_get_peek_export")
`BLOCKING_GET_PEEK_IMP (this.m_if, T, t)
endclass
class ovm_nonblocking_get_peek_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
`OVM_EXPORT_COMMON(`TLM_NONBLOCKING_GET_PEEK_MASK,"ovm_nonblocking_get_peek_export")
`NONBLOCKING_GET_PEEK_IMP (this.m_if, T, t)
endclass
class ovm_get_peek_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
`OVM_EXPORT_COMMON(`TLM_GET_PEEK_MASK,"ovm_get_peek_export")
`GET_PEEK_IMP (this.m_if, T, t)
endclass
class ovm_analysis_export #(type T=int)
extends ovm_port_base #(tlm_if_base #(T,T));
function new (string name, ovm_component parent = null);
super.new (name, parent, OVM_EXPORT, 1, OVM_UNBOUNDED_CONNECTIONS);
m_if_mask = `TLM_ANALYSIS_MASK;
endfunction
virtual function string get_type_name();
return "ovm_analysis_export";
endfunction
// analysis port differs from other ports in that it broadcasts
// to all connected interfaces. Ports only send to the interface
// at the index specified in a call to set_if (0 by default).
function void write (input T t);
tlm_if_base #(T, T) tif;
for (int i = 0; i < this.size(); i++) begin
tif = this.get_if (i);
if (tif == null)
ovm_report_fatal ("NTCONN", {"No tlm interface is connected to ", get_full_name(), " for executing write()"}, OVM_NONE);
tif.write (t);
end
endfunction
endclass
//------------------------------------------------------------------------------
//
// CLASS: ovm_*_export #(REQ,RSP)
//
// The bidirectional ovm_*_export is a port that ~forwards~ or ~promotes~
// an interface implementation from a child component to its parent.
// An export can be connected to any compatible child export or imp port.
// It must ultimately be connected to at least one implementation
// of its associated interface.
//
// The interface type represented by the asterisk is any of the following
//
//| blocking_transport
//| nonblocking_transport
//| transport
//|
//| blocking_master
//| nonblocking_master
//| master
//|
//| blocking_slave
//| nonblocking_slave
//| slave
//
// Type parameters
//
// REQ - The type of request transaction to be communicated by the export
//
// RSP - The type of response transaction to be communicated by the export
//
// Exports are connected to interface implementations directly via
// <ovm_*_imp #(REQ,RSP,IMP)> ports or indirectly via other
// <ovm_*_export #(REQ,RSP)> exports.
//
//------------------------------------------------------------------------------
// Function: new
//
// The ~name~ and ~parent~ are the standard <ovm_component> constructor arguments.
// The ~min_size~ and ~max_size~ specify the minimum and maximum number of
// interfaces that must have been supplied to this port by the end of elaboration.
//
//| function new (string name,
//| ovm_component parent,
//| int min_size=1,
//| int max_size=1)
class ovm_blocking_master_export #(type REQ=int, type RSP=REQ)
extends ovm_port_base #(tlm_if_base #(REQ, RSP));
`OVM_EXPORT_COMMON(`TLM_BLOCKING_MASTER_MASK,"ovm_blocking_master_export")
`BLOCKING_PUT_IMP (this.m_if, REQ, t)
`BLOCKING_GET_PEEK_IMP (this.m_if, RSP, t)
endclass
class ovm_nonblocking_master_export #(type REQ=int, type RSP=REQ)
extends ovm_port_base #(tlm_if_base #(REQ, RSP));
`OVM_EXPORT_COMMON(`TLM_NONBLOCKING_MASTER_MASK,"ovm_nonblocking_master_export")
`NONBLOCKING_PUT_IMP (this.m_if, REQ, t)
`NONBLOCKING_GET_PEEK_IMP (this.m_if, RSP, t)
endclass
class ovm_master_export #(type REQ=int, type RSP=REQ)
extends ovm_port_base #(tlm_if_base #(REQ, RSP));
`OVM_EXPORT_COMMON(`TLM_MASTER_MASK,"ovm_master_export")
`PUT_IMP (this.m_if, REQ, t)
`GET_PEEK_IMP (this.m_if, RSP, t)
endclass
class ovm_blocking_slave_export #(type REQ=int, type RSP=REQ)
extends ovm_port_base #(tlm_if_base #(RSP, REQ));
`OVM_EXPORT_COMMON(`TLM_BLOCKING_SLAVE_MASK,"ovm_blocking_slave_export")
`BLOCKING_PUT_IMP (this.m_if, RSP, t)
`BLOCKING_GET_PEEK_IMP (this.m_if, REQ, t)
endclass
class ovm_nonblocking_slave_export #(type REQ=int, type RSP=REQ)
extends ovm_port_base #(tlm_if_base #(RSP, REQ));
`OVM_EXPORT_COMMON(`TLM_NONBLOCKING_SLAVE_MASK,"ovm_nonblocking_slave_export")
`NONBLOCKING_PUT_IMP (this.m_if, RSP, t)
`NONBLOCKING_GET_PEEK_IMP (this.m_if, REQ, t)
endclass
class ovm_slave_export #(type REQ=int, type RSP=REQ)
extends ovm_port_base #(tlm_if_base #(RSP, REQ));
`OVM_EXPORT_COMMON(`TLM_SLAVE_MASK,"ovm_slave_export")
`PUT_IMP (this.m_if, RSP, t)
`GET_PEEK_IMP (this.m_if, REQ, t)
endclass
class ovm_blocking_transport_export #(type REQ=int, type RSP=REQ)
extends ovm_port_base #(tlm_if_base #(REQ, RSP));
`OVM_EXPORT_COMMON(`TLM_BLOCKING_TRANSPORT_MASK,"ovm_blocking_transport_export")
`BLOCKING_TRANSPORT_IMP (this.m_if, REQ, RSP, req, rsp)
endclass
class ovm_nonblocking_transport_export #(type REQ=int, type RSP=REQ)
extends ovm_port_base #(tlm_if_base #(REQ, RSP));
`OVM_EXPORT_COMMON(`TLM_NONBLOCKING_TRANSPORT_MASK,"ovm_nonblocking_transport_export")
`NONBLOCKING_TRANSPORT_IMP (this.m_if, REQ, RSP, req, rsp)
endclass
class ovm_transport_export #(type REQ=int, type RSP=REQ)
extends ovm_port_base #(tlm_if_base #(REQ, RSP));
`OVM_EXPORT_COMMON(`TLM_TRANSPORT_MASK,"ovm_transport_export")
`TRANSPORT_IMP (this.m_if, REQ, RSP, req, rsp)
endclass