<somlo>
_florent_, zyp: with PR 569 I think I took care of .data initialization on mor1kx; this leaves microwatt, which doesn't have a fragment zeroing out .bss I can use for assembly pattern-matching :)
futarisIRCcloud has joined #litex
_whitelogger has joined #litex
Degi has quit [Ping timeout: 258 seconds]
Degi has joined #litex
<mithro>
benh_ probably knows how to do the microwatt one
<mithro>
dkozel: Is there anywhere I should be following along on the on the gr-verilog stuff? I'm very interested in people demonstrating the potential of FPGAs tools to be used in the flow of another system -- the glasgow is kind of an awesome example of this
<mithro>
dkozel: But an actual "acceleration" example would be super interesting
st-gourichon-fid has joined #litex
CarlFK has quit [Quit: Leaving.]
CarlFK has joined #litex
<keesj>
litex spiflash doesn't build for me any more it looks like ff.c has been moved to fat but the makefile lacks behind
<keesj>
make: *** No rule to make target '/home/why/projects/litex/litex/litex/soc/software/liblitesdcard/ff.c', needed by 'ff.o'. Stop
<keesj>
hmm the problem is gone when i did a rm of ff.o
<keesj>
(still some implicit declaration of function 'write_to_flash') in cmds/cmd_spiflash.c
<benh_>
mithro: somlo: I can, tell me what you are doing and I'll sort it out
<benh_>
best is shoot me an email
<benh_>
I can look at it later this week
<benh_>
_florent_: liteeth interrupt is edge or level ?
<benh_>
(in general, in litex, interrupts are edge or level ?)
tcal has quit [Ping timeout: 256 seconds]
tcal has joined #litex
<zyp>
benh_, we made some changer to the linker script that now requires every crt0 to inititialize the .data segment
<zyp>
and microwatt/crt0 is the only one remaining now
<somlo>
zyp, sent an email to benh_ (didn't have your email so couldn't cc you, sorry)
<somlo>
with links to github issues/PRs, etc.
<zyp>
ah, good
<benh_>
zyp: what do you mean by initialize the data segment ?
<benh_>
ok I'll check out the issues ... you mean bss ?
<zyp>
both needs to be initialized
<zyp>
all the others were already doing .bss, so we just had to fix .data
<zyp>
for microwatt, both should be added
<benh_>
yeah ok I see, you XIP from a ROM so you need to copy data to RAM
<benh_>
standard stuff, shouldn't take long when I get a chance to look