blob: 14e1a532ebb56e9805fcf035b3d960e9b5398a8c [file] [log] [blame]
Suman Anna357ace02018-05-11 12:03:17 -05001// SPDX-License-Identifier: GPL-2.0
Simon Que70ba4cc2011-02-17 09:52:03 -08002/*
3 * OMAP hardware spinlock driver
4 *
Suman Anna65bd4342015-03-04 20:01:16 -06005 * Copyright (C) 2010-2015 Texas Instruments Incorporated - http://www.ti.com
Simon Que70ba4cc2011-02-17 09:52:03 -08006 *
7 * Contact: Simon Que <sque@ti.com>
8 * Hari Kanigeri <h-kanigeri2@ti.com>
9 * Ohad Ben-Cohen <ohad@wizery.com>
Simon Que70ba4cc2011-02-17 09:52:03 -080010 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/device.h>
15#include <linux/delay.h>
16#include <linux/io.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>
Suman Anna65bd4342015-03-04 20:01:16 -060022#include <linux/of.h>
Simon Que70ba4cc2011-02-17 09:52:03 -080023#include <linux/platform_device.h>
24
25#include "hwspinlock_internal.h"
26
27/* Spinlock register offsets */
28#define SYSSTATUS_OFFSET 0x0014
29#define LOCK_BASE_OFFSET 0x0800
30
31#define SPINLOCK_NUMLOCKS_BIT_OFFSET (24)
32
33/* Possible values of SPINLOCK_LOCK_REG */
34#define SPINLOCK_NOTTAKEN (0) /* free */
35#define SPINLOCK_TAKEN (1) /* locked */
36
Simon Que70ba4cc2011-02-17 09:52:03 -080037static int omap_hwspinlock_trylock(struct hwspinlock *lock)
38{
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +030039 void __iomem *lock_addr = lock->priv;
Simon Que70ba4cc2011-02-17 09:52:03 -080040
41 /* attempt to acquire the lock by reading its value */
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +030042 return (SPINLOCK_NOTTAKEN == readl(lock_addr));
Simon Que70ba4cc2011-02-17 09:52:03 -080043}
44
45static void omap_hwspinlock_unlock(struct hwspinlock *lock)
46{
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +030047 void __iomem *lock_addr = lock->priv;
Simon Que70ba4cc2011-02-17 09:52:03 -080048
49 /* release the lock by writing 0 to it */
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +030050 writel(SPINLOCK_NOTTAKEN, lock_addr);
Simon Que70ba4cc2011-02-17 09:52:03 -080051}
52
53/*
54 * relax the OMAP interconnect while spinning on it.
55 *
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.
59 *
60 * The number below is taken from an hardware specs example,
61 * obviously it is somewhat arbitrary.
62 */
63static void omap_hwspinlock_relax(struct hwspinlock *lock)
64{
65 ndelay(50);
66}
67
68static const struct hwspinlock_ops omap_hwspinlock_ops = {
69 .trylock = omap_hwspinlock_trylock,
70 .unlock = omap_hwspinlock_unlock,
71 .relax = omap_hwspinlock_relax,
72};
73
Bill Pemberton57129102012-11-19 13:23:22 -050074static int omap_hwspinlock_probe(struct platform_device *pdev)
Simon Que70ba4cc2011-02-17 09:52:03 -080075{
Suman Anna65bd4342015-03-04 20:01:16 -060076 struct device_node *node = pdev->dev.of_node;
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +030077 struct hwspinlock_device *bank;
78 struct hwspinlock *hwlock;
Simon Que70ba4cc2011-02-17 09:52:03 -080079 struct resource *res;
80 void __iomem *io_base;
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +030081 int num_locks, i, ret;
Suman Anna65bd4342015-03-04 20:01:16 -060082 /* Only a single hwspinlock block device is supported */
83 int base_id = 0;
Simon Que70ba4cc2011-02-17 09:52:03 -080084
Suman Anna65bd4342015-03-04 20:01:16 -060085 if (!node)
Ohad Ben-Cohenc3c12502011-09-05 23:15:06 +030086 return -ENODEV;
87
Simon Que70ba4cc2011-02-17 09:52:03 -080088 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
89 if (!res)
90 return -ENODEV;
91
Simon Que70ba4cc2011-02-17 09:52:03 -080092 io_base = ioremap(res->start, resource_size(res));
Ohad Ben-Cohenc97f6dd2011-09-05 17:30:34 +030093 if (!io_base)
94 return -ENOMEM;
Simon Que70ba4cc2011-02-17 09:52:03 -080095
Suman Annae1e45282014-07-02 18:00:59 -050096 /*
97 * make sure the module is enabled and clocked before reading
98 * the module SYSSTATUS register
99 */
100 pm_runtime_enable(&pdev->dev);
101 ret = pm_runtime_get_sync(&pdev->dev);
102 if (ret < 0) {
103 pm_runtime_put_noidle(&pdev->dev);
104 goto iounmap_base;
105 }
106
Simon Que70ba4cc2011-02-17 09:52:03 -0800107 /* Determine number of locks */
108 i = readl(io_base + SYSSTATUS_OFFSET);
109 i >>= SPINLOCK_NUMLOCKS_BIT_OFFSET;
110
Suman Annae1e45282014-07-02 18:00:59 -0500111 /*
112 * runtime PM will make sure the clock of this module is
113 * enabled again iff at least one lock is requested
114 */
115 ret = pm_runtime_put(&pdev->dev);
116 if (ret < 0)
117 goto iounmap_base;
118
Simon Que70ba4cc2011-02-17 09:52:03 -0800119 /* one of the four lsb's must be set, and nothing else */
120 if (hweight_long(i & 0xf) != 1 || i > 8) {
121 ret = -EINVAL;
122 goto iounmap_base;
123 }
124
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300125 num_locks = i * 32; /* actual number of locks in this device */
Ohad Ben-Cohenc97f6dd2011-09-05 17:30:34 +0300126
Kees Cookacafe7e2018-05-08 13:45:50 -0700127 bank = kzalloc(struct_size(bank, lock, num_locks), GFP_KERNEL);
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300128 if (!bank) {
Ohad Ben-Cohenc97f6dd2011-09-05 17:30:34 +0300129 ret = -ENOMEM;
130 goto iounmap_base;
131 }
132
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300133 platform_set_drvdata(pdev, bank);
Simon Que70ba4cc2011-02-17 09:52:03 -0800134
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300135 for (i = 0, hwlock = &bank->lock[0]; i < num_locks; i++, hwlock++)
136 hwlock->priv = io_base + LOCK_BASE_OFFSET + sizeof(u32) * i;
Simon Que70ba4cc2011-02-17 09:52:03 -0800137
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300138 ret = hwspin_lock_register(bank, &pdev->dev, &omap_hwspinlock_ops,
Suman Anna65bd4342015-03-04 20:01:16 -0600139 base_id, num_locks);
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300140 if (ret)
141 goto reg_fail;
Simon Que70ba4cc2011-02-17 09:52:03 -0800142
Suman Annad4d98bb2019-05-30 21:13:21 -0500143 dev_dbg(&pdev->dev, "Registered %d locks with HwSpinlock core\n",
144 num_locks);
145
Simon Que70ba4cc2011-02-17 09:52:03 -0800146 return 0;
147
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300148reg_fail:
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300149 kfree(bank);
Simon Que70ba4cc2011-02-17 09:52:03 -0800150iounmap_base:
Suman Annae1e45282014-07-02 18:00:59 -0500151 pm_runtime_disable(&pdev->dev);
Simon Que70ba4cc2011-02-17 09:52:03 -0800152 iounmap(io_base);
Simon Que70ba4cc2011-02-17 09:52:03 -0800153 return ret;
154}
155
Bill Pembertone533a342012-11-19 13:25:52 -0500156static int omap_hwspinlock_remove(struct platform_device *pdev)
Simon Que70ba4cc2011-02-17 09:52:03 -0800157{
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300158 struct hwspinlock_device *bank = platform_get_drvdata(pdev);
159 void __iomem *io_base = bank->lock[0].priv - LOCK_BASE_OFFSET;
160 int ret;
Simon Que70ba4cc2011-02-17 09:52:03 -0800161
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300162 ret = hwspin_lock_unregister(bank);
163 if (ret) {
164 dev_err(&pdev->dev, "%s failed: %d\n", __func__, ret);
165 return ret;
Simon Que70ba4cc2011-02-17 09:52:03 -0800166 }
167
168 pm_runtime_disable(&pdev->dev);
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300169 iounmap(io_base);
170 kfree(bank);
Simon Que70ba4cc2011-02-17 09:52:03 -0800171
172 return 0;
173}
174
Suman Anna65bd4342015-03-04 20:01:16 -0600175static const struct of_device_id omap_hwspinlock_of_match[] = {
176 { .compatible = "ti,omap4-hwspinlock", },
Suman Anna6fa154e22019-05-30 21:13:20 -0500177 { .compatible = "ti,am654-hwspinlock", },
Suman Anna65bd4342015-03-04 20:01:16 -0600178 { /* end */ },
179};
180MODULE_DEVICE_TABLE(of, omap_hwspinlock_of_match);
181
Simon Que70ba4cc2011-02-17 09:52:03 -0800182static struct platform_driver omap_hwspinlock_driver = {
183 .probe = omap_hwspinlock_probe,
Bill Pemberton9eb26bd2012-11-19 13:20:13 -0500184 .remove = omap_hwspinlock_remove,
Simon Que70ba4cc2011-02-17 09:52:03 -0800185 .driver = {
186 .name = "omap_hwspinlock",
Suman Anna65bd4342015-03-04 20:01:16 -0600187 .of_match_table = of_match_ptr(omap_hwspinlock_of_match),
Simon Que70ba4cc2011-02-17 09:52:03 -0800188 },
189};
190
191static int __init omap_hwspinlock_init(void)
192{
193 return platform_driver_register(&omap_hwspinlock_driver);
194}
195/* board init code might need to reserve hwspinlocks for predefined purposes */
196postcore_initcall(omap_hwspinlock_init);
197
198static void __exit omap_hwspinlock_exit(void)
199{
200 platform_driver_unregister(&omap_hwspinlock_driver);
201}
202module_exit(omap_hwspinlock_exit);
203
204MODULE_LICENSE("GPL v2");
205MODULE_DESCRIPTION("Hardware spinlock driver for OMAP");
206MODULE_AUTHOR("Simon Que <sque@ti.com>");
207MODULE_AUTHOR("Hari Kanigeri <h-kanigeri2@ti.com>");
208MODULE_AUTHOR("Ohad Ben-Cohen <ohad@wizery.com>");