• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * arizona-spi.c  --  Arizona SPI bus interface
4  *
5  * Copyright 2012 Wolfson Microelectronics plc
6  *
7  * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
8  */
9 
10 #include <linux/acpi.h>
11 #include <linux/err.h>
12 #include <linux/gpio/consumer.h>
13 #include <linux/gpio/machine.h>
14 #include <linux/module.h>
15 #include <linux/pm_runtime.h>
16 #include <linux/regmap.h>
17 #include <linux/regulator/consumer.h>
18 #include <linux/slab.h>
19 #include <linux/spi/spi.h>
20 #include <linux/of.h>
21 #include <uapi/linux/input-event-codes.h>
22 
23 #include <linux/mfd/arizona/core.h>
24 
25 #include "arizona.h"
26 
27 #ifdef CONFIG_ACPI
28 static const struct acpi_gpio_params reset_gpios = { 1, 0, false };
29 static const struct acpi_gpio_params ldoena_gpios = { 2, 0, false };
30 
31 static const struct acpi_gpio_mapping arizona_acpi_gpios[] = {
32 	{ "reset-gpios", &reset_gpios, 1, },
33 	{ "wlf,ldoena-gpios", &ldoena_gpios, 1 },
34 	{ }
35 };
36 
37 /*
38  * The ACPI resources for the device only describe external GPIO-s. They do
39  * not provide mappings for the GPIO-s coming from the Arizona codec itself.
40  */
41 static const struct gpiod_lookup arizona_soc_gpios[] = {
42 	{ "arizona", 2, "wlf,spkvdd-ena", 0, GPIO_ACTIVE_HIGH },
43 	{ "arizona", 4, "wlf,micd-pol", 0, GPIO_ACTIVE_LOW },
44 };
45 
46 /*
47  * The AOSP 3.5 mm Headset: Accessory Specification gives the following values:
48  * Function A Play/Pause:           0 ohm
49  * Function D Voice assistant:    135 ohm
50  * Function B Volume Up           240 ohm
51  * Function C Volume Down         470 ohm
52  * Minimum Mic DC resistance     1000 ohm
53  * Minimum Ear speaker impedance   16 ohm
54  * Note the first max value below must be less then the min. speaker impedance,
55  * to allow CTIA/OMTP detection to work. The other max values are the closest
56  * value from extcon-arizona.c:arizona_micd_levels halfway 2 button resistances.
57  */
58 static const struct arizona_micd_range arizona_micd_aosp_ranges[] = {
59 	{ .max =  11, .key = KEY_PLAYPAUSE },
60 	{ .max = 186, .key = KEY_VOICECOMMAND },
61 	{ .max = 348, .key = KEY_VOLUMEUP },
62 	{ .max = 752, .key = KEY_VOLUMEDOWN },
63 };
64 
arizona_spi_acpi_remove_lookup(void * lookup)65 static void arizona_spi_acpi_remove_lookup(void *lookup)
66 {
67 	gpiod_remove_lookup_table(lookup);
68 }
69 
arizona_spi_acpi_probe(struct arizona * arizona)70 static int arizona_spi_acpi_probe(struct arizona *arizona)
71 {
72 	struct gpiod_lookup_table *lookup;
73 	acpi_status status;
74 	int ret;
75 
76 	/* Add mappings for the 2 ACPI declared GPIOs used for reset and ldo-ena */
77 	devm_acpi_dev_add_driver_gpios(arizona->dev, arizona_acpi_gpios);
78 
79 	/* Add lookups for the SoCs own GPIOs used for micdet-polarity and spkVDD-enable */
80 	lookup = devm_kzalloc(arizona->dev,
81 			      struct_size(lookup, table, ARRAY_SIZE(arizona_soc_gpios) + 1),
82 			      GFP_KERNEL);
83 	if (!lookup)
84 		return -ENOMEM;
85 
86 	lookup->dev_id = dev_name(arizona->dev);
87 	memcpy(lookup->table, arizona_soc_gpios, sizeof(arizona_soc_gpios));
88 
89 	gpiod_add_lookup_table(lookup);
90 	ret = devm_add_action_or_reset(arizona->dev, arizona_spi_acpi_remove_lookup, lookup);
91 	if (ret)
92 		return ret;
93 
94 	/* Enable 32KHz clock from SoC to codec for jack-detect */
95 	status = acpi_evaluate_object(ACPI_HANDLE(arizona->dev), "CLKE", NULL, NULL);
96 	if (ACPI_FAILURE(status))
97 		dev_warn(arizona->dev, "Failed to enable 32KHz clk ACPI error %d\n", status);
98 
99 	/*
100 	 * Some DSDTs wrongly declare the IRQ trigger-type as IRQF_TRIGGER_FALLING
101 	 * The IRQ line will stay low when a new IRQ event happens between reading
102 	 * the IRQ status flags and acknowledging them. When the IRQ line stays
103 	 * low like this the IRQ will never trigger again when its type is set
104 	 * to IRQF_TRIGGER_FALLING. Correct the IRQ trigger-type to fix this.
105 	 *
106 	 * Note theoretically it is possible that some boards are not capable
107 	 * of handling active low level interrupts. In that case setting the
108 	 * flag to IRQF_TRIGGER_FALLING would not be a bug (and we would need
109 	 * to work around this) but so far all known usages of IRQF_TRIGGER_FALLING
110 	 * are a bug in the board's DSDT.
111 	 */
112 	arizona->pdata.irq_flags = IRQF_TRIGGER_LOW;
113 
114 	/* Wait 200 ms after jack insertion */
115 	arizona->pdata.micd_detect_debounce = 200;
116 
117 	/* Use standard AOSP values for headset-button mappings */
118 	arizona->pdata.micd_ranges = arizona_micd_aosp_ranges;
119 	arizona->pdata.num_micd_ranges = ARRAY_SIZE(arizona_micd_aosp_ranges);
120 
121 	/* Use left headphone speaker for HP vs line-out detection */
122 	arizona->pdata.hpdet_channel = ARIZONA_ACCDET_MODE_HPL;
123 
124 	return 0;
125 }
126 
127 static const struct acpi_device_id arizona_acpi_match[] = {
128 	{
129 		.id = "WM510204",
130 		.driver_data = WM5102,
131 	},
132 	{
133 		.id = "WM510205",
134 		.driver_data = WM5102,
135 	},
136 	{ }
137 };
138 MODULE_DEVICE_TABLE(acpi, arizona_acpi_match);
139 #else
arizona_spi_acpi_probe(struct arizona * arizona)140 static int arizona_spi_acpi_probe(struct arizona *arizona)
141 {
142 	return -ENODEV;
143 }
144 #endif
145 
arizona_spi_probe(struct spi_device * spi)146 static int arizona_spi_probe(struct spi_device *spi)
147 {
148 	const struct spi_device_id *id = spi_get_device_id(spi);
149 	const void *match_data;
150 	struct arizona *arizona;
151 	const struct regmap_config *regmap_config = NULL;
152 	unsigned long type = 0;
153 	int ret;
154 
155 	match_data = device_get_match_data(&spi->dev);
156 	if (match_data)
157 		type = (unsigned long)match_data;
158 	else if (id)
159 		type = id->driver_data;
160 
161 	switch (type) {
162 	case WM5102:
163 		if (IS_ENABLED(CONFIG_MFD_WM5102))
164 			regmap_config = &wm5102_spi_regmap;
165 		break;
166 	case WM5110:
167 	case WM8280:
168 		if (IS_ENABLED(CONFIG_MFD_WM5110))
169 			regmap_config = &wm5110_spi_regmap;
170 		break;
171 	case WM1831:
172 	case CS47L24:
173 		if (IS_ENABLED(CONFIG_MFD_CS47L24))
174 			regmap_config = &cs47l24_spi_regmap;
175 		break;
176 	default:
177 		dev_err(&spi->dev, "Unknown device type %ld\n", type);
178 		return -EINVAL;
179 	}
180 
181 	if (!regmap_config) {
182 		dev_err(&spi->dev,
183 			"No kernel support for device type %ld\n", type);
184 		return -EINVAL;
185 	}
186 
187 	arizona = devm_kzalloc(&spi->dev, sizeof(*arizona), GFP_KERNEL);
188 	if (arizona == NULL)
189 		return -ENOMEM;
190 
191 	arizona->regmap = devm_regmap_init_spi(spi, regmap_config);
192 	if (IS_ERR(arizona->regmap)) {
193 		ret = PTR_ERR(arizona->regmap);
194 		dev_err(&spi->dev, "Failed to allocate register map: %d\n",
195 			ret);
196 		return ret;
197 	}
198 
199 	arizona->type = type;
200 	arizona->dev = &spi->dev;
201 	arizona->irq = spi->irq;
202 
203 	if (has_acpi_companion(&spi->dev)) {
204 		ret = arizona_spi_acpi_probe(arizona);
205 		if (ret)
206 			return ret;
207 	}
208 
209 	return arizona_dev_init(arizona);
210 }
211 
arizona_spi_remove(struct spi_device * spi)212 static int arizona_spi_remove(struct spi_device *spi)
213 {
214 	struct arizona *arizona = spi_get_drvdata(spi);
215 
216 	arizona_dev_exit(arizona);
217 
218 	return 0;
219 }
220 
221 static const struct spi_device_id arizona_spi_ids[] = {
222 	{ "wm5102", WM5102 },
223 	{ "wm5110", WM5110 },
224 	{ "wm8280", WM8280 },
225 	{ "wm1831", WM1831 },
226 	{ "cs47l24", CS47L24 },
227 	{ },
228 };
229 MODULE_DEVICE_TABLE(spi, arizona_spi_ids);
230 
231 static struct spi_driver arizona_spi_driver = {
232 	.driver = {
233 		.name	= "arizona",
234 		.pm	= &arizona_pm_ops,
235 		.of_match_table	= of_match_ptr(arizona_of_match),
236 		.acpi_match_table = ACPI_PTR(arizona_acpi_match),
237 	},
238 	.probe		= arizona_spi_probe,
239 	.remove		= arizona_spi_remove,
240 	.id_table	= arizona_spi_ids,
241 };
242 
243 module_spi_driver(arizona_spi_driver);
244 
245 MODULE_SOFTDEP("pre: arizona_ldo1");
246 MODULE_DESCRIPTION("Arizona SPI bus interface");
247 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
248 MODULE_LICENSE("GPL");
249