-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Add support for D436 #13855
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add support for D436 #13855
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
de19ec7
D436i added to SDK - TODO linux adjustments
remibettan db83d71
adding 36i to linux patch - noble, kernel 6.8
remibettan 3ddcf7c
adding 36i to linux patch, jammy, kernel 6.5
remibettan 904a52e
adding 36i linux patch, jammy, kernel 5.19
remibettan d4d5bba
adding 36i linux patch, focal, kernel 5.15
SamerKhshiboun 0e164da
adding 36i linux patch, jammy, kernel 6.8
remibettan 5871641
adding 36i to linux patch, jammy, kernel 6.2
remibettan bad2bbb
adding 36i linux patch, focal, kernel 5.13
SamerKhshiboun 0206051
adding 36i linux patch, focal, kernel 5.11
SamerKhshiboun ef3ac9e
cr and removing extrinsics restoring methods from 36i
remibettan cab9e48
visual preset from 435 depth and 455 color
remibettan 304badf
removing the rgb extrinsics restoring, not needed code
remibettan afea409
436i to 436 in code
remibettan 0121c87
436i to 436 in windows script
remibettan b28bcdb
436i to 436 in linux patches
remibettan 54e8bbc
changing min version, and avoiding signed fw update via viewer for d436
remibettan 7dd92a3
PR #13665 from remibettan: adding D436 device
remibettan 3cb55a1
d436 udev rules added
remibettan 155a6ba
PR #13687 from remibettan: d436 udev rules
remibettan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 7480bd53bd1af5a11fc890e6b9a1a2991bfa6a28 Mon Sep 17 00:00:00 2001 | ||
From ddde28a28ea29750a7a9cf486d8f46283c755745 Mon Sep 17 00:00:00 2001 | ||
From: Dmitry Perchanov <dmitry.perchanov@intel.com> | ||
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 <yu1.meng@intel.com> | |
Co-developed-by: Evgeni Raikhel <evgeni.raikhel@intel.com> | ||
Signed-off-by: Dmitry Perchanov <dmitry.perchanov@intel.com> | ||
--- | ||
drivers/media/usb/uvc/uvc_driver.c | 288 +++++++++++++++++++++++++++++ | ||
drivers/media/usb/uvc/uvc_driver.c | 297 +++++++++++++++++++++++++++++ | ||
drivers/media/usb/uvc/uvcvideo.h | 2 +- | ||
2 files changed, 289 insertions(+), 1 deletion(-) | ||
2 files changed, 298 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c | ||
index 205d52412..e167ec854 100644 | ||
index 205d52412..622c8bc06 100644 | ||
--- a/drivers/media/usb/uvc/uvc_driver.c | ||
+++ b/drivers/media/usb/uvc/uvc_driver.c | ||
@@ -3221,6 +3221,294 @@ static const struct usb_device_id uvc_ids[] = { | ||
@@ -3221,6 +3221,303 @@ static const struct usb_device_id uvc_ids[] = { | ||
.bInterfaceSubClass = 1, | ||
.bInterfaceProtocol = 0, | ||
.driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
|
@@ -191,6 +191,15 @@ index 205d52412..e167ec854 100644 | |
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = 0, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel D436 depth camera */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
+ .idVendor = 0x8086, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does tabs/spaces number matter here? |
||
+ .idProduct = 0x1156, | ||
+ .bInterfaceClass = USB_CLASS_VIDEO, | ||
+ .bInterfaceSubClass = 1, | ||
+ .bInterfaceProtocol = 0, | ||
+ .driver_info = UVC_INFO_META(V4L2_META_FMT_D4XX) }, | ||
+ /* Intel L515 Pre-PRQ */ | ||
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE | ||
+ | USB_DEVICE_ID_MATCH_INT_INFO, | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better to use camera name, not PID.