jtag/drivers: bcm2835gpio: implement memory barriers when bitbashing
commitee87f2b4a9cac084903087aed6ff8e3a691c674b
authorJonathan Bell <jonathan@raspberrypi.com>
Thu, 13 Oct 2022 09:38:53 +0000 (13 10:38 +0100)
committerAntonio Borneo <borneo.antonio@gmail.com>
Fri, 21 Oct 2022 18:05:41 +0000 (21 18:05 +0000)
tree556a36f7011098722ea3292a6b28d42161ef89a2
parenta7ea1ef0aa00920c7c7cb9282080e1d617eb9e81
jtag/drivers: bcm2835gpio: implement memory barriers when bitbashing

This GPIO driver is common to SoCs that have in-order ARM cores
(BCM2835) as well as superscalar (BCM2836-7) and speculative
out-of-order cores (BCM2711).

For BCM2837 and BCM2711, the processor can dual-issue stores and
is free to merge writes to peripheral memory for pages mapped
MT_NORMAL_NC, which is the default provided by /dev/[gpio]mem.

This can cause glitches (or missing edges) on GPIO pins when
toggled with no delay, as pipelined writes to the same address
can get arbitrarily squelched.

To prevent this happening, make sure the preceding write ops are
flushed outside the shareable domain by using a memory barrier.

Signed-off-by: Jonathan Bell <jonathan@raspberrypi.com>
Change-Id: I8805cc0911667bcb9b7f4ca340d7f4f1cb25d096
Reviewed-on: https://review.openocd.org/c/openocd/+/7258
Tested-by: jenkins
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
src/jtag/drivers/bcm2835gpio.c