blob: 33eeff94fc2abd3935c385977e1d77dde866d655 [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 Annab9ddb252021-02-09 11:22:40 -06005 * Copyright (C) 2010-2021 Texas Instruments Incorporated - https://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>
Suman Annab9ddb252021-02-09 11:22:40 -060010 * Suman Anna <s-anna@ti.com>
Simon Que70ba4cc2011-02-17 09:52:03 -080011 */
12
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/device.h>
16#include <linux/delay.h>
17#include <linux/io.h>
18#include <linux/bitops.h>
19#include <linux/pm_runtime.h>
20#include <linux/slab.h>
21#include <linux/spinlock.h>
22#include <linux/hwspinlock.h>
Suman Anna65bd4342015-03-04 20:01:16 -060023#include <linux/of.h>
Simon Que70ba4cc2011-02-17 09:52:03 -080024#include <linux/platform_device.h>
25
26#include "hwspinlock_internal.h"
27
28/* Spinlock register offsets */
29#define SYSSTATUS_OFFSET 0x0014
30#define LOCK_BASE_OFFSET 0x0800
31
32#define SPINLOCK_NUMLOCKS_BIT_OFFSET (24)
33
34/* Possible values of SPINLOCK_LOCK_REG */
35#define SPINLOCK_NOTTAKEN (0) /* free */
36#define SPINLOCK_TAKEN (1) /* locked */
37
Simon Que70ba4cc2011-02-17 09:52:03 -080038static int omap_hwspinlock_trylock(struct hwspinlock *lock)
39{
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +030040 void __iomem *lock_addr = lock->priv;
Simon Que70ba4cc2011-02-17 09:52:03 -080041
42 /* attempt to acquire the lock by reading its value */
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +030043 return (SPINLOCK_NOTTAKEN == readl(lock_addr));
Simon Que70ba4cc2011-02-17 09:52:03 -080044}
45
46static void omap_hwspinlock_unlock(struct hwspinlock *lock)
47{
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +030048 void __iomem *lock_addr = lock->priv;
Simon Que70ba4cc2011-02-17 09:52:03 -080049
50 /* release the lock by writing 0 to it */
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +030051 writel(SPINLOCK_NOTTAKEN, lock_addr);
Simon Que70ba4cc2011-02-17 09:52:03 -080052}
53
54/*
55 * relax the OMAP interconnect while spinning on it.
56 *
57 * The specs recommended that the retry delay time will be
58 * just over half of the time that a requester would be
59 * expected to hold the lock.
60 *
61 * The number below is taken from an hardware specs example,
62 * obviously it is somewhat arbitrary.
63 */
64static void omap_hwspinlock_relax(struct hwspinlock *lock)
65{
66 ndelay(50);
67}
68
69static const struct hwspinlock_ops omap_hwspinlock_ops = {
70 .trylock = omap_hwspinlock_trylock,
71 .unlock = omap_hwspinlock_unlock,
72 .relax = omap_hwspinlock_relax,
73};
74
Bill Pemberton57129102012-11-19 13:23:22 -050075static int omap_hwspinlock_probe(struct platform_device *pdev)
Simon Que70ba4cc2011-02-17 09:52:03 -080076{
Suman Anna65bd4342015-03-04 20:01:16 -060077 struct device_node *node = pdev->dev.of_node;
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +030078 struct hwspinlock_device *bank;
79 struct hwspinlock *hwlock;
Simon Que70ba4cc2011-02-17 09:52:03 -080080 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
Baolin Wangbf274002020-01-08 11:13:59 +080088 io_base = devm_platform_ioremap_resource(pdev, 0);
89 if (IS_ERR(io_base))
90 return PTR_ERR(io_base);
Simon Que70ba4cc2011-02-17 09:52:03 -080091
Suman Annae1e45282014-07-02 18:00:59 -050092 /*
93 * make sure the module is enabled and clocked before reading
94 * the module SYSSTATUS register
95 */
96 pm_runtime_enable(&pdev->dev);
97 ret = pm_runtime_get_sync(&pdev->dev);
98 if (ret < 0) {
99 pm_runtime_put_noidle(&pdev->dev);
Baolin Wangbf274002020-01-08 11:13:59 +0800100 goto runtime_err;
Suman Annae1e45282014-07-02 18:00:59 -0500101 }
102
Simon Que70ba4cc2011-02-17 09:52:03 -0800103 /* Determine number of locks */
104 i = readl(io_base + SYSSTATUS_OFFSET);
105 i >>= SPINLOCK_NUMLOCKS_BIT_OFFSET;
106
Suman Annae1e45282014-07-02 18:00:59 -0500107 /*
108 * runtime PM will make sure the clock of this module is
109 * enabled again iff at least one lock is requested
110 */
111 ret = pm_runtime_put(&pdev->dev);
112 if (ret < 0)
Baolin Wangbf274002020-01-08 11:13:59 +0800113 goto runtime_err;
Suman Annae1e45282014-07-02 18:00:59 -0500114
Simon Que70ba4cc2011-02-17 09:52:03 -0800115 /* one of the four lsb's must be set, and nothing else */
116 if (hweight_long(i & 0xf) != 1 || i > 8) {
117 ret = -EINVAL;
Baolin Wangbf274002020-01-08 11:13:59 +0800118 goto runtime_err;
Simon Que70ba4cc2011-02-17 09:52:03 -0800119 }
120
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300121 num_locks = i * 32; /* actual number of locks in this device */
Ohad Ben-Cohenc97f6dd2011-09-05 17:30:34 +0300122
Baolin Wang42f291e2020-01-08 11:14:00 +0800123 bank = devm_kzalloc(&pdev->dev, struct_size(bank, lock, num_locks),
124 GFP_KERNEL);
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300125 if (!bank) {
Ohad Ben-Cohenc97f6dd2011-09-05 17:30:34 +0300126 ret = -ENOMEM;
Baolin Wangbf274002020-01-08 11:13:59 +0800127 goto runtime_err;
Ohad Ben-Cohenc97f6dd2011-09-05 17:30:34 +0300128 }
129
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300130 platform_set_drvdata(pdev, bank);
Simon Que70ba4cc2011-02-17 09:52:03 -0800131
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300132 for (i = 0, hwlock = &bank->lock[0]; i < num_locks; i++, hwlock++)
133 hwlock->priv = io_base + LOCK_BASE_OFFSET + sizeof(u32) * i;
Simon Que70ba4cc2011-02-17 09:52:03 -0800134
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300135 ret = hwspin_lock_register(bank, &pdev->dev, &omap_hwspinlock_ops,
Suman Anna65bd4342015-03-04 20:01:16 -0600136 base_id, num_locks);
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300137 if (ret)
Baolin Wang42f291e2020-01-08 11:14:00 +0800138 goto runtime_err;
Simon Que70ba4cc2011-02-17 09:52:03 -0800139
Suman Annad4d98bb2019-05-30 21:13:21 -0500140 dev_dbg(&pdev->dev, "Registered %d locks with HwSpinlock core\n",
141 num_locks);
142
Simon Que70ba4cc2011-02-17 09:52:03 -0800143 return 0;
144
Baolin Wangbf274002020-01-08 11:13:59 +0800145runtime_err:
Suman Annae1e45282014-07-02 18:00:59 -0500146 pm_runtime_disable(&pdev->dev);
Simon Que70ba4cc2011-02-17 09:52:03 -0800147 return ret;
148}
149
Bill Pembertone533a342012-11-19 13:25:52 -0500150static int omap_hwspinlock_remove(struct platform_device *pdev)
Simon Que70ba4cc2011-02-17 09:52:03 -0800151{
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300152 struct hwspinlock_device *bank = platform_get_drvdata(pdev);
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300153 int ret;
Simon Que70ba4cc2011-02-17 09:52:03 -0800154
Ohad Ben-Cohen300bab92011-09-06 15:39:21 +0300155 ret = hwspin_lock_unregister(bank);
156 if (ret) {
157 dev_err(&pdev->dev, "%s failed: %d\n", __func__, ret);
158 return ret;
Simon Que70ba4cc2011-02-17 09:52:03 -0800159 }
160
161 pm_runtime_disable(&pdev->dev);
Simon Que70ba4cc2011-02-17 09:52:03 -0800162
163 return 0;
164}
165
Suman Anna65bd4342015-03-04 20:01:16 -0600166static const struct of_device_id omap_hwspinlock_of_match[] = {
167 { .compatible = "ti,omap4-hwspinlock", },
Suman Annab9ddb252021-02-09 11:22:40 -0600168 { .compatible = "ti,am64-hwspinlock", },
Suman Anna6fa154e22019-05-30 21:13:20 -0500169 { .compatible = "ti,am654-hwspinlock", },
Suman Anna65bd4342015-03-04 20:01:16 -0600170 { /* end */ },
171};
172MODULE_DEVICE_TABLE(of, omap_hwspinlock_of_match);
173
Simon Que70ba4cc2011-02-17 09:52:03 -0800174static struct platform_driver omap_hwspinlock_driver = {
175 .probe = omap_hwspinlock_probe,
Bill Pemberton9eb26bd2012-11-19 13:20:13 -0500176 .remove = omap_hwspinlock_remove,
Simon Que70ba4cc2011-02-17 09:52:03 -0800177 .driver = {
178 .name = "omap_hwspinlock",
Suman Anna65bd4342015-03-04 20:01:16 -0600179 .of_match_table = of_match_ptr(omap_hwspinlock_of_match),
Simon Que70ba4cc2011-02-17 09:52:03 -0800180 },
181};
182
183static int __init omap_hwspinlock_init(void)
184{
185 return platform_driver_register(&omap_hwspinlock_driver);
186}
187/* board init code might need to reserve hwspinlocks for predefined purposes */
188postcore_initcall(omap_hwspinlock_init);
189
190static void __exit omap_hwspinlock_exit(void)
191{
192 platform_driver_unregister(&omap_hwspinlock_driver);
193}
194module_exit(omap_hwspinlock_exit);
195
196MODULE_LICENSE("GPL v2");
197MODULE_DESCRIPTION("Hardware spinlock driver for OMAP");
198MODULE_AUTHOR("Simon Que <sque@ti.com>");
199MODULE_AUTHOR("Hari Kanigeri <h-kanigeri2@ti.com>");
200MODULE_AUTHOR("Ohad Ben-Cohen <ohad@wizery.com>");