1 // SPDX-License-Identifier: GPL-2.0 2 // 3 // CS35L41 ALSA HDA Property driver 4 // 5 // Copyright 2023 Cirrus Logic, Inc. 6 // 7 // Author: Stefan Binding <sbinding@opensource.cirrus.com> 8 9 #include <linux/acpi.h> 10 #include <linux/gpio/consumer.h> 11 #include <linux/string.h> 12 #include "cs35l41_hda_property.h" 13 #include <linux/spi/spi.h> 14 15 #define MAX_AMPS 4 16 17 struct cs35l41_config { 18 const char *ssid; 19 int num_amps; 20 enum { 21 INTERNAL, 22 EXTERNAL 23 } boost_type; 24 u8 channel[MAX_AMPS]; 25 int reset_gpio_index; /* -1 if no reset gpio */ 26 int spkid_gpio_index; /* -1 if no spkid gpio */ 27 int cs_gpio_index; /* -1 if no cs gpio, or cs-gpios already exists, max num amps == 2 */ 28 int boost_ind_nanohenry; /* Required if boost_type == Internal */ 29 int boost_peak_milliamp; /* Required if boost_type == Internal */ 30 int boost_cap_microfarad; /* Required if boost_type == Internal */ 31 }; 32 33 static const struct cs35l41_config cs35l41_config_table[] = { 34 { "10251826", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, -1, -1, 0, 0, 0 }, 35 { "1025182C", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, -1, -1, 0, 0, 0 }, 36 { "10251844", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, -1, -1, 0, 0, 0 }, 37 { "10280B27", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 38 { "10280B28", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 39 { "10280BEB", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, -1, 0, 0, 0, 0 }, 40 { "10280C4D", 4, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, CS35L41_LEFT, CS35L41_RIGHT }, 0, 1, -1, 1000, 4500, 24 }, 41 /* 42 * Device 103C89C6 does have _DSD, however it is setup to use the wrong boost type. 43 * We can override the _DSD to correct the boost type here. 44 * Since this laptop has valid ACPI, we do not need to handle cs-gpios, since that already exists 45 * in the ACPI. The Reset GPIO is also valid, so we can use the Reset defined in _DSD. 46 */ 47 { "103C89C6", 2, INTERNAL, { CS35L41_RIGHT, CS35L41_LEFT, 0, 0 }, -1, -1, -1, 1000, 4500, 24 }, 48 { "103C8A28", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 49 { "103C8A29", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 50 { "103C8A2A", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 51 { "103C8A2B", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 52 { "103C8A2C", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 53 { "103C8A2D", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 54 { "103C8A2E", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 55 { "103C8A30", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 56 { "103C8A31", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 57 { "103C8A6E", 4, EXTERNAL, { CS35L41_LEFT, CS35L41_LEFT, CS35L41_RIGHT, CS35L41_RIGHT }, 0, -1, -1, 0, 0, 0 }, 58 /* 59 * Device 103C8B63 has _DSD with valid reset-gpios and cs-gpios, however the 60 * boost type is incorrectly set to Internal. Override to External Boost. 61 */ 62 { "103C8B63", 4, EXTERNAL, { CS35L41_RIGHT, CS35L41_LEFT, CS35L41_RIGHT, CS35L41_LEFT }, -1, -1, -1, 0, 0, 0 }, 63 { "103C8BB3", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 64 { "103C8BB4", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 65 { "103C8BDD", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 66 { "103C8BDE", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 67 { "103C8BDF", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 68 { "103C8BE0", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 69 { "103C8BE1", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 70 { "103C8BE2", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 71 { "103C8BE3", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 72 { "103C8BE5", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 73 { "103C8BE6", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 74 { "103C8BE7", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 75 { "103C8BE8", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 76 { "103C8BE9", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 77 { "103C8B3A", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 78 { "103C8C15", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4000, 24 }, 79 { "103C8C16", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4000, 24 }, 80 { "103C8C17", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4000, 24 }, 81 { "103C8C4D", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 82 { "103C8C4E", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 83 { "103C8C4F", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 84 { "103C8C50", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 85 { "103C8C51", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 86 { "103C8CDD", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4100, 24 }, 87 { "103C8CDE", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 3900, 24 }, 88 { "104312AF", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 89 { "10431433", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4500, 24 }, 90 { "10431463", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4500, 24 }, 91 { "10431473", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, -1, 0, 1000, 4500, 24 }, 92 { "10431483", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, -1, 0, 1000, 4500, 24 }, 93 { "10431493", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 94 { "104314D3", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 95 { "104314E3", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4500, 24 }, 96 { "10431503", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4500, 24 }, 97 { "10431533", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4500, 24 }, 98 { "10431573", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 99 { "10431663", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, -1, 0, 1000, 4500, 24 }, 100 { "10431683", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, 101 { "104316A3", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 0, 0, 0 }, 102 { "104316D3", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 0, 0, 0 }, 103 { "104316F3", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 0, 0, 0 }, 104 { "104317F3", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4500, 24 }, 105 { "10431863", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 106 { "104318D3", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, 107 { "10431A83", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4500, 24 }, 108 { "10431B93", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 109 { "10431C9F", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 110 { "10431CAF", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 111 { "10431CCF", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 112 { "10431CDF", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 113 { "10431CEF", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 114 { "10431D1F", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4500, 24 }, 115 { "10431DA2", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 0, 0, 0 }, 116 { "10431E02", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 0, 0, 0 }, 117 { "10431E12", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, 118 { "10431EE2", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, -1, -1, 0, 0, 0 }, 119 { "10431F12", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4500, 24 }, 120 { "10431F1F", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, -1, 0, 0, 0, 0 }, 121 { "10431F62", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 0, 0, 0 }, 122 { "10433A20", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 123 { "10433A30", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 124 { "10433A40", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 125 { "10433A50", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 126 { "10433A60", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 1000, 4500, 24 }, 127 { "17AA3865", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, -1, -1, 0, 0, 0 }, 128 { "17AA3866", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, -1, -1, 0, 0, 0 }, 129 { "17AA386E", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 2, -1, 0, 0, 0 }, 130 { "17AA386F", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, -1, -1, 0, 0, 0 }, 131 { "17AA3877", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, -1, -1, 0, 0, 0 }, 132 { "17AA3878", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, -1, -1, 0, 0, 0 }, 133 { "17AA38A9", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 2, -1, 0, 0, 0 }, 134 { "17AA38AB", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 2, -1, 0, 0, 0 }, 135 { "17AA38B4", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, 136 { "17AA38B5", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, 137 { "17AA38B6", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, 138 { "17AA38B7", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, 139 { "17AA38C7", 4, INTERNAL, { CS35L41_RIGHT, CS35L41_LEFT, CS35L41_RIGHT, CS35L41_LEFT }, 0, 2, -1, 1000, 4500, 24 }, 140 { "17AA38C8", 4, INTERNAL, { CS35L41_RIGHT, CS35L41_LEFT, CS35L41_RIGHT, CS35L41_LEFT }, 0, 2, -1, 1000, 4500, 24 }, 141 { "17AA38F9", 2, EXTERNAL, { CS35L41_RIGHT, CS35L41_LEFT, 0, 0 }, 0, 2, -1, 0, 0, 0 }, 142 { "17AA38FA", 2, EXTERNAL, { CS35L41_RIGHT, CS35L41_LEFT, 0, 0 }, 0, 2, -1, 0, 0, 0 }, 143 { "17AA3929", 4, INTERNAL, { CS35L41_RIGHT, CS35L41_LEFT, CS35L41_RIGHT, CS35L41_LEFT }, 0, 2, -1, 1000, 4500, 24 }, 144 { "17AA392B", 4, INTERNAL, { CS35L41_RIGHT, CS35L41_LEFT, CS35L41_RIGHT, CS35L41_LEFT }, 0, 2, -1, 1000, 4500, 24 }, 145 {} 146 }; 147 148 static int cs35l41_add_gpios(struct cs35l41_hda *cs35l41, struct device *physdev, int reset_gpio, 149 int spkid_gpio, int cs_gpio_index, int num_amps) 150 { 151 struct acpi_gpio_mapping *gpio_mapping = NULL; 152 struct acpi_gpio_params *reset_gpio_params = NULL; 153 struct acpi_gpio_params *spkid_gpio_params = NULL; 154 struct acpi_gpio_params *cs_gpio_params = NULL; 155 unsigned int num_entries = 0; 156 unsigned int reset_index, spkid_index, csgpio_index; 157 int i; 158 159 /* 160 * GPIO Mapping only needs to be done once, since it would be available for subsequent amps 161 */ 162 if (cs35l41->dacpi->driver_gpios) 163 return 0; 164 165 if (reset_gpio >= 0) { 166 reset_index = num_entries; 167 num_entries++; 168 } 169 170 if (spkid_gpio >= 0) { 171 spkid_index = num_entries; 172 num_entries++; 173 } 174 175 if ((cs_gpio_index >= 0) && (num_amps == 2)) { 176 csgpio_index = num_entries; 177 num_entries++; 178 } 179 180 if (!num_entries) 181 return 0; 182 183 /* must include termination entry */ 184 num_entries++; 185 186 gpio_mapping = devm_kcalloc(physdev, num_entries, sizeof(struct acpi_gpio_mapping), 187 GFP_KERNEL); 188 189 if (!gpio_mapping) 190 goto err; 191 192 if (reset_gpio >= 0) { 193 gpio_mapping[reset_index].name = "reset-gpios"; 194 reset_gpio_params = devm_kcalloc(physdev, num_amps, sizeof(struct acpi_gpio_params), 195 GFP_KERNEL); 196 if (!reset_gpio_params) 197 goto err; 198 199 for (i = 0; i < num_amps; i++) 200 reset_gpio_params[i].crs_entry_index = reset_gpio; 201 202 gpio_mapping[reset_index].data = reset_gpio_params; 203 gpio_mapping[reset_index].size = num_amps; 204 } 205 206 if (spkid_gpio >= 0) { 207 gpio_mapping[spkid_index].name = "spk-id-gpios"; 208 spkid_gpio_params = devm_kcalloc(physdev, num_amps, sizeof(struct acpi_gpio_params), 209 GFP_KERNEL); 210 if (!spkid_gpio_params) 211 goto err; 212 213 for (i = 0; i < num_amps; i++) 214 spkid_gpio_params[i].crs_entry_index = spkid_gpio; 215 216 gpio_mapping[spkid_index].data = spkid_gpio_params; 217 gpio_mapping[spkid_index].size = num_amps; 218 } 219 220 if ((cs_gpio_index >= 0) && (num_amps == 2)) { 221 gpio_mapping[csgpio_index].name = "cs-gpios"; 222 /* only one GPIO CS is supported without using _DSD, obtained using index 0 */ 223 cs_gpio_params = devm_kzalloc(physdev, sizeof(struct acpi_gpio_params), GFP_KERNEL); 224 if (!cs_gpio_params) 225 goto err; 226 227 cs_gpio_params->crs_entry_index = cs_gpio_index; 228 229 gpio_mapping[csgpio_index].data = cs_gpio_params; 230 gpio_mapping[csgpio_index].size = 1; 231 } 232 233 return devm_acpi_dev_add_driver_gpios(physdev, gpio_mapping); 234 err: 235 devm_kfree(physdev, gpio_mapping); 236 devm_kfree(physdev, reset_gpio_params); 237 devm_kfree(physdev, spkid_gpio_params); 238 devm_kfree(physdev, cs_gpio_params); 239 return -ENOMEM; 240 } 241 242 static int generic_dsd_config(struct cs35l41_hda *cs35l41, struct device *physdev, int id, 243 const char *hid) 244 { 245 struct cs35l41_hw_cfg *hw_cfg = &cs35l41->hw_cfg; 246 const struct cs35l41_config *cfg; 247 struct gpio_desc *cs_gpiod; 248 struct spi_device *spi; 249 bool dsd_found; 250 int ret; 251 int i; 252 253 for (cfg = cs35l41_config_table; cfg->ssid; cfg++) { 254 if (!strcasecmp(cfg->ssid, cs35l41->acpi_subsystem_id)) 255 break; 256 } 257 258 if (!cfg->ssid) 259 return -ENOENT; 260 261 if (!cs35l41->dacpi || cs35l41->dacpi != ACPI_COMPANION(physdev)) { 262 dev_err(cs35l41->dev, "ACPI Device does not match, cannot override _DSD.\n"); 263 return -ENODEV; 264 } 265 266 dev_info(cs35l41->dev, "Adding DSD properties for %s\n", cs35l41->acpi_subsystem_id); 267 268 dsd_found = acpi_dev_has_props(cs35l41->dacpi); 269 270 if (!dsd_found) { 271 ret = cs35l41_add_gpios(cs35l41, physdev, cfg->reset_gpio_index, 272 cfg->spkid_gpio_index, cfg->cs_gpio_index, 273 cfg->num_amps); 274 if (ret) { 275 dev_err(cs35l41->dev, "Error adding GPIO mapping: %d\n", ret); 276 return ret; 277 } 278 } else if (cfg->reset_gpio_index >= 0 || cfg->spkid_gpio_index >= 0) { 279 dev_warn(cs35l41->dev, "Cannot add Reset/Speaker ID/SPI CS GPIO Mapping, " 280 "_DSD already exists.\n"); 281 } 282 283 if (cs35l41->control_bus == SPI) { 284 cs35l41->index = id; 285 286 /* 287 * Manually set the Chip Select for the second amp <cs_gpio_index> in the node. 288 * This is only supported for systems with 2 amps, since we cannot expand the 289 * default number of chip selects without using cs-gpios 290 * The CS GPIO must be set high prior to communicating with the first amp (which 291 * uses a native chip select), to ensure the second amp does not clash with the 292 * first. 293 */ 294 if (IS_ENABLED(CONFIG_SPI) && cfg->cs_gpio_index >= 0) { 295 spi = to_spi_device(cs35l41->dev); 296 297 if (cfg->num_amps != 2) { 298 dev_warn(cs35l41->dev, 299 "Cannot update SPI CS, Number of Amps (%d) != 2\n", 300 cfg->num_amps); 301 } else if (dsd_found) { 302 dev_warn(cs35l41->dev, 303 "Cannot update SPI CS, _DSD already exists.\n"); 304 } else { 305 /* 306 * This is obtained using driver_gpios, since only one GPIO for CS 307 * exists, this can be obtained using index 0. 308 */ 309 cs_gpiod = gpiod_get_index(physdev, "cs", 0, GPIOD_OUT_LOW); 310 if (IS_ERR(cs_gpiod)) { 311 dev_err(cs35l41->dev, 312 "Unable to get Chip Select GPIO descriptor\n"); 313 return PTR_ERR(cs_gpiod); 314 } 315 if (id == 1) { 316 spi_set_csgpiod(spi, 0, cs_gpiod); 317 cs35l41->cs_gpio = cs_gpiod; 318 } else { 319 gpiod_set_value_cansleep(cs_gpiod, true); 320 gpiod_put(cs_gpiod); 321 } 322 spi_setup(spi); 323 } 324 } 325 } else { 326 if (cfg->num_amps > 2) 327 /* 328 * i2c addresses for 3/4 amps are used in order: 0x40, 0x41, 0x42, 0x43, 329 * subtracting 0x40 would give zero-based index 330 */ 331 cs35l41->index = id - 0x40; 332 else 333 /* i2c addr 0x40 for first amp (always), 0x41/0x42 for 2nd amp */ 334 cs35l41->index = id == 0x40 ? 0 : 1; 335 } 336 337 cs35l41->reset_gpio = fwnode_gpiod_get_index(acpi_fwnode_handle(cs35l41->dacpi), "reset", 338 cs35l41->index, GPIOD_OUT_LOW, 339 "cs35l41-reset"); 340 cs35l41->speaker_id = cs35l41_get_speaker_id(physdev, cs35l41->index, cfg->num_amps, -1); 341 342 hw_cfg->spk_pos = cfg->channel[cs35l41->index]; 343 344 cs35l41->channel_index = 0; 345 for (i = 0; i < cs35l41->index; i++) 346 if (cfg->channel[i] == hw_cfg->spk_pos) 347 cs35l41->channel_index++; 348 349 if (cfg->boost_type == INTERNAL) { 350 hw_cfg->bst_type = CS35L41_INT_BOOST; 351 hw_cfg->bst_ind = cfg->boost_ind_nanohenry; 352 hw_cfg->bst_ipk = cfg->boost_peak_milliamp; 353 hw_cfg->bst_cap = cfg->boost_cap_microfarad; 354 hw_cfg->gpio1.func = CS35L41_NOT_USED; 355 hw_cfg->gpio1.valid = true; 356 } else { 357 hw_cfg->bst_type = CS35L41_EXT_BOOST; 358 hw_cfg->bst_ind = -1; 359 hw_cfg->bst_ipk = -1; 360 hw_cfg->bst_cap = -1; 361 hw_cfg->gpio1.func = CS35l41_VSPK_SWITCH; 362 hw_cfg->gpio1.valid = true; 363 } 364 365 hw_cfg->gpio2.func = CS35L41_INTERRUPT; 366 hw_cfg->gpio2.valid = true; 367 hw_cfg->valid = true; 368 369 return 0; 370 } 371 372 /* 373 * Systems 103C8C66, 103C8C67, 103C8C68, 103C8C6A use a dual speaker id system - each speaker has 374 * its own speaker id. 375 */ 376 static int hp_i2c_int_2amp_dual_spkid(struct cs35l41_hda *cs35l41, struct device *physdev, int id, 377 const char *hid) 378 { 379 struct cs35l41_hw_cfg *hw_cfg = &cs35l41->hw_cfg; 380 381 /* If _DSD exists for this laptop, we cannot support it through here */ 382 if (acpi_dev_has_props(cs35l41->dacpi)) 383 return -ENOENT; 384 385 /* check I2C address to assign the index */ 386 cs35l41->index = id == 0x40 ? 0 : 1; 387 cs35l41->channel_index = 0; 388 cs35l41->reset_gpio = gpiod_get_index(physdev, NULL, 0, GPIOD_OUT_HIGH); 389 if (cs35l41->index == 0) 390 cs35l41->speaker_id = cs35l41_get_speaker_id(physdev, 0, 0, 1); 391 else 392 cs35l41->speaker_id = cs35l41_get_speaker_id(physdev, 0, 0, 2); 393 hw_cfg->spk_pos = cs35l41->index; 394 hw_cfg->gpio2.func = CS35L41_INTERRUPT; 395 hw_cfg->gpio2.valid = true; 396 hw_cfg->valid = true; 397 398 hw_cfg->bst_type = CS35L41_INT_BOOST; 399 hw_cfg->bst_ind = 1000; 400 hw_cfg->bst_ipk = 4100; 401 hw_cfg->bst_cap = 24; 402 hw_cfg->gpio1.func = CS35L41_NOT_USED; 403 hw_cfg->gpio1.valid = true; 404 405 return 0; 406 } 407 408 /* 409 * Device CLSA010(0/1) doesn't have _DSD so a gpiod_get by the label reset won't work. 410 * And devices created by serial-multi-instantiate don't have their device struct 411 * pointing to the correct fwnode, so acpi_dev must be used here. 412 * And devm functions expect that the device requesting the resource has the correct 413 * fwnode. 414 */ 415 static int lenovo_legion_no_acpi(struct cs35l41_hda *cs35l41, struct device *physdev, int id, 416 const char *hid) 417 { 418 struct cs35l41_hw_cfg *hw_cfg = &cs35l41->hw_cfg; 419 420 /* check I2C address to assign the index */ 421 cs35l41->index = id == 0x40 ? 0 : 1; 422 cs35l41->channel_index = 0; 423 cs35l41->reset_gpio = gpiod_get_index(physdev, NULL, 0, GPIOD_OUT_HIGH); 424 cs35l41->speaker_id = cs35l41_get_speaker_id(physdev, 0, 0, 2); 425 hw_cfg->spk_pos = cs35l41->index; 426 hw_cfg->gpio2.func = CS35L41_INTERRUPT; 427 hw_cfg->gpio2.valid = true; 428 hw_cfg->valid = true; 429 430 if (strcmp(hid, "CLSA0100") == 0) { 431 hw_cfg->bst_type = CS35L41_EXT_BOOST_NO_VSPK_SWITCH; 432 } else if (strcmp(hid, "CLSA0101") == 0) { 433 hw_cfg->bst_type = CS35L41_EXT_BOOST; 434 hw_cfg->gpio1.func = CS35l41_VSPK_SWITCH; 435 hw_cfg->gpio1.valid = true; 436 } 437 438 return 0; 439 } 440 441 static int missing_speaker_id_gpio2(struct cs35l41_hda *cs35l41, struct device *physdev, int id, 442 const char *hid) 443 { 444 int ret; 445 446 ret = cs35l41_add_gpios(cs35l41, physdev, -1, 2, -1, 2); 447 if (ret) { 448 dev_err(cs35l41->dev, "Error adding GPIO mapping: %d\n", ret); 449 return ret; 450 } 451 452 return cs35l41_hda_parse_acpi(cs35l41, physdev, id); 453 } 454 455 struct cs35l41_prop_model { 456 const char *hid; 457 const char *ssid; 458 int (*add_prop)(struct cs35l41_hda *cs35l41, struct device *physdev, int id, 459 const char *hid); 460 }; 461 462 static const struct cs35l41_prop_model cs35l41_prop_model_table[] = { 463 { "CLSA0100", NULL, lenovo_legion_no_acpi }, 464 { "CLSA0101", NULL, lenovo_legion_no_acpi }, 465 { "CSC3551", "10251826", generic_dsd_config }, 466 { "CSC3551", "1025182C", generic_dsd_config }, 467 { "CSC3551", "10251844", generic_dsd_config }, 468 { "CSC3551", "10280B27", generic_dsd_config }, 469 { "CSC3551", "10280B28", generic_dsd_config }, 470 { "CSC3551", "10280BEB", generic_dsd_config }, 471 { "CSC3551", "10280C4D", generic_dsd_config }, 472 { "CSC3551", "103C89C6", generic_dsd_config }, 473 { "CSC3551", "103C8A28", generic_dsd_config }, 474 { "CSC3551", "103C8A29", generic_dsd_config }, 475 { "CSC3551", "103C8A2A", generic_dsd_config }, 476 { "CSC3551", "103C8A2B", generic_dsd_config }, 477 { "CSC3551", "103C8A2C", generic_dsd_config }, 478 { "CSC3551", "103C8A2D", generic_dsd_config }, 479 { "CSC3551", "103C8A2E", generic_dsd_config }, 480 { "CSC3551", "103C8A30", generic_dsd_config }, 481 { "CSC3551", "103C8A31", generic_dsd_config }, 482 { "CSC3551", "103C8A6E", generic_dsd_config }, 483 { "CSC3551", "103C8B63", generic_dsd_config }, 484 { "CSC3551", "103C8BB3", generic_dsd_config }, 485 { "CSC3551", "103C8BB4", generic_dsd_config }, 486 { "CSC3551", "103C8BDD", generic_dsd_config }, 487 { "CSC3551", "103C8BDE", generic_dsd_config }, 488 { "CSC3551", "103C8BDF", generic_dsd_config }, 489 { "CSC3551", "103C8BE0", generic_dsd_config }, 490 { "CSC3551", "103C8BE1", generic_dsd_config }, 491 { "CSC3551", "103C8BE2", generic_dsd_config }, 492 { "CSC3551", "103C8BE3", generic_dsd_config }, 493 { "CSC3551", "103C8BE5", generic_dsd_config }, 494 { "CSC3551", "103C8BE6", generic_dsd_config }, 495 { "CSC3551", "103C8BE7", generic_dsd_config }, 496 { "CSC3551", "103C8BE8", generic_dsd_config }, 497 { "CSC3551", "103C8BE9", generic_dsd_config }, 498 { "CSC3551", "103C8B3A", generic_dsd_config }, 499 { "CSC3551", "103C8C15", generic_dsd_config }, 500 { "CSC3551", "103C8C16", generic_dsd_config }, 501 { "CSC3551", "103C8C17", generic_dsd_config }, 502 { "CSC3551", "103C8C4D", generic_dsd_config }, 503 { "CSC3551", "103C8C4E", generic_dsd_config }, 504 { "CSC3551", "103C8C4F", generic_dsd_config }, 505 { "CSC3551", "103C8C50", generic_dsd_config }, 506 { "CSC3551", "103C8C51", generic_dsd_config }, 507 { "CSC3551", "103C8C66", hp_i2c_int_2amp_dual_spkid }, 508 { "CSC3551", "103C8C67", hp_i2c_int_2amp_dual_spkid }, 509 { "CSC3551", "103C8C68", hp_i2c_int_2amp_dual_spkid }, 510 { "CSC3551", "103C8C6A", hp_i2c_int_2amp_dual_spkid }, 511 { "CSC3551", "103C8CDD", generic_dsd_config }, 512 { "CSC3551", "103C8CDE", generic_dsd_config }, 513 { "CSC3551", "104312AF", generic_dsd_config }, 514 { "CSC3551", "10431433", generic_dsd_config }, 515 { "CSC3551", "10431463", generic_dsd_config }, 516 { "CSC3551", "10431473", generic_dsd_config }, 517 { "CSC3551", "10431483", generic_dsd_config }, 518 { "CSC3551", "10431493", generic_dsd_config }, 519 { "CSC3551", "104314D3", generic_dsd_config }, 520 { "CSC3551", "104314E3", generic_dsd_config }, 521 { "CSC3551", "10431503", generic_dsd_config }, 522 { "CSC3551", "10431533", generic_dsd_config }, 523 { "CSC3551", "10431573", generic_dsd_config }, 524 { "CSC3551", "10431663", generic_dsd_config }, 525 { "CSC3551", "10431683", generic_dsd_config }, 526 { "CSC3551", "104316A3", generic_dsd_config }, 527 { "CSC3551", "104316D3", generic_dsd_config }, 528 { "CSC3551", "104316F3", generic_dsd_config }, 529 { "CSC3551", "104317F3", generic_dsd_config }, 530 { "CSC3551", "10431863", generic_dsd_config }, 531 { "CSC3551", "104318D3", generic_dsd_config }, 532 { "CSC3551", "10431A63", missing_speaker_id_gpio2 }, 533 { "CSC3551", "10431A83", generic_dsd_config }, 534 { "CSC3551", "10431B93", generic_dsd_config }, 535 { "CSC3551", "10431C9F", generic_dsd_config }, 536 { "CSC3551", "10431CAF", generic_dsd_config }, 537 { "CSC3551", "10431CCF", generic_dsd_config }, 538 { "CSC3551", "10431CDF", generic_dsd_config }, 539 { "CSC3551", "10431CEF", generic_dsd_config }, 540 { "CSC3551", "10431D1F", generic_dsd_config }, 541 { "CSC3551", "10431DA2", generic_dsd_config }, 542 { "CSC3551", "10431E02", generic_dsd_config }, 543 { "CSC3551", "10431E12", generic_dsd_config }, 544 { "CSC3551", "10431EE2", generic_dsd_config }, 545 { "CSC3551", "10431F12", generic_dsd_config }, 546 { "CSC3551", "10431F1F", generic_dsd_config }, 547 { "CSC3551", "10431F62", generic_dsd_config }, 548 { "CSC3551", "10433A20", generic_dsd_config }, 549 { "CSC3551", "10433A30", generic_dsd_config }, 550 { "CSC3551", "10433A40", generic_dsd_config }, 551 { "CSC3551", "10433A50", generic_dsd_config }, 552 { "CSC3551", "10433A60", generic_dsd_config }, 553 { "CSC3551", "17AA3865", generic_dsd_config }, 554 { "CSC3551", "17AA3866", generic_dsd_config }, 555 { "CSC3551", "17AA386E", generic_dsd_config }, 556 { "CSC3551", "17AA386F", generic_dsd_config }, 557 { "CSC3551", "17AA3877", generic_dsd_config }, 558 { "CSC3551", "17AA3878", generic_dsd_config }, 559 { "CSC3551", "17AA38A9", generic_dsd_config }, 560 { "CSC3551", "17AA38AB", generic_dsd_config }, 561 { "CSC3551", "17AA38B4", generic_dsd_config }, 562 { "CSC3551", "17AA38B5", generic_dsd_config }, 563 { "CSC3551", "17AA38B6", generic_dsd_config }, 564 { "CSC3551", "17AA38B7", generic_dsd_config }, 565 { "CSC3551", "17AA38C7", generic_dsd_config }, 566 { "CSC3551", "17AA38C8", generic_dsd_config }, 567 { "CSC3551", "17AA38F9", generic_dsd_config }, 568 { "CSC3551", "17AA38FA", generic_dsd_config }, 569 { "CSC3551", "17AA3929", generic_dsd_config }, 570 { "CSC3551", "17AA392B", generic_dsd_config }, 571 {} 572 }; 573 574 int cs35l41_add_dsd_properties(struct cs35l41_hda *cs35l41, struct device *physdev, int id, 575 const char *hid) 576 { 577 const struct cs35l41_prop_model *model; 578 579 for (model = cs35l41_prop_model_table; model->hid; model++) { 580 if (!strcmp(model->hid, hid) && 581 (!model->ssid || 582 (cs35l41->acpi_subsystem_id && 583 !strcasecmp(model->ssid, cs35l41->acpi_subsystem_id)))) 584 return model->add_prop(cs35l41, physdev, id, hid); 585 } 586 587 return -ENOENT; 588 } 589