_whitelogger has quit [Remote host closed the connection]
_whitelogger_ has joined #openocd
urja has quit [Read error: Connection reset by peer]
urja has joined #openocd
Guest79 has joined #openocd
<Guest79>
I'm writing a plugin(?) for OpenOCD to support a custom SWD interface/adaptor. My platform will contain multiple instances of this SWD interface. How do I let the plugin know which instance it is? In looking at the data structures I'm not seeing anything that gets passed to them. In inspecting others (like buspirate) it seems it reads
<Guest79>
them directly from ARGC/ARGV? Is there a best practices for this?
<PaulFertser>
Guest79: is it USB attached?
<PaulFertser>
There're generic commands to specify USB serial number to be matched against device's descriptor.
<Guest79>
no, it's an AXI peripheral being built into a Zynq Ultrascale platform.
<PaulFertser>
Guest79: and is there a sensible default to choose from the instances available?
<PaulFertser>
Guest79: guess you just need a custom command in your adapter driver that would be available in the "configuration" stage to specify it.
<Guest79>
Sure. There's going to be two in the system. Typically only one will be used, but occasionally we may need two at once.
<PaulFertser>
Like you mentioned "buspirate port /dev/ttyUSB0"
<PaulFertser>
So in your adapter drivers you can specify something similar to buspirate_subcommand_handlers[] to handle that.
<Guest79>
Ok, that'll give me a thread to pull on. Thanks for that.
<PaulFertser>
And then on the command line you can just -f interface/my_adapter.cfg -c "my_adapter_instance B" -f target/mytarget.cfg
<PlasmaHH_>
Hi, anyone knows how hard it would be to get openocd to work with an ft4232 chip? it already supports the 2232 so maybe its basically the same just some configuration? (also anyone knows if thats possible, if its even possible to use one of its uart channels in some bitbang mode or so too?)
PlasmaHH_ is now known as PlasmaHH
<zapb__>
PlasmaHH, according to the driver, FT4232 is supported
<PlasmaHH>
zapb__: ah, nice, thanks. was probably too stupid to find it... or typoed the grep ... anyways the thing thats more difficult to answer is if openocd can use one of the non-swd (i think they call it mppse or so) channels for swd too by some hacks (I think it does that for the ft232r?)
<zapb__>
PlasmaHH, see tcl/interface/ftdi/minimodule-swd.cfg
<PlasmaHH>
zapb__: that looks like a no then, too bad, I was hoping to get away with just using that chip...
<zapb__>
PlasmaHH, maybe with the resistor hack?
<zapb__>
See config in the same folder
<PlasmaHH>
zapb__: that just looks like the usual way to connect swdio to these chips... no what I mean is to use channel C or D for swd too
<PlasmaHH>
it would need to do that using bitbang mode like for the ft232r though
<zapb__>
PlasmaHH, ah okay, check.
<zapb__>
this I don't know, if you don't get an answer here ask on the ML
<PlasmaHH>
ftdi should just have made a 4 channel one with all of them supporting mpsse ;)
<PaulFertser>
PlasmaHH: you can use any channel on FT4232H chip
<PaulFertser>
PlasmaHH: all the channels are MPSSE on MPSSE-capable FTDI devices.
<PlasmaHH>
PaulFertser: but only the first two support mpsse