349 lines
13 KiB
Tcl
Executable file
349 lines
13 KiB
Tcl
Executable file
##############################################################################
|
|
#
|
|
# (c) Copyright 2007-2013 Xilinx, Inc. All rights reserved.
|
|
#
|
|
# This file contains confidential and proprietary information of Xilinx, Inc.
|
|
# and is protected under U.S. and international copyright and other
|
|
# intellectual property laws.
|
|
#
|
|
# DISCLAIMER
|
|
# This disclaimer is not a license and does not grant any rights to the
|
|
# materials distributed herewith. Except as otherwise provided in a valid
|
|
# license issued to you by Xilinx, and to the maximum extent permitted by
|
|
# applicable law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND WITH ALL
|
|
# FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS,
|
|
# IMPLIED, OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF
|
|
# MERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE;
|
|
# and (2) Xilinx shall not be liable (whether in contract or tort, including
|
|
# negligence, or under any other theory of liability) for any loss or damage
|
|
# of any kind or nature related to, arising under or in connection with these
|
|
# materials, including for any direct, or any indirect, special, incidental,
|
|
# or consequential loss or damage (including loss of data, profits, goodwill,
|
|
# or any type of loss or damage suffered as a result of any action brought by
|
|
# a third party) even if such damage or loss was reasonably foreseeable or
|
|
# Xilinx had been advised of the possibility of the same.
|
|
#
|
|
# CRITICAL APPLICATIONS
|
|
# Xilinx products are not designed or intended to be fail-safe, or for use in
|
|
# any application requiring fail-safe performance, such as life-support or
|
|
# safety devices or systems, Class III medical devices, nuclear facilities,
|
|
# applications related to the deployment of airbags, or any other applications
|
|
# that could lead to death, personal injury, or severe property or
|
|
# environmental damage (individually and collectively, "Critical
|
|
# Applications"). Customer assumes the sole risk and liability of any use of
|
|
# Xilinx products in Critical Applications, subject only to applicable laws
|
|
# and regulations governing limitations on product liability.
|
|
#
|
|
# THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE
|
|
# AT ALL TIMES.
|
|
#
|
|
##############################################################################
|
|
#
|
|
# Modification History
|
|
#
|
|
# Ver Who Date Changes
|
|
# ----- ---- -------- -----------------------------------------------
|
|
# 3.01a sdm 05/06/10 Updated to support AXI version of the core
|
|
# 3.02a bss 08/18/12 Updated the script to fix CR 655224 and CR 672073.
|
|
# Added check for C_USE_EXTENDED_FSL_INSTR for AXI Stream.
|
|
# 3.02a bss 12/03/12 Updated the script to fix CR#687103 and CR#688715
|
|
##############################################################################
|
|
#uses "xillib.tcl"
|
|
|
|
|
|
proc generate {drv_handle} {
|
|
xdefine_mbox_config_files $drv_handle "xparameters.h" "xmbox_g.c" "XMbox"
|
|
xdefine_canonical_xpars $drv_handle "xparameters.h" "Mbox"
|
|
}
|
|
|
|
proc xdefine_mbox_config_if {periph hfile_handle cfile_handle bus_if if_num dev_id has_if0_dev_id} {
|
|
|
|
upvar $dev_id device_id
|
|
upvar $has_if0_dev_id has_if0_device_id
|
|
|
|
set mbox_baseaddr 0
|
|
set mbox_use_fsl 0
|
|
set mbox_send_fsl 0
|
|
set mbox_recv_fsl 0
|
|
set if_isaxi 0
|
|
set use_fsl 0
|
|
|
|
# Copy over the right set of files as src based on processor type
|
|
# sw_proc_handle contains driver handle for processor for which libgen is running. Name of the sw_proc_handle will be driver name for processor[Ex:cpu for microblaze]
|
|
set sw_proc_handle [get_sw_processor]
|
|
set hw_proc_handle [get_cells $sw_proc_handle]
|
|
|
|
|
|
set periph_name [string toupper [get_property NAME $periph]]
|
|
|
|
if {$bus_if == 2} {
|
|
set mbox_baseaddr [get_property CONFIG.[format "C_S%d_AXI_BASEADDR" $if_num] $periph]
|
|
|
|
set if_isaxi [check_if_connected $periph $if_num $bus_if]
|
|
|
|
} else {
|
|
## AXI Stream Interface
|
|
# check if stream interface of mailbox is connected to current processor for which libgen is running
|
|
|
|
set send_fsl 0
|
|
set recv_fsl 0
|
|
|
|
handle_stream $periph $bus_if $if_num use_fsl send_fsl recv_fsl
|
|
|
|
set if_isaxi 0
|
|
set mbox_use_fsl $use_fsl
|
|
set mbox_send_fsl $send_fsl
|
|
set mbox_recv_fsl $recv_fsl
|
|
}
|
|
|
|
if { $if_isaxi == 1 || $use_fsl == 1 } {
|
|
puts $hfile_handle ""
|
|
puts $hfile_handle "/* Definitions for peripheral $periph_name IF ${if_num} */"
|
|
|
|
# The XPAR_INSTANCE_NAME_DEVICE_ID does not apply to Mailbox
|
|
# because the mailbox has two sides
|
|
# Unfortunately, this is used by TestApp
|
|
puts $hfile_handle [format "#define XPAR_%s_IF_%d_DEVICE_ID %s" $periph_name $if_num $device_id]
|
|
puts $hfile_handle [format "#define XPAR_%s_IF_%d_BASEADDR 0x%X" $periph_name $if_num $mbox_baseaddr]
|
|
puts $hfile_handle [format "#define XPAR_%s_IF_%d_USE_FSL %d" $periph_name $if_num $mbox_use_fsl]
|
|
puts $hfile_handle [format "#define XPAR_%s_IF_%d_SEND_FSL %d" $periph_name $if_num $mbox_send_fsl]
|
|
puts $hfile_handle [format "#define XPAR_%s_IF_%d_RECV_FSL %d" $periph_name $if_num $mbox_recv_fsl]
|
|
|
|
if {!$has_if0_device_id} {
|
|
puts $hfile_handle ""
|
|
puts $hfile_handle "/* Definition for TestApp ID */"
|
|
puts $hfile_handle [format "#define XPAR_%s_TESTAPP_ID %s" $periph_name $device_id]
|
|
}
|
|
|
|
puts $cfile_handle "\t\{"
|
|
puts $cfile_handle [format "\t\t XPAR_%s_IF_%d_DEVICE_ID, " $periph_name $if_num]
|
|
puts $cfile_handle [format "\t\t XPAR_%s_IF_%d_BASEADDR, " $periph_name $if_num]
|
|
puts $cfile_handle [format "\t\t XPAR_%s_IF_%d_USE_FSL," $periph_name $if_num]
|
|
puts $cfile_handle [format "\t\t XPAR_%s_IF_%d_SEND_FSL," $periph_name $if_num]
|
|
puts $cfile_handle [format "\t\t XPAR_%s_IF_%d_RECV_FSL" $periph_name $if_num]
|
|
puts -nonewline $cfile_handle "\t\}"
|
|
puts $cfile_handle ","
|
|
set has_if0_device_id 1
|
|
incr device_id
|
|
}
|
|
}
|
|
|
|
|
|
#
|
|
# Create configuration C/H files as required by Xilinx drivers
|
|
#
|
|
proc xdefine_mbox_config_files {drv_handle hfile_name cfile_name drv_string} {
|
|
|
|
# Open include file
|
|
set hfile_handle [xopen_include_file $hfile_name]
|
|
set cfile_name [file join "src" $cfile_name]
|
|
file delete $cfile_name
|
|
set cfile_handle [open $cfile_name w]
|
|
|
|
xprint_generated_header $cfile_handle "Driver configuration"
|
|
puts $cfile_handle "#include \"xparameters.h\""
|
|
puts $cfile_handle "#include \"[string tolower $drv_string].h\""
|
|
puts $cfile_handle "\n/*"
|
|
puts $cfile_handle " * The configuration table for devices"
|
|
puts $cfile_handle " */\n"
|
|
puts $cfile_handle [format "%s_Config %s_ConfigTable\[\] =" $drv_string $drv_string]
|
|
puts $cfile_handle "\{"
|
|
|
|
# Get all peripherals connected to this driver
|
|
set periphs [xget_sw_iplist_for_driver $drv_handle]
|
|
|
|
# Print all parameters for all peripherals
|
|
set device_id 0
|
|
foreach periph $periphs {
|
|
set has_if0_device_id 0
|
|
for {set if_num 0} {$if_num < 2} {incr if_num} {
|
|
set bus_if [get_property CONFIG.[format "C_INTERCONNECT_PORT_%d" $if_num] $periph]
|
|
xdefine_mbox_config_if $periph $hfile_handle $cfile_handle $bus_if $if_num device_id has_if0_device_id
|
|
}
|
|
}
|
|
|
|
puts $cfile_handle "\};"
|
|
close $cfile_handle
|
|
|
|
puts $hfile_handle ""
|
|
puts $hfile_handle "/* Definitions for driver MAILBOX */"
|
|
puts $hfile_handle [format "#define XPAR_XMBOX_NUM_INSTANCES %d" $device_id]
|
|
puts $hfile_handle "\n/******************************************************************/\n"
|
|
close $hfile_handle
|
|
}
|
|
|
|
# Check whether the interface is connected or not
|
|
proc check_if_connected {periph if_num bus_if} {
|
|
set sw_proc_handle [get_sw_processor]
|
|
set hw_proc_handle [get_cells $sw_proc_handle]
|
|
set if_isaxi 0
|
|
set if_axis_connected 0
|
|
|
|
if {$bus_if == 2} {
|
|
set baseaddr [get_property CONFIG.[format "C_S%d_AXI_BASEADDR" $if_num] $periph]
|
|
set mem [get_mem_ranges -of_objects $hw_proc_handle -filter "INSTANCE==$periph"]
|
|
if {[llength $mem] != 0} {
|
|
set addrs [get_property BASE_VALUE $mem]
|
|
foreach addr $addrs {
|
|
if {$addr == $baseaddr} {
|
|
set if_isaxi 1
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
set use_fsl 0
|
|
set send_fsl 0
|
|
set recv_fsl 0
|
|
handle_stream $periph $bus_if $if_num use_fsl send_fsl recv_fsl
|
|
set if_axis_connected $use_fsl
|
|
}
|
|
|
|
if {$if_isaxi || $if_axis_connected} {
|
|
return 1
|
|
} else {
|
|
return 0
|
|
}
|
|
}
|
|
|
|
# Generate canonical definitions for device ID
|
|
proc gen_canonical_device_id {file_handle canonical_name periph_name if_num} {
|
|
set lvalue [xget_dname $canonical_name "DEVICE_ID"]
|
|
set rvalue "XPAR_${periph_name}_IF_${if_num}_DEVICE_ID"
|
|
puts $file_handle "#define $lvalue $rvalue"
|
|
}
|
|
|
|
# Generate canonical definitions for parameters
|
|
proc gen_canonical_param_def {file_handle canonical_name periph param_prefix params} {
|
|
foreach arg $params {
|
|
if {$param_prefix == ""} {
|
|
set actual_arg "${arg}"
|
|
} else {
|
|
set actual_arg "${param_prefix}_${arg}"
|
|
}
|
|
set lvalue [xget_dname $canonical_name $arg]
|
|
|
|
# The rvalue set below is the actual value of the parameter
|
|
set rvalue [xget_param_value $periph $actual_arg]
|
|
if {[llength $rvalue] == 0} {
|
|
set rvalue 0
|
|
}
|
|
set rvalue [xformat_addr_string $rvalue $actual_arg]
|
|
|
|
puts $file_handle "#define $lvalue $rvalue"
|
|
}
|
|
}
|
|
|
|
proc gen_canonical_fsl_param_def {file_handle canonical_name periph if_num} {
|
|
set periph_name [string toupper [get_property NAME $periph]]
|
|
|
|
puts $file_handle [format "#define [xget_dname $canonical_name "USE_FSL"] XPAR_%s_IF_%d_USE_FSL" $periph_name $if_num]
|
|
puts $file_handle [format "#define [xget_dname $canonical_name "SEND_FSL"] XPAR_%s_IF_%d_SEND_FSL" $periph_name $if_num]
|
|
puts $file_handle [format "#define [xget_dname $canonical_name "RECV_FSL"] XPAR_%s_IF_%d_RECV_FSL" $periph_name $if_num]
|
|
}
|
|
|
|
# Generate canonical definitions for an interface
|
|
proc gen_canonical_if_def {file_handle periph if_num bus_if drv_string dev_id common_params} {
|
|
upvar $dev_id device_id
|
|
|
|
set periph_name [string toupper [get_property NAME $periph]]
|
|
set canonical_name [format "%s_%s" $drv_string $device_id]
|
|
|
|
# Make sure canonical name is not the same as hardware instance
|
|
if { [string compare -nocase $canonical_name $periph_name] == 0 } {
|
|
return
|
|
}
|
|
|
|
set if_connected [check_if_connected $periph $if_num $bus_if]
|
|
|
|
if {$if_connected} {
|
|
puts $file_handle ""
|
|
puts $file_handle "/* Canonical definitions for peripheral $periph_name IF ${if_num} */"
|
|
|
|
gen_canonical_device_id $file_handle $canonical_name $periph_name $if_num
|
|
|
|
set addr_args [list "BASEADDR" "HIGHADDR"]
|
|
|
|
gen_canonical_param_def $file_handle $canonical_name $periph "C_S${if_num}_AXI" $addr_args
|
|
|
|
gen_canonical_param_def $file_handle $canonical_name $periph "" $common_params
|
|
gen_canonical_fsl_param_def $file_handle $canonical_name $periph $if_num
|
|
|
|
incr device_id
|
|
puts $file_handle ""
|
|
}
|
|
}
|
|
|
|
#
|
|
# Given a list of arguments, define each as a canonical constant name, using
|
|
# the driver name, in an include file.
|
|
#
|
|
proc xdefine_canonical_xpars {drv_handle file_name drv_string args} {
|
|
# Open include file
|
|
set file_handle [xopen_include_file $file_name]
|
|
|
|
# Get all peripherals connected to this driver
|
|
set periphs [xget_sw_iplist_for_driver $drv_handle]
|
|
|
|
# Print canonical parameters for each peripheral
|
|
set device_id 0
|
|
foreach periph $periphs {
|
|
for {set if_num 0} {$if_num < 2} {incr if_num} {
|
|
set bus_if [get_property CONFIG.[format "C_INTERCONNECT_PORT_%d" $if_num] $periph]
|
|
gen_canonical_if_def $file_handle $periph $if_num $bus_if $drv_string device_id $args
|
|
}
|
|
}
|
|
puts $file_handle "\n/******************************************************************/\n"
|
|
close $file_handle
|
|
}
|
|
|
|
proc handle_stream {periph bus_if if_num usefsl sendfsl recfsl} {
|
|
|
|
upvar $usefsl use_fsl
|
|
upvar $sendfsl send_fsl
|
|
upvar $recfsl recv_fsl
|
|
set not_connected 0
|
|
|
|
set sw_proc_handle [get_sw_processor]
|
|
set hw_proc_handle [get_cells $sw_proc_handle]
|
|
|
|
set periph_name [string toupper [get_property NAME $periph]]
|
|
|
|
set initiator_handle [xget_connected_intf $periph S${if_num}_AXIS]
|
|
if { [llength $initiator_handle] != 1 } {
|
|
incr not_connected
|
|
} else {
|
|
set maxis_initiator_handle [get_cells -of_objects $initiator_handle]
|
|
if { $maxis_initiator_handle == $hw_proc_handle } {
|
|
if {[get_property CONFIG.C_USE_EXTENDED_FSL_INSTR $hw_proc_handle] != 1 } {
|
|
error "ERROR: The mailbox driver requires parameter C_USE_EXTENDED_FSL_INSTR on MicroBlaze to be enabled when an AXI Stream interface is used to connect the mailbox core." "" "mdt_error"
|
|
}
|
|
set initiator_name [get_property NAME $initiator_handle]
|
|
scan $initiator_name "M%d_AXIS" send_fsl
|
|
set use_fsl 1
|
|
} else {
|
|
set use_fsl 0
|
|
}
|
|
}
|
|
|
|
set target_handle [xget_connected_intf $periph M${if_num}_AXIS]
|
|
if { [llength $target_handle] != 1 } {
|
|
incr not_connected
|
|
} else {
|
|
set saxis_target_handle [get_cells -of_objects $target_handle]
|
|
if { $saxis_target_handle == $hw_proc_handle } {
|
|
if {[get_property CONFIG.C_USE_EXTENDED_FSL_INSTR $hw_proc_handle] != 1 } {
|
|
error "ERROR: The mailbox driver requires parameter C_USE_EXTENDED_FSL_INSTR on MicroBlaze to be enabled when an AXI Stream interface is used to connect the mailbox core." "" "mdt_error"
|
|
}
|
|
set target_name [get_property NAME $target_handle]
|
|
scan $target_name "S%d_AXIS" recv_fsl
|
|
set use_fsl 1
|
|
} else {
|
|
set use_fsl 0
|
|
}
|
|
}
|
|
|
|
if { $not_connected == 2 } {
|
|
error "ERROR: Unable to figure out AXI stream connectivity for Interface ${if_num} on mailbox $periph_name."
|
|
}
|
|
|
|
}
|