2 * Copyright 2015 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
26 #include <linux/irqdomain.h>
27 #include <linux/pm_domain.h>
28 #include <linux/platform_device.h>
29 #include <sound/designware_i2s.h>
30 #include <sound/pcm.h>
34 #include "amdgpu_acp.h"
36 #include "acp_gfx_if.h"
38 #define ACP_TILE_ON_MASK 0x03
39 #define ACP_TILE_OFF_MASK 0x02
40 #define ACP_TILE_ON_RETAIN_REG_MASK 0x1f
41 #define ACP_TILE_OFF_RETAIN_REG_MASK 0x20
43 #define ACP_TILE_P1_MASK 0x3e
44 #define ACP_TILE_P2_MASK 0x3d
45 #define ACP_TILE_DSP0_MASK 0x3b
46 #define ACP_TILE_DSP1_MASK 0x37
48 #define ACP_TILE_DSP2_MASK 0x2f
50 #define ACP_DMA_REGS_END 0x146c0
51 #define ACP_I2S_PLAY_REGS_START 0x14840
52 #define ACP_I2S_PLAY_REGS_END 0x148b4
53 #define ACP_I2S_CAP_REGS_START 0x148b8
54 #define ACP_I2S_CAP_REGS_END 0x1496c
56 #define ACP_I2S_COMP1_CAP_REG_OFFSET 0xac
57 #define ACP_I2S_COMP2_CAP_REG_OFFSET 0xa8
58 #define ACP_I2S_COMP1_PLAY_REG_OFFSET 0x6c
59 #define ACP_I2S_COMP2_PLAY_REG_OFFSET 0x68
61 #define mmACP_PGFSM_RETAIN_REG 0x51c9
62 #define mmACP_PGFSM_CONFIG_REG 0x51ca
63 #define mmACP_PGFSM_READ_REG_0 0x51cc
65 #define mmACP_MEM_SHUT_DOWN_REQ_LO 0x51f8
66 #define mmACP_MEM_SHUT_DOWN_REQ_HI 0x51f9
67 #define mmACP_MEM_SHUT_DOWN_STS_LO 0x51fa
68 #define mmACP_MEM_SHUT_DOWN_STS_HI 0x51fb
70 #define mmACP_CONTROL 0x5131
71 #define mmACP_STATUS 0x5133
72 #define mmACP_SOFT_RESET 0x5134
73 #define ACP_CONTROL__ClkEn_MASK 0x1
74 #define ACP_SOFT_RESET__SoftResetAud_MASK 0x100
75 #define ACP_SOFT_RESET__SoftResetAudDone_MASK 0x1000000
76 #define ACP_CLOCK_EN_TIME_OUT_VALUE 0x000000FF
77 #define ACP_SOFT_RESET_DONE_TIME_OUT_VALUE 0x000000FF
79 #define ACP_TIMEOUT_LOOP 0x000000FF
81 #define ACP_SRC_ID 162
91 static int acp_sw_init(void *handle)
93 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
95 adev->acp.parent = adev->dev;
97 adev->acp.cgs_device =
98 amdgpu_cgs_create_device(adev);
99 if (!adev->acp.cgs_device)
105 static int acp_sw_fini(void *handle)
107 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
109 if (adev->acp.cgs_device)
110 amdgpu_cgs_destroy_device(adev->acp.cgs_device);
115 /* power off a tile/block within ACP */
116 static int acp_suspend_tile(void *cgs_dev, int tile)
121 if ((tile < ACP_TILE_P1) || (tile > ACP_TILE_DSP2)) {
122 pr_err("Invalid ACP tile : %d to suspend\n", tile);
126 val = cgs_read_register(cgs_dev, mmACP_PGFSM_READ_REG_0 + tile);
127 val &= ACP_TILE_ON_MASK;
130 val = cgs_read_register(cgs_dev, mmACP_PGFSM_RETAIN_REG);
131 val = val | (1 << tile);
132 cgs_write_register(cgs_dev, mmACP_PGFSM_RETAIN_REG, val);
133 cgs_write_register(cgs_dev, mmACP_PGFSM_CONFIG_REG,
136 count = ACP_TIMEOUT_LOOP;
138 val = cgs_read_register(cgs_dev, mmACP_PGFSM_READ_REG_0
140 val = val & ACP_TILE_ON_MASK;
141 if (val == ACP_TILE_OFF_MASK)
144 pr_err("Timeout reading ACP PGFSM status\n");
150 val = cgs_read_register(cgs_dev, mmACP_PGFSM_RETAIN_REG);
152 val |= ACP_TILE_OFF_RETAIN_REG_MASK;
153 cgs_write_register(cgs_dev, mmACP_PGFSM_RETAIN_REG, val);
158 /* power on a tile/block within ACP */
159 static int acp_resume_tile(void *cgs_dev, int tile)
164 if ((tile < ACP_TILE_P1) || (tile > ACP_TILE_DSP2)) {
165 pr_err("Invalid ACP tile to resume\n");
169 val = cgs_read_register(cgs_dev, mmACP_PGFSM_READ_REG_0 + tile);
170 val = val & ACP_TILE_ON_MASK;
173 cgs_write_register(cgs_dev, mmACP_PGFSM_CONFIG_REG,
175 count = ACP_TIMEOUT_LOOP;
177 val = cgs_read_register(cgs_dev, mmACP_PGFSM_READ_REG_0
179 val = val & ACP_TILE_ON_MASK;
183 pr_err("Timeout reading ACP PGFSM status\n");
188 val = cgs_read_register(cgs_dev, mmACP_PGFSM_RETAIN_REG);
189 if (tile == ACP_TILE_P1)
190 val = val & (ACP_TILE_P1_MASK);
191 else if (tile == ACP_TILE_P2)
192 val = val & (ACP_TILE_P2_MASK);
194 cgs_write_register(cgs_dev, mmACP_PGFSM_RETAIN_REG, val);
199 struct acp_pm_domain {
201 struct generic_pm_domain gpd;
204 static int acp_poweroff(struct generic_pm_domain *genpd)
207 struct acp_pm_domain *apd;
209 apd = container_of(genpd, struct acp_pm_domain, gpd);
211 /* Donot return abruptly if any of power tile fails to suspend.
212 * Log it and continue powering off other tile
214 for (i = 4; i >= 0 ; i--) {
215 ret = acp_suspend_tile(apd->cgs_dev, ACP_TILE_P1 + i);
217 pr_err("ACP tile %d tile suspend failed\n", i);
223 static int acp_poweron(struct generic_pm_domain *genpd)
226 struct acp_pm_domain *apd;
228 apd = container_of(genpd, struct acp_pm_domain, gpd);
230 for (i = 0; i < 2; i++) {
231 ret = acp_resume_tile(apd->cgs_dev, ACP_TILE_P1 + i);
233 pr_err("ACP tile %d resume failed\n", i);
238 /* Disable DSPs which are not going to be used */
239 for (i = 0; i < 3; i++) {
240 ret = acp_suspend_tile(apd->cgs_dev, ACP_TILE_DSP0 + i);
241 /* Continue suspending other DSP, even if one fails */
243 pr_err("ACP DSP %d suspend failed\n", i);
249 static struct device *get_mfd_cell_dev(const char *device_name, int r)
251 char auto_dev_name[25];
254 snprintf(auto_dev_name, sizeof(auto_dev_name),
255 "%s.%d.auto", device_name, r);
256 dev = bus_find_device_by_name(&platform_bus_type, NULL, auto_dev_name);
257 dev_info(dev, "device %s added to pm domain\n", auto_dev_name);
263 * acp_hw_init - start and test ACP block
265 * @adev: amdgpu_device pointer
268 static int acp_hw_init(void *handle)
275 struct i2s_platform_data *i2s_pdata;
277 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
279 const struct amdgpu_ip_block *ip_block =
280 amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_ACP);
285 r = amd_acp_hw_init(adev->acp.cgs_device,
286 ip_block->version->major, ip_block->version->minor);
287 /* -ENODEV means board uses AZ rather than ACP */
293 r = cgs_get_pci_resource(adev->acp.cgs_device, CGS_RESOURCE_TYPE_MMIO,
294 0x5289, 0, &acp_base);
299 if (adev->asic_type != CHIP_STONEY) {
300 adev->acp.acp_genpd = kzalloc(sizeof(struct acp_pm_domain), GFP_KERNEL);
301 if (adev->acp.acp_genpd == NULL)
304 adev->acp.acp_genpd->gpd.name = "ACP_AUDIO";
305 adev->acp.acp_genpd->gpd.power_off = acp_poweroff;
306 adev->acp.acp_genpd->gpd.power_on = acp_poweron;
309 adev->acp.acp_genpd->cgs_dev = adev->acp.cgs_device;
311 pm_genpd_init(&adev->acp.acp_genpd->gpd, NULL, false);
314 adev->acp.acp_cell = kzalloc(sizeof(struct mfd_cell) * ACP_DEVS,
317 if (adev->acp.acp_cell == NULL)
320 adev->acp.acp_res = kzalloc(sizeof(struct resource) * 4, GFP_KERNEL);
322 if (adev->acp.acp_res == NULL) {
323 kfree(adev->acp.acp_cell);
327 i2s_pdata = kzalloc(sizeof(struct i2s_platform_data) * 2, GFP_KERNEL);
328 if (i2s_pdata == NULL) {
329 kfree(adev->acp.acp_res);
330 kfree(adev->acp.acp_cell);
334 switch (adev->asic_type) {
336 i2s_pdata[0].quirks = DW_I2S_QUIRK_COMP_REG_OFFSET |
337 DW_I2S_QUIRK_16BIT_IDX_OVERRIDE;
340 i2s_pdata[0].quirks = DW_I2S_QUIRK_COMP_REG_OFFSET;
342 i2s_pdata[0].cap = DWC_I2S_PLAY;
343 i2s_pdata[0].snd_rates = SNDRV_PCM_RATE_8000_96000;
344 i2s_pdata[0].i2s_reg_comp1 = ACP_I2S_COMP1_PLAY_REG_OFFSET;
345 i2s_pdata[0].i2s_reg_comp2 = ACP_I2S_COMP2_PLAY_REG_OFFSET;
346 switch (adev->asic_type) {
348 i2s_pdata[1].quirks = DW_I2S_QUIRK_COMP_REG_OFFSET |
349 DW_I2S_QUIRK_COMP_PARAM1 |
350 DW_I2S_QUIRK_16BIT_IDX_OVERRIDE;
353 i2s_pdata[1].quirks = DW_I2S_QUIRK_COMP_REG_OFFSET |
354 DW_I2S_QUIRK_COMP_PARAM1;
357 i2s_pdata[1].cap = DWC_I2S_RECORD;
358 i2s_pdata[1].snd_rates = SNDRV_PCM_RATE_8000_96000;
359 i2s_pdata[1].i2s_reg_comp1 = ACP_I2S_COMP1_CAP_REG_OFFSET;
360 i2s_pdata[1].i2s_reg_comp2 = ACP_I2S_COMP2_CAP_REG_OFFSET;
362 adev->acp.acp_res[0].name = "acp2x_dma";
363 adev->acp.acp_res[0].flags = IORESOURCE_MEM;
364 adev->acp.acp_res[0].start = acp_base;
365 adev->acp.acp_res[0].end = acp_base + ACP_DMA_REGS_END;
367 adev->acp.acp_res[1].name = "acp2x_dw_i2s_play";
368 adev->acp.acp_res[1].flags = IORESOURCE_MEM;
369 adev->acp.acp_res[1].start = acp_base + ACP_I2S_PLAY_REGS_START;
370 adev->acp.acp_res[1].end = acp_base + ACP_I2S_PLAY_REGS_END;
372 adev->acp.acp_res[2].name = "acp2x_dw_i2s_cap";
373 adev->acp.acp_res[2].flags = IORESOURCE_MEM;
374 adev->acp.acp_res[2].start = acp_base + ACP_I2S_CAP_REGS_START;
375 adev->acp.acp_res[2].end = acp_base + ACP_I2S_CAP_REGS_END;
377 adev->acp.acp_res[3].name = "acp2x_dma_irq";
378 adev->acp.acp_res[3].flags = IORESOURCE_IRQ;
379 adev->acp.acp_res[3].start = amdgpu_irq_create_mapping(adev, 162);
380 adev->acp.acp_res[3].end = adev->acp.acp_res[3].start;
382 adev->acp.acp_cell[0].name = "acp_audio_dma";
383 adev->acp.acp_cell[0].num_resources = 4;
384 adev->acp.acp_cell[0].resources = &adev->acp.acp_res[0];
385 adev->acp.acp_cell[0].platform_data = &adev->asic_type;
386 adev->acp.acp_cell[0].pdata_size = sizeof(adev->asic_type);
388 adev->acp.acp_cell[1].name = "designware-i2s";
389 adev->acp.acp_cell[1].num_resources = 1;
390 adev->acp.acp_cell[1].resources = &adev->acp.acp_res[1];
391 adev->acp.acp_cell[1].platform_data = &i2s_pdata[0];
392 adev->acp.acp_cell[1].pdata_size = sizeof(struct i2s_platform_data);
394 adev->acp.acp_cell[2].name = "designware-i2s";
395 adev->acp.acp_cell[2].num_resources = 1;
396 adev->acp.acp_cell[2].resources = &adev->acp.acp_res[2];
397 adev->acp.acp_cell[2].platform_data = &i2s_pdata[1];
398 adev->acp.acp_cell[2].pdata_size = sizeof(struct i2s_platform_data);
400 r = mfd_add_hotplug_devices(adev->acp.parent, adev->acp.acp_cell,
405 if (adev->asic_type != CHIP_STONEY) {
406 for (i = 0; i < ACP_DEVS ; i++) {
407 dev = get_mfd_cell_dev(adev->acp.acp_cell[i].name, i);
408 r = pm_genpd_add_device(&adev->acp.acp_genpd->gpd, dev);
410 dev_err(dev, "Failed to add dev to genpd\n");
416 /* Assert Soft reset of ACP */
417 val = cgs_read_register(adev->acp.cgs_device, mmACP_SOFT_RESET);
419 val |= ACP_SOFT_RESET__SoftResetAud_MASK;
420 cgs_write_register(adev->acp.cgs_device, mmACP_SOFT_RESET, val);
422 count = ACP_SOFT_RESET_DONE_TIME_OUT_VALUE;
424 val = cgs_read_register(adev->acp.cgs_device, mmACP_SOFT_RESET);
425 if (ACP_SOFT_RESET__SoftResetAudDone_MASK ==
426 (val & ACP_SOFT_RESET__SoftResetAudDone_MASK))
429 dev_err(&adev->pdev->dev, "Failed to reset ACP\n");
434 /* Enable clock to ACP and wait until the clock is enabled */
435 val = cgs_read_register(adev->acp.cgs_device, mmACP_CONTROL);
436 val = val | ACP_CONTROL__ClkEn_MASK;
437 cgs_write_register(adev->acp.cgs_device, mmACP_CONTROL, val);
439 count = ACP_CLOCK_EN_TIME_OUT_VALUE;
442 val = cgs_read_register(adev->acp.cgs_device, mmACP_STATUS);
446 dev_err(&adev->pdev->dev, "Failed to reset ACP\n");
451 /* Deassert the SOFT RESET flags */
452 val = cgs_read_register(adev->acp.cgs_device, mmACP_SOFT_RESET);
453 val &= ~ACP_SOFT_RESET__SoftResetAud_MASK;
454 cgs_write_register(adev->acp.cgs_device, mmACP_SOFT_RESET, val);
460 * acp_hw_fini - stop the hardware block
462 * @adev: amdgpu_device pointer
465 static int acp_hw_fini(void *handle)
471 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
473 /* return early if no ACP */
474 if (!adev->acp.acp_cell)
477 /* Assert Soft reset of ACP */
478 val = cgs_read_register(adev->acp.cgs_device, mmACP_SOFT_RESET);
480 val |= ACP_SOFT_RESET__SoftResetAud_MASK;
481 cgs_write_register(adev->acp.cgs_device, mmACP_SOFT_RESET, val);
483 count = ACP_SOFT_RESET_DONE_TIME_OUT_VALUE;
485 val = cgs_read_register(adev->acp.cgs_device, mmACP_SOFT_RESET);
486 if (ACP_SOFT_RESET__SoftResetAudDone_MASK ==
487 (val & ACP_SOFT_RESET__SoftResetAudDone_MASK))
490 dev_err(&adev->pdev->dev, "Failed to reset ACP\n");
495 /* Disable ACP clock */
496 val = cgs_read_register(adev->acp.cgs_device, mmACP_CONTROL);
497 val &= ~ACP_CONTROL__ClkEn_MASK;
498 cgs_write_register(adev->acp.cgs_device, mmACP_CONTROL, val);
500 count = ACP_CLOCK_EN_TIME_OUT_VALUE;
503 val = cgs_read_register(adev->acp.cgs_device, mmACP_STATUS);
507 dev_err(&adev->pdev->dev, "Failed to reset ACP\n");
513 if (adev->acp.acp_genpd) {
514 for (i = 0; i < ACP_DEVS ; i++) {
515 dev = get_mfd_cell_dev(adev->acp.acp_cell[i].name, i);
516 ret = pm_genpd_remove_device(&adev->acp.acp_genpd->gpd, dev);
517 /* If removal fails, dont giveup and try rest */
519 dev_err(dev, "remove dev from genpd failed\n");
521 kfree(adev->acp.acp_genpd);
524 mfd_remove_devices(adev->acp.parent);
525 kfree(adev->acp.acp_res);
526 kfree(adev->acp.acp_cell);
531 static int acp_suspend(void *handle)
536 static int acp_resume(void *handle)
541 static int acp_early_init(void *handle)
546 static bool acp_is_idle(void *handle)
551 static int acp_wait_for_idle(void *handle)
556 static int acp_soft_reset(void *handle)
561 static int acp_set_clockgating_state(void *handle,
562 enum amd_clockgating_state state)
567 static int acp_set_powergating_state(void *handle,
568 enum amd_powergating_state state)
573 static const struct amd_ip_funcs acp_ip_funcs = {
575 .early_init = acp_early_init,
577 .sw_init = acp_sw_init,
578 .sw_fini = acp_sw_fini,
579 .hw_init = acp_hw_init,
580 .hw_fini = acp_hw_fini,
581 .suspend = acp_suspend,
582 .resume = acp_resume,
583 .is_idle = acp_is_idle,
584 .wait_for_idle = acp_wait_for_idle,
585 .soft_reset = acp_soft_reset,
586 .set_clockgating_state = acp_set_clockgating_state,
587 .set_powergating_state = acp_set_powergating_state,
590 const struct amdgpu_ip_block_version acp_ip_block =
592 .type = AMD_IP_BLOCK_TYPE_ACP,
596 .funcs = &acp_ip_funcs,