mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-08 06:20:19 +01:00
radeonsi: add support for Oland chips
Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Note: this is a candidate for the 9.1 branch
This commit is contained in:
parent
99b78337e3
commit
83e4407f44
4 changed files with 6 additions and 0 deletions
|
|
@ -280,6 +280,7 @@ static const char *r600_get_family_name(enum radeon_family family)
|
|||
case CHIP_TAHITI: return "AMD TAHITI";
|
||||
case CHIP_PITCAIRN: return "AMD PITCAIRN";
|
||||
case CHIP_VERDE: return "AMD CAPE VERDE";
|
||||
case CHIP_OLAND: return "AMD OLAND";
|
||||
default: return "AMD unknown";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2665,6 +2665,9 @@ void si_init_config(struct r600_context *rctx)
|
|||
default:
|
||||
si_pm4_set_reg(pm4, R_028350_PA_SC_RASTER_CONFIG, 0x0000124a);
|
||||
break;
|
||||
case CHIP_OLAND:
|
||||
si_pm4_set_reg(pm4, R_028350_PA_SC_RASTER_CONFIG, 0x00000082);
|
||||
break;
|
||||
}
|
||||
|
||||
si_pm4_set_state(rctx, init, pm4);
|
||||
|
|
|
|||
|
|
@ -312,6 +312,7 @@ static boolean do_winsys_init(struct radeon_drm_winsys *ws)
|
|||
case CHIP_TAHITI:
|
||||
case CHIP_PITCAIRN:
|
||||
case CHIP_VERDE:
|
||||
case CHIP_OLAND:
|
||||
ws->info.chip_class = TAHITI;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -123,6 +123,7 @@ enum radeon_family {
|
|||
CHIP_TAHITI,
|
||||
CHIP_PITCAIRN,
|
||||
CHIP_VERDE,
|
||||
CHIP_OLAND,
|
||||
CHIP_LAST,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue