URL
https://opencores.org/ocsvn/uart2bus_testbench/uart2bus_testbench/trunk
Subversion Repositories uart2bus_testbench
[/] [uart2bus_testbench/] [trunk/] [tb/] [agent/] [driver/] [uart_driver.svh] - Rev 2
Go to most recent revision | Compare with Previous | Blame | View Log
//-----------------------------------------------------------------------------
//
// UART2BUS VERIFICATION
//
//-----------------------------------------------------------------------------
// CREATOR : HANY SALAH
// PROJECT : UART2BUS UVM TEST BENCH
// UNIT : DRIVER
//-----------------------------------------------------------------------------
// TITLE : UART Driver
// DESCRIPTION: This
//-----------------------------------------------------------------------------
// LOG DETAILS
//-------------
// VERSION NAME DATE DESCRIPTION
// 1 HANY SALAH 02012016 FILE CREATION
// 2 HANY SALAH 07012016 ADD INITIALIZE BFM METHOD
//-----------------------------------------------------------------------------
// ALL COPYRIGHTS ARE RESERVED FOR THE PRODUCER ONLY .THIS FILE IS PRODUCED FOR
// OPENCORES MEMBERS ONLY AND IT IS PROHIBTED TO USE THIS MATERIAL WITHOUT THE
// CREATOR'S PERMISSION
//-----------------------------------------------------------------------------
class uart_driver extends uvm_driver #(uart_transaction);
// Two Transaction Instances that are used to bring and clone the
// stimulus
uart_transaction trans,_trans;
// Instance from Global UART Configuration
uart_config _config;
// UART Interafce instance
virtual uart_interface uart_inf;
// RF Interface instance
virtual rf_interface rf_inf;
// Arbiter Interface Instance
virtual uart_arbiter arb_inf;
uvm_analysis_port #(uart_transaction) drv_scbd_cov;
`uvm_component_utils(uart_driver)
function new (string name , uvm_component parent);
super.new(name,parent);
endfunction: new
function void display_content ();
$display("here %s\n command_type = %p \n command = %p \n char_type = %p \n space_type1 = %p \n space_wrong1 = %8b \n space_type2 = %p \n space_wrong2 = %8b \n eol_type = %p \n eol_wrong = %8b \n address = %h \n data = %8b", get_full_name(),trans._mode,
trans._command,
trans._chartype,
trans._spacetype1,
trans.space_wrong1,
trans._spacetype2,
trans.space_wrong2,
trans._eoltype,
trans.eol_wrong,
trans.address,
trans._data[0]);
endfunction:display_content
// UVM Build Phase Declaration that includes locating instances and get
// interfaces handler from the configuration database
extern function void build_phase (uvm_phase phase);
extern function void end_of_elaboration_phase (uvm_phase phase);
// UVM Run Phase Declaratio
extern task run_phase (uvm_phase phase);
// Actual drive data routine
extern task drive_data (int iteration);
// initialize bfms
extern function void initialize_bfms (act_edge _edge,
start_bit _bit,
int num_stop_bits,
int num_of_bits,
data_mode _datamode,
parity_mode _paritymode,
time _resp);
endclass:uart_driver
function void uart_driver::build_phase (uvm_phase phase);
super.build_phase(phase);
trans = uart_transaction::type_id::create("trans");
_trans = uart_transaction::type_id::create("_trans");
_config = uart_config::type_id::create("_config");
drv_scbd_cov = new("drv_scbd_cov",this);
endfunction:build_phase
function void uart_driver::end_of_elaboration_phase (uvm_phase phase);
if(!uvm_config_db#(uart_config)::get(this, "", "UART_CONFIGURATION", _config))
`uvm_fatal("NOCONFIGURATION",{"configuration instance must be set for: ",get_full_name(),"._config"});
if(!uvm_config_db#(virtual uart_interface)::get(this, "", "uart_inf", _config.uart_inf))
`uvm_fatal("NOVIF",{"virtual interface must be set for: ",get_full_name(),".uart_inf"});
uart_inf=_config.uart_inf;
if(!uvm_config_db#(virtual rf_interface)::get(this, "", "rf_inf", _config.rf_inf))
`uvm_fatal("NOVIF",{"virtual interface must be set for: ",get_full_name(),".rf_inf"});
rf_inf=_config.rf_inf;
if(!uvm_config_db#(virtual uart_arbiter)::get(this,"","arb_inf",_config.arb_inf))
`uvm_fatal("NOVIF",{"virtual interface must be set for:",get_full_name(),".arb_inf"})
arb_inf=_config.arb_inf;
endfunction:end_of_elaboration_phase
function void uart_driver::initialize_bfms (act_edge _edge,
start_bit _bit,
int num_stop_bits,
int num_of_bits,
data_mode _datamode,
parity_mode _paritymode,
time _resp);
uart_inf.set_configuration(_edge,_bit,num_stop_bits,num_of_bits,_datamode,_paritymode,_resp);
endfunction:initialize_bfms
task uart_driver::run_phase (uvm_phase phase);
int iteration;
iteration = 0;
initialize_bfms(_config._edge,
_config._start,
_config.num_stop_bits,
_config.num_of_bits,
_config._datamode,
_config._paritymode,
_config.response_time);
forever
begin
iteration++;
if (iteration == 3)
begin
//$stop;
end
seq_item_port.get_next_item(_trans);
$cast(trans,_trans.clone());
drv_scbd_cov.write(trans);
//display_content();
drive_data(iteration);
seq_item_port.item_done();
end
endtask:run_phase
task uart_driver::drive_data(int iteration);
uart_inf.wait_idle_time(trans.time_before*trans.scale);
uart_inf.set_event();
case (trans._mode)
text:
begin
case(trans._command)
read:
begin
fork
begin
if (trans._arbit == accept)
begin
arb_inf.accept_req();
end
else
begin
arb_inf.declain_req();
end
end
join_none
rf_inf.fill_byte (trans.address,
trans._data[0]);
uart_inf.read_text_mode(trans._chartype,
trans._spacetype1,
trans.space_wrong1,
trans._eoltype,
trans.eol_wrong,
trans.address);
end
write:
begin
fork
begin
if (trans._arbit == accept)
begin
arb_inf.accept_req();
end
else
begin
arb_inf.declain_req();
end
end
join_none
uart_inf.write_text_mode(trans._chartype,
trans._spacetype1,
trans.space_wrong1,
trans._spacetype2,
trans.space_wrong2,
trans._eoltype,
trans.eol_wrong,
trans.address,
trans._data[0]);
end
nop:
begin
`uvm_fatal("UNEXPECTED VALUE","NOP command value shouldn't be valued in text mode")
end
default:
begin
`uvm_fatal("wrong output", "wrong_mode")
end
endcase
end
binary:
begin
case(trans._command)
read:
begin
rf_inf.fill_block(trans.address,
trans._data,
trans.length_data);
uart_inf.read_binary_mode(trans._reqack,
trans._reqinc,
trans.length_data,
trans.address,
trans._data);
end
write:
begin
uart_inf.write_binary_mode(trans._reqack,
trans._reqinc,
trans.length_data,
trans.address,
trans._data);
end
nop:
begin
uart_inf.nop_command(trans._reqack,
trans._reqinc);
end
default:
begin
`uvm_fatal("UNDEFINED COMMAND","Binary command should be either read or write or no operation")
end
endcase
end
wrong_mode:
begin
uart_inf.wrong_command(trans._reqack,
trans._reqinc,
trans.space_wrong1,
trans.length_data,
trans.address,
trans._data);
end
default:
begin
`uvm_fatal("UNEXPECTED VALUE","Command should be text or command or wrong")
end
endcase
uart_inf.wait_idle_time(trans.time_after*trans.scale);
endtask:drive_data
Go to most recent revision | Compare with Previous | Blame | View Log