1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
6 #include <linux/atomic.h>
8 #include <linux/interrupt.h>
9 #include <linux/jiffies.h>
10 #include <linux/kernel.h>
11 #include <linux/list.h>
12 #include <linux/lockdep.h>
13 #include <linux/module.h>
15 #include <linux/platform_device.h>
16 #include <linux/slab.h>
17 #include <linux/spinlock.h>
18 #include <linux/types.h>
19 #include <linux/wait.h>
21 #include <soc/qcom/rpmh.h>
23 #include "rpmh-internal.h"
25 #define RPMH_TIMEOUT_MS msecs_to_jiffies(10000)
27 #define DEFINE_RPMH_MSG_ONSTACK(device, s, q, name) \
28 struct rpmh_request name = { \
33 .wait_for_compl = true, \
38 .needs_free = false, \
41 #define ctrlr_to_drv(ctrlr) container_of(ctrlr, struct rsc_drv, client)
44 * struct cache_req: the request object for caching
46 * @addr: the address of the resource
47 * @sleep_val: the sleep vote
48 * @wake_val: the wake vote
49 * @list: linked list obj
55 struct list_head list
;
59 * struct batch_cache_req - An entry in our batch catch
61 * @list: linked list obj
62 * @count: number of messages
63 * @rpm_msgs: the messages
66 struct batch_cache_req
{
67 struct list_head list
;
69 struct rpmh_request rpm_msgs
[];
72 static struct rpmh_ctrlr
*get_rpmh_ctrlr(const struct device
*dev
)
74 struct rsc_drv
*drv
= dev_get_drvdata(dev
->parent
);
79 void rpmh_tx_done(const struct tcs_request
*msg
, int r
)
81 struct rpmh_request
*rpm_msg
= container_of(msg
, struct rpmh_request
,
83 struct completion
*compl = rpm_msg
->completion
;
84 bool free
= rpm_msg
->needs_free
;
89 dev_err(rpm_msg
->dev
, "RPMH TX fail in msg addr=%#x, err=%d\n",
90 rpm_msg
->msg
.cmds
[0].addr
, r
);
95 /* Signal the blocking thread we are done */
103 static struct cache_req
*__find_req(struct rpmh_ctrlr
*ctrlr
, u32 addr
)
105 struct cache_req
*p
, *req
= NULL
;
107 list_for_each_entry(p
, &ctrlr
->cache
, list
) {
108 if (p
->addr
== addr
) {
117 static struct cache_req
*cache_rpm_request(struct rpmh_ctrlr
*ctrlr
,
118 enum rpmh_state state
,
121 struct cache_req
*req
;
123 u32 old_sleep_val
, old_wake_val
;
125 spin_lock_irqsave(&ctrlr
->cache_lock
, flags
);
126 req
= __find_req(ctrlr
, cmd
->addr
);
130 req
= kzalloc(sizeof(*req
), GFP_ATOMIC
);
132 req
= ERR_PTR(-ENOMEM
);
136 req
->addr
= cmd
->addr
;
137 req
->sleep_val
= req
->wake_val
= UINT_MAX
;
138 list_add_tail(&req
->list
, &ctrlr
->cache
);
141 old_sleep_val
= req
->sleep_val
;
142 old_wake_val
= req
->wake_val
;
145 case RPMH_ACTIVE_ONLY_STATE
:
146 case RPMH_WAKE_ONLY_STATE
:
147 req
->wake_val
= cmd
->data
;
149 case RPMH_SLEEP_STATE
:
150 req
->sleep_val
= cmd
->data
;
154 ctrlr
->dirty
|= (req
->sleep_val
!= old_sleep_val
||
155 req
->wake_val
!= old_wake_val
) &&
156 req
->sleep_val
!= UINT_MAX
&&
157 req
->wake_val
!= UINT_MAX
;
160 spin_unlock_irqrestore(&ctrlr
->cache_lock
, flags
);
166 * __rpmh_write: Cache and send the RPMH request
168 * @dev: The device making the request
169 * @state: Active/Sleep request type
170 * @rpm_msg: The data that needs to be sent (cmds).
172 * Cache the RPMH request and send if the state is ACTIVE_ONLY.
173 * SLEEP/WAKE_ONLY requests are not sent to the controller at
174 * this time. Use rpmh_flush() to send them to the controller.
176 static int __rpmh_write(const struct device
*dev
, enum rpmh_state state
,
177 struct rpmh_request
*rpm_msg
)
179 struct rpmh_ctrlr
*ctrlr
= get_rpmh_ctrlr(dev
);
181 struct cache_req
*req
;
184 /* Cache the request in our store and link the payload */
185 for (i
= 0; i
< rpm_msg
->msg
.num_cmds
; i
++) {
186 req
= cache_rpm_request(ctrlr
, state
, &rpm_msg
->msg
.cmds
[i
]);
191 if (state
== RPMH_ACTIVE_ONLY_STATE
) {
192 WARN_ON(irqs_disabled());
193 ret
= rpmh_rsc_send_data(ctrlr_to_drv(ctrlr
), &rpm_msg
->msg
);
195 /* Clean up our call by spoofing tx_done */
197 rpmh_tx_done(&rpm_msg
->msg
, ret
);
203 static int __fill_rpmh_msg(struct rpmh_request
*req
, enum rpmh_state state
,
204 const struct tcs_cmd
*cmd
, u32 n
)
206 if (!cmd
|| !n
|| n
> MAX_RPMH_PAYLOAD
)
209 memcpy(req
->cmd
, cmd
, n
* sizeof(*cmd
));
211 req
->msg
.state
= state
;
212 req
->msg
.cmds
= req
->cmd
;
213 req
->msg
.num_cmds
= n
;
219 * rpmh_write_async: Write a set of RPMH commands
221 * @dev: The device making the request
222 * @state: Active/sleep set
223 * @cmd: The payload data
224 * @n: The number of elements in payload
226 * Write a set of RPMH commands, the order of commands is maintained
227 * and will be sent as a single shot.
229 int rpmh_write_async(const struct device
*dev
, enum rpmh_state state
,
230 const struct tcs_cmd
*cmd
, u32 n
)
232 struct rpmh_request
*rpm_msg
;
235 rpm_msg
= kzalloc(sizeof(*rpm_msg
), GFP_ATOMIC
);
238 rpm_msg
->needs_free
= true;
240 ret
= __fill_rpmh_msg(rpm_msg
, state
, cmd
, n
);
246 return __rpmh_write(dev
, state
, rpm_msg
);
248 EXPORT_SYMBOL(rpmh_write_async
);
251 * rpmh_write: Write a set of RPMH commands and block until response
253 * @dev: The device making the request
254 * @state: Active/sleep set
255 * @cmd: The payload data
256 * @n: The number of elements in @cmd
258 * May sleep. Do not call from atomic contexts.
260 int rpmh_write(const struct device
*dev
, enum rpmh_state state
,
261 const struct tcs_cmd
*cmd
, u32 n
)
263 DECLARE_COMPLETION_ONSTACK(compl);
264 DEFINE_RPMH_MSG_ONSTACK(dev
, state
, &compl, rpm_msg
);
267 ret
= __fill_rpmh_msg(&rpm_msg
, state
, cmd
, n
);
271 ret
= __rpmh_write(dev
, state
, &rpm_msg
);
275 ret
= wait_for_completion_timeout(&compl, RPMH_TIMEOUT_MS
);
277 return (ret
> 0) ? 0 : -ETIMEDOUT
;
279 EXPORT_SYMBOL(rpmh_write
);
281 static void cache_batch(struct rpmh_ctrlr
*ctrlr
, struct batch_cache_req
*req
)
285 spin_lock_irqsave(&ctrlr
->cache_lock
, flags
);
286 list_add_tail(&req
->list
, &ctrlr
->batch_cache
);
288 spin_unlock_irqrestore(&ctrlr
->cache_lock
, flags
);
291 static int flush_batch(struct rpmh_ctrlr
*ctrlr
)
293 struct batch_cache_req
*req
;
294 const struct rpmh_request
*rpm_msg
;
298 /* Send Sleep/Wake requests to the controller, expect no response */
299 list_for_each_entry(req
, &ctrlr
->batch_cache
, list
) {
300 for (i
= 0; i
< req
->count
; i
++) {
301 rpm_msg
= req
->rpm_msgs
+ i
;
302 ret
= rpmh_rsc_write_ctrl_data(ctrlr_to_drv(ctrlr
),
313 * rpmh_write_batch: Write multiple sets of RPMH commands and wait for the
316 * @dev: the device making the request
317 * @state: Active/sleep set
318 * @cmd: The payload data
319 * @n: The array of count of elements in each batch, 0 terminated.
321 * Write a request to the RSC controller without caching. If the request
322 * state is ACTIVE, then the requests are treated as completion request
323 * and sent to the controller immediately. The function waits until all the
324 * commands are complete. If the request was to SLEEP or WAKE_ONLY, then the
325 * request is sent as fire-n-forget and no ack is expected.
327 * May sleep. Do not call from atomic contexts for ACTIVE_ONLY requests.
329 int rpmh_write_batch(const struct device
*dev
, enum rpmh_state state
,
330 const struct tcs_cmd
*cmd
, u32
*n
)
332 struct batch_cache_req
*req
;
333 struct rpmh_request
*rpm_msgs
;
334 struct completion
*compls
;
335 struct rpmh_ctrlr
*ctrlr
= get_rpmh_ctrlr(dev
);
336 unsigned long time_left
;
349 ptr
= kzalloc(sizeof(*req
) +
350 count
* (sizeof(req
->rpm_msgs
[0]) + sizeof(*compls
)),
356 compls
= ptr
+ sizeof(*req
) + count
* sizeof(*rpm_msgs
);
359 rpm_msgs
= req
->rpm_msgs
;
361 for (i
= 0; i
< count
; i
++) {
362 __fill_rpmh_msg(rpm_msgs
+ i
, state
, cmd
, n
[i
]);
366 if (state
!= RPMH_ACTIVE_ONLY_STATE
) {
367 cache_batch(ctrlr
, req
);
371 for (i
= 0; i
< count
; i
++) {
372 struct completion
*compl = &compls
[i
];
374 init_completion(compl);
375 rpm_msgs
[i
].completion
= compl;
376 ret
= rpmh_rsc_send_data(ctrlr_to_drv(ctrlr
), &rpm_msgs
[i
].msg
);
378 pr_err("Error(%d) sending RPMH message addr=%#x\n",
379 ret
, rpm_msgs
[i
].msg
.cmds
[0].addr
);
384 time_left
= RPMH_TIMEOUT_MS
;
386 time_left
= wait_for_completion_timeout(&compls
[i
], time_left
);
389 * Better hope they never finish because they'll signal
390 * the completion that we're going to free once
391 * we've returned from this function.
404 EXPORT_SYMBOL(rpmh_write_batch
);
406 static int is_req_valid(struct cache_req
*req
)
408 return (req
->sleep_val
!= UINT_MAX
&&
409 req
->wake_val
!= UINT_MAX
&&
410 req
->sleep_val
!= req
->wake_val
);
413 static int send_single(struct rpmh_ctrlr
*ctrlr
, enum rpmh_state state
,
416 DEFINE_RPMH_MSG_ONSTACK(NULL
, state
, NULL
, rpm_msg
);
418 /* Wake sets are always complete and sleep sets are not */
419 rpm_msg
.msg
.wait_for_compl
= (state
== RPMH_WAKE_ONLY_STATE
);
420 rpm_msg
.cmd
[0].addr
= addr
;
421 rpm_msg
.cmd
[0].data
= data
;
422 rpm_msg
.msg
.num_cmds
= 1;
424 return rpmh_rsc_write_ctrl_data(ctrlr_to_drv(ctrlr
), &rpm_msg
.msg
);
428 * rpmh_flush() - Flushes the buffered sleep and wake sets to TCSes
430 * @ctrlr: Controller making request to flush cached data
434 * * Error code - Otherwise
436 int rpmh_flush(struct rpmh_ctrlr
*ctrlr
)
441 lockdep_assert_irqs_disabled();
444 * Currently rpmh_flush() is only called when we think we're running
445 * on the last processor. If the lock is busy it means another
446 * processor is up and it's better to abort than spin.
448 if (!spin_trylock(&ctrlr
->cache_lock
))
452 pr_debug("Skipping flush, TCS has latest data.\n");
456 /* Invalidate the TCSes first to avoid stale data */
457 rpmh_rsc_invalidate(ctrlr_to_drv(ctrlr
));
459 /* First flush the cached batch requests */
460 ret
= flush_batch(ctrlr
);
464 list_for_each_entry(p
, &ctrlr
->cache
, list
) {
465 if (!is_req_valid(p
)) {
466 pr_debug("%s: skipping RPMH req: a:%#x s:%#x w:%#x",
467 __func__
, p
->addr
, p
->sleep_val
, p
->wake_val
);
470 ret
= send_single(ctrlr
, RPMH_SLEEP_STATE
, p
->addr
,
474 ret
= send_single(ctrlr
, RPMH_WAKE_ONLY_STATE
, p
->addr
,
480 ctrlr
->dirty
= false;
483 spin_unlock(&ctrlr
->cache_lock
);
488 * rpmh_invalidate: Invalidate sleep and wake sets in batch_cache
490 * @dev: The device making the request
492 * Invalidate the sleep and wake values in batch_cache.
494 void rpmh_invalidate(const struct device
*dev
)
496 struct rpmh_ctrlr
*ctrlr
= get_rpmh_ctrlr(dev
);
497 struct batch_cache_req
*req
, *tmp
;
500 spin_lock_irqsave(&ctrlr
->cache_lock
, flags
);
501 list_for_each_entry_safe(req
, tmp
, &ctrlr
->batch_cache
, list
)
503 INIT_LIST_HEAD(&ctrlr
->batch_cache
);
505 spin_unlock_irqrestore(&ctrlr
->cache_lock
, flags
);
507 EXPORT_SYMBOL(rpmh_invalidate
);