Paul Burton | 9c38cf4 | 2014-01-15 10:31:52 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 Imagination Technologies |
Paul Burton | fb615d6 | 2017-10-25 17:04:33 -0700 | [diff] [blame] | 3 | * Author: Paul Burton <paul.burton@mips.com> |
Paul Burton | 9c38cf4 | 2014-01-15 10:31:52 +0000 | [diff] [blame] | 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 Burton | 245a786 | 2014-04-14 12:04:27 +0100 | [diff] [blame] | 12 | #include <linux/percpu.h> |
Paul Burton | 791412d | 2018-01-19 16:40:49 +0100 | [diff] [blame] | 13 | #include <linux/of.h> |
| 14 | #include <linux/of_address.h> |
Paul Burton | 245a786 | 2014-04-14 12:04:27 +0100 | [diff] [blame] | 15 | #include <linux/spinlock.h> |
Paul Burton | 9c38cf4 | 2014-01-15 10:31:52 +0000 | [diff] [blame] | 16 | |
Paul Burton | e83f7e0 | 2017-08-12 19:49:41 -0700 | [diff] [blame] | 17 | #include <asm/mips-cps.h> |
Paul Burton | 9c38cf4 | 2014-01-15 10:31:52 +0000 | [diff] [blame] | 18 | |
| 19 | void __iomem *mips_cpc_base; |
| 20 | |
Paul Burton | 76ae658 | 2014-02-14 09:28:06 +0000 | [diff] [blame] | 21 | static DEFINE_PER_CPU_ALIGNED(spinlock_t, cpc_core_lock); |
| 22 | |
| 23 | static DEFINE_PER_CPU_ALIGNED(unsigned long, cpc_core_lock_flags); |
| 24 | |
Paul Burton | 682c1e5 | 2016-10-15 23:03:43 +0100 | [diff] [blame] | 25 | phys_addr_t __weak mips_cpc_default_phys_base(void) |
| 26 | { |
Paul Burton | 791412d | 2018-01-19 16:40:49 +0100 | [diff] [blame] | 27 | struct device_node *cpc_node; |
| 28 | struct resource res; |
| 29 | int err; |
| 30 | |
| 31 | cpc_node = of_find_compatible_node(of_root, NULL, "mti,mips-cpc"); |
| 32 | if (cpc_node) { |
| 33 | err = of_address_to_resource(cpc_node, 0, &res); |
| 34 | if (!err) |
| 35 | return res.start; |
| 36 | } |
| 37 | |
Paul Burton | 682c1e5 | 2016-10-15 23:03:43 +0100 | [diff] [blame] | 38 | return 0; |
| 39 | } |
| 40 | |
Bjorn Helgaas | 8dedde6 | 2015-07-12 18:10:56 -0500 | [diff] [blame] | 41 | /** |
| 42 | * mips_cpc_phys_base - retrieve the physical base address of the CPC |
| 43 | * |
| 44 | * This function returns the physical base address of the Cluster Power |
| 45 | * Controller memory mapped registers, or 0 if no Cluster Power Controller |
| 46 | * is present. |
| 47 | */ |
| 48 | static phys_addr_t mips_cpc_phys_base(void) |
Paul Burton | 9c38cf4 | 2014-01-15 10:31:52 +0000 | [diff] [blame] | 49 | { |
Markos Chandras | 391057d | 2015-07-09 10:40:46 +0100 | [diff] [blame] | 50 | unsigned long cpc_base; |
Paul Burton | 9c38cf4 | 2014-01-15 10:31:52 +0000 | [diff] [blame] | 51 | |
| 52 | if (!mips_cm_present()) |
| 53 | return 0; |
| 54 | |
Paul Burton | 93c5bba5 | 2017-08-12 19:49:27 -0700 | [diff] [blame] | 55 | if (!(read_gcr_cpc_status() & CM_GCR_CPC_STATUS_EX)) |
Paul Burton | 9c38cf4 | 2014-01-15 10:31:52 +0000 | [diff] [blame] | 56 | return 0; |
| 57 | |
| 58 | /* If the CPC is already enabled, leave it so */ |
| 59 | cpc_base = read_gcr_cpc_base(); |
Paul Burton | 93c5bba5 | 2017-08-12 19:49:27 -0700 | [diff] [blame] | 60 | if (cpc_base & CM_GCR_CPC_BASE_CPCEN) |
| 61 | return cpc_base & CM_GCR_CPC_BASE_CPCBASE; |
Paul Burton | 9c38cf4 | 2014-01-15 10:31:52 +0000 | [diff] [blame] | 62 | |
Paul Burton | 682c1e5 | 2016-10-15 23:03:43 +0100 | [diff] [blame] | 63 | /* Otherwise, use the default address */ |
Paul Burton | 9c38cf4 | 2014-01-15 10:31:52 +0000 | [diff] [blame] | 64 | cpc_base = mips_cpc_default_phys_base(); |
Paul Burton | 682c1e5 | 2016-10-15 23:03:43 +0100 | [diff] [blame] | 65 | if (!cpc_base) |
| 66 | return cpc_base; |
| 67 | |
| 68 | /* Enable the CPC, mapped at the default address */ |
Paul Burton | 93c5bba5 | 2017-08-12 19:49:27 -0700 | [diff] [blame] | 69 | write_gcr_cpc_base(cpc_base | CM_GCR_CPC_BASE_CPCEN); |
Paul Burton | 9c38cf4 | 2014-01-15 10:31:52 +0000 | [diff] [blame] | 70 | return cpc_base; |
| 71 | } |
| 72 | |
| 73 | int mips_cpc_probe(void) |
| 74 | { |
Ralf Baechle | 15d45cc | 2014-11-22 00:22:09 +0100 | [diff] [blame] | 75 | phys_addr_t addr; |
Matt Redfearn | 6b89d22 | 2016-09-07 10:45:09 +0100 | [diff] [blame] | 76 | unsigned int cpu; |
Paul Burton | 76ae658 | 2014-02-14 09:28:06 +0000 | [diff] [blame] | 77 | |
| 78 | for_each_possible_cpu(cpu) |
| 79 | spin_lock_init(&per_cpu(cpc_core_lock, cpu)); |
Paul Burton | 9c38cf4 | 2014-01-15 10:31:52 +0000 | [diff] [blame] | 80 | |
| 81 | addr = mips_cpc_phys_base(); |
| 82 | if (!addr) |
| 83 | return -ENODEV; |
| 84 | |
| 85 | mips_cpc_base = ioremap_nocache(addr, 0x8000); |
| 86 | if (!mips_cpc_base) |
| 87 | return -ENXIO; |
| 88 | |
| 89 | return 0; |
| 90 | } |
Paul Burton | 76ae658 | 2014-02-14 09:28:06 +0000 | [diff] [blame] | 91 | |
| 92 | void mips_cpc_lock_other(unsigned int core) |
| 93 | { |
Matt Redfearn | 6b89d22 | 2016-09-07 10:45:09 +0100 | [diff] [blame] | 94 | unsigned int curr_core; |
Matt Redfearn | d621942 | 2016-09-07 10:45:10 +0100 | [diff] [blame] | 95 | |
| 96 | if (mips_cm_revision() >= CM_REV_CM3) |
| 97 | /* Systems with CM >= 3 lock the CPC via mips_cm_lock_other */ |
| 98 | return; |
| 99 | |
Paul Burton | 76ae658 | 2014-02-14 09:28:06 +0000 | [diff] [blame] | 100 | preempt_disable(); |
Paul Burton | f875a832 | 2017-08-12 19:49:35 -0700 | [diff] [blame] | 101 | curr_core = cpu_core(¤t_cpu_data); |
Paul Burton | 76ae658 | 2014-02-14 09:28:06 +0000 | [diff] [blame] | 102 | spin_lock_irqsave(&per_cpu(cpc_core_lock, curr_core), |
| 103 | per_cpu(cpc_core_lock_flags, curr_core)); |
Paul Burton | 829ca2be | 2017-08-12 19:49:29 -0700 | [diff] [blame] | 104 | write_cpc_cl_other(core << __ffs(CPC_Cx_OTHER_CORENUM)); |
Paul Burton | 78a54c4 | 2015-09-22 11:12:18 -0700 | [diff] [blame] | 105 | |
| 106 | /* |
| 107 | * Ensure the core-other region reflects the appropriate core & |
| 108 | * VP before any accesses to it occur. |
| 109 | */ |
| 110 | mb(); |
Paul Burton | 76ae658 | 2014-02-14 09:28:06 +0000 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | void mips_cpc_unlock_other(void) |
| 114 | { |
Matt Redfearn | d621942 | 2016-09-07 10:45:10 +0100 | [diff] [blame] | 115 | unsigned int curr_core; |
| 116 | |
| 117 | if (mips_cm_revision() >= CM_REV_CM3) |
| 118 | /* Systems with CM >= 3 lock the CPC via mips_cm_lock_other */ |
| 119 | return; |
| 120 | |
Paul Burton | f875a832 | 2017-08-12 19:49:35 -0700 | [diff] [blame] | 121 | curr_core = cpu_core(¤t_cpu_data); |
Paul Burton | 76ae658 | 2014-02-14 09:28:06 +0000 | [diff] [blame] | 122 | spin_unlock_irqrestore(&per_cpu(cpc_core_lock, curr_core), |
| 123 | per_cpu(cpc_core_lock_flags, curr_core)); |
| 124 | preempt_enable(); |
| 125 | } |