4 * Copyright (C) 2010-2011 ST-Ericsson
6 * Implements u8500 semaphore handling for protocol 1, no interrupts.
8 * Author: Mathieu Poirier <mathieu.poirier@linaro.org>
9 * Heavily borrowed from the work of :
10 * Simon Que <sque@ti.com>
11 * Hari Kanigeri <h-kanigeri2@ti.com>
12 * Ohad Ben-Cohen <ohad@wizery.com>
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * version 2 as published by the Free Software Foundation.
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * General Public License for more details.
24 #include <linux/module.h>
25 #include <linux/delay.h>
27 #include <linux/pm_runtime.h>
28 #include <linux/slab.h>
29 #include <linux/spinlock.h>
30 #include <linux/hwspinlock.h>
31 #include <linux/platform_device.h>
33 #include "hwspinlock_internal.h"
36 * Implementation of STE's HSem protocol 1 without interrutps.
37 * The only masterID we allow is '0x01' to force people to use
38 * HSems for synchronisation between processors rather than processes
42 #define U8500_MAX_SEMAPHORE 32 /* a total of 32 semaphore */
43 #define RESET_SEMAPHORE (0) /* free */
46 * CPU ID for master running u8500 kernel.
47 * Hswpinlocks should only be used to synchonise operations
48 * between the Cortex A9 core and the other CPUs. Hence
49 * forcing the masterID to a preset value.
51 #define HSEM_MASTER_ID 0x01
53 #define HSEM_REGISTER_OFFSET 0x08
55 #define HSEM_CTRL_REG 0x00
56 #define HSEM_ICRALL 0x90
57 #define HSEM_PROTOCOL_1 0x01
59 static int u8500_hsem_trylock(struct hwspinlock
*lock
)
61 void __iomem
*lock_addr
= lock
->priv
;
63 writel(HSEM_MASTER_ID
, lock_addr
);
65 /* get only first 4 bit and compare to masterID.
66 * if equal, we have the semaphore, otherwise
67 * someone else has it.
69 return (HSEM_MASTER_ID
== (0x0F & readl(lock_addr
)));
72 static void u8500_hsem_unlock(struct hwspinlock
*lock
)
74 void __iomem
*lock_addr
= lock
->priv
;
76 /* release the lock by writing 0 to it */
77 writel(RESET_SEMAPHORE
, lock_addr
);
81 * u8500: what value is recommended here ?
83 static void u8500_hsem_relax(struct hwspinlock
*lock
)
88 static const struct hwspinlock_ops u8500_hwspinlock_ops
= {
89 .trylock
= u8500_hsem_trylock
,
90 .unlock
= u8500_hsem_unlock
,
91 .relax
= u8500_hsem_relax
,
94 static int u8500_hsem_probe(struct platform_device
*pdev
)
96 struct hwspinlock_pdata
*pdata
= pdev
->dev
.platform_data
;
97 struct hwspinlock_device
*bank
;
98 struct hwspinlock
*hwlock
;
100 void __iomem
*io_base
;
101 int i
, ret
, num_locks
= U8500_MAX_SEMAPHORE
;
107 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
111 io_base
= ioremap(res
->start
, resource_size(res
));
115 /* make sure protocol 1 is selected */
116 val
= readl(io_base
+ HSEM_CTRL_REG
);
117 writel((val
& ~HSEM_PROTOCOL_1
), io_base
+ HSEM_CTRL_REG
);
119 /* clear all interrupts */
120 writel(0xFFFF, io_base
+ HSEM_ICRALL
);
122 bank
= kzalloc(sizeof(*bank
) + num_locks
* sizeof(*hwlock
), GFP_KERNEL
);
128 platform_set_drvdata(pdev
, bank
);
130 for (i
= 0, hwlock
= &bank
->lock
[0]; i
< num_locks
; i
++, hwlock
++)
131 hwlock
->priv
= io_base
+ HSEM_REGISTER_OFFSET
+ sizeof(u32
) * i
;
133 /* no pm needed for HSem but required to comply with hwspilock core */
134 pm_runtime_enable(&pdev
->dev
);
136 ret
= hwspin_lock_register(bank
, &pdev
->dev
, &u8500_hwspinlock_ops
,
137 pdata
->base_id
, num_locks
);
144 pm_runtime_disable(&pdev
->dev
);
151 static int u8500_hsem_remove(struct platform_device
*pdev
)
153 struct hwspinlock_device
*bank
= platform_get_drvdata(pdev
);
154 void __iomem
*io_base
= bank
->lock
[0].priv
- HSEM_REGISTER_OFFSET
;
157 /* clear all interrupts */
158 writel(0xFFFF, io_base
+ HSEM_ICRALL
);
160 ret
= hwspin_lock_unregister(bank
);
162 dev_err(&pdev
->dev
, "%s failed: %d\n", __func__
, ret
);
166 pm_runtime_disable(&pdev
->dev
);
173 static struct platform_driver u8500_hsem_driver
= {
174 .probe
= u8500_hsem_probe
,
175 .remove
= u8500_hsem_remove
,
177 .name
= "u8500_hsem",
181 static int __init
u8500_hsem_init(void)
183 return platform_driver_register(&u8500_hsem_driver
);
185 /* board init code might need to reserve hwspinlocks for predefined purposes */
186 postcore_initcall(u8500_hsem_init
);
188 static void __exit
u8500_hsem_exit(void)
190 platform_driver_unregister(&u8500_hsem_driver
);
192 module_exit(u8500_hsem_exit
);
194 MODULE_LICENSE("GPL v2");
195 MODULE_DESCRIPTION("Hardware Spinlock driver for u8500");
196 MODULE_AUTHOR("Mathieu Poirier <mathieu.poirier@linaro.org>");