summaryrefslogtreecommitdiff
path: root/firmware/export/config.h
diff options
context:
space:
mode:
authorTomasz Moń <desowin@gmail.com>2021-06-05 09:22:27 +0200
committerTomasz Moń <desowin@gmail.com>2021-06-06 07:57:38 +0000
commit474293a12b6152041404378abd932ac495e5e18d (patch)
tree752c777a4b326d40216da1868e5c7aedaccfa7bd /firmware/export/config.h
parent77603c344dd4946d0319688c3b58bf9e1507d9aa (diff)
downloadrockbox-474293a12b6152041404378abd932ac495e5e18d.tar.gz
rockbox-474293a12b6152041404378abd932ac495e5e18d.zip
Sansa Connect: Initial TNETV105 driver port
Port USB driver from Sansa Connect Linux kernel sources. The device successfully enumerates and responds to SCSI commands but actual disk access does not work. The SCSI response sent to host mentions that both internal storage and microsd card are not present. Change-Id: Ic6c07da12382c15c0b069f23a75f7df9765b7525
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index b758bef49d..0242045450 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -938,6 +938,9 @@ Lyre prototype 1 */
938#define USB_DETECT_BY_REQUEST 938#define USB_DETECT_BY_REQUEST
939#elif CONFIG_USBOTG == USBOTG_RK27XX 939#elif CONFIG_USBOTG == USBOTG_RK27XX
940#define USB_DETECT_BY_REQUEST 940#define USB_DETECT_BY_REQUEST
941#elif CONFIG_USBOTG == USBOTG_TNETV105
942#define USB_STATUS_BY_EVENT
943#define USB_DETECT_BY_REQUEST
941#endif /* CONFIG_USB == */ 944#endif /* CONFIG_USB == */
942#endif /* HAVE_USBSTACK */ 945#endif /* HAVE_USBSTACK */
943 946
@@ -1171,7 +1174,8 @@ Lyre prototype 1 */
1171 (CONFIG_USBOTG == USBOTG_M66591) || \ 1174 (CONFIG_USBOTG == USBOTG_M66591) || \
1172 (CONFIG_USBOTG == USBOTG_DESIGNWARE) || \ 1175 (CONFIG_USBOTG == USBOTG_DESIGNWARE) || \
1173 (CONFIG_USBOTG == USBOTG_AS3525) || \ 1176 (CONFIG_USBOTG == USBOTG_AS3525) || \
1174 (CONFIG_USBOTG == USBOTG_RK27XX) 1177 (CONFIG_USBOTG == USBOTG_RK27XX) || \
1178 (CONFIG_USBOTG == USBOTG_TNETV105)
1175#define USB_HAS_BULK 1179#define USB_HAS_BULK
1176#define USB_HAS_INTERRUPT 1180#define USB_HAS_INTERRUPT
1177#elif defined(CPU_TCC780X) 1181#elif defined(CPU_TCC780X)