Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 624d3524 authored by Alex Deucher's avatar Alex Deucher
Browse files

drm/radeon: add Oland chip family



Oland is a new asic in the SI family.

Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent df160044
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1769,6 +1769,7 @@ void r100_pll_errata_after_index(struct radeon_device *rdev);
#define ASIC_IS_DCE6(rdev) ((rdev->family >= CHIP_ARUBA))
#define ASIC_IS_DCE61(rdev) ((rdev->family >= CHIP_ARUBA) && \
			     (rdev->flags & RADEON_IS_IGP))
#define ASIC_IS_DCE64(rdev) ((rdev->family == CHIP_OLAND))

/*
 * BIOS helpers.
+1 −0
Original line number Diff line number Diff line
@@ -93,6 +93,7 @@ static const char radeon_family_name[][16] = {
	"TAHITI",
	"PITCAIRN",
	"VERDE",
	"OLAND",
	"LAST",
};

+1 −0
Original line number Diff line number Diff line
@@ -91,6 +91,7 @@ enum radeon_family {
	CHIP_TAHITI,
	CHIP_PITCAIRN,
	CHIP_VERDE,
	CHIP_OLAND,
	CHIP_LAST,
};