Advertisement
ZirconiumX

Untitled

Nov 14th, 2019
472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.93 KB | None | 0 0
  1. # This file is Copyright (c) 2018-2019 Florent Kermarrec <florent@enjoy-digital.fr>
  2. # License: BSD
  3.  
  4. {
  5.     # General ------------------------------------------------------------------
  6.     "cpu":       "vexriscv",  # Type of CPU used for init/calib (vexriscv, lm32)
  7.     "speedgrade": -1,          # FPGA speedgrade
  8.     "memtype":   "DDR3",      # DRAM type
  9.  
  10.     # PHY ----------------------------------------------------------------------
  11.     "cmd_delay":      0,             # Command additional delay (in taps)
  12.     "cmd_latency":    0,             # Command additional latency
  13.     "sdram_module":   "MT41K128M16", # SDRAM modules of the board or SO-DIMM
  14.     "sdram_module_nb": 2,             # Number of byte groups
  15.     "sdram_rank_nb":  1,             # Number of ranks
  16.     "sdram_phy":      "A7DDRPHY",    # Type of FPGA PHY
  17.  
  18.     # Electrical ---------------------------------------------------------------
  19.     "rtt_nom": "60ohm",  # Nominal termination
  20.     "rtt_wr": "60ohm",  # Write termination
  21.     "ron":    "34ohm",  # Output driver impedance
  22.  
  23.     # Frequency ----------------------------------------------------------------
  24.     "input_clk_freq":  100e6, # Input clock frequency
  25.     "sys_clk_freq":    100e6, # System clock frequency (DDR_clk = 4 x sys_clk)
  26.     "iodelay_clk_freq": 200e6, # IODELAYs reference clock frequency
  27.  
  28.     # Core ---------------------------------------------------------------------
  29.     "cmd_buffer_depth": 16,    # Depth of the command buffer
  30.  
  31.     # User Ports ---------------------------------------------------------------
  32.     "user_ports_nb":      2,     # Number of user ports
  33.     "user_ports_type":    "axi", # Type of ports (axi, wishbone, native)
  34.     "user_ports_id_width": 32,    # AXI identifier width
  35.  
  36.     # CSR Port -----------------------------------------------------------------
  37.     "csr_expose": "False", # Expose CSR bus as I/Os
  38.     "csr_align" : 32,      # CSR alignment
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement