gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / drivers / hwspinlock / sirf_hwspinlock.c
blob823d3c4f621ed5ca83ce6d071a15413486d0a9aa
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * SIRF hardware spinlock driver
5 * Copyright (c) 2015 Cambridge Silicon Radio Limited, a CSR plc group company.
6 */
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/device.h>
11 #include <linux/io.h>
12 #include <linux/slab.h>
13 #include <linux/spinlock.h>
14 #include <linux/hwspinlock.h>
15 #include <linux/platform_device.h>
16 #include <linux/of.h>
17 #include <linux/of_address.h>
19 #include "hwspinlock_internal.h"
21 struct sirf_hwspinlock {
22 void __iomem *io_base;
23 struct hwspinlock_device bank;
26 /* Number of Hardware Spinlocks*/
27 #define HW_SPINLOCK_NUMBER 30
29 /* Hardware spinlock register offsets */
30 #define HW_SPINLOCK_BASE 0x404
31 #define HW_SPINLOCK_OFFSET(x) (HW_SPINLOCK_BASE + 0x4 * (x))
33 static int sirf_hwspinlock_trylock(struct hwspinlock *lock)
35 void __iomem *lock_addr = lock->priv;
37 /* attempt to acquire the lock by reading value == 1 from it */
38 return !!readl(lock_addr);
41 static void sirf_hwspinlock_unlock(struct hwspinlock *lock)
43 void __iomem *lock_addr = lock->priv;
45 /* release the lock by writing 0 to it */
46 writel(0, lock_addr);
49 static const struct hwspinlock_ops sirf_hwspinlock_ops = {
50 .trylock = sirf_hwspinlock_trylock,
51 .unlock = sirf_hwspinlock_unlock,
54 static int sirf_hwspinlock_probe(struct platform_device *pdev)
56 struct sirf_hwspinlock *hwspin;
57 struct hwspinlock *hwlock;
58 int idx;
60 if (!pdev->dev.of_node)
61 return -ENODEV;
63 hwspin = devm_kzalloc(&pdev->dev,
64 struct_size(hwspin, bank.lock,
65 HW_SPINLOCK_NUMBER),
66 GFP_KERNEL);
67 if (!hwspin)
68 return -ENOMEM;
70 /* retrieve io base */
71 hwspin->io_base = devm_platform_ioremap_resource(pdev, 0);
72 if (IS_ERR(hwspin->io_base))
73 return PTR_ERR(hwspin->io_base);
75 for (idx = 0; idx < HW_SPINLOCK_NUMBER; idx++) {
76 hwlock = &hwspin->bank.lock[idx];
77 hwlock->priv = hwspin->io_base + HW_SPINLOCK_OFFSET(idx);
80 platform_set_drvdata(pdev, hwspin);
82 return devm_hwspin_lock_register(&pdev->dev, &hwspin->bank,
83 &sirf_hwspinlock_ops, 0,
84 HW_SPINLOCK_NUMBER);
87 static const struct of_device_id sirf_hwpinlock_ids[] = {
88 { .compatible = "sirf,hwspinlock", },
89 {},
91 MODULE_DEVICE_TABLE(of, sirf_hwpinlock_ids);
93 static struct platform_driver sirf_hwspinlock_driver = {
94 .probe = sirf_hwspinlock_probe,
95 .driver = {
96 .name = "atlas7_hwspinlock",
97 .of_match_table = of_match_ptr(sirf_hwpinlock_ids),
101 module_platform_driver(sirf_hwspinlock_driver);
103 MODULE_LICENSE("GPL v2");
104 MODULE_DESCRIPTION("SIRF Hardware spinlock driver");
105 MODULE_AUTHOR("Wei Chen <wei.chen@csr.com>");