1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2010-2011 ST-Ericsson
7 * Implements u8500 semaphore handling for protocol 1, no interrupts.
10 * Heavily borrowed from the work of :
16 #include <linux/module.h>
17 #include <linux/delay.h>
19 #include <linux/pm_runtime.h>
20 #include <linux/slab.h>
21 #include <linux/spinlock.h>
22 #include <linux/hwspinlock.h>
23 #include <linux/platform_device.h>
25 #include "hwspinlock_internal.h"
28 * Implementation of STE's HSem protocol 1 without interrutps.
29 * The only masterID we allow is '0x01' to force people to use
30 * HSems for synchronisation between processors rather than processes
34 #define U8500_MAX_SEMAPHORE 32 /* a total of 32 semaphore */
35 #define RESET_SEMAPHORE (0) /* free */
38 * CPU ID for master running u8500 kernel.
39 * Hswpinlocks should only be used to synchonise operations
40 * between the Cortex A9 core and the other CPUs. Hence
41 * forcing the masterID to a preset value.
43 #define HSEM_MASTER_ID 0x01
45 #define HSEM_REGISTER_OFFSET 0x08
47 #define HSEM_CTRL_REG 0x00
48 #define HSEM_ICRALL 0x90
49 #define HSEM_PROTOCOL_1 0x01
51 static int u8500_hsem_trylock(struct hwspinlock *lock)
53 void __iomem *lock_addr = lock->priv;
55 writel(HSEM_MASTER_ID, lock_addr);
57 /* get only first 4 bit and compare to masterID.
58 * if equal, we have the semaphore, otherwise
59 * someone else has it.
61 return (HSEM_MASTER_ID == (0x0F & readl(lock_addr)));
64 static void u8500_hsem_unlock(struct hwspinlock *lock)
66 void __iomem *lock_addr = lock->priv;
68 /* release the lock by writing 0 to it */
69 writel(RESET_SEMAPHORE, lock_addr);
73 * u8500: what value is recommended here ?
75 static void u8500_hsem_relax(struct hwspinlock *lock)
80 static const struct hwspinlock_ops u8500_hwspinlock_ops = {
81 .trylock = u8500_hsem_trylock,
82 .unlock = u8500_hsem_unlock,
83 .relax = u8500_hsem_relax,
86 static int u8500_hsem_probe(struct platform_device *pdev)
88 struct hwspinlock_pdata *pdata = pdev->dev.platform_data;
89 struct hwspinlock_device *bank;
90 struct hwspinlock *hwlock;
92 void __iomem *io_base;
93 int i, ret, num_locks = U8500_MAX_SEMAPHORE;
99 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
103 io_base = ioremap(res->start, resource_size(res));
107 /* make sure protocol 1 is selected */
108 val = readl(io_base + HSEM_CTRL_REG);
109 writel((val & ~HSEM_PROTOCOL_1), io_base + HSEM_CTRL_REG);
111 /* clear all interrupts */
112 writel(0xFFFF, io_base + HSEM_ICRALL);
114 bank = kzalloc(struct_size(bank, lock, num_locks), GFP_KERNEL);
120 platform_set_drvdata(pdev, bank);
122 for (i = 0, hwlock = &bank->lock[0]; i < num_locks; i++, hwlock++)
123 hwlock->priv = io_base + HSEM_REGISTER_OFFSET + sizeof(u32) * i;
125 /* no pm needed for HSem but required to comply with hwspilock core */
126 pm_runtime_enable(&pdev->dev);
128 ret = hwspin_lock_register(bank, &pdev->dev, &u8500_hwspinlock_ops,
129 pdata->base_id, num_locks);
136 pm_runtime_disable(&pdev->dev);
143 static int u8500_hsem_remove(struct platform_device *pdev)
145 struct hwspinlock_device *bank = platform_get_drvdata(pdev);
146 void __iomem *io_base = bank->lock[0].priv - HSEM_REGISTER_OFFSET;
149 /* clear all interrupts */
150 writel(0xFFFF, io_base + HSEM_ICRALL);
152 ret = hwspin_lock_unregister(bank);
154 dev_err(&pdev->dev, "%s failed: %d\n", __func__, ret);
158 pm_runtime_disable(&pdev->dev);
165 static struct platform_driver u8500_hsem_driver = {
166 .probe = u8500_hsem_probe,
167 .remove = u8500_hsem_remove,
169 .name = "u8500_hsem",
173 static int __init u8500_hsem_init(void)
175 return platform_driver_register(&u8500_hsem_driver);
177 /* board init code might need to reserve hwspinlocks for predefined purposes */
178 postcore_initcall(u8500_hsem_init);
180 static void __exit u8500_hsem_exit(void)
182 platform_driver_unregister(&u8500_hsem_driver);
184 module_exit(u8500_hsem_exit);
186 MODULE_LICENSE("GPL v2");
187 MODULE_DESCRIPTION("Hardware Spinlock driver for u8500");