Commit 846e1913 authored by Paul Burton's avatar Paul Burton Committed by Ralf Baechle

MIPS: CPS: Use change_*, set_* & clear_* where appropriate

Make use of the new change_*, set_* & clear_* accessor functions for CPS
(CM, CPC & GIC) registers where doing so makes the code easier to read
or shortens it without adversely affecting readability.
Signed-off-by: default avatarPaul Burton <paul.burton@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/17005/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent ed7eb5aa
...@@ -233,9 +233,7 @@ int mips_cm_probe(void) ...@@ -233,9 +233,7 @@ int mips_cm_probe(void)
} }
/* set default target to memory */ /* set default target to memory */
base_reg &= ~CM_GCR_BASE_CMDEFTGT; change_gcr_base(CM_GCR_BASE_CMDEFTGT, CM_GCR_BASE_CMDEFTGT_MEM);
base_reg |= CM_GCR_BASE_CMDEFTGT_MEM;
write_gcr_base(base_reg);
/* disable CM regions */ /* disable CM regions */
write_gcr_reg0_base(CM_GCR_REGn_BASE_BASEADDR); write_gcr_reg0_base(CM_GCR_REGn_BASE_BASEADDR);
......
...@@ -212,7 +212,7 @@ static void __init cps_prepare_cpus(unsigned int max_cpus) ...@@ -212,7 +212,7 @@ static void __init cps_prepare_cpus(unsigned int max_cpus)
static void boot_core(unsigned int core, unsigned int vpe_id) static void boot_core(unsigned int core, unsigned int vpe_id)
{ {
u32 access, stat, seq_state; u32 stat, seq_state;
unsigned timeout; unsigned timeout;
/* Select the appropriate core */ /* Select the appropriate core */
...@@ -228,9 +228,7 @@ static void boot_core(unsigned int core, unsigned int vpe_id) ...@@ -228,9 +228,7 @@ static void boot_core(unsigned int core, unsigned int vpe_id)
write_gcr_co_reset_ext_base(CM_GCR_Cx_RESET_EXT_BASE_UEB); write_gcr_co_reset_ext_base(CM_GCR_Cx_RESET_EXT_BASE_UEB);
/* Ensure the core can access the GCRs */ /* Ensure the core can access the GCRs */
access = read_gcr_access(); set_gcr_access(1 << core);
access |= 1 << core;
write_gcr_access(access);
if (mips_cpc_present()) { if (mips_cpc_present()) {
/* Reset the core */ /* Reset the core */
......
...@@ -69,28 +69,19 @@ static void mips_sc_prefetch_enable(void) ...@@ -69,28 +69,19 @@ static void mips_sc_prefetch_enable(void)
pftctl |= CM_GCR_L2_PFT_CONTROL_PFTEN; pftctl |= CM_GCR_L2_PFT_CONTROL_PFTEN;
write_gcr_l2_pft_control(pftctl); write_gcr_l2_pft_control(pftctl);
pftctl = read_gcr_l2_pft_control_b(); set_gcr_l2_pft_control_b(CM_GCR_L2_PFT_CONTROL_B_PORTID |
pftctl |= CM_GCR_L2_PFT_CONTROL_B_PORTID; CM_GCR_L2_PFT_CONTROL_B_CEN);
pftctl |= CM_GCR_L2_PFT_CONTROL_B_CEN;
write_gcr_l2_pft_control_b(pftctl);
} }
} }
static void mips_sc_prefetch_disable(void) static void mips_sc_prefetch_disable(void)
{ {
unsigned long pftctl;
if (mips_cm_revision() < CM_REV_CM2_5) if (mips_cm_revision() < CM_REV_CM2_5)
return; return;
pftctl = read_gcr_l2_pft_control(); clear_gcr_l2_pft_control(CM_GCR_L2_PFT_CONTROL_PFTEN);
pftctl &= ~CM_GCR_L2_PFT_CONTROL_PFTEN; clear_gcr_l2_pft_control_b(CM_GCR_L2_PFT_CONTROL_B_PORTID |
write_gcr_l2_pft_control(pftctl); CM_GCR_L2_PFT_CONTROL_B_CEN);
pftctl = read_gcr_l2_pft_control_b();
pftctl &= ~CM_GCR_L2_PFT_CONTROL_B_PORTID;
pftctl &= ~CM_GCR_L2_PFT_CONTROL_B_CEN;
write_gcr_l2_pft_control_b(pftctl);
} }
static bool mips_sc_prefetch_is_enabled(void) static bool mips_sc_prefetch_is_enabled(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment