]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
firmware: qcom: scm: Add multiple download mode support
authorMukesh Ojha <quic_mojha@quicinc.com>
Mon, 15 Jul 2024 15:56:55 +0000 (21:26 +0530)
committerBjorn Andersson <andersson@kernel.org>
Thu, 15 Aug 2024 03:14:42 +0000 (22:14 -0500)
Currently, scm driver only supports full dump when download
mode is selected. Add support to enable minidump as well as
enable it along with fulldump.

Signed-off-by: Mukesh Ojha <quic_mojha@quicinc.com>
Link: https://lore.kernel.org/r/20240715155655.1811178-2-quic_mojha@quicinc.com
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
drivers/firmware/qcom/qcom_scm.c

index ca75d1c7006f19f28fd77e2ed5d3cb9b06ed77f0..bdb5e98b82ef555135a924b51ee155d68ade7927 100644 (file)
@@ -126,6 +126,8 @@ static const u8 qcom_scm_cpu_warm_bits[QCOM_SCM_BOOT_MAX_CPUS] = {
 #define QCOM_DLOAD_MASK                GENMASK(5, 4)
 #define QCOM_DLOAD_NODUMP      0
 #define QCOM_DLOAD_FULLDUMP    1
+#define QCOM_DLOAD_MINIDUMP    2
+#define QCOM_DLOAD_BOTHDUMP    3
 
 static const char * const qcom_scm_convention_names[] = {
        [SMC_CONVENTION_UNKNOWN] = "unknown",
@@ -137,6 +139,8 @@ static const char * const qcom_scm_convention_names[] = {
 static const char * const download_mode_name[] = {
        [QCOM_DLOAD_NODUMP]     = "off",
        [QCOM_DLOAD_FULLDUMP]   = "full",
+       [QCOM_DLOAD_MINIDUMP]   = "mini",
+       [QCOM_DLOAD_BOTHDUMP]   = "full,mini",
 };
 
 static struct qcom_scm *__scm;
@@ -1928,8 +1932,7 @@ static const struct kernel_param_ops download_mode_param_ops = {
 };
 
 module_param_cb(download_mode, &download_mode_param_ops, NULL, 0644);
-MODULE_PARM_DESC(download_mode,
-               "download mode: off/0/N for no dump mode, full/on/1/Y for full dump mode");
+MODULE_PARM_DESC(download_mode, "download mode: off/0/N for no dump mode, full/on/1/Y for full dump mode, mini for minidump mode and full,mini for both full and minidump mode together are acceptable values");
 
 static int qcom_scm_probe(struct platform_device *pdev)
 {