mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
drm/amd/amdgpu: Add ISP driver support
Add the isp driver in amdgpu to support ISP device on the APUs that supports ISP IP block. ISP hw block is used for camera front-end, pre and post processing operations. 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>
This commit is contained in:
committed by
Alex Deucher
parent
772e4d56da
commit
8fcbfd53ea
@@ -714,6 +714,8 @@ const char *amdgpu_ucode_name(enum AMDGPU_UCODE_ID ucode_id)
|
||||
return "RS64_MEC_P2_STACK";
|
||||
case AMDGPU_UCODE_ID_CP_RS64_MEC_P3_STACK:
|
||||
return "RS64_MEC_P3_STACK";
|
||||
case AMDGPU_UCODE_ID_ISP:
|
||||
return "ISP";
|
||||
default:
|
||||
return "UNKNOWN UCODE";
|
||||
}
|
||||
@@ -1413,6 +1415,9 @@ void amdgpu_ucode_ip_version_decode(struct amdgpu_device *adev, int block_type,
|
||||
case VPE_HWIP:
|
||||
ip_name = "vpe";
|
||||
break;
|
||||
case ISP_HWIP:
|
||||
ip_name = "isp";
|
||||
break;
|
||||
default:
|
||||
BUG();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user