summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-11-03 16:42:45 +0300
committerTom Rini <trini@konsulko.com>2021-11-03 16:42:45 +0300
commitbc18582a1471384e3c4584dfd17f48a91c88445d (patch)
tree454c6a5e4aea4e381b36723bb5e0d4b3e40edf1a /drivers
parent0bf6563a3e39baeaf6d2cbe4d256bce4f679ad00 (diff)
parent2c4f21763d7132bc355d343347032bd6d2f199f4 (diff)
downloadu-boot-bc18582a1471384e3c4584dfd17f48a91c88445d.tar.xz
Merge https://source.denx.de/u-boot/custodians/u-boot-usb
- usb: mtu3: flush cache for the first GPD when allocate GPD ring
Diffstat (limited to 'drivers')
-rw-r--r--drivers/usb/mtu3/mtu3_qmu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/mtu3/mtu3_qmu.c b/drivers/usb/mtu3/mtu3_qmu.c
index 95eaf6d236..e8dc0095ab 100644
--- a/drivers/usb/mtu3/mtu3_qmu.c
+++ b/drivers/usb/mtu3/mtu3_qmu.c
@@ -112,6 +112,7 @@ int mtu3_gpd_ring_alloc(struct mtu3_ep *mep)
memset(gpd, 0, QMU_GPD_RING_SIZE);
ring->dma = (dma_addr_t)gpd;
gpd_ring_init(ring, gpd);
+ mtu3_flush_cache((uintptr_t)gpd, sizeof(*gpd));
return 0;
}