Line 315... |
Line 315... |
ICACHE_NUM_BLOCKS => 8, -- i-cache: number of blocks (min 2), has to be a power of 2
|
ICACHE_NUM_BLOCKS => 8, -- i-cache: number of blocks (min 2), has to be a power of 2
|
ICACHE_BLOCK_SIZE => 64, -- i-cache: block size in bytes (min 4), has to be a power of 2
|
ICACHE_BLOCK_SIZE => 64, -- i-cache: block size in bytes (min 4), has to be a power of 2
|
ICACHE_ASSOCIATIVITY => 2, -- i-cache: associativity / number of sets (1=direct_mapped), has to be a power of 2
|
ICACHE_ASSOCIATIVITY => 2, -- i-cache: associativity / number of sets (1=direct_mapped), has to be a power of 2
|
-- External memory interface --
|
-- External memory interface --
|
MEM_EXT_EN => true, -- implement external memory bus interface?
|
MEM_EXT_EN => true, -- implement external memory bus interface?
|
MEM_EXT_TIMEOUT => 255, -- cycles after a pending bus access auto-terminates (0 = disabled)
|
MEM_EXT_TIMEOUT => 256, -- cycles after a pending bus access auto-terminates (0 = disabled)
|
-- Stream link interface --
|
-- Stream link interface --
|
SLINK_NUM_TX => 8, -- number of TX links (0..8)
|
SLINK_NUM_TX => 8, -- number of TX links (0..8)
|
SLINK_NUM_RX => 8, -- number of TX links (0..8)
|
SLINK_NUM_RX => 8, -- number of TX links (0..8)
|
SLINK_TX_FIFO => 4, -- TX fifo depth, has to be a power of two
|
SLINK_TX_FIFO => 4, -- TX fifo depth, has to be a power of two
|
SLINK_RX_FIFO => 1, -- RX fifo depth, has to be a power of two
|
SLINK_RX_FIFO => 1, -- RX fifo depth, has to be a power of two
|