ASoC: omap: mcbsp, mcpdm, dmic: raw read and write endian fix
All OMAP IP blocks expect LE data, but CPU may operate in BE mode. Need to use endian neutral functions to read/write h/w registers. I.e instead of __raw_read[lw] and __raw_write[lw] functions code need to use read[lw]_relaxed and write[lw]_relaxed functions. If the first simply reads/writes register, the second will byteswap it if host operates in BE mode. Changes are trivial sed like replacement of __raw_xxx functions with xxx_relaxed variant. Signed-off-by: Victor Kamensky <victor.kamensky@linaro.org> Signed-off-by: Taras Kondratiuk <taras.kondratiuk@linaro.org> Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com> Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Mark Brown <broonie@linaro.org>
このコミットが含まれているのは:
@@ -74,12 +74,12 @@ struct omap_mcpdm {
|
||||
|
||||
static inline void omap_mcpdm_write(struct omap_mcpdm *mcpdm, u16 reg, u32 val)
|
||||
{
|
||||
__raw_writel(val, mcpdm->io_base + reg);
|
||||
writel_relaxed(val, mcpdm->io_base + reg);
|
||||
}
|
||||
|
||||
static inline int omap_mcpdm_read(struct omap_mcpdm *mcpdm, u16 reg)
|
||||
{
|
||||
return __raw_readl(mcpdm->io_base + reg);
|
||||
return readl_relaxed(mcpdm->io_base + reg);
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
|
新しいイシューから参照
ユーザーをブロックする