1 // SPDX-License-Identifier: GPL-2.0
3 * OMAP hardware spinlock driver
5 * Copyright (C) 2010-2015 Texas Instruments Incorporated - http://www.ti.com
7 * Contact: Simon Que <sque@ti.com>
8 * Hari Kanigeri <h-kanigeri2@ti.com>
9 * Ohad Ben-Cohen <ohad@wizery.com>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/device.h>
15 #include <linux/delay.h>
17 #include <linux/bitops.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/slab.h>
20 #include <linux/spinlock.h>
21 #include <linux/hwspinlock.h>
23 #include <linux/platform_device.h>
25 #include "hwspinlock_internal.h"
27 /* Spinlock register offsets */
28 #define SYSSTATUS_OFFSET 0x0014
29 #define LOCK_BASE_OFFSET 0x0800
31 #define SPINLOCK_NUMLOCKS_BIT_OFFSET (24)
33 /* Possible values of SPINLOCK_LOCK_REG */
34 #define SPINLOCK_NOTTAKEN (0) /* free */
35 #define SPINLOCK_TAKEN (1) /* locked */
37 static int omap_hwspinlock_trylock(struct hwspinlock
*lock
)
39 void __iomem
*lock_addr
= lock
->priv
;
41 /* attempt to acquire the lock by reading its value */
42 return (SPINLOCK_NOTTAKEN
== readl(lock_addr
));
45 static void omap_hwspinlock_unlock(struct hwspinlock
*lock
)
47 void __iomem
*lock_addr
= lock
->priv
;
49 /* release the lock by writing 0 to it */
50 writel(SPINLOCK_NOTTAKEN
, lock_addr
);
54 * relax the OMAP interconnect while spinning on it.
56 * The specs recommended that the retry delay time will be
57 * just over half of the time that a requester would be
58 * expected to hold the lock.
60 * The number below is taken from an hardware specs example,
61 * obviously it is somewhat arbitrary.
63 static void omap_hwspinlock_relax(struct hwspinlock
*lock
)
68 static const struct hwspinlock_ops omap_hwspinlock_ops
= {
69 .trylock
= omap_hwspinlock_trylock
,
70 .unlock
= omap_hwspinlock_unlock
,
71 .relax
= omap_hwspinlock_relax
,
74 static int omap_hwspinlock_probe(struct platform_device
*pdev
)
76 struct device_node
*node
= pdev
->dev
.of_node
;
77 struct hwspinlock_device
*bank
;
78 struct hwspinlock
*hwlock
;
80 void __iomem
*io_base
;
81 int num_locks
, i
, ret
;
82 /* Only a single hwspinlock block device is supported */
88 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
92 io_base
= ioremap(res
->start
, resource_size(res
));
97 * make sure the module is enabled and clocked before reading
98 * the module SYSSTATUS register
100 pm_runtime_enable(&pdev
->dev
);
101 ret
= pm_runtime_get_sync(&pdev
->dev
);
103 pm_runtime_put_noidle(&pdev
->dev
);
107 /* Determine number of locks */
108 i
= readl(io_base
+ SYSSTATUS_OFFSET
);
109 i
>>= SPINLOCK_NUMLOCKS_BIT_OFFSET
;
112 * runtime PM will make sure the clock of this module is
113 * enabled again iff at least one lock is requested
115 ret
= pm_runtime_put(&pdev
->dev
);
119 /* one of the four lsb's must be set, and nothing else */
120 if (hweight_long(i
& 0xf) != 1 || i
> 8) {
125 num_locks
= i
* 32; /* actual number of locks in this device */
127 bank
= kzalloc(struct_size(bank
, lock
, num_locks
), GFP_KERNEL
);
133 platform_set_drvdata(pdev
, bank
);
135 for (i
= 0, hwlock
= &bank
->lock
[0]; i
< num_locks
; i
++, hwlock
++)
136 hwlock
->priv
= io_base
+ LOCK_BASE_OFFSET
+ sizeof(u32
) * i
;
138 ret
= hwspin_lock_register(bank
, &pdev
->dev
, &omap_hwspinlock_ops
,
148 pm_runtime_disable(&pdev
->dev
);
153 static int omap_hwspinlock_remove(struct platform_device
*pdev
)
155 struct hwspinlock_device
*bank
= platform_get_drvdata(pdev
);
156 void __iomem
*io_base
= bank
->lock
[0].priv
- LOCK_BASE_OFFSET
;
159 ret
= hwspin_lock_unregister(bank
);
161 dev_err(&pdev
->dev
, "%s failed: %d\n", __func__
, ret
);
165 pm_runtime_disable(&pdev
->dev
);
172 static const struct of_device_id omap_hwspinlock_of_match
[] = {
173 { .compatible
= "ti,omap4-hwspinlock", },
176 MODULE_DEVICE_TABLE(of
, omap_hwspinlock_of_match
);
178 static struct platform_driver omap_hwspinlock_driver
= {
179 .probe
= omap_hwspinlock_probe
,
180 .remove
= omap_hwspinlock_remove
,
182 .name
= "omap_hwspinlock",
183 .of_match_table
= of_match_ptr(omap_hwspinlock_of_match
),
187 static int __init
omap_hwspinlock_init(void)
189 return platform_driver_register(&omap_hwspinlock_driver
);
191 /* board init code might need to reserve hwspinlocks for predefined purposes */
192 postcore_initcall(omap_hwspinlock_init
);
194 static void __exit
omap_hwspinlock_exit(void)
196 platform_driver_unregister(&omap_hwspinlock_driver
);
198 module_exit(omap_hwspinlock_exit
);
200 MODULE_LICENSE("GPL v2");
201 MODULE_DESCRIPTION("Hardware spinlock driver for OMAP");
202 MODULE_AUTHOR("Simon Que <sque@ti.com>");
203 MODULE_AUTHOR("Hari Kanigeri <h-kanigeri2@ti.com>");
204 MODULE_AUTHOR("Ohad Ben-Cohen <ohad@wizery.com>");