diff mbox series

[topic/core-for-CI,1/3] mei: me: add arrow lake point S DID

Message ID 20240228153718.1929978-1-jonathan.cavitt@intel.com (mailing list archive)
State New, archived
Headers show
Series [topic/core-for-CI,1/3] mei: me: add arrow lake point S DID | expand

Commit Message

Cavitt, Jonathan Feb. 28, 2024, 3:37 p.m. UTC
From: Alexander Usyskin <alexander.usyskin@intel.com>

Add Arrow Lake S device id.

Cc: <stable@vger.kernel.org>
Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
---
 drivers/misc/mei/hw-me-regs.h | 1 +
 drivers/misc/mei/pci-me.c     | 1 +
 2 files changed, 2 insertions(+)

Comments

Lucas De Marchi Feb. 28, 2024, 4:09 p.m. UTC | #1
too late. These patches are already applied in topic/core-for-CI.

On Wed, Feb 28, 2024 at 07:37:16AM -0800, Jonathan Cavitt wrote:
>From: Alexander Usyskin <alexander.usyskin@intel.com>
>
>Add Arrow Lake S device id.
>
>Cc: <stable@vger.kernel.org>
>Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com>
>Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>

For all patches you submit you should add your s-o-b. And also see the
rules for patches in topic/core-for-CI:

https://drm.pages.freedesktop.org/maintainer-tools/drm-tip.html#hotfixes-in-topic-core-for-ci

The patches I applied yesterday already follows those rules. See
commits:

240b5555409fc mei: gsc_proxy: match component when GSC is on different bus
18f87660e5bfb mei: me: add arrow lake point H DID
0dc48377bbcf3 mei: me: add arrow lake point S DID


Lucas De Marchi
diff mbox series

Patch

diff --git a/drivers/misc/mei/hw-me-regs.h b/drivers/misc/mei/hw-me-regs.h
index 961e5d53a27a8..b10536e4974db 100644
--- a/drivers/misc/mei/hw-me-regs.h
+++ b/drivers/misc/mei/hw-me-regs.h
@@ -112,6 +112,7 @@ 
 #define MEI_DEV_ID_RPL_S      0x7A68  /* Raptor Lake Point S */
 
 #define MEI_DEV_ID_MTL_M      0x7E70  /* Meteor Lake Point M */
+#define MEI_DEV_ID_ARL_S      0x7F68  /* Arrow Lake Point S */
 
 /*
  * MEI HW Section
diff --git a/drivers/misc/mei/pci-me.c b/drivers/misc/mei/pci-me.c
index 676d566f38ddf..1a614fb7fdb67 100644
--- a/drivers/misc/mei/pci-me.c
+++ b/drivers/misc/mei/pci-me.c
@@ -119,6 +119,7 @@  static const struct pci_device_id mei_me_pci_tbl[] = {
 	{MEI_PCI_DEVICE(MEI_DEV_ID_RPL_S, MEI_ME_PCH15_CFG)},
 
 	{MEI_PCI_DEVICE(MEI_DEV_ID_MTL_M, MEI_ME_PCH15_CFG)},
+	{MEI_PCI_DEVICE(MEI_DEV_ID_ARL_S, MEI_ME_PCH15_CFG)},
 
 	/* required last entry */
 	{0, }