Re: [PATCH u-boot 1/3] pci: mpc85xx: Add missing sync() after writing to PCI config space

2023-05-02 Thread Tom Rini
On Thu, Apr 13, 2023 at 10:41:44PM +0200, Pali Rohár wrote: > On PowerPC we should use barrier after store operation to HW register. > > Signed-off-by: Pali Rohár > Reviewed-by: Heiko Schocher > Tested-by: Heiko Schocher Applied to u-boot/master, thanks! -- Tom signature.asc Description:

Re: [PATCH u-boot 1/3] pci: mpc85xx: Add missing sync() after writing to PCI config space

2023-04-16 Thread Heiko Schocher
Hello Pali, On 13.04.23 22:41, Pali Rohár wrote: > On PowerPC we should use barrier after store operation to HW register. > > Signed-off-by: Pali Rohár > --- > drivers/pci/pci_mpc85xx.c | 1 + > 1 file changed, 1 insertion(+) Good catch, thanks! Reviewed-by: Heiko Schocher Tested-by: Heiko

[PATCH u-boot 1/3] pci: mpc85xx: Add missing sync() after writing to PCI config space

2023-04-13 Thread Pali Rohár
On PowerPC we should use barrier after store operation to HW register. Signed-off-by: Pali Rohár --- drivers/pci/pci_mpc85xx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pci/pci_mpc85xx.c b/drivers/pci/pci_mpc85xx.c index 8a81a74067e9..23f14db83018 100644 ---