From ec5ff91cfabd30637f8af8f5c79baf4d7818ce57 Mon Sep 17 00:00:00 2001 From: Rick Mark Date: Mon, 16 Dec 2019 17:59:45 +0100 Subject: Support T2 chip in restore mode --- src/usb.c | 5 +++-- src/usb.h | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/usb.c b/src/usb.c index 364930c..9baf933 100644 --- a/src/usb.c +++ b/src/usb.c @@ -380,8 +380,9 @@ static int usb_device_add(libusb_device* dev) } if(devdesc.idVendor != VID_APPLE) return -1; - if((devdesc.idProduct < PID_RANGE_LOW) || - (devdesc.idProduct > PID_RANGE_MAX)) + if((devdesc.idProduct != PID_APPLE_T2_COPROCESSOR) && + ((devdesc.idProduct < PID_RANGE_LOW) || + (devdesc.idProduct > PID_RANGE_MAX))) return -1; libusb_device_handle *handle; usbmuxd_log(LL_INFO, "Found new device with v/p %04x:%04x at %d-%d", devdesc.idVendor, devdesc.idProduct, bus, address); diff --git a/src/usb.h b/src/usb.h index da784b3..18f2a72 100644 --- a/src/usb.h +++ b/src/usb.h @@ -46,6 +46,7 @@ #define VID_APPLE 0x5ac #define PID_RANGE_LOW 0x1290 #define PID_RANGE_MAX 0x12af +#define PID_APPLE_T2_COPROCESSOR 0x8600 struct usb_device; -- cgit v1.1-32-gdbae