drm/msm: Drop msm_read/writel
authorKonrad Dybcio <konrad.dybcio@linaro.org>
Wed, 10 Apr 2024 21:52:52 +0000 (23:52 +0200)
committerDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Mon, 22 Apr 2024 13:22:50 +0000 (16:22 +0300)
Totally useless.

Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
Reviewed-by: Andrew Halaney <ahalaney@redhat.com>
Patchwork: https://patchwork.freedesktop.org/patch/588804/
Link: https://lore.kernel.org/r/20240410-topic-msm_rw-v1-1-e1fede9ffaba@linaro.org
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
13 files changed:
drivers/gpu/drm/msm/adreno/a6xx_gmu.c
drivers/gpu/drm/msm/adreno/a6xx_gmu.h
drivers/gpu/drm/msm/adreno/a6xx_gpu.h
drivers/gpu/drm/msm/adreno/a6xx_gpu_state.c
drivers/gpu/drm/msm/disp/mdp4/mdp4_kms.h
drivers/gpu/drm/msm/disp/mdp5/mdp5_kms.h
drivers/gpu/drm/msm/dsi/dsi_host.c
drivers/gpu/drm/msm/dsi/phy/dsi_phy.h
drivers/gpu/drm/msm/hdmi/hdmi.h
drivers/gpu/drm/msm/hdmi/hdmi_phy_8996.c
drivers/gpu/drm/msm/hdmi/hdmi_pll_8960.c
drivers/gpu/drm/msm/msm_drv.h
drivers/gpu/drm/msm/msm_gpu.h

index 8bea8ef26f77ee8e75b25952d0aa32d7f6399f18..0e3dfd4c2bc87f3d4fa25ee4a916a866bf6d64fe 100644 (file)
@@ -507,7 +507,7 @@ static void a6xx_rpmh_stop(struct a6xx_gmu *gmu)
 
 static inline void pdc_write(void __iomem *ptr, u32 offset, u32 value)
 {
-       msm_writel(value, ptr + (offset << 2));
+       writel(value, ptr + (offset << 2));
 }
 
 static void __iomem *a6xx_gmu_get_mmio(struct platform_device *pdev,
index 592b296aab22b1e3245b95450f05cceec66ac5a4..94b6c5cab6f435c8965fea8ae5804451c6c3cf29 100644 (file)
@@ -103,12 +103,12 @@ struct a6xx_gmu {
 
 static inline u32 gmu_read(struct a6xx_gmu *gmu, u32 offset)
 {
-       return msm_readl(gmu->mmio + (offset << 2));
+       return readl(gmu->mmio + (offset << 2));
 }
 
 static inline void gmu_write(struct a6xx_gmu *gmu, u32 offset, u32 value)
 {
-       msm_writel(value, gmu->mmio + (offset << 2));
+       writel(value, gmu->mmio + (offset << 2));
 }
 
 static inline void
@@ -131,8 +131,8 @@ static inline u64 gmu_read64(struct a6xx_gmu *gmu, u32 lo, u32 hi)
 {
        u64 val;
 
-       val = (u64) msm_readl(gmu->mmio + (lo << 2));
-       val |= ((u64) msm_readl(gmu->mmio + (hi << 2)) << 32);
+       val = (u64) readl(gmu->mmio + (lo << 2));
+       val |= ((u64) readl(gmu->mmio + (hi << 2)) << 32);
 
        return val;
 }
@@ -143,12 +143,12 @@ static inline u64 gmu_read64(struct a6xx_gmu *gmu, u32 lo, u32 hi)
 
 static inline u32 gmu_read_rscc(struct a6xx_gmu *gmu, u32 offset)
 {
-       return msm_readl(gmu->rscc + (offset << 2));
+       return readl(gmu->rscc + (offset << 2));
 }
 
 static inline void gmu_write_rscc(struct a6xx_gmu *gmu, u32 offset, u32 value)
 {
-       msm_writel(value, gmu->rscc + (offset << 2));
+       writel(value, gmu->rscc + (offset << 2));
 }
 
 #define gmu_poll_timeout_rscc(gmu, addr, val, cond, interval, timeout) \
index 34822b08075930830ef233c135bf8cd0b2b688ff..8917032b75156804fc5950ab96178d9e254cb3ad 100644 (file)
@@ -69,12 +69,12 @@ static inline void a6xx_llc_rmw(struct a6xx_gpu *a6xx_gpu, u32 reg, u32 mask, u3
 
 static inline u32 a6xx_llc_read(struct a6xx_gpu *a6xx_gpu, u32 reg)
 {
-       return msm_readl(a6xx_gpu->llc_mmio + (reg << 2));
+       return readl(a6xx_gpu->llc_mmio + (reg << 2));
 }
 
 static inline void a6xx_llc_write(struct a6xx_gpu *a6xx_gpu, u32 reg, u32 value)
 {
-       msm_writel(value, a6xx_gpu->llc_mmio + (reg << 2));
+       writel(value, a6xx_gpu->llc_mmio + (reg << 2));
 }
 
 #define shadowptr(_a6xx_gpu, _ring) ((_a6xx_gpu)->shadow_iova + \
index a847a0f7a73c9f61fde92fcf75f36a4f37dadf07..83d7ee01c944ad9c2d7bb3c8f8461b5415e5d1b4 100644 (file)
@@ -192,10 +192,10 @@ static int debugbus_read(struct msm_gpu *gpu, u32 block, u32 offset,
 }
 
 #define cxdbg_write(ptr, offset, val) \
-       msm_writel((val), (ptr) + ((offset) << 2))
+       writel((val), (ptr) + ((offset) << 2))
 
 #define cxdbg_read(ptr, offset) \
-       msm_readl((ptr) + ((offset) << 2))
+       readl((ptr) + ((offset) << 2))
 
 /* read a value from the CX debug bus */
 static int cx_debugbus_read(void __iomem *cxdbg, u32 block, u32 offset,
index 01179e764a294ad8a3948c7de4447eecdf0bab3e..94b1ba92785fe55f8ead3bb8a7f998dc24a76f6a 100644 (file)
@@ -44,12 +44,12 @@ struct mdp4_kms {
 
 static inline void mdp4_write(struct mdp4_kms *mdp4_kms, u32 reg, u32 data)
 {
-       msm_writel(data, mdp4_kms->mmio + reg);
+       writel(data, mdp4_kms->mmio + reg);
 }
 
 static inline u32 mdp4_read(struct mdp4_kms *mdp4_kms, u32 reg)
 {
-       return msm_readl(mdp4_kms->mmio + reg);
+       return readl(mdp4_kms->mmio + reg);
 }
 
 static inline uint32_t pipe2flush(enum mdp4_pipe pipe)
index fac9f05aa63907128c57e928ab396e31019353a9..36b6842dfc9c63bce8f26ba351fdb1c77180300d 100644 (file)
@@ -171,13 +171,13 @@ struct mdp5_encoder {
 static inline void mdp5_write(struct mdp5_kms *mdp5_kms, u32 reg, u32 data)
 {
        WARN_ON(mdp5_kms->enable_count <= 0);
-       msm_writel(data, mdp5_kms->mmio + reg);
+       writel(data, mdp5_kms->mmio + reg);
 }
 
 static inline u32 mdp5_read(struct mdp5_kms *mdp5_kms, u32 reg)
 {
        WARN_ON(mdp5_kms->enable_count <= 0);
-       return msm_readl(mdp5_kms->mmio + reg);
+       return readl(mdp5_kms->mmio + reg);
 }
 
 static inline const char *stage2name(enum mdp_mixer_stage_id stage)
index 9d86a6aca6f2ab6050f893f1bfb6527bff84ee67..77bd5ff330d71467cc0b3dc0059a777f7a450853 100644 (file)
@@ -55,7 +55,7 @@ static int dsi_get_version(const void __iomem *base, u32 *major, u32 *minor)
         * scratch register which we never touch)
         */
 
-       ver = msm_readl(base + REG_DSI_VERSION);
+       ver = readl(base + REG_DSI_VERSION);
        if (ver) {
                /* older dsi host, there is no register shift */
                ver = FIELD(ver, DSI_VERSION_MAJOR);
@@ -73,12 +73,12 @@ static int dsi_get_version(const void __iomem *base, u32 *major, u32 *minor)
                 * registers are shifted down, read DSI_VERSION again with
                 * the shifted offset
                 */
-               ver = msm_readl(base + DSI_6G_REG_SHIFT + REG_DSI_VERSION);
+               ver = readl(base + DSI_6G_REG_SHIFT + REG_DSI_VERSION);
                ver = FIELD(ver, DSI_VERSION_MAJOR);
                if (ver == MSM_DSI_VER_MAJOR_6G) {
                        /* 6G version */
                        *major = ver;
-                       *minor = msm_readl(base + REG_DSI_6G_HW_VERSION);
+                       *minor = readl(base + REG_DSI_6G_HW_VERSION);
                        return 0;
                } else {
                        return -EINVAL;
@@ -186,11 +186,11 @@ struct msm_dsi_host {
 
 static inline u32 dsi_read(struct msm_dsi_host *msm_host, u32 reg)
 {
-       return msm_readl(msm_host->ctrl_base + reg);
+       return readl(msm_host->ctrl_base + reg);
 }
 static inline void dsi_write(struct msm_dsi_host *msm_host, u32 reg, u32 data)
 {
-       msm_writel(data, msm_host->ctrl_base + reg);
+       writel(data, msm_host->ctrl_base + reg);
 }
 
 static const struct msm_dsi_cfg_handler *dsi_get_config(
index e4275d3ad581912a6c884d4800cfdc67f53dec56..5a5dc3faa971c72dd7e1e0a54ca32cfeabdb269f 100644 (file)
 
 #include "dsi.h"
 
-#define dsi_phy_read(offset) msm_readl((offset))
-#define dsi_phy_write(offset, data) msm_writel((data), (offset))
-#define dsi_phy_write_udelay(offset, data, delay_us) { msm_writel((data), (offset)); udelay(delay_us); }
-#define dsi_phy_write_ndelay(offset, data, delay_ns) { msm_writel((data), (offset)); ndelay(delay_ns); }
+#define dsi_phy_read(offset) readl((offset))
+#define dsi_phy_write(offset, data) writel((data), (offset))
+#define dsi_phy_write_udelay(offset, data, delay_us) { writel((data), (offset)); udelay(delay_us); }
+#define dsi_phy_write_ndelay(offset, data, delay_ns) { writel((data), (offset)); ndelay(delay_ns); }
 
 struct msm_dsi_phy_ops {
        int (*pll_init)(struct msm_dsi_phy *phy);
index ec57864403915c4150d31d49ab084d11d9d1f8bb..4586baf364151c3699df089cfe774e37cb1a9a15 100644 (file)
@@ -115,17 +115,17 @@ void msm_hdmi_set_mode(struct hdmi *hdmi, bool power_on);
 
 static inline void hdmi_write(struct hdmi *hdmi, u32 reg, u32 data)
 {
-       msm_writel(data, hdmi->mmio + reg);
+       writel(data, hdmi->mmio + reg);
 }
 
 static inline u32 hdmi_read(struct hdmi *hdmi, u32 reg)
 {
-       return msm_readl(hdmi->mmio + reg);
+       return readl(hdmi->mmio + reg);
 }
 
 static inline u32 hdmi_qfprom_read(struct hdmi *hdmi, u32 reg)
 {
-       return msm_readl(hdmi->qfprom_mmio + reg);
+       return readl(hdmi->qfprom_mmio + reg);
 }
 
 /*
@@ -166,12 +166,12 @@ struct hdmi_phy {
 
 static inline void hdmi_phy_write(struct hdmi_phy *phy, u32 reg, u32 data)
 {
-       msm_writel(data, phy->mmio + reg);
+       writel(data, phy->mmio + reg);
 }
 
 static inline u32 hdmi_phy_read(struct hdmi_phy *phy, u32 reg)
 {
-       return msm_readl(phy->mmio + reg);
+       return readl(phy->mmio + reg);
 }
 
 int msm_hdmi_phy_resource_enable(struct hdmi_phy *phy);
index 4dd0554166204568bce2b4d7c00ccc466465ddbe..8c8d80b59573a37a4008752b16e094a218802508 100644 (file)
@@ -86,18 +86,18 @@ static inline struct hdmi_phy *pll_get_phy(struct hdmi_pll_8996 *pll)
 static inline void hdmi_pll_write(struct hdmi_pll_8996 *pll, int offset,
                                  u32 data)
 {
-       msm_writel(data, pll->mmio_qserdes_com + offset);
+       writel(data, pll->mmio_qserdes_com + offset);
 }
 
 static inline u32 hdmi_pll_read(struct hdmi_pll_8996 *pll, int offset)
 {
-       return msm_readl(pll->mmio_qserdes_com + offset);
+       return readl(pll->mmio_qserdes_com + offset);
 }
 
 static inline void hdmi_tx_chan_write(struct hdmi_pll_8996 *pll, int channel,
                                      int offset, int data)
 {
-        msm_writel(data, pll->mmio_qserdes_tx[channel] + offset);
+        writel(data, pll->mmio_qserdes_tx[channel] + offset);
 }
 
 static inline u32 pll_get_cpctrl(u64 frac_start, unsigned long ref_clk,
index cb35a297afbd18ff5bd276b73c292c68e42a3b1e..83c8781fcc3f6e1db99cfec64055ee5f359e49e5 100644 (file)
@@ -236,12 +236,12 @@ static const struct pll_rate freqtbl[] = {
 
 static inline void pll_write(struct hdmi_pll_8960 *pll, u32 reg, u32 data)
 {
-       msm_writel(data, pll->mmio + reg);
+       writel(data, pll->mmio + reg);
 }
 
 static inline u32 pll_read(struct hdmi_pll_8960 *pll, u32 reg)
 {
-       return msm_readl(pll->mmio + reg);
+       return readl(pll->mmio + reg);
 }
 
 static inline struct hdmi_phy *pll_get_phy(struct hdmi_pll_8960 *pll)
index 65f213660452ca48db6f66725282462847166d17..0659459c0b156431c7a1596c6618ca97859f6a0d 100644 (file)
@@ -488,15 +488,12 @@ void __iomem *msm_ioremap_mdss(struct platform_device *mdss_pdev,
 
 struct icc_path *msm_icc_get(struct device *dev, const char *name);
 
-#define msm_writel(data, addr) writel((data), (addr))
-#define msm_readl(addr) readl((addr))
-
 static inline void msm_rmw(void __iomem *addr, u32 mask, u32 or)
 {
-       u32 val = msm_readl(addr);
+       u32 val = readl(addr);
 
        val &= ~mask;
-       msm_writel(val | or, addr);
+       writel(val | or, addr);
 }
 
 /**
index 2bfcb222e3533816cbe21b62dae62f8a09bfe934..a0c1bd6d1d5b44fc240ee2472ef9434b32e68222 100644 (file)
@@ -555,12 +555,12 @@ struct msm_gpu_state {
 
 static inline void gpu_write(struct msm_gpu *gpu, u32 reg, u32 data)
 {
-       msm_writel(data, gpu->mmio + (reg << 2));
+       writel(data, gpu->mmio + (reg << 2));
 }
 
 static inline u32 gpu_read(struct msm_gpu *gpu, u32 reg)
 {
-       return msm_readl(gpu->mmio + (reg << 2));
+       return readl(gpu->mmio + (reg << 2));
 }
 
 static inline void gpu_rmw(struct msm_gpu *gpu, u32 reg, u32 mask, u32 or)
@@ -586,8 +586,8 @@ static inline u64 gpu_read64(struct msm_gpu *gpu, u32 reg)
         * when the lo is read, so make sure to read the lo first to trigger
         * that
         */
-       val = (u64) msm_readl(gpu->mmio + (reg << 2));
-       val |= ((u64) msm_readl(gpu->mmio + ((reg + 1) << 2)) << 32);
+       val = (u64) readl(gpu->mmio + (reg << 2));
+       val |= ((u64) readl(gpu->mmio + ((reg + 1) << 2)) << 32);
 
        return val;
 }
@@ -595,8 +595,8 @@ static inline u64 gpu_read64(struct msm_gpu *gpu, u32 reg)
 static inline void gpu_write64(struct msm_gpu *gpu, u32 reg, u64 val)
 {
        /* Why not a writeq here? Read the screed above */
-       msm_writel(lower_32_bits(val), gpu->mmio + (reg << 2));
-       msm_writel(upper_32_bits(val), gpu->mmio + ((reg + 1) << 2));
+       writel(lower_32_bits(val), gpu->mmio + (reg << 2));
+       writel(upper_32_bits(val), gpu->mmio + ((reg + 1) << 2));
 }
 
 int msm_gpu_pm_suspend(struct msm_gpu *gpu);