MIPS: CPC: Use BIT/GENMASK for register fields, order & drop shifts
Tidy up asm/mips-cpc.h in a similar way to what "MIPS: CM: Use BIT/GENMASK for register fields, order & drop shifts" did for asm/mips-cm.h. We use BIT() & GENMASK() to simplify the definition of register fields, drop the _SHF definitions since that information can be found in the _MSK ones, and then drop the _MSK suffix. Fields definitions are moved to be next to the appropriate register definition, making it easier to link the two & keep everything ordered by register address. Comments are added including the name of each register & a brief description of its purpose which helps to understand what registers are for, link them back to hardware documentation or grep for them. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/17003/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:

committed by
Ralf Baechle

parent
2c981e325f
commit
829ca2be9c
@@ -253,7 +253,8 @@ static void boot_core(unsigned int core, unsigned int vpe_id)
|
||||
timeout = 100;
|
||||
while (true) {
|
||||
stat = read_cpc_co_stat_conf();
|
||||
seq_state = stat & CPC_Cx_STAT_CONF_SEQSTATE_MSK;
|
||||
seq_state = stat & CPC_Cx_STAT_CONF_SEQSTATE;
|
||||
seq_state >>= __ffs(CPC_Cx_STAT_CONF_SEQSTATE);
|
||||
|
||||
/* U6 == coherent execution, ie. the core is up */
|
||||
if (seq_state == CPC_Cx_STAT_CONF_SEQSTATE_U6)
|
||||
@@ -522,7 +523,8 @@ static void cps_cpu_die(unsigned int cpu)
|
||||
mips_cm_lock_other(core, 0);
|
||||
mips_cpc_lock_other(core);
|
||||
stat = read_cpc_co_stat_conf();
|
||||
stat &= CPC_Cx_STAT_CONF_SEQSTATE_MSK;
|
||||
stat &= CPC_Cx_STAT_CONF_SEQSTATE;
|
||||
stat >>= __ffs(CPC_Cx_STAT_CONF_SEQSTATE);
|
||||
mips_cpc_unlock_other();
|
||||
mips_cm_unlock_other();
|
||||
|
||||
@@ -544,7 +546,7 @@ static void cps_cpu_die(unsigned int cpu)
|
||||
*/
|
||||
if (WARN(ktime_after(ktime_get(), fail_time),
|
||||
"CPU%u hasn't powered down, seq. state %u\n",
|
||||
cpu, stat >> CPC_Cx_STAT_CONF_SEQSTATE_SHF))
|
||||
cpu, stat))
|
||||
break;
|
||||
} while (1);
|
||||
|
||||
|
Reference in New Issue
Block a user