// SPDX-License-Identifier: MIT /* Copyright (c) 2014-2025 FPGA Ninja, LLC Authors: - Alex Forencich */ `resetall `timescale 1ns / 1ps `default_nettype none /* * FPGA core logic */ module fpga_core # ( // simulation (set to avoid vendor primitives) parameter logic SIM = 1'b0, // vendor ("GENERIC", "XILINX", "ALTERA") parameter string VENDOR = "XILINX", // device family parameter string FAMILY = "artix7" ) ( /* * Clock: 125MHz * Synchronous reset */ input wire logic clk, input wire logic rst, /* * GPIO */ input wire logic [3:0] btn, input wire logic [3:0] sw, output wire logic led0_r, output wire logic led0_g, output wire logic led0_b, output wire logic led1_r, output wire logic led1_g, output wire logic led1_b, output wire logic led2_r, output wire logic led2_g, output wire logic led2_b, output wire logic led3_r, output wire logic led3_g, output wire logic led3_b, output wire logic led4, output wire logic led5, output wire logic led6, output wire logic led7, /* * UART: 115200 bps, 8N1 */ input wire logic uart_rxd, output wire logic uart_txd, /* * Ethernet: 100BASE-T MII */ input wire logic phy_rx_clk, input wire logic [3:0] phy_rxd, input wire logic phy_rx_dv, input wire logic phy_rx_er, input wire logic phy_tx_clk, output wire logic [3:0] phy_txd, output wire logic phy_tx_en, input wire logic phy_col, input wire logic phy_crs, output wire logic phy_reset_n ); assign {led7, led6, led5, led4, led3_g, led2_g, led1_g, led0_g} = {sw, btn}; assign phy_reset_n = !rst; // XFCP taxi_axis_if #(.DATA_W(8), .USER_EN(1), .USER_W(1)) xfcp_ds(), xfcp_us(); taxi_xfcp_if_uart #( .TX_FIFO_DEPTH(512), .RX_FIFO_DEPTH(512) ) xfcp_if_uart_inst ( .clk(clk), .rst(rst), /* * UART interface */ .uart_rxd(uart_rxd), .uart_txd(uart_txd), /* * XFCP downstream interface */ .xfcp_dsp_ds(xfcp_ds), .xfcp_dsp_us(xfcp_us), /* * Configuration */ .prescale(16'(125000000/3000000)) ); taxi_axis_if #(.DATA_W(8), .USER_EN(1), .USER_W(1)) xfcp_sw_ds[1](), xfcp_sw_us[1](); taxi_xfcp_switch #( .XFCP_ID_STR("Arty A7"), .XFCP_EXT_ID(0), .XFCP_EXT_ID_STR("Taxi example"), .PORTS($size(xfcp_sw_us)) ) xfcp_sw_inst ( .clk(clk), .rst(rst), /* * XFCP upstream port */ .xfcp_usp_ds(xfcp_ds), .xfcp_usp_us(xfcp_us), /* * XFCP downstream ports */ .xfcp_dsp_ds(xfcp_sw_ds), .xfcp_dsp_us(xfcp_sw_us) ); taxi_axis_if #(.DATA_W(16), .KEEP_W(1), .KEEP_EN(0), .LAST_EN(0), .USER_EN(1), .USER_W(1), .ID_EN(1), .ID_W(10)) axis_mac_stat(); taxi_xfcp_mod_stats #( .XFCP_ID_STR("Statistics"), .XFCP_EXT_ID(0), .XFCP_EXT_ID_STR(""), .STAT_COUNT_W(64), .STAT_PIPELINE(2) ) xfcp_stats_inst ( .clk(clk), .rst(rst), /* * XFCP upstream port */ .xfcp_usp_ds(xfcp_sw_ds[0]), .xfcp_usp_us(xfcp_sw_us[0]), /* * Statistics increment input */ .s_axis_stat(axis_mac_stat) ); taxi_axis_if #(.DATA_W(8), .ID_W(8)) axis_eth(); taxi_axis_if #(.DATA_W(96), .KEEP_W(1), .ID_W(8)) axis_tx_cpl(); taxi_eth_mac_mii_fifo #( .SIM(SIM), .VENDOR(VENDOR), .FAMILY(FAMILY), .PADDING_EN(1), .MIN_FRAME_LEN(64), .STAT_EN(1), .STAT_TX_LEVEL(1), .STAT_RX_LEVEL(1), .STAT_ID_BASE(0), .STAT_UPDATE_PERIOD(1024), .TX_FIFO_DEPTH(16384), .TX_FRAME_FIFO(1), .RX_FIFO_DEPTH(16384), .RX_FRAME_FIFO(1) ) eth_mac_inst ( .rst(rst), .logic_clk(clk), .logic_rst(rst), /* * Transmit interface (AXI stream) */ .s_axis_tx(axis_eth), .m_axis_tx_cpl(axis_tx_cpl), /* * Receive interface (AXI stream) */ .m_axis_rx(axis_eth), /* * MII interface */ .mii_rx_clk(phy_rx_clk), .mii_rxd(phy_rxd), .mii_rx_dv(phy_rx_dv), .mii_rx_er(phy_rx_er), .mii_tx_clk(phy_tx_clk), .mii_txd(phy_txd), .mii_tx_en(phy_tx_en), .mii_tx_er(), /* * Statistics */ .stat_clk(clk), .stat_rst(rst), .m_axis_stat(axis_mac_stat), /* * Status */ .tx_error_underflow(), .tx_fifo_overflow(), .tx_fifo_bad_frame(), .tx_fifo_good_frame(), .rx_error_bad_frame(), .rx_error_bad_fcs(), .rx_fifo_overflow(), .rx_fifo_bad_frame(), .rx_fifo_good_frame(), /* * Configuration */ .cfg_tx_max_pkt_len(16'd9218), .cfg_tx_ifg(8'd12), .cfg_tx_enable(1'b1), .cfg_rx_max_pkt_len(16'd9218), .cfg_rx_enable(1'b1) ); endmodule `resetall