NishanthMenon changed the topic of #openocd to: this is the place to discuss all things OpenOCD | Logs: https://libera.irclog.whitequark.org/openocd/
gamiee has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
gamiee has joined #openocd
tsal_ has joined #openocd
tsal has quit [Ping timeout: 245 seconds]
clever has quit [Ping timeout: 276 seconds]
clever has joined #openocd
Hawk777 has joined #openocd
Foxyloxy has quit [Quit: Textual IRC Client: www.textualapp.com]
Foxyloxy has joined #openocd
nerozero has joined #openocd
Haohmaru has joined #openocd
Hawk777 has quit [Quit: Leaving.]
_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
<PaulFertser> s/my_adapter_instance/my_adapter instance/
Guest79 has quit [Quit: Client closed]
xantoz has joined #openocd
Haohmaru has quit [Quit: saionara]
nerozero has quit [Ping timeout: 268 seconds]
electricworry has joined #openocd
PlasmaHH_ has joined #openocd
<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
<PaulFertser> Hm
<PaulFertser> News to me :/ checking
<PlasmaHH> PaulFertser: looking at page 8 atm https://ftdichip.com/wp-content/uploads/2024/12/DS_FT4232HA.pdf
<PaulFertser> Oh shit indeed. OK
<PaulFertser> PlasmaHH: it should be possible with bitbanging but I do not think anyone tried implementing it yet.
<PaulFertser> PlasmaHH: do you need to have 4 independent SWD links there?
<PlasmaHH> PaulFertser: actually three and one uart
<PaulFertser> And probably the host has GPIOs to spare to bitbang SWD directly?
<PlasmaHH> not sure whats "the host" in that question
<PaulFertser> The computer that drives FTDI
<PlasmaHH> ah, no it doesn't / shouldn't the idea is to have something that just connects with one usb to the host
<PaulFertser> PlasmaHH: well if you can afford putting like a day of work then you can get bitbanging working on the other interfaces I hope.
<PaulFertser> PlasmaHH: another idea would be to put a multiplexer probably if you do not need to drive all of the SWD links at the same time.
<PlasmaHH> PaulFertser: I might put that on the todo list, already so much stuff in parallel ;)
<PlasmaHH> well what I thought about was a usb hub chip and then two 2322
<PlasmaHH> no wait 2232? those numnbers...
<PaulFertser> Yes, or that. Not as hackish :)
<PaulFertser> 2232
<PaulFertser> From RS-232 I guess
<PlasmaHH> ah yeah, makes sense
<PaulFertser> A mux is easier to add than a hub I think. And it's enough to mux just the clock probably.
<PlasmaHH> I am a little bit constrained in size so I was hoping to get away with that one chip, since I also need space for level shifters
<PaulFertser> Probably a level shifter with an enable pin then?
<PlasmaHH> yeah but I think there are cases where all three links need to be active, or at least where it w ould be convenient to not have to care
<PaulFertser> Like you enable just the level shifter that you need for one of the three you want to talk at the moment.
<PlasmaHH> like downloading firmware to all three chips etc.
<PaulFertser> That rarely really /needs/ to be done in parallel.
<PlasmaHH> yeah, but as I said, convenient, makes the ci/cd pipeline run faster ;)
<PaulFertser> Nothing else comes to mind
<PlasmaHH> well i had some cases where debugging all three targets at the same time was helpful
PlasmaHH has quit [Ping timeout: 276 seconds]