mic: vop: Fix use-after-free on remove
[linux/fpc-iii.git] / drivers / firmware / imx / scu-pd.c
blob407245f2efd0d670c8e230538359a9cfb7d7de44
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright (C) 2016 Freescale Semiconductor, Inc.
4 * Copyright 2017-2018 NXP
5 * Dong Aisheng <aisheng.dong@nxp.com>
7 * Implementation of the SCU based Power Domains
9 * NOTE: a better implementation suggested by Ulf Hansson is using a
10 * single global power domain and implement the ->attach|detach_dev()
11 * callback for the genpd and use the regular of_genpd_add_provider_simple().
12 * From within the ->attach_dev(), we could get the OF node for
13 * the device that is being attached and then parse the power-domain
14 * cell containing the "resource id" and store that in the per device
15 * struct generic_pm_domain_data (we have void pointer there for
16 * storing these kind of things).
18 * Additionally, we need to implement the ->stop() and ->start()
19 * callbacks of genpd, which is where you "power on/off" devices,
20 * rather than using the above ->power_on|off() callbacks.
22 * However, there're two known issues:
23 * 1. The ->attach_dev() of power domain infrastructure still does
24 * not support multi domains case as the struct device *dev passed
25 * in is a virtual PD device, it does not help for parsing the real
26 * device resource id from device tree, so it's unware of which
27 * real sub power domain of device should be attached.
29 * The framework needs some proper extension to support multi power
30 * domain cases.
32 * 2. It also breaks most of current drivers as the driver probe sequence
33 * behavior changed if removing ->power_on|off() callback and use
34 * ->start() and ->stop() instead. genpd_dev_pm_attach will only power
35 * up the domain and attach device, but will not call .start() which
36 * relies on device runtime pm. That means the device power is still
37 * not up before running driver probe function. For SCU enabled
38 * platforms, all device drivers accessing registers/clock without power
39 * domain enabled will trigger a HW access error. That means we need fix
40 * most drivers probe sequence with proper runtime pm.
42 * In summary, we need fix above two issue before being able to switch to
43 * the "single global power domain" way.
47 #include <dt-bindings/firmware/imx/rsrc.h>
48 #include <linux/firmware/imx/sci.h>
49 #include <linux/io.h>
50 #include <linux/module.h>
51 #include <linux/of.h>
52 #include <linux/of_address.h>
53 #include <linux/of_platform.h>
54 #include <linux/platform_device.h>
55 #include <linux/pm.h>
56 #include <linux/pm_domain.h>
57 #include <linux/slab.h>
59 /* SCU Power Mode Protocol definition */
60 struct imx_sc_msg_req_set_resource_power_mode {
61 struct imx_sc_rpc_msg hdr;
62 u16 resource;
63 u8 mode;
64 } __packed;
66 #define IMX_SCU_PD_NAME_SIZE 20
67 struct imx_sc_pm_domain {
68 struct generic_pm_domain pd;
69 char name[IMX_SCU_PD_NAME_SIZE];
70 u32 rsrc;
73 struct imx_sc_pd_range {
74 char *name;
75 u32 rsrc;
76 u8 num;
77 bool postfix;
80 struct imx_sc_pd_soc {
81 const struct imx_sc_pd_range *pd_ranges;
82 u8 num_ranges;
85 static const struct imx_sc_pd_range imx8qxp_scu_pd_ranges[] = {
86 /* LSIO SS */
87 { "lsio-pwm", IMX_SC_R_PWM_0, 8, 1 },
88 { "lsio-gpio", IMX_SC_R_GPIO_0, 8, 1 },
89 { "lsio-gpt", IMX_SC_R_GPT_0, 5, 1 },
90 { "lsio-kpp", IMX_SC_R_KPP, 1, 0 },
91 { "lsio-fspi", IMX_SC_R_FSPI_0, 2, 1 },
92 { "lsio-mu", IMX_SC_R_MU_0A, 14, 1 },
94 /* CONN SS */
95 { "con-usb", IMX_SC_R_USB_0, 2, 1 },
96 { "con-usb0phy", IMX_SC_R_USB_0_PHY, 1, 0 },
97 { "con-usb2", IMX_SC_R_USB_2, 1, 0 },
98 { "con-usb2phy", IMX_SC_R_USB_2_PHY, 1, 0 },
99 { "con-sdhc", IMX_SC_R_SDHC_0, 3, 1 },
100 { "con-enet", IMX_SC_R_ENET_0, 2, 1 },
101 { "con-nand", IMX_SC_R_NAND, 1, 0 },
102 { "con-mlb", IMX_SC_R_MLB_0, 1, 1 },
104 /* Audio DMA SS */
105 { "adma-audio-pll0", IMX_SC_R_AUDIO_PLL_0, 1, 0 },
106 { "adma-audio-pll1", IMX_SC_R_AUDIO_PLL_1, 1, 0 },
107 { "adma-audio-clk-0", IMX_SC_R_AUDIO_CLK_0, 1, 0 },
108 { "adma-dma0-ch", IMX_SC_R_DMA_0_CH0, 16, 1 },
109 { "adma-dma1-ch", IMX_SC_R_DMA_1_CH0, 16, 1 },
110 { "adma-dma2-ch", IMX_SC_R_DMA_2_CH0, 5, 1 },
111 { "adma-asrc0", IMX_SC_R_ASRC_0, 1, 0 },
112 { "adma-asrc1", IMX_SC_R_ASRC_1, 1, 0 },
113 { "adma-esai0", IMX_SC_R_ESAI_0, 1, 0 },
114 { "adma-spdif0", IMX_SC_R_SPDIF_0, 1, 0 },
115 { "adma-sai", IMX_SC_R_SAI_0, 3, 1 },
116 { "adma-amix", IMX_SC_R_AMIX, 1, 0 },
117 { "adma-mqs0", IMX_SC_R_MQS_0, 1, 0 },
118 { "adma-dsp", IMX_SC_R_DSP, 1, 0 },
119 { "adma-dsp-ram", IMX_SC_R_DSP_RAM, 1, 0 },
120 { "adma-can", IMX_SC_R_CAN_0, 3, 1 },
121 { "adma-ftm", IMX_SC_R_FTM_0, 2, 1 },
122 { "adma-lpi2c", IMX_SC_R_I2C_0, 4, 1 },
123 { "adma-adc", IMX_SC_R_ADC_0, 1, 1 },
124 { "adma-lcd", IMX_SC_R_LCD_0, 1, 1 },
125 { "adma-lcd0-pwm", IMX_SC_R_LCD_0_PWM_0, 1, 1 },
126 { "adma-lpuart", IMX_SC_R_UART_0, 4, 1 },
127 { "adma-lpspi", IMX_SC_R_SPI_0, 4, 1 },
129 /* VPU SS */
130 { "vpu", IMX_SC_R_VPU, 1, 0 },
131 { "vpu-pid", IMX_SC_R_VPU_PID0, 8, 1 },
132 { "vpu-dec0", IMX_SC_R_VPU_DEC_0, 1, 0 },
133 { "vpu-enc0", IMX_SC_R_VPU_ENC_0, 1, 0 },
135 /* GPU SS */
136 { "gpu0-pid", IMX_SC_R_GPU_0_PID0, 4, 1 },
138 /* HSIO SS */
139 { "hsio-pcie-b", IMX_SC_R_PCIE_B, 1, 0 },
140 { "hsio-serdes-1", IMX_SC_R_SERDES_1, 1, 0 },
141 { "hsio-gpio", IMX_SC_R_HSIO_GPIO, 1, 0 },
143 /* MIPI/LVDS SS */
144 { "mipi0", IMX_SC_R_MIPI_0, 1, 0 },
145 { "mipi0-pwm0", IMX_SC_R_MIPI_0_PWM_0, 1, 0 },
146 { "mipi0-i2c", IMX_SC_R_MIPI_0_I2C_0, 2, 1 },
147 { "lvds0", IMX_SC_R_LVDS_0, 1, 0 },
149 /* DC SS */
150 { "dc0", IMX_SC_R_DC_0, 1, 0 },
151 { "dc0-pll", IMX_SC_R_DC_0_PLL_0, 2, 1 },
154 static const struct imx_sc_pd_soc imx8qxp_scu_pd = {
155 .pd_ranges = imx8qxp_scu_pd_ranges,
156 .num_ranges = ARRAY_SIZE(imx8qxp_scu_pd_ranges),
159 static struct imx_sc_ipc *pm_ipc_handle;
161 static inline struct imx_sc_pm_domain *
162 to_imx_sc_pd(struct generic_pm_domain *genpd)
164 return container_of(genpd, struct imx_sc_pm_domain, pd);
167 static int imx_sc_pd_power(struct generic_pm_domain *domain, bool power_on)
169 struct imx_sc_msg_req_set_resource_power_mode msg;
170 struct imx_sc_rpc_msg *hdr = &msg.hdr;
171 struct imx_sc_pm_domain *pd;
172 int ret;
174 pd = to_imx_sc_pd(domain);
176 hdr->ver = IMX_SC_RPC_VERSION;
177 hdr->svc = IMX_SC_RPC_SVC_PM;
178 hdr->func = IMX_SC_PM_FUNC_SET_RESOURCE_POWER_MODE;
179 hdr->size = 2;
181 msg.resource = pd->rsrc;
182 msg.mode = power_on ? IMX_SC_PM_PW_MODE_ON : IMX_SC_PM_PW_MODE_LP;
184 ret = imx_scu_call_rpc(pm_ipc_handle, &msg, true);
185 if (ret)
186 dev_err(&domain->dev, "failed to power %s resource %d ret %d\n",
187 power_on ? "up" : "off", pd->rsrc, ret);
189 return ret;
192 static int imx_sc_pd_power_on(struct generic_pm_domain *domain)
194 return imx_sc_pd_power(domain, true);
197 static int imx_sc_pd_power_off(struct generic_pm_domain *domain)
199 return imx_sc_pd_power(domain, false);
202 static struct generic_pm_domain *imx_scu_pd_xlate(struct of_phandle_args *spec,
203 void *data)
205 struct generic_pm_domain *domain = ERR_PTR(-ENOENT);
206 struct genpd_onecell_data *pd_data = data;
207 unsigned int i;
209 for (i = 0; i < pd_data->num_domains; i++) {
210 struct imx_sc_pm_domain *sc_pd;
212 sc_pd = to_imx_sc_pd(pd_data->domains[i]);
213 if (sc_pd->rsrc == spec->args[0]) {
214 domain = &sc_pd->pd;
215 break;
219 return domain;
222 static struct imx_sc_pm_domain *
223 imx_scu_add_pm_domain(struct device *dev, int idx,
224 const struct imx_sc_pd_range *pd_ranges)
226 struct imx_sc_pm_domain *sc_pd;
227 int ret;
229 sc_pd = devm_kzalloc(dev, sizeof(*sc_pd), GFP_KERNEL);
230 if (!sc_pd)
231 return ERR_PTR(-ENOMEM);
233 sc_pd->rsrc = pd_ranges->rsrc + idx;
234 sc_pd->pd.power_off = imx_sc_pd_power_off;
235 sc_pd->pd.power_on = imx_sc_pd_power_on;
237 if (pd_ranges->postfix)
238 snprintf(sc_pd->name, sizeof(sc_pd->name),
239 "%s%i", pd_ranges->name, idx);
240 else
241 snprintf(sc_pd->name, sizeof(sc_pd->name),
242 "%s", pd_ranges->name);
244 sc_pd->pd.name = sc_pd->name;
246 if (sc_pd->rsrc >= IMX_SC_R_LAST) {
247 dev_warn(dev, "invalid pd %s rsrc id %d found",
248 sc_pd->name, sc_pd->rsrc);
250 devm_kfree(dev, sc_pd);
251 return NULL;
254 ret = pm_genpd_init(&sc_pd->pd, NULL, true);
255 if (ret) {
256 dev_warn(dev, "failed to init pd %s rsrc id %d",
257 sc_pd->name, sc_pd->rsrc);
258 devm_kfree(dev, sc_pd);
259 return NULL;
262 return sc_pd;
265 static int imx_scu_init_pm_domains(struct device *dev,
266 const struct imx_sc_pd_soc *pd_soc)
268 const struct imx_sc_pd_range *pd_ranges = pd_soc->pd_ranges;
269 struct generic_pm_domain **domains;
270 struct genpd_onecell_data *pd_data;
271 struct imx_sc_pm_domain *sc_pd;
272 u32 count = 0;
273 int i, j;
275 for (i = 0; i < pd_soc->num_ranges; i++)
276 count += pd_ranges[i].num;
278 domains = devm_kcalloc(dev, count, sizeof(*domains), GFP_KERNEL);
279 if (!domains)
280 return -ENOMEM;
282 pd_data = devm_kzalloc(dev, sizeof(*pd_data), GFP_KERNEL);
283 if (!pd_data)
284 return -ENOMEM;
286 count = 0;
287 for (i = 0; i < pd_soc->num_ranges; i++) {
288 for (j = 0; j < pd_ranges[i].num; j++) {
289 sc_pd = imx_scu_add_pm_domain(dev, j, &pd_ranges[i]);
290 if (IS_ERR_OR_NULL(sc_pd))
291 continue;
293 domains[count++] = &sc_pd->pd;
294 dev_dbg(dev, "added power domain %s\n", sc_pd->pd.name);
298 pd_data->domains = domains;
299 pd_data->num_domains = count;
300 pd_data->xlate = imx_scu_pd_xlate;
302 of_genpd_add_provider_onecell(dev->of_node, pd_data);
304 return 0;
307 static int imx_sc_pd_probe(struct platform_device *pdev)
309 const struct imx_sc_pd_soc *pd_soc;
310 int ret;
312 ret = imx_scu_get_handle(&pm_ipc_handle);
313 if (ret)
314 return ret;
316 pd_soc = of_device_get_match_data(&pdev->dev);
317 if (!pd_soc)
318 return -ENODEV;
320 return imx_scu_init_pm_domains(&pdev->dev, pd_soc);
323 static const struct of_device_id imx_sc_pd_match[] = {
324 { .compatible = "fsl,imx8qxp-scu-pd", &imx8qxp_scu_pd},
325 { /* sentinel */ }
328 static struct platform_driver imx_sc_pd_driver = {
329 .driver = {
330 .name = "imx-scu-pd",
331 .of_match_table = imx_sc_pd_match,
333 .probe = imx_sc_pd_probe,
335 builtin_platform_driver(imx_sc_pd_driver);
337 MODULE_AUTHOR("Dong Aisheng <aisheng.dong@nxp.com>");
338 MODULE_DESCRIPTION("IMX SCU Power Domain driver");
339 MODULE_LICENSE("GPL v2");