tpb has quit [Remote host closed the connection]
tpb has joined #symbiflow
citypw has joined #symbiflow
citypw has quit [Quit: Leaving]
citypw has joined #symbiflow
Degi has quit [Ping timeout: 265 seconds]
Degi has joined #symbiflow
Bertl is now known as Bertl_zZ
az0re has joined #symbiflow
_whitelogger has joined #symbiflow
gnufan has joined #symbiflow
proteusguy has quit [Ping timeout: 272 seconds]
gnufan has quit [Quit: Leaving.]
proteusguy has joined #symbiflow
citypw has quit [Ping timeout: 240 seconds]
craigo has joined #symbiflow
brent has quit [Ping timeout: 252 seconds]
pdp7 has quit [Ping timeout: 252 seconds]
pdp7 has joined #symbiflow
brent has joined #symbiflow
futarisIRCcloud has quit [Quit: Connection closed for inactivity]
OmniMancer has joined #symbiflow
OmniMancer1 has quit [Ping timeout: 260 seconds]
futarisIRCcloud has joined #symbiflow
citypw has joined #symbiflow
mkru has joined #symbiflow
mkru has quit [Client Quit]
mkru has joined #symbiflow
Bertl_zZ is now known as Bertl
craigo has quit [Ping timeout: 260 seconds]
kraiskil has joined #symbiflow
<sf-slack2> <acomodi> andrewb1999: There was a PR dating back a few months ago that I have just rebased and enables a few 7020-based boards. https://github.com/SymbiFlow/symbiflow-arch-defs/pull/1260
<tpb> Title: 7020 Zynq boards support by acomodi · Pull Request #1260 · SymbiFlow/symbiflow-arch-defs · GitHub (at github.com)
_whitelogger has joined #symbiflow
kgugala has joined #symbiflow
kgugala_ has quit [Read error: Connection reset by peer]
mkru has quit [Quit: Leaving]
<_whitenotifier-c> [prjtrellis] Martoni opened issue #139: cmake : found suitable version "3.6.8", minimum required is "3.5" - https://git.io/JfzfK
<_whitenotifier-c> [symbiflow-arch-defs] rw1nkler opened issue #1494: Missing CLK_HROW_BOT_R bits - https://git.io/JfzkZ
citypw has quit [Ping timeout: 240 seconds]
gsmecher has joined #symbiflow
mkru has joined #symbiflow
AuroraGem has joined #symbiflow
AuroraGem has quit [Client Quit]
Jerrylogansquare has joined #symbiflow
Jerrylogansquare has quit [Remote host closed the connection]
kraiskil has quit [Ping timeout: 246 seconds]
kraiskil has joined #symbiflow
ric96 has joined #symbiflow
<ric96> Hi all. Wanted to know if there is a possibility to flash arty a7 spi with bitstream when using prjxray? Or if there is a way to manually create mcs file using the generated bitstream.
<litghost> The tooling might need to be adjusted to create that spi image, but I believe we have all the available information required to do such a thing
<mithro> ric96: Flashing a bitstream has nothing to do with prjxray
<mithro> ric96: If you have a bitstream you can flash it to the arty not matter what generated the bitstream?
<ric96> Gotcha, i guess i was just curious if there were any pitfalls of flashing prjxray bitstream like there were with apicula.
<ric96> So i guess i need to figure out if any oss project is available to create mcs from bit files
TooTHPiCK has joined #symbiflow
mkru has quit [Quit: Leaving]
OmniMancer has quit [Quit: Leaving.]
<mithro> ric96: I have never used mcs files personally, Just flashed directly with openocd
TooTHPiCK has left #symbiflow [#symbiflow]
<ric96> Okay I'll try that then
kgugala has quit [Read error: Connection reset by peer]
kgugala has joined #symbiflow
kgugala_ has joined #symbiflow
kgugala has quit [Ping timeout: 256 seconds]
* ric96 thinks symbiflow should have a <project_name>_flash make target similar to <project_name>_prog target but to flash persistent storage.
<ric96> mithro: do you mean load bitstream directly or flash spi? What i knew was that the spi chip isn't directly available over ftdi and a appropriate bitstream needs to be loaded so that the fpga exposes the spi flash to the ftdi. Unless I'm mislead on this info I don't know how directly flashing spi using openocd would work.
<mithro> @ric96 You just need a spiflash proxy which openocd provides
<ric96> mithro: do you have the openocd flags for flashing spi on the a7 handy?
<tpb> Title: symbiflow-arch-defs/boards.cmake at master · SymbiFlow/symbiflow-arch-defs · GitHub (at github.com)
<ric96> mithro: isnt that to just load the bitstream?
<mithro> Oh osrry
<mithro> For some reason I'm have trouble finding a good reference -- https://github.com/ntfreak/openocd/blob/master/tcl/board/arty_s7.cfg has some info
<tpb> Title: openocd/arty_s7.cfg at master · ntfreak/openocd · GitHub (at github.com)
<tpb> Title: bscan_spi_bitstreams/README.md at master · quartiq/bscan_spi_bitstreams · GitHub (at github.com)
<ric96> mithro: awesome thanks! So load the bscan bitstream first and then flash spi...
syed has joined #symbiflow
kgugala has joined #symbiflow
ktemkin has joined #symbiflow
kgugala_ has quit [Ping timeout: 265 seconds]
syed has quit [Remote host closed the connection]
<ric96> mithro: that worked!
<ric96> I did need to add:
<ric96> ```source [find cpld/jtagspi.cfg]```
<ric96> to board-digilent-basys3.cfg
<ric96> And then just use:
<ric96> openocd -f ../board-digilent-basys3.cfg -c "init; jtagspi_init 0 ../bscan_spi_xc7a35t.bit; jtagspi_program top.bit 0; xc7_program xc7.tap; shutdown"
syed has joined #symbiflow
<ric96> mithro: another ques.
<ric96> any specific reason symbiflow-arch-defs repo only targets xc7a50t and not xc7a35t ? I have the 35t and samples work fine but, so is it okay as long i don't go beyond the PL limit?
adjtm_ has quit [Read error: Connection reset by peer]
craigo has joined #symbiflow
andrewb1999 has joined #symbiflow
<andrewb1999> ric96: I've looked into this a bit before, and from a surface level exploring with vivado it seems like the a35t and a50t are the same chip but with an artificial limit imposed by Vivado.
<andrewb1999> It's possible there's some other hardware limitation, but the architectures loaded into Vivado for the a35t and a50t are identical
<ric96> andrewb1999: wait whaaaaat... why would any vendor do that?
<ric96> /me winks to denote sarcasm
<ric96> welp here's to 15k more PL
<ric96> andrewb1999: any tests to see how many actual LUTs are usable?
<andrewb1999> ric96: I haven't done that, but maybe others have
OmniMancer has joined #symbiflow
<ric96> just curious if anyone has actually gotten the linux-litex demo working with prjxray?
<ric96> I've been stuck at `--============= Liftoff! ===============--`
syed has quit [Remote host closed the connection]
kraiskil has quit [Ping timeout: 260 seconds]
<sf-slack2> <pgielda> Can you paste whole log?
<sf-slack2> <pgielda> @ric96
adjtm has joined #symbiflow
syed has joined #symbiflow
syed has quit [Remote host closed the connection]
syed has joined #symbiflow