Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/kernel/pmu.c |
| 3 | * |
| 4 | * Copyright (C) 2009 picoChip Designs Ltd, Jamie Iles |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 5 | * Copyright (C) 2010 ARM Ltd, Will Deacon |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | */ |
| 12 | |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 13 | #define pr_fmt(fmt) "PMU: " fmt |
| 14 | |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 15 | #include <linux/cpumask.h> |
| 16 | #include <linux/err.h> |
| 17 | #include <linux/interrupt.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/module.h> |
Mark Rutland | e73c34c | 2011-06-22 15:33:55 +0100 | [diff] [blame^] | 20 | #include <linux/of_device.h> |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 21 | #include <linux/platform_device.h> |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 22 | |
| 23 | #include <asm/pmu.h> |
| 24 | |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 25 | static volatile long pmu_lock; |
| 26 | |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 27 | static struct platform_device *pmu_devices[ARM_NUM_PMU_DEVICES]; |
| 28 | |
Mark Rutland | f12482c | 2011-06-22 15:30:51 +0100 | [diff] [blame] | 29 | static int __devinit pmu_register(struct platform_device *pdev, |
| 30 | enum arm_pmu_type type) |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 31 | { |
Mark Rutland | f12482c | 2011-06-22 15:30:51 +0100 | [diff] [blame] | 32 | if (type < 0 || type >= ARM_NUM_PMU_DEVICES) { |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 33 | pr_warning("received registration request for unknown " |
Mark Rutland | f12482c | 2011-06-22 15:30:51 +0100 | [diff] [blame] | 34 | "device %d\n", type); |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 35 | return -EINVAL; |
| 36 | } |
| 37 | |
Mark Rutland | ae0c375 | 2011-06-22 15:32:48 +0100 | [diff] [blame] | 38 | if (pmu_devices[type]) { |
| 39 | pr_warning("rejecting duplicate registration of PMU device " |
| 40 | "type %d.", type); |
| 41 | return -ENOSPC; |
| 42 | } |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 43 | |
Mark Rutland | ae0c375 | 2011-06-22 15:32:48 +0100 | [diff] [blame] | 44 | pr_info("registered new PMU device of type %d\n", type); |
Mark Rutland | f12482c | 2011-06-22 15:30:51 +0100 | [diff] [blame] | 45 | pmu_devices[type] = pdev; |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 46 | return 0; |
| 47 | } |
| 48 | |
Mark Rutland | e73c34c | 2011-06-22 15:33:55 +0100 | [diff] [blame^] | 49 | #define OF_MATCH_PMU(_name, _type) { \ |
| 50 | .compatible = _name, \ |
| 51 | .data = (void *)_type, \ |
| 52 | } |
| 53 | |
| 54 | #define OF_MATCH_CPU(name) OF_MATCH_PMU(name, ARM_PMU_DEVICE_CPU) |
| 55 | |
| 56 | static struct of_device_id armpmu_of_device_ids[] = { |
| 57 | OF_MATCH_CPU("arm,cortex-a9-pmu"), |
| 58 | OF_MATCH_CPU("arm,cortex-a8-pmu"), |
| 59 | OF_MATCH_CPU("arm,arm1136-pmu"), |
| 60 | OF_MATCH_CPU("arm,arm1176-pmu"), |
| 61 | {}, |
| 62 | }; |
| 63 | |
| 64 | enum arm_pmu_type armpmu_device_type(struct platform_device *pdev) |
| 65 | { |
| 66 | const struct of_device_id *of_id; |
| 67 | |
| 68 | /* provided by of_device_id table */ |
| 69 | if (pdev->dev.of_node) { |
| 70 | of_id = of_match_device(armpmu_of_device_ids, &pdev->dev); |
| 71 | BUG_ON(!of_id); |
| 72 | return (enum arm_pmu_type)of_id->data; |
| 73 | } |
| 74 | |
| 75 | /* Provided by a 'legacy' platform_device */ |
| 76 | return ARM_PMU_DEVICE_CPU; |
| 77 | } |
| 78 | |
Mark Rutland | f12482c | 2011-06-22 15:30:51 +0100 | [diff] [blame] | 79 | static int __devinit armpmu_device_probe(struct platform_device *pdev) |
| 80 | { |
Mark Rutland | e73c34c | 2011-06-22 15:33:55 +0100 | [diff] [blame^] | 81 | return pmu_register(pdev, armpmu_device_type(pdev)); |
Mark Rutland | f12482c | 2011-06-22 15:30:51 +0100 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | static struct platform_driver armpmu_driver = { |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 85 | .driver = { |
| 86 | .name = "arm-pmu", |
Mark Rutland | e73c34c | 2011-06-22 15:33:55 +0100 | [diff] [blame^] | 87 | .of_match_table = armpmu_of_device_ids, |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 88 | }, |
Mark Rutland | f12482c | 2011-06-22 15:30:51 +0100 | [diff] [blame] | 89 | .probe = armpmu_device_probe, |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | static int __init register_pmu_driver(void) |
| 93 | { |
Mark Rutland | f12482c | 2011-06-22 15:30:51 +0100 | [diff] [blame] | 94 | return platform_driver_register(&armpmu_driver); |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 95 | } |
| 96 | device_initcall(register_pmu_driver); |
| 97 | |
| 98 | struct platform_device * |
| 99 | reserve_pmu(enum arm_pmu_type device) |
| 100 | { |
| 101 | struct platform_device *pdev; |
| 102 | |
| 103 | if (test_and_set_bit_lock(device, &pmu_lock)) { |
| 104 | pdev = ERR_PTR(-EBUSY); |
| 105 | } else if (pmu_devices[device] == NULL) { |
| 106 | clear_bit_unlock(device, &pmu_lock); |
| 107 | pdev = ERR_PTR(-ENODEV); |
| 108 | } else { |
| 109 | pdev = pmu_devices[device]; |
| 110 | } |
| 111 | |
| 112 | return pdev; |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 113 | } |
| 114 | EXPORT_SYMBOL_GPL(reserve_pmu); |
| 115 | |
| 116 | int |
Mark Rutland | f12482c | 2011-06-22 15:30:51 +0100 | [diff] [blame] | 117 | release_pmu(enum arm_pmu_type device) |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 118 | { |
Mark Rutland | f12482c | 2011-06-22 15:30:51 +0100 | [diff] [blame] | 119 | if (WARN_ON(!pmu_devices[device])) |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 120 | return -EINVAL; |
Mark Rutland | f12482c | 2011-06-22 15:30:51 +0100 | [diff] [blame] | 121 | clear_bit_unlock(device, &pmu_lock); |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 122 | return 0; |
| 123 | } |
| 124 | EXPORT_SYMBOL_GPL(release_pmu); |
| 125 | |
| 126 | static int |
| 127 | set_irq_affinity(int irq, |
| 128 | unsigned int cpu) |
| 129 | { |
| 130 | #ifdef CONFIG_SMP |
| 131 | int err = irq_set_affinity(irq, cpumask_of(cpu)); |
| 132 | if (err) |
| 133 | pr_warning("unable to set irq affinity (irq=%d, cpu=%u)\n", |
| 134 | irq, cpu); |
| 135 | return err; |
| 136 | #else |
Will Deacon | 71efb06 | 2011-02-18 16:21:06 +0100 | [diff] [blame] | 137 | return -EINVAL; |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 138 | #endif |
| 139 | } |
| 140 | |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 141 | static int |
| 142 | init_cpu_pmu(void) |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 143 | { |
Will Deacon | 71efb06 | 2011-02-18 16:21:06 +0100 | [diff] [blame] | 144 | int i, irqs, err = 0; |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 145 | struct platform_device *pdev = pmu_devices[ARM_PMU_DEVICE_CPU]; |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 146 | |
Will Deacon | 71efb06 | 2011-02-18 16:21:06 +0100 | [diff] [blame] | 147 | if (!pdev) |
| 148 | return -ENODEV; |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 149 | |
Will Deacon | 71efb06 | 2011-02-18 16:21:06 +0100 | [diff] [blame] | 150 | irqs = pdev->num_resources; |
| 151 | |
| 152 | /* |
| 153 | * If we have a single PMU interrupt that we can't shift, assume that |
| 154 | * we're running on a uniprocessor machine and continue. |
| 155 | */ |
| 156 | if (irqs == 1 && !irq_can_set_affinity(platform_get_irq(pdev, 0))) |
| 157 | return 0; |
| 158 | |
| 159 | for (i = 0; i < irqs; ++i) { |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 160 | err = set_irq_affinity(platform_get_irq(pdev, i), i); |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 161 | if (err) |
| 162 | break; |
| 163 | } |
| 164 | |
Will Deacon | 49c006b | 2010-04-29 17:13:24 +0100 | [diff] [blame] | 165 | return err; |
| 166 | } |
| 167 | |
| 168 | int |
| 169 | init_pmu(enum arm_pmu_type device) |
| 170 | { |
| 171 | int err = 0; |
| 172 | |
| 173 | switch (device) { |
| 174 | case ARM_PMU_DEVICE_CPU: |
| 175 | err = init_cpu_pmu(); |
| 176 | break; |
| 177 | default: |
| 178 | pr_warning("attempt to initialise unknown device %d\n", |
| 179 | device); |
| 180 | err = -EINVAL; |
| 181 | } |
| 182 | |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 183 | return err; |
| 184 | } |
| 185 | EXPORT_SYMBOL_GPL(init_pmu); |