Skip to content

Commit 2577065

Browse files
committedMar 25, 2015
software/memtest: remove Mixxeo/M1 hardcoded values in bandwidth computation
1 parent 1fc24e6 commit 2577065

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed
 

‎misoclib/mem/sdram/core/lasmicon/multiplexer.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ class Multiplexer(Module, AutoCSR):
9292
def __init__(self, phy_settings, geom_settings, timing_settings, controller_settings, bank_machines, refresher, dfi, lasmic,
9393
with_bandwidth=False):
9494
assert(phy_settings.nphases == len(dfi.phases))
95+
self.phy_settings = phy_settings
9596

9697
# Command choosing
9798
requests = [bm.cmd for bm in bank_machines]
@@ -218,4 +219,5 @@ def add_bandwidth(self):
218219

219220
def do_finalize(self):
220221
if self.with_bandwidth:
221-
self.submodules.bandwidth = Bandwidth(self.choose_req.cmd)
222+
data_width = self.phy_settings.dfi_databits*self.phy_settings.nphases
223+
self.submodules.bandwidth = Bandwidth(self.choose_req.cmd, data_width)

‎misoclib/mem/sdram/core/lasmicon/perf.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
from migen.bank.description import *
33

44
class Bandwidth(Module, AutoCSR):
5-
def __init__(self, cmd, period_bits=24):
5+
def __init__(self, cmd, data_width, period_bits=24):
66
self._update = CSR()
77
self._nreads = CSRStatus(period_bits)
88
self._nwrites = CSRStatus(period_bits)
9+
self._data_width = CSRStatus(bits_for(data_width), reset=data_width)
910

1011
###
1112

‎software/memtest/main.c

+12-2
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,30 @@
1010
#include <console.h>
1111
#include <system.h>
1212

13+
static unsigned int log2(unsigned int v)
14+
{
15+
unsigned int r;
16+
r = 0;
17+
while(v>>=1) r++;
18+
return r;
19+
}
20+
1321
static void membw_service(void)
1422
{
1523
static int last_event;
1624
unsigned long long int nr, nw;
1725
unsigned long long int f;
1826
unsigned int rdb, wrb;
27+
unsigned int dw;
1928

2029
if(elapsed(&last_event, identifier_frequency_read())) {
2130
sdram_controller_bandwidth_update_write(1);
2231
nr = sdram_controller_bandwidth_nreads_read();
2332
nw = sdram_controller_bandwidth_nwrites_read();
2433
f = identifier_frequency_read();
25-
rdb = (nr*f >> (24 - 7))/1000000ULL;
26-
wrb = (nw*f >> (24 - 7))/1000000ULL;
34+
dw = sdram_controller_bandwidth_data_width_read();
35+
rdb = (nr*f >> (24 - log2(dw)))/1000000ULL;
36+
wrb = (nw*f >> (24 - log2(dw)))/1000000ULL;
2737
printf("read:%5dMbps write:%5dMbps all:%5dMbps\n", rdb, wrb, rdb + wrb);
2838
}
2939
}

0 commit comments

Comments
 (0)
Please sign in to comment.