ARM: imx: use endian-safe readl/readw/writel/writew
Instead of __raw_*, define imx_* to *_relaxed and use those. Using imx_* was requested by Arnd because *_relaxed tends to indicate that the code was carefully reviewed to not require any synchronisation and otherwise be safe, which isn't the case here with the automatic conversion. The conversion itself was done using the following spatch (since that automatically adjusts the coding style unlike a simple search&replace). @@ expression E1, E2; @@ -__raw_writel(E1, E2) +imx_writel(E1, E2) @@ expression E1, E2; @@ -__raw_writew(E1, E2) +imx_writew(E1, E2) @@ expression E1; @@ -__raw_readl(E1) +imx_readl(E1) @@ expression E1; @@ -__raw_readw(E1) +imx_readw(E1) Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
This commit is contained in:
@@ -45,20 +45,20 @@ void __init imx_set_aips(void __iomem *base)
|
||||
* Set all MPROTx to be non-bufferable, trusted for R/W,
|
||||
* not forced to user-mode.
|
||||
*/
|
||||
__raw_writel(0x77777777, base + 0x0);
|
||||
__raw_writel(0x77777777, base + 0x4);
|
||||
imx_writel(0x77777777, base + 0x0);
|
||||
imx_writel(0x77777777, base + 0x4);
|
||||
|
||||
/*
|
||||
* Set all OPACRx to be non-bufferable, to not require
|
||||
* supervisor privilege level for access, allow for
|
||||
* write access and untrusted master access.
|
||||
*/
|
||||
__raw_writel(0x0, base + 0x40);
|
||||
__raw_writel(0x0, base + 0x44);
|
||||
__raw_writel(0x0, base + 0x48);
|
||||
__raw_writel(0x0, base + 0x4C);
|
||||
reg = __raw_readl(base + 0x50) & 0x00FFFFFF;
|
||||
__raw_writel(reg, base + 0x50);
|
||||
imx_writel(0x0, base + 0x40);
|
||||
imx_writel(0x0, base + 0x44);
|
||||
imx_writel(0x0, base + 0x48);
|
||||
imx_writel(0x0, base + 0x4C);
|
||||
reg = imx_readl(base + 0x50) & 0x00FFFFFF;
|
||||
imx_writel(reg, base + 0x50);
|
||||
}
|
||||
|
||||
void __init imx_aips_allow_unprivileged_access(
|
||||
|
Reference in New Issue
Block a user