diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2018-09-14 10:02:34 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2018-09-14 10:02:34 -0700 |
| commit | d90306cf96b0222f47e10d61395303aa8d158717 (patch) | |
| tree | 515e24135d2b7682b21c2dc047752681c8ed19d3 | |
| parent | 80791689962a1e1158b9ab79d027f992dbfbc758 (diff) | |
| parent | 8cfbfe24f19dd34b81af581f11b61b28d3b98469 (diff) | |
Merge "soc: qcom: socinfo: Add support for SDM455 soc-id"
| -rw-r--r-- | Documentation/devicetree/bindings/arm/msm/msm.txt | 6 | ||||
| -rw-r--r-- | drivers/soc/qcom/socinfo.c | 9 | ||||
| -rw-r--r-- | include/soc/qcom/socinfo.h | 6 |
3 files changed, 19 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/arm/msm/msm.txt b/Documentation/devicetree/bindings/arm/msm/msm.txt index e4622558af55..a2b304344ef8 100644 --- a/Documentation/devicetree/bindings/arm/msm/msm.txt +++ b/Documentation/devicetree/bindings/arm/msm/msm.txt @@ -95,6 +95,9 @@ SoCs: - SDM660 compatible = "qcom,sdm660" +- SDM455 + compatible = "qcom,sdm455" + - SDA658 compatible = "qcom,sda658" @@ -292,6 +295,9 @@ compatible = "qcom,sdm660-cdp" compatible = "qcom,sdm660-mtp" compatible = "qcom,sdm660-qrd" compatible = "qcom,sda660-qrd" +compatible = "qcom,sdm455-mtp" +compatible = "qcom,sdm455-qrd" +compatible = "qcom,sdm455-cdp" compatible = "qcom,sda658-mtp" compatible = "qcom,sda658-cdp" compatible = "qcom,sda660-mtp" diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c index 74dbd4d42272..7604affe63a8 100644 --- a/drivers/soc/qcom/socinfo.c +++ b/drivers/soc/qcom/socinfo.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009-2017, The Linux Foundation. All rights reserved. + * Copyright (c) 2009-2018, The Linux Foundation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and @@ -570,6 +570,9 @@ static struct msm_soc_info cpu_of_id[] = { [345] = {MSM_CPU_636, "SDM636"}, [346] = {MSM_CPU_636, "SDA636"}, + /* 455 ID */ + [385] = {MSM_CPU_455, "SDM455"}, + /* Uninitialized IDs are not known to run Linux. MSM_CPU_UNKNOWN is set to 0 to ensure these IDs are considered as unknown CPU. */ @@ -1277,6 +1280,10 @@ static void * __init setup_dummy_socinfo(void) dummy_socinfo.id = 324; strlcpy(dummy_socinfo.build_id, "sda660 - ", sizeof(dummy_socinfo.build_id)); + } else if (early_machine_is_sdm455()) { + dummy_socinfo.id = 385; + strlcpy(dummy_socinfo.build_id, "sdm455 - ", + sizeof(dummy_socinfo.build_id)); } else if (early_machine_is_sdm658()) { dummy_socinfo.id = 325; strlcpy(dummy_socinfo.build_id, "sdm658 - ", diff --git a/include/soc/qcom/socinfo.h b/include/soc/qcom/socinfo.h index 9110963d0e9f..6b11533685a5 100644 --- a/include/soc/qcom/socinfo.h +++ b/include/soc/qcom/socinfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009-2017, The Linux Foundation. All rights reserved. + * Copyright (c) 2009-2018, The Linux Foundation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and @@ -96,6 +96,8 @@ of_flat_dt_is_compatible(of_get_flat_dt_root(), "qcom,sdm660") #define early_machine_is_sda660() \ of_flat_dt_is_compatible(of_get_flat_dt_root(), "qcom,sda660") +#define early_machine_is_sdm455() \ + of_flat_dt_is_compatible(of_get_flat_dt_root(), "qcom,sdm455") #define early_machine_is_sdm636() \ of_flat_dt_is_compatible(of_get_flat_dt_root(), "qcom,sdm636") #define early_machine_is_sda636() \ @@ -146,6 +148,7 @@ #define early_machine_is_msmhamster() 0 #define early_machine_is_sdm660() 0 #define early_machine_is_sda660() 0 +#define early_machine_is_sdm455() 0 #define early_machine_is_sdm636() 0 #define early_machine_is_sda636() 0 #define early_machine_is_sdm658() 0 @@ -211,6 +214,7 @@ enum msm_cpu { MSM_CPU_8998, MSM_CPU_HAMSTER, MSM_CPU_660, + MSM_CPU_455, MSM_CPU_630, MSM_CPU_636, }; |
