diff --git a/arch/arm64/configs/vendor/seraph_GKI.config b/arch/arm64/configs/vendor/seraph_GKI.config index cbb418538fb0..492cc461ba69 100644 --- a/arch/arm64/configs/vendor/seraph_GKI.config +++ b/arch/arm64/configs/vendor/seraph_GKI.config @@ -6,7 +6,10 @@ CONFIG_LOCALVERSION="-gki" # CONFIG_MODULE_SIG_ALL is not set CONFIG_PINCTRL_MSM=m CONFIG_PINCTRL_SERAPH=m +CONFIG_QCOM_COMMAND_DB=m CONFIG_QCOM_GDSC_REGULATOR=m +CONFIG_QCOM_PDC=m +CONFIG_QCOM_RPMH=m CONFIG_QCOM_SCM=m CONFIG_QCOM_SMEM=m CONFIG_QCOM_SOCINFO=m diff --git a/drivers/pinctrl/qcom/pinctrl-seraph.c b/drivers/pinctrl/qcom/pinctrl-seraph.c index 3842d6c0af6d..af812962d029 100644 --- a/drivers/pinctrl/qcom/pinctrl-seraph.c +++ b/drivers/pinctrl/qcom/pinctrl-seraph.c @@ -2015,22 +2015,21 @@ static struct pinctrl_qup seraph_qup_regs[] = { }; static const struct msm_gpio_wakeirq_map seraph_pdc_map[] = { - { 0, 70 }, { 1, 147 }, { 2, 154 }, { 3, 94 }, { 4, 101 }, { 5, 86 }, - { 6, 159 }, { 7, 124 }, { 11, 75 }, { 12, 151 }, { 13, 80 }, { 15, 84 }, - { 16, 152 }, { 17, 153 }, { 18, 142 }, { 19, 88 }, { 20, 89 }, { 21, 143 }, - { 22, 71 }, { 23, 90 }, { 24, 144 }, { 27, 91 }, { 28, 92 }, { 29, 93 }, - { 30, 95 }, { 31, 96 }, { 32, 97 }, { 33, 155 }, { 34, 156 }, { 35, 98 }, - { 37, 157 }, { 38, 81 }, { 39, 100 }, { 40, 82 }, { 41, 158 }, { 42, 83 }, - { 43, 102 }, { 44, 85 }, { 45, 103 }, { 47, 72 }, { 48, 146 }, { 50, 161 }, - { 51, 107 }, { 54, 108 }, { 55, 109 }, { 56, 110 }, { 57, 111 }, { 58, 112 }, - { 59, 113 }, { 60, 114 }, { 61, 115 }, { 63, 117 }, { 64, 118 }, { 65, 119 }, - { 66, 120 }, { 67, 121 }, { 68, 122 }, { 69, 123 }, { 70, 87 }, { 71, 104 }, - { 72, 105 }, { 74, 106 }, { 75, 125 }, { 76, 126 }, { 77, 162 }, { 78, 163 }, - { 79, 128 }, { 81, 130 }, { 82, 127 }, { 84, 131 }, { 86, 164 }, { 87, 134 }, - { 88, 165 }, { 91, 132 }, { 92, 133 }, { 95, 136 }, { 96, 149 }, { 97, 99 }, - { 98, 139 }, { 100, 148 }, { 102, 116 }, { 103, 73 }, { 104, 129 }, { 106, 74 }, - { 107, 145 }, { 112, 76 }, { 118, 135 }, { 119, 150 }, { 120, 77 }, { 125, 78 }, - { 129, 79 }, { 131, 140 }, + { 0, 70 }, { 1, 147 }, { 2, 154 }, { 3, 94 }, { 4, 101 }, + { 6, 159 }, { 7, 124 }, { 11, 75 }, { 12, 151 }, { 13, 80 }, + { 16, 152 }, { 17, 153 }, { 18, 142 }, { 19, 88 }, { 20, 89 }, + { 22, 71 }, { 23, 90 }, { 24, 144 }, { 27, 91 }, { 28, 92 }, + { 30, 95 }, { 31, 96 }, { 32, 97 }, { 33, 155 }, { 34, 156 }, + { 37, 157 }, { 38, 81 }, { 39, 100 }, { 40, 82 }, { 41, 158 }, + { 43, 102 }, { 44, 85 }, { 45, 103 }, { 47, 72 }, { 48, 146 }, + { 51, 107 }, { 54, 108 }, { 55, 109 }, { 56, 110 }, { 57, 111 }, + { 59, 113 }, { 60, 114 }, { 61, 115 }, { 63, 117 }, { 64, 118 }, + { 66, 120 }, { 67, 121 }, { 68, 122 }, { 69, 123 }, { 70, 87 }, + { 72, 105 }, { 74, 106 }, { 75, 125 }, { 76, 126 }, { 77, 162 }, + { 79, 128 }, { 81, 130 }, { 82, 40 }, { 84, 131 }, { 86, 164 }, + { 88, 165 }, { 91, 132 }, { 92, 133 }, { 95, 136 }, { 96, 149 }, + { 98, 139 }, { 100, 148 }, { 102, 116 }, { 103, 73 }, { 104, 129 }, + { 107, 145 }, { 112, 76 }, { 118, 135 }, { 119, 150 }, { 120, 77 }, }; static const struct msm_pinctrl_soc_data seraph_pinctrl = { diff --git a/modules.list.msm.seraph b/modules.list.msm.seraph index 08e6637d8c25..53fa5addf6c8 100644 --- a/modules.list.msm.seraph +++ b/modules.list.msm.seraph @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only # Copyright (c) 2024, Qualcomm Innovation Center, Inc. All rights reserved. qcom-scm.ko +qcom-pdc.ko pinctrl-msm.ko pinctrl-seraph.ko qcom_hwspinlock.ko @@ -9,3 +10,5 @@ socinfo.ko clk-dummy.ko clk-qcom.ko gdsc-regulator.ko +cmd-db.ko +qcom_rpmh.ko diff --git a/seraph.bzl b/seraph.bzl index 733c22415289..4298e7d782e0 100644 --- a/seraph.bzl +++ b/seraph.bzl @@ -13,8 +13,11 @@ def define_seraph(): "drivers/clk/qcom/gdsc-regulator.ko", "drivers/firmware/qcom-scm.ko", "drivers/hwspinlock/qcom_hwspinlock.ko", + "drivers/irqchip/qcom-pdc.ko", "drivers/pinctrl/qcom/pinctrl-msm.ko", "drivers/pinctrl/qcom/pinctrl-seraph.ko", + "drivers/soc/qcom/cmd-db.ko", + "drivers/soc/qcom/qcom_rpmh.ko", "drivers/soc/qcom/smem.ko", "drivers/soc/qcom/socinfo.ko", ]