Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/amd/amdgpu: Map ISP interrupts as generic IRQs

Map ISP IH interrupts to Linux generic IRQ for ISP driver to
handle the interrupts using MFD IORESOURCE_IRQ resource.

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
Signed-off-by: Pratap Nirujogi <pratap.nirujogi@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Pratap Nirujogi and committed by
Alex Deucher
0253d718 8930b90b

+99 -5
+2 -1
drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c
··· 466 466 } else if (src_id >= AMDGPU_MAX_IRQ_SRC_ID) { 467 467 DRM_DEBUG("Invalid src_id in IV: %d\n", src_id); 468 468 469 - } else if ((client_id == AMDGPU_IRQ_CLIENTID_LEGACY) && 469 + } else if (((client_id == AMDGPU_IRQ_CLIENTID_LEGACY) || 470 + (client_id == SOC15_IH_CLIENTID_ISP)) && 470 471 adev->irq.virq[src_id]) { 471 472 generic_handle_domain_irq(adev->irq.domain, src_id); 472 473
+27 -4
drivers/gpu/drm/amd/amdgpu/amdgpu_isp.c
··· 31 31 #include "amdgpu.h" 32 32 #include "amdgpu_isp.h" 33 33 34 + #include "ivsrcid/isp/irqsrcs_isp_4_1.h" 35 + 34 36 #define mmDAGB0_WRCLI5_V4_1 0x6811C 35 37 #define mmDAGB0_WRCLI9_V4_1 0x6812C 36 38 #define mmDAGB0_WRCLI10_V4_1 0x68130 37 39 #define mmDAGB0_WRCLI14_V4_1 0x68140 38 40 #define mmDAGB0_WRCLI19_V4_1 0x68154 39 41 #define mmDAGB0_WRCLI20_V4_1 0x68158 42 + 43 + static const unsigned int isp_int_srcid[MAX_ISP_INT_SRC] = { 44 + ISP_4_1__SRCID__ISP_RINGBUFFER_WPT9, 45 + ISP_4_1__SRCID__ISP_RINGBUFFER_WPT10, 46 + ISP_4_1__SRCID__ISP_RINGBUFFER_WPT11, 47 + ISP_4_1__SRCID__ISP_RINGBUFFER_WPT12, 48 + ISP_4_1__SRCID__ISP_RINGBUFFER_WPT13, 49 + ISP_4_1__SRCID__ISP_RINGBUFFER_WPT14, 50 + ISP_4_1__SRCID__ISP_RINGBUFFER_WPT15, 51 + ISP_4_1__SRCID__ISP_RINGBUFFER_WPT16 52 + }; 40 53 41 54 static int isp_sw_init(void *handle) 42 55 { ··· 82 69 */ 83 70 static int isp_hw_init(void *handle) 84 71 { 85 - int r; 86 - u64 isp_base; 87 72 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 88 73 const struct amdgpu_ip_block *ip_block = 89 74 amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_ISP); 75 + u64 isp_base; 76 + int int_idx; 77 + int r; 90 78 91 79 if (!ip_block) 92 80 return -EINVAL; ··· 104 90 goto failure; 105 91 } 106 92 107 - adev->isp.isp_res = kcalloc(1, sizeof(struct resource), GFP_KERNEL); 93 + adev->isp.isp_res = kcalloc(9, sizeof(struct resource), GFP_KERNEL); 108 94 if (!adev->isp.isp_res) { 109 95 r = -ENOMEM; 110 96 DRM_ERROR("%s: isp mfd res alloc failed\n", __func__); ··· 128 114 adev->isp.isp_res[0].start = isp_base; 129 115 adev->isp.isp_res[0].end = isp_base + ISP_REGS_OFFSET_END; 130 116 117 + for (int_idx = 0; int_idx < MAX_ISP_INT_SRC; int_idx++) { 118 + adev->isp.isp_res[int_idx + 1].name = "isp_irq"; 119 + adev->isp.isp_res[int_idx + 1].flags = IORESOURCE_IRQ; 120 + adev->isp.isp_res[int_idx + 1].start = 121 + amdgpu_irq_create_mapping(adev, isp_int_srcid[int_idx]); 122 + adev->isp.isp_res[int_idx + 1].end = 123 + adev->isp.isp_res[int_idx + 1].start; 124 + } 125 + 131 126 adev->isp.isp_cell[0].name = "amd_isp_capture"; 132 - adev->isp.isp_cell[0].num_resources = 1; 127 + adev->isp.isp_cell[0].num_resources = 9; 133 128 adev->isp.isp_cell[0].resources = &adev->isp.isp_res[0]; 134 129 adev->isp.isp_cell[0].platform_data = adev->isp.isp_pdata; 135 130 adev->isp.isp_cell[0].pdata_size = sizeof(struct isp_platform_data);
+2
drivers/gpu/drm/amd/amdgpu/amdgpu_isp.h
··· 30 30 31 31 #define ISP_REGS_OFFSET_END 0x629A4 32 32 33 + #define MAX_ISP_INT_SRC 8 34 + 33 35 struct isp_platform_data { 34 36 void *adev; 35 37 u32 asic_type;
+6
drivers/gpu/drm/amd/amdgpu/ih_v6_1.c
··· 535 535 static int ih_v6_1_early_init(void *handle) 536 536 { 537 537 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 538 + int ret; 539 + 540 + ret = amdgpu_irq_add_domain(adev); 541 + if (ret) { 542 + return ret; 543 + } 538 544 539 545 ih_v6_1_set_interrupt_funcs(adev); 540 546 ih_v6_1_set_self_irq_funcs(adev);
+62
drivers/gpu/drm/amd/include/ivsrcid/isp/irqsrcs_isp_4_1.h
··· 1 + /* 2 + * Copyright 2024 Advanced Micro Devices, Inc. 3 + * 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: 10 + * 11 + * The above copyright notice and this permission notice shall be included in 12 + * all copies or substantial portions of the Software. 13 + * 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. 21 + * 22 + */ 23 + #ifndef __IRQSRCS_ISP_4_1_H__ 24 + #define __IRQSRCS_ISP_4_1_H__ 25 + 26 + 27 + #define ISP_4_1__SRCID__ISP_SEMA_WAIT_FAIL_TIMEOUT 0x12 // Semaphore wait fail timeout 28 + #define ISP_4_1__SRCID__ISP_SEMA_WAIT_INCOMPLETE_TIMEOUT 0x13 // Semaphore wait incomplete timeout 29 + #define ISP_4_1__SRCID__ISP_SEMA_SIGNAL_INCOMPLETE_TIMEOUT 0x14 // Semaphore signal incomplete timeout 30 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_BASE5_CHANGED 0x15 // Ringbuffer base5 address changed 31 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_WPT5 0x16 // Ringbuffer write point 5 changed 32 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_BASE6_CHANGED 0x17 // Ringbuffer base6 address changed 33 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_WPT6 0x18 // Ringbuffer write point 6 changed 34 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_BASE7_CHANGED 0x19 // Ringbuffer base7 address changed 35 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_WPT7 0x1A // Ringbuffer write point 7 changed 36 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_BASE8_CHANGED 0x1B // Ringbuffer base8 address changed 37 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_WPT8 0x1C // Ringbuffer write point 8 changed 38 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_BASE9_CHANGED 0x00 // Ringbuffer base9 address changed 39 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_WPT9 0x01 // Ringbuffer write point 9 changed 40 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_BASE10_CHANGED 0x02 // Ringbuffer base10 address changed 41 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_WPT10 0x03 // Ringbuffer write point 10 changed 42 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_BASE11_CHANGED 0x04 // Ringbuffer base11 address changed 43 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_WPT11 0x05 // Ringbuffer write point 11 changed 44 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_BASE12_CHANGED 0x06 // Ringbuffer base12 address changed 45 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_WPT12 0x07 // Ringbuffer write point 12 changed 46 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_BASE13_CHANGED 0x08 // Ringbuffer base13 address changed 47 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_WPT13 0x09 // Ringbuffer write point 13 changed 48 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_BASE14_CHANGED 0x0A // Ringbuffer base14 address changed 49 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_WPT14 0x0B // Ringbuffer write point 14 changed 50 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_BASE15_CHANGED 0x0C // Ringbuffer base15 address changed 51 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_WPT15 0x0D // Ringbuffer write point 15 changed 52 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_BASE16_CHANGED 0x0E // Ringbuffer base16 address changed 53 + #define ISP_4_1__SRCID__ISP_RINGBUFFER_WPT16 0x0F // Ringbuffer write point 16 changed 54 + #define ISP_4_1__SRCID__ISP_MIPI0 0x29 // MIPI0 interrupt 55 + #define ISP_4_1__SRCID__ISP_MIPI1 0x2A // MIPI1 interrupt 56 + #define ISP_4_1__SRCID__ISP_I2C0 0x2B // I2C0 PAD interrupt 57 + #define ISP_4_1__SRCID__ISP_I2C1 0x2C // I2C1 PAD interrupt 58 + #define ISP_4_1__SRCID__ISP_FLASH0 0x2D // Flash0 interrupt 59 + #define ISP_4_1__SRCID__ISP_FLASH1 0x2E // Flash1 interrupt 60 + #define ISP_4_1__SRCID__ISP_DEBUG 0x2F // Debug information 61 + 62 + #endif