forked from IntelRealSense/librealsense
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR IntelRealSense#12120 from dmipx: scripts: patches: metadata: appen…
…d D555e SKU
- Loading branch information
Showing
7 changed files
with
106 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
From b20156512d813fcc8404fffaa37f49b1862d1300 Mon Sep 17 00:00:00 2001 | ||
From 7f1476ad8a599649a1067576d1efc4b28bb27e11 Mon Sep 17 00:00:00 2001 | ||
From: Dmitry Perchanov <[email protected]> | ||
Date: Sun, 22 Jan 2023 13:46:16 +0200 | ||
Subject: [PATCH] Enabling UVC Metadata attributes with Ubuntu 20.04. Kernel | ||
|
@@ -8,15 +8,15 @@ Co-developed-by: Yu MENG <[email protected]> | |
Co-developed-by: Evgeni Raikhel <[email protected]> | ||
Signed-off-by: Dmitry Perchanov <[email protected]> | ||
--- | ||
drivers/media/usb/uvc/uvc_driver.c | 270 +++++++++++++++++++++++++++++ | ||
drivers/media/usb/uvc/uvc_driver.c | 279 +++++++++++++++++++++++++++++ | ||
drivers/media/usb/uvc/uvcvideo.h | 2 +- | ||
2 files changed, 271 insertions(+), 1 deletion(-) | ||
2 files changed, 280 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c | ||
index 9a791d8ef..89e76e5da 100644 | ||
index 9a791d8ef..6d875181a 100644 | ||
--- a/drivers/media/usb/uvc/uvc_driver.c | ||
+++ b/drivers/media/usb/uvc/uvc_driver.c | ||
@@ -3164,6 +3164,276 @@ static const struct usb_device_id uvc_ids[] = { | ||
@@ -3164,6 +3164,285 @@ static const struct usb_device_id uvc_ids[] = { | ||
.bInterfaceSubClass = 1, | ||
.bInterfaceProtocol = 0, | ||
.driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
|
@@ -236,6 +236,15 @@ index 9a791d8ef..89e76e5da 100644 | |
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = 0, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel D555e Depth Camera */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
+ .idVendor = 0x8086, | ||
+ .idProduct = 0x0b56, | ||
+ .bInterfaceClass = USB_CLASS_VIDEO, | ||
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = 0, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel D405 */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
|
@@ -281,7 +290,7 @@ index 9a791d8ef..89e76e5da 100644 | |
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = UVC_PC_PROTOCOL_15, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel S585 Safety Camera */ | ||
+ /* Intel 585 Camera */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
+ .idVendor = 0x8086, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
From 476b6854131192d8545cf6ffa4a64daa24351033 Mon Sep 17 00:00:00 2001 | ||
From 152daea37c2e6e3be4f2ae9d70441e2d381a0705 Mon Sep 17 00:00:00 2001 | ||
From: Dmitry Perchanov <[email protected]> | ||
Date: Sun, 22 Jan 2023 13:46:16 +0200 | ||
Subject: [PATCH] Enabling UVC Metadata attributes with Ubuntu 20.04. Kernel | ||
|
@@ -8,15 +8,15 @@ Co-developed-by: Yu MENG <[email protected]> | |
Co-developed-by: Evgeni Raikhel <[email protected]> | ||
Signed-off-by: Dmitry Perchanov <[email protected]> | ||
--- | ||
drivers/media/usb/uvc/uvc_driver.c | 270 +++++++++++++++++++++++++++++ | ||
drivers/media/usb/uvc/uvc_driver.c | 279 +++++++++++++++++++++++++++++ | ||
drivers/media/usb/uvc/uvcvideo.h | 2 +- | ||
2 files changed, 271 insertions(+), 1 deletion(-) | ||
2 files changed, 280 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c | ||
index 9a791d8ef..89e76e5da 100644 | ||
index 72fff7264..4d46d06f7 100644 | ||
--- a/drivers/media/usb/uvc/uvc_driver.c | ||
+++ b/drivers/media/usb/uvc/uvc_driver.c | ||
@@ -3164,6 +3164,276 @@ static const struct usb_device_id uvc_ids[] = { | ||
@@ -3164,6 +3164,285 @@ static const struct usb_device_id uvc_ids[] = { | ||
.bInterfaceSubClass = 1, | ||
.bInterfaceProtocol = 0, | ||
.driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
|
@@ -236,6 +236,15 @@ index 9a791d8ef..89e76e5da 100644 | |
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = 0, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel D555e Depth Camera */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
+ .idVendor = 0x8086, | ||
+ .idProduct = 0x0b56, | ||
+ .bInterfaceClass = USB_CLASS_VIDEO, | ||
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = 0, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel D405 */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
|
@@ -281,7 +290,7 @@ index 9a791d8ef..89e76e5da 100644 | |
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = UVC_PC_PROTOCOL_15, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel S585 Safety Camera */ | ||
+ /* Intel 585 Camera */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
+ .idVendor = 0x8086, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
From abc0560813209aaece6688d4660950cdff613618 Mon Sep 17 00:00:00 2001 | ||
From: ev-mp <ev_mp@yahoo.com> | ||
Date: Fri, 19 Jun 2020 12:34:08 +0300 | ||
From e6e4fd91cdfdb0b9cbb439916ebd12d61f1ff1b4 Mon Sep 17 00:00:00 2001 | ||
From: Dmitry Perchanov <dmitry.perchanov@intel.com> | ||
Date: Mon, 21 Aug 2023 15:10:57 +0300 | ||
Subject: [PATCH] Enabling UVC Metadata attributes with Ubuntu 20.04. Kernel | ||
5.4 | ||
|
||
Co-developed-by: Evgeni Raikhel <[email protected]> | ||
Signed-off-by: Dmitry Perchanov <[email protected]> | ||
--- | ||
drivers/media/usb/uvc/uvc_driver.c | 270 +++++++++++++++++++++++++++++ | ||
drivers/media/usb/uvc/uvc_driver.c | 279 +++++++++++++++++++++++++++++ | ||
drivers/media/usb/uvc/uvcvideo.h | 2 +- | ||
2 files changed, 271 insertions(+), 1 deletion(-) | ||
2 files changed, 280 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c | ||
index ddb9eaa11..03a4b35a4 100644 | ||
index 3be9bc97f..386832678 100644 | ||
--- a/drivers/media/usb/uvc/uvc_driver.c | ||
+++ b/drivers/media/usb/uvc/uvc_driver.c | ||
@@ -2969,6 +2969,276 @@ static const struct usb_device_id uvc_ids[] = { | ||
@@ -2916,6 +2916,285 @@ static const struct usb_device_id uvc_ids[] = { | ||
.bInterfaceSubClass = 1, | ||
.bInterfaceProtocol = 0, | ||
.driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
|
@@ -235,6 +235,15 @@ index ddb9eaa11..03a4b35a4 100644 | |
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = 0, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel D555e Depth Camera */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
+ .idVendor = 0x8086, | ||
+ .idProduct = 0x0b56, | ||
+ .bInterfaceClass = USB_CLASS_VIDEO, | ||
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = 0, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel D405 */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
|
@@ -280,7 +289,7 @@ index ddb9eaa11..03a4b35a4 100644 | |
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = UVC_PC_PROTOCOL_15, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel S585 Safety Camera */ | ||
+ /* Intel 585 Camera */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
+ .idVendor = 0x8086, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
From 1530931a74644f79205545b69feae3396d612c1d Mon Sep 17 00:00:00 2001 | ||
From 04128af65169760ec4c8fba681ef278fc22b7ec1 Mon Sep 17 00:00:00 2001 | ||
From: Dmitry Perchanov <[email protected]> | ||
Date: Sun, 13 Aug 2023 12:13:21 +0300 | ||
Subject: [PATCH] Enabling UVC Metadata attributes, Ubuntu jammy 22.04. Kernel | ||
6.2 | ||
|
||
Signed-off-by: Dmitry Perchanov <[email protected]> | ||
--- | ||
drivers/media/usb/uvc/uvc_driver.c | 81 ++++++++++++++++++++++++++++++ | ||
drivers/media/usb/uvc/uvc_driver.c | 90 ++++++++++++++++++++++++++++++ | ||
drivers/media/usb/uvc/uvcvideo.h | 2 +- | ||
2 files changed, 82 insertions(+), 1 deletion(-) | ||
2 files changed, 91 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c | ||
index 362df9dd3..933d3f884 100644 | ||
index 362df9dd3..8f65b969b 100644 | ||
--- a/drivers/media/usb/uvc/uvc_driver.c | ||
+++ b/drivers/media/usb/uvc/uvc_driver.c | ||
@@ -2963,6 +2963,33 @@ static const struct usb_device_id uvc_ids[] = { | ||
|
@@ -48,7 +48,7 @@ index 362df9dd3..933d3f884 100644 | |
/* Intel RealSense D4M */ | ||
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
| USB_DEVICE_ID_MATCH_INT_INFO, | ||
@@ -2972,6 +2999,60 @@ static const struct usb_device_id uvc_ids[] = { | ||
@@ -2972,6 +2999,69 @@ static const struct usb_device_id uvc_ids[] = { | ||
.bInterfaceSubClass = 1, | ||
.bInterfaceProtocol = 0, | ||
.driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
|
@@ -70,6 +70,15 @@ index 362df9dd3..933d3f884 100644 | |
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = 0, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel D555e Depth Camera */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
+ .idVendor = 0x8086, | ||
+ .idProduct = 0x0b56, | ||
+ .bInterfaceClass = USB_CLASS_VIDEO, | ||
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = 0, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel D405 Depth Camera */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
|
@@ -97,7 +106,7 @@ index 362df9dd3..933d3f884 100644 | |
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = UVC_PC_PROTOCOL_15, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel S585 Safety Camera */ | ||
+ /* Intel 585 Camera */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
+ .idVendor = 0x8086, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
From 8d8d95f0da472b47d40c2e765c49ca8859b66c25 Mon Sep 17 00:00:00 2001 | ||
From 68ebc4e3fb3729f2b6804ea4d72d5dfda356512f Mon Sep 17 00:00:00 2001 | ||
From: Dmitry Perchanov <[email protected]> | ||
Date: Sun, 22 Jan 2023 12:58:19 +0200 | ||
Subject: [PATCH] Enabling UVC Metadata attributes with Ubuntu 22.04. Kernel | ||
|
@@ -8,15 +8,15 @@ Co-developed-by: Yu MENG <[email protected]> | |
Co-developed-by: Evgeni Raikhel <[email protected]> | ||
Signed-off-by: Dmitry Perchanov <[email protected]> | ||
--- | ||
drivers/media/usb/uvc/uvc_driver.c | 270 +++++++++++++++++++++++++++++ | ||
drivers/media/usb/uvc/uvc_driver.c | 279 +++++++++++++++++++++++++++++ | ||
drivers/media/usb/uvc/uvcvideo.h | 2 +- | ||
2 files changed, 271 insertions(+), 1 deletion(-) | ||
2 files changed, 280 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c | ||
index 9a791d8ef..89e76e5da 100644 | ||
index 2e7df1de0..848417912 100644 | ||
--- a/drivers/media/usb/uvc/uvc_driver.c | ||
+++ b/drivers/media/usb/uvc/uvc_driver.c | ||
@@ -3164,6 +3164,276 @@ static const struct usb_device_id uvc_ids[] = { | ||
@@ -3152,6 +3152,285 @@ static const struct usb_device_id uvc_ids[] = { | ||
.bInterfaceSubClass = 1, | ||
.bInterfaceProtocol = 0, | ||
.driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
|
@@ -236,6 +236,15 @@ index 9a791d8ef..89e76e5da 100644 | |
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = 0, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel D555e Depth Camera */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
+ .idVendor = 0x8086, | ||
+ .idProduct = 0x0b56, | ||
+ .bInterfaceClass = USB_CLASS_VIDEO, | ||
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = 0, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel D405 */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
|
@@ -281,7 +290,7 @@ index 9a791d8ef..89e76e5da 100644 | |
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = UVC_PC_PROTOCOL_15, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel S585 Safety Camera */ | ||
+ /* Intel 585 Camera */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
+ .idVendor = 0x8086, | ||
|
@@ -294,7 +303,7 @@ index 9a791d8ef..89e76e5da 100644 | |
{ USB_INTERFACE_INFO(USB_CLASS_VIDEO, 1, UVC_PC_PROTOCOL_UNDEFINED) }, | ||
{ USB_INTERFACE_INFO(USB_CLASS_VIDEO, 1, UVC_PC_PROTOCOL_15) }, | ||
diff --git a/drivers/media/usb/uvc/uvcvideo.h b/drivers/media/usb/uvc/uvcvideo.h | ||
index c3ea6a538..99f9041f8 100644 | ||
index 1aa2cc985..2772a4640 100644 | ||
--- a/drivers/media/usb/uvc/uvcvideo.h | ||
+++ b/drivers/media/usb/uvc/uvcvideo.h | ||
@@ -187,7 +187,7 @@ | ||
|