Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -1383,6 +1383,7 @@ static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev)
case CHIP_KAVERI:
case CHIP_KABINI:
case CHIP_MULLINS:
case CHIP_LIVERPOOL:
#endif
default:
return 0;
Expand Down
6 changes: 3 additions & 3 deletions drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ module_param_named(lockup_timeout, amdgpu_lockup_timeout, int, 0444);

MODULE_PARM_DESC(abort_on_lockup, "Abort GPU jobs on after a GPU lockup (1 = enable, 0 = disable (default))");
module_param_named(abort_on_lockup, amdgpu_abort_on_lockup, int, 0644);

MODULE_PARM_DESC(dpm, "DPM support (1 = enable, 0 = disable, -1 = auto)");
module_param_named(dpm, amdgpu_dpm, int, 0444);

Expand Down Expand Up @@ -459,7 +458,8 @@ static const struct pci_device_id pciidlist[] = {
{0x1002, 0x985F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
/* liverpool */
{0x1002, 0x9920, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_LIVERPOOL|AMD_IS_APU},

{0x1002, 0x9923, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_LIVERPOOL|AMD_IS_APU},
{0x1002, 0x9924, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_LIVERPOOL|AMD_IS_APU},
#endif
/* topaz */
{0x1002, 0x6900, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TOPAZ},
Expand Down Expand Up @@ -586,7 +586,7 @@ static int amdgpu_pci_probe(struct pci_dev *pdev,
ret = amdgpu_kick_out_firmware_fb(pdev);
if (ret)
return ret;

#ifdef CONFIG_X86_PS4
/* On the PS4 (Liverpool graphics) we have a hard dependency on the
* Aeolia driver to set up the HDMI encoder which is connected to it,
Expand Down
2 changes: 1 addition & 1 deletion drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ MODULE_FIRMWARE("radeon/liverpool_ce.bin");
MODULE_FIRMWARE("radeon/liverpool_rlc.bin");
MODULE_FIRMWARE("radeon/liverpool_mec.bin");
MODULE_FIRMWARE("radeon/liverpool_mec2.bin");

static const struct amdgpu_gds_reg_offset amdgpu_gds_reg_offset[] =
{
{mmGDS_VMID0_BASE, mmGDS_VMID0_SIZE, mmGDS_GWS_VMID0, mmGDS_OA_VMID0},
Expand Down Expand Up @@ -5157,6 +5156,7 @@ static int gfx_v7_0_sw_init(void *handle)
case CHIP_HAWAII:
case CHIP_KABINI:
case CHIP_MULLINS:
case CHIP_LIVERPOOL:
default:
adev->gfx.mec.num_mec = 1;
break;
Expand Down
6 changes: 0 additions & 6 deletions drivers/gpu/drm/radeon/radeon_asic.c
Original file line number Diff line number Diff line change
Expand Up @@ -2248,12 +2248,6 @@ static struct radeon_asic kv_asic = {
.dma_ring_index = R600_RING_TYPE_DMA_INDEX,
.copy = &cik_copy_dma,
.copy_ring_index = R600_RING_TYPE_DMA_INDEX,
// .blit = &cik_copy_cpdma,
// .blit_ring_index = RADEON_RING_TYPE_GFX_INDEX,
// .dma = &cik_copy_cpdma,
// .dma_ring_index = RADEON_RING_TYPE_GFX_INDEX,
// .copy = &cik_copy_cpdma,
// .copy_ring_index = RADEON_RING_TYPE_GFX_INDEX,
},
.surface = {
.set_reg = r600_set_surface_reg,
Expand Down
Loading