cosmetics: Change Altera to Intel in comments
parent
2f0dbe6151
commit
04ce10a570
|
@ -116,7 +116,7 @@ module axi_ad9361_cmos_if #(
|
|||
output up_drp_ready,
|
||||
output up_drp_locked);
|
||||
|
||||
// cmos is not supported on altera platforms yet.
|
||||
// cmos is not supported on intel platforms yet.
|
||||
|
||||
assign tx_clk_out = 1'd0;
|
||||
assign tx_frame_out = 1'd0;
|
||||
|
|
|
@ -206,7 +206,7 @@ module axi_ad9361_lvds_if #(
|
|||
rx_locked <= rx_locked_m1;
|
||||
end
|
||||
|
||||
// altera-equivalence
|
||||
// intel-equivalence
|
||||
|
||||
always @(posedge l_clk) begin
|
||||
rx_valid <= ~rx_valid;
|
||||
|
|
|
@ -370,7 +370,7 @@ proc add_axi_master_interface {axi_type port suffix} {
|
|||
add_interface_port $port ${port}_arburst arburst Output 2
|
||||
add_interface_port $port ${port}_arcache arcache Output 4
|
||||
add_interface_port $port ${port}_arprot arprot Output 3
|
||||
# Some signals are mandatory in Altera's implementation of AXI3
|
||||
# Some signals are mandatory in Intel's implementation of AXI3
|
||||
# awid, awlock, wid, bid, arid, arlock, rid, rlast
|
||||
# Hide them in AXI4
|
||||
add_interface_port $port ${port}_awid awid Output 1
|
||||
|
|
|
@ -83,7 +83,7 @@ adi_set_ports_dependency "fifo_rd" \
|
|||
adi_set_ports_dependency "dest_diag_level_bursts" \
|
||||
"(spirit:decode(id('MODELPARAM_VALUE.ENABLE_DIAGNOSTICS_IF')) = 1)"
|
||||
|
||||
# These are in the design to keep the Altera tools happy which can't handle
|
||||
# These are in the design to keep the Intel tools happy which can't handle
|
||||
# uni-directional AXI interfaces. The Xilinx tools can and do a better job when
|
||||
# they know that the interface is uni-directional, so disable the ports.
|
||||
set dummy_axi_ports [list \
|
||||
|
@ -119,7 +119,7 @@ set dummy_axi_ports [list \
|
|||
"m_src_axi_bresp" \
|
||||
]
|
||||
|
||||
# These are in the design to keep the Altera tools happy which require
|
||||
# These are in the design to keep the Intel tools happy which require
|
||||
# certain signals in AXI3 mode even if these are defined as optinal in the standard.
|
||||
lappend dummy_axi_ports \
|
||||
"m_dest_axi_awid" \
|
||||
|
|
|
@ -140,7 +140,7 @@ module axi_adxcvr_up #(
|
|||
end
|
||||
end
|
||||
|
||||
// Specific to Altera
|
||||
// Specific to Intel
|
||||
|
||||
assign up_rparam_s[31:28] = 8'd0;
|
||||
assign up_rparam_s[27:24] = XCVR_TYPE[3:0];
|
||||
|
|
|
@ -97,7 +97,7 @@ end
|
|||
* Shift register with variable tap for accessing the stored data.
|
||||
*
|
||||
* This has slightly better utilization on Xilinx based platforms than the dual
|
||||
* port RAM approach, but there is no equivalent primitive on Altera resulting
|
||||
* port RAM approach, but there is no equivalent primitive on Intel resulting
|
||||
* in increased utilization since it needs to be implemented used registers and
|
||||
* muxes.
|
||||
*
|
||||
|
|
|
@ -478,8 +478,6 @@ module axi_adxcvr_up #(
|
|||
assign up_rack = up_rreq_d;
|
||||
assign up_rdata = up_rdata_d;
|
||||
|
||||
// altera specific
|
||||
|
||||
assign up_rparam_s[31:24] = 8'd0;
|
||||
|
||||
// xilinx specific
|
||||
|
|
|
@ -169,7 +169,7 @@ module system_top (
|
|||
|
||||
assign gpio_bd_o = gpio_o[15:0];
|
||||
|
||||
// User code space at offset 0x0930_0000 per Altera's Board Update Portal
|
||||
// User code space at offset 0x0930_0000 per Intel's Board Update Portal
|
||||
// reference design used to program flash
|
||||
|
||||
assign flash_addr = flash_addr_raw + 28'h9300000;
|
||||
|
|
|
@ -133,7 +133,7 @@ module system_top (
|
|||
wire [ 7:0] spi_csn_s;
|
||||
wire dac_fifo_bypass;
|
||||
|
||||
// User code space at offset 0x0930_0000 per Altera's Board Update Portal
|
||||
// User code space at offset 0x0930_0000 per Intel's Board Update Portal
|
||||
// reference design used to program flash
|
||||
|
||||
wire [23:0] flash_addr_raw;
|
||||
|
|
|
@ -177,7 +177,7 @@ module system_top (
|
|||
|
||||
assign gpio_bd_o = gpio_o[15:0];
|
||||
|
||||
// User code space at offset 0x0930_0000 per Altera's Board Update Portal
|
||||
// User code space at offset 0x0930_0000 per Intel's Board Update Portal
|
||||
// reference design used to program flash
|
||||
|
||||
assign flash_addr = flash_addr_raw + 28'h9300000;
|
||||
|
|
Loading…
Reference in New Issue