MIPS: CPC: Use common CPS accessor generation macros

Switch the MIPS Cluster Power Controller (CPC) accessor functions to be
generated by the new common Coherent Processing System (CPS) macros
shared with the Coherence Manager (CM).

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/17002/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
Paul Burton 2017-08-12 19:49:28 -07:00 committed by Ralf Baechle
parent 93c5bba575
commit 2c981e325f

View file

@ -13,6 +13,7 @@
#include <linux/io.h> #include <linux/io.h>
#include <linux/types.h> #include <linux/types.h>
#include <asm/mips-cps.h>
/* The base address of the CPC registers */ /* The base address of the CPC registers */
extern void __iomem *mips_cpc_base; extern void __iomem *mips_cpc_base;
@ -61,54 +62,34 @@ static inline bool mips_cpc_present(void)
#define MIPS_CPC_CLCB_OFS 0x2000 #define MIPS_CPC_CLCB_OFS 0x2000
#define MIPS_CPC_COCB_OFS 0x4000 #define MIPS_CPC_COCB_OFS 0x4000
/* Macros to ease the creation of register access functions */ #define CPC_ACCESSOR_RO(sz, off, name) \
#define BUILD_CPC_R_(name, off) \ CPS_ACCESSOR_RO(cpc, sz, MIPS_CPC_GCB_OFS + off, name)
static inline u32 *addr_cpc_##name(void) \
{ \
return (u32 *)(mips_cpc_base + (off)); \
} \
\
static inline u32 read_cpc_##name(void) \
{ \
return __raw_readl(mips_cpc_base + (off)); \
}
#define BUILD_CPC__W(name, off) \ #define CPC_ACCESSOR_RW(sz, off, name) \
static inline void write_cpc_##name(u32 value) \ CPS_ACCESSOR_RW(cpc, sz, MIPS_CPC_GCB_OFS + off, name)
{ \
__raw_writel(value, mips_cpc_base + (off)); \
}
#define BUILD_CPC_RW(name, off) \ #define CPC_CX_ACCESSOR_RO(sz, off, name) \
BUILD_CPC_R_(name, off) \ CPS_ACCESSOR_RO(cpc, sz, MIPS_CPC_CLCB_OFS + off, cl_##name) \
BUILD_CPC__W(name, off) CPS_ACCESSOR_RO(cpc, sz, MIPS_CPC_COCB_OFS + off, co_##name)
#define BUILD_CPC_Cx_R_(name, off) \ #define CPC_CX_ACCESSOR_RW(sz, off, name) \
BUILD_CPC_R_(cl_##name, MIPS_CPC_CLCB_OFS + (off)) \ CPS_ACCESSOR_RW(cpc, sz, MIPS_CPC_CLCB_OFS + off, cl_##name) \
BUILD_CPC_R_(co_##name, MIPS_CPC_COCB_OFS + (off)) CPS_ACCESSOR_RW(cpc, sz, MIPS_CPC_COCB_OFS + off, co_##name)
#define BUILD_CPC_Cx__W(name, off) \
BUILD_CPC__W(cl_##name, MIPS_CPC_CLCB_OFS + (off)) \
BUILD_CPC__W(co_##name, MIPS_CPC_COCB_OFS + (off))
#define BUILD_CPC_Cx_RW(name, off) \
BUILD_CPC_Cx_R_(name, off) \
BUILD_CPC_Cx__W(name, off)
/* GCB register accessor functions */ /* GCB register accessor functions */
BUILD_CPC_RW(access, MIPS_CPC_GCB_OFS + 0x00) CPC_ACCESSOR_RW(32, 0x000, access)
BUILD_CPC_RW(seqdel, MIPS_CPC_GCB_OFS + 0x08) CPC_ACCESSOR_RW(32, 0x008, seqdel)
BUILD_CPC_RW(rail, MIPS_CPC_GCB_OFS + 0x10) CPC_ACCESSOR_RW(32, 0x010, rail)
BUILD_CPC_RW(resetlen, MIPS_CPC_GCB_OFS + 0x18) CPC_ACCESSOR_RW(32, 0x018, resetlen)
BUILD_CPC_R_(revision, MIPS_CPC_GCB_OFS + 0x20) CPC_ACCESSOR_RO(32, 0x020, revision)
/* Core Local & Core Other accessor functions */ /* Core Local & Core Other accessor functions */
BUILD_CPC_Cx_RW(cmd, 0x00) CPC_CX_ACCESSOR_RW(32, 0x000, cmd)
BUILD_CPC_Cx_RW(stat_conf, 0x08) CPC_CX_ACCESSOR_RW(32, 0x008, stat_conf)
BUILD_CPC_Cx_RW(other, 0x10) CPC_CX_ACCESSOR_RW(32, 0x010, other)
BUILD_CPC_Cx_RW(vp_stop, 0x20) CPC_CX_ACCESSOR_RW(32, 0x020, vp_stop)
BUILD_CPC_Cx_RW(vp_run, 0x28) CPC_CX_ACCESSOR_RW(32, 0x028, vp_run)
BUILD_CPC_Cx_RW(vp_running, 0x30) CPC_CX_ACCESSOR_RW(32, 0x030, vp_running)
/* CPC_Cx_CMD register fields */ /* CPC_Cx_CMD register fields */
#define CPC_Cx_CMD_SHF 0 #define CPC_Cx_CMD_SHF 0