android_kernel_xiaomi_sm8350/drivers/soc/qcom/llcc-sm8150.c
Vivek Kumar ff6d3c8d99 drivers: soc: Add support for sm8150 llcc driver
Add support for sm8150-llcc driver. The driver
is written by taking reference from sm8150-llcc
driver in msm-4.14 kernel at commit id
"f6969550b4".

Change-Id: Iaa7711f56066fc1c8e098beaf19185522bb5581d
Signed-off-by: Vivek Kumar <vivekuma@codeaurora.org>
2021-01-18 10:20:50 -08:00

110 lines
4.4 KiB
C

// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2017-2018,2020 The Linux Foundation. All rights reserved.
*
*/
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/soc/qcom/llcc-qcom.h>
/*
* SCT entry contains of the following parameters
* name: Name of the client's use case for which the llcc slice is used
* uid: Unique id for the client's use case
* slice_id: llcc slice id for each client
* max_cap: The maximum capacity of the cache slice provided in KB
* priority: Priority of the client used to select victim line for replacement
* fixed_size: Determine of the slice has a fixed capacity
* bonus_ways: Bonus ways to be used by any slice, bonus way is used only if
* it't not a reserved way.
* res_ways: Reserved ways for the cache slice, the reserved ways cannot be used
* by any other client than the one its assigned to.
* cache_mode: Each slice operates as a cache, this controls the mode of the
* slice normal or TCM
* probe_target_ways: Determines what ways to probe for access hit. When
* configured to 1 only bonus and reserved ways are probed.
* when configured to 0 all ways in llcc are probed.
* dis_cap_alloc: Disable capacity based allocation for a client
* retain_on_pc: If this bit is set and client has maitained active vote
* then the ways assigned to this client are not flushed on power
* collapse.
* activate_on_init: Activate the slice immidiately after the SCT is programmed
*/
#define SCT_ENTRY(uid, sid, mc, p, fs, bway, rway, cmod, ptw, dca, wse, rp, a) \
{ .usecase_id = uid, \
.slice_id = sid, \
.max_cap = mc, \
.priority = p, \
.fixed_size = fs, \
.bonus_ways = bway, \
.res_ways = rway, \
.cache_mode = cmod, \
.probe_target_ways = ptw, \
.dis_cap_alloc = dca, \
.write_scid_en = wse, \
.retain_on_pc = rp, \
.activate_on_init = a, \
}
static struct llcc_slice_config sm8150_data[] = {
SCT_ENTRY(LLCC_CPUSS, 1, 3072, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 1),
SCT_ENTRY(LLCC_VIDSC0, 2, 512, 2, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_VIDSC1, 3, 512, 2, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_AUDIO, 6, 1024, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_MDMHPGRW, 7, 3072, 1, 0, 0xFF, 0xF00, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_MDM, 8, 3072, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_MDMHW, 9, 1024, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_CMPT, 10, 3072, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_GPUHTW, 11, 512, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_GPU, 12, 2560, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_MMUHWT, 13, 1024, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 0, 1),
SCT_ENTRY(LLCC_CMPTDMA, 15, 3072, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_DISP, 16, 3072, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_MDMHPFX, 20, 1024, 2, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_MDMPNG, 21, 1024, 0, 1, 0xF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_AUDHW, 22, 1024, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_NPU, 23, 3072, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_WLNHW, 24, 3072, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_MDMVPE, 29, 256, 1, 1, 0xF, 0x0, 0, 0, 0, 0, 1, 0),
SCT_ENTRY(LLCC_APTCM, 30, 256, 3, 1, 0x0, 0x1, 1, 0, 0, 0, 0, 0),
SCT_ENTRY(LLCC_WRTCH, 31, 128, 1, 1, 0xFFF, 0x0, 0, 0, 0, 0, 0, 0),
};
static int sm8150_qcom_llcc_probe(struct platform_device *pdev)
{
return qcom_llcc_probe(pdev, sm8150_data,
ARRAY_SIZE(sm8150_data));
}
static const struct of_device_id sm8150_qcom_llcc_of_match[] = {
{ .compatible = "qcom,sm8150-llcc", },
{ },
};
static struct platform_driver sm8150_qcom_llcc_driver = {
.driver = {
.name = "sm8150-llcc",
.of_match_table = sm8150_qcom_llcc_of_match,
},
.probe = sm8150_qcom_llcc_probe,
.remove = qcom_llcc_remove,
};
static int __init sm8150_init_qcom_llcc_init(void)
{
return platform_driver_register(&sm8150_qcom_llcc_driver);
}
module_init(sm8150_init_qcom_llcc_init);
static void __exit sm8150_exit_qcom_llcc_exit(void)
{
platform_driver_unregister(&sm8150_qcom_llcc_driver);
}
module_exit(sm8150_exit_qcom_llcc_exit);
MODULE_DESCRIPTION("Qualcomm Technologies Inc sm8150 LLCC driver");
MODULE_LICENSE("GPL v2");