blob: a4964c334cab66eba2e41e34c25db281a1729555 [file] [log] [blame]
Paul Burton9c38cf42014-01-15 10:31:52 +00001/*
2 * Copyright (C) 2013 Imagination Technologies
3 * Author: Paul Burton <paul.burton@imgtec.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 */
10
11#include <linux/errno.h>
Paul Burton245a7862014-04-14 12:04:27 +010012#include <linux/percpu.h>
13#include <linux/spinlock.h>
Paul Burton9c38cf42014-01-15 10:31:52 +000014
15#include <asm/mips-cm.h>
16#include <asm/mips-cpc.h>
17
18void __iomem *mips_cpc_base;
19
Paul Burton76ae6582014-02-14 09:28:06 +000020static DEFINE_PER_CPU_ALIGNED(spinlock_t, cpc_core_lock);
21
22static DEFINE_PER_CPU_ALIGNED(unsigned long, cpc_core_lock_flags);
23
Paul Burton682c1e52016-10-15 23:03:43 +010024phys_addr_t __weak mips_cpc_default_phys_base(void)
25{
26 return 0;
27}
28
Bjorn Helgaas8dedde62015-07-12 18:10:56 -050029/**
30 * mips_cpc_phys_base - retrieve the physical base address of the CPC
31 *
32 * This function returns the physical base address of the Cluster Power
33 * Controller memory mapped registers, or 0 if no Cluster Power Controller
34 * is present.
35 */
36static phys_addr_t mips_cpc_phys_base(void)
Paul Burton9c38cf42014-01-15 10:31:52 +000037{
Markos Chandras391057d2015-07-09 10:40:46 +010038 unsigned long cpc_base;
Paul Burton9c38cf42014-01-15 10:31:52 +000039
40 if (!mips_cm_present())
41 return 0;
42
43 if (!(read_gcr_cpc_status() & CM_GCR_CPC_STATUS_EX_MSK))
44 return 0;
45
46 /* If the CPC is already enabled, leave it so */
47 cpc_base = read_gcr_cpc_base();
48 if (cpc_base & CM_GCR_CPC_BASE_CPCEN_MSK)
49 return cpc_base & CM_GCR_CPC_BASE_CPCBASE_MSK;
50
Paul Burton682c1e52016-10-15 23:03:43 +010051 /* Otherwise, use the default address */
Paul Burton9c38cf42014-01-15 10:31:52 +000052 cpc_base = mips_cpc_default_phys_base();
Paul Burton682c1e52016-10-15 23:03:43 +010053 if (!cpc_base)
54 return cpc_base;
55
56 /* Enable the CPC, mapped at the default address */
Paul Burton9c38cf42014-01-15 10:31:52 +000057 write_gcr_cpc_base(cpc_base | CM_GCR_CPC_BASE_CPCEN_MSK);
58 return cpc_base;
59}
60
61int mips_cpc_probe(void)
62{
Ralf Baechle15d45cc2014-11-22 00:22:09 +010063 phys_addr_t addr;
Matt Redfearn6b89d222016-09-07 10:45:09 +010064 unsigned int cpu;
Paul Burton76ae6582014-02-14 09:28:06 +000065
66 for_each_possible_cpu(cpu)
67 spin_lock_init(&per_cpu(cpc_core_lock, cpu));
Paul Burton9c38cf42014-01-15 10:31:52 +000068
69 addr = mips_cpc_phys_base();
70 if (!addr)
71 return -ENODEV;
72
73 mips_cpc_base = ioremap_nocache(addr, 0x8000);
74 if (!mips_cpc_base)
75 return -ENXIO;
76
77 return 0;
78}
Paul Burton76ae6582014-02-14 09:28:06 +000079
80void mips_cpc_lock_other(unsigned int core)
81{
Matt Redfearn6b89d222016-09-07 10:45:09 +010082 unsigned int curr_core;
Matt Redfearnd6219422016-09-07 10:45:10 +010083
84 if (mips_cm_revision() >= CM_REV_CM3)
85 /* Systems with CM >= 3 lock the CPC via mips_cm_lock_other */
86 return;
87
Paul Burton76ae6582014-02-14 09:28:06 +000088 preempt_disable();
89 curr_core = current_cpu_data.core;
90 spin_lock_irqsave(&per_cpu(cpc_core_lock, curr_core),
91 per_cpu(cpc_core_lock_flags, curr_core));
92 write_cpc_cl_other(core << CPC_Cx_OTHER_CORENUM_SHF);
Paul Burton78a54c42015-09-22 11:12:18 -070093
94 /*
95 * Ensure the core-other region reflects the appropriate core &
96 * VP before any accesses to it occur.
97 */
98 mb();
Paul Burton76ae6582014-02-14 09:28:06 +000099}
100
101void mips_cpc_unlock_other(void)
102{
Matt Redfearnd6219422016-09-07 10:45:10 +0100103 unsigned int curr_core;
104
105 if (mips_cm_revision() >= CM_REV_CM3)
106 /* Systems with CM >= 3 lock the CPC via mips_cm_lock_other */
107 return;
108
109 curr_core = current_cpu_data.core;
Paul Burton76ae6582014-02-14 09:28:06 +0000110 spin_unlock_irqrestore(&per_cpu(cpc_core_lock, curr_core),
111 per_cpu(cpc_core_lock_flags, curr_core));
112 preempt_enable();
113}