mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 09:44:18 +08:00
6d0efeb14b
The driver provides kernel level API for other drivers to access the MSM8996 L2 cache registers. Separating the L2 access code from the PMU driver and making it public to allow other drivers use it. The accesses must be separated with a single spinlock, maintained in this driver. Signed-off-by: Ilia Lin <ilialin@codeaurora.org> Signed-off-by: Loic Poulain <loic.poulain@linaro.org> Link: https://lore.kernel.org/r/1593766185-16346-2-git-send-email-loic.poulain@linaro.org Acked-by: Will Deacon <will@kernel.org> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
13 lines
298 B
C
13 lines
298 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2018, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __SOC_ARCH_QCOM_KRYO_L2_ACCESSORS_H
|
|
#define __SOC_ARCH_QCOM_KRYO_L2_ACCESSORS_H
|
|
|
|
void kryo_l2_set_indirect_reg(u64 reg, u64 val);
|
|
u64 kryo_l2_get_indirect_reg(u64 reg);
|
|
|
|
#endif
|