Skip to content

Commit

Permalink
[fpga] 🎨 Remove trailing white spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
hossein1387 committed Sep 20, 2022
1 parent 7e0a8ad commit cdf9593
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
4 changes: 0 additions & 4 deletions ara.core
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,8 @@ filesets:
- hardware/deps/axi/src/axi_serializer.sv
- hardware/deps/axi/src/axi_sim_mem.sv
- hardware/deps/axi/src/axi_dw_downsizer.sv

- hardware/deps/cva6/include/riscv_pkg.sv
- hardware/deps/cva6/include/instr_tracer_pkg.sv

- hardware/deps/cva6/src/riscv-dbg/src/dm_pkg.sv
- hardware/deps/cva6/src/fpu/src/fpnew_pkg.sv
- hardware/deps/cva6/include/ariane_pkg.sv
Expand Down Expand Up @@ -225,7 +223,6 @@ filesets:
- hardware/deps/cva6/src/util/instr_tracer.sv
- hardware/deps/cva6/src/util/ex_trace_item.svh: {is_include_file: true}
- hardware/deps/cva6/src/util/instr_trace_item.svh: {is_include_file: true}

- hardware/deps/apb_uart/src/slib_clock_div.sv
- hardware/deps/apb_uart/src/slib_counter.sv
- hardware/deps/apb_uart/src/slib_edge_detect.sv
Expand Down Expand Up @@ -331,4 +328,3 @@ parameters:
datatype : file
default : apps/bin/helloworld_2
paramtype : plusarg

18 changes: 9 additions & 9 deletions fpga/src/xilinx_ara_soc.sv
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
// - jtag (wip)

module xilinx_ara_soc import axi_pkg::*; import ara_pkg::*; #(
// RVV Parameters
parameter int unsigned NrLanes = 4, // Number of parallel vector lanes.
// Number of parallel vector lanes.
parameter int unsigned NrLanes = 4,
// Support for floating-point data types
parameter fpu_support_e FPUSupport = FPUSupportHalfSingleDouble,
// AXI Interface
Expand All @@ -37,8 +37,8 @@ module xilinx_ara_soc import axi_pkg::*; import ara_pkg::*; #(
output logic [63:0] exit_o,
// Scan chain
// UART
input logic rx_i ,
output logic tx_o
input logic rx_i,
output logic tx_o
);


Expand Down Expand Up @@ -102,11 +102,11 @@ module xilinx_ara_soc import axi_pkg::*; import ara_pkg::*; #(
.PRDATA ( uart_prdata ),
.PREADY ( uart_pready ),
.PSLVERR ( uart_pslverr ),
.INT ( ), // no interrupts
.OUT1N ( ), // keep open
.OUT2N ( ), // keep open
.RTSN ( ), // no flow control
.DTRN ( ), // no flow control
.INT ( ),
.OUT1N ( ),
.OUT2N ( ),
.RTSN ( ),
.DTRN ( ),
.CTSN ( 1'b0 ),
.DSRN ( 1'b0 ),
.DCDN ( 1'b0 ),
Expand Down

0 comments on commit cdf9593

Please sign in to comment.