Commit 8fad5413 authored by Sai Teja Pottumuttu's avatar Sai Teja Pottumuttu Committed by Matt Roper
Browse files

drm/i915/nvls: Add NVL-S display support

parent df967019
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -1420,6 +1420,10 @@ static const struct platform_desc ptl_desc = {
	}
};

static const struct platform_desc nvl_desc = {
	PLATFORM(novalake),
};

__diag_pop();

/*
@@ -1495,6 +1499,7 @@ static const struct {
	INTEL_BMG_IDS(INTEL_DISPLAY_DEVICE, &bmg_desc),
	INTEL_PTL_IDS(INTEL_DISPLAY_DEVICE, &ptl_desc),
	INTEL_WCL_IDS(INTEL_DISPLAY_DEVICE, &ptl_desc),
	INTEL_NVLS_IDS(INTEL_DISPLAY_DEVICE, &nvl_desc),
};

static const struct {
+3 −1
Original line number Diff line number Diff line
@@ -103,7 +103,9 @@ struct pci_dev;
	func(battlemage) \
	/* Display ver 30 (based on GMD ID) */ \
	func(pantherlake) \
	func(pantherlake_wildcatlake)
	func(pantherlake_wildcatlake) \
	/* Display ver 35 (based on GMD ID) */ \
	func(novalake)


#define __MEMBER(name) unsigned long name:1;