mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-05-12 11:43:16 -04:00
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
This commit is contained in:
parent
77603c344d
commit
474293a12b
11 changed files with 3066 additions and 60 deletions
|
|
@ -938,6 +938,9 @@ Lyre prototype 1 */
|
|||
#define USB_DETECT_BY_REQUEST
|
||||
#elif CONFIG_USBOTG == USBOTG_RK27XX
|
||||
#define USB_DETECT_BY_REQUEST
|
||||
#elif CONFIG_USBOTG == USBOTG_TNETV105
|
||||
#define USB_STATUS_BY_EVENT
|
||||
#define USB_DETECT_BY_REQUEST
|
||||
#endif /* CONFIG_USB == */
|
||||
#endif /* HAVE_USBSTACK */
|
||||
|
||||
|
|
@ -1171,7 +1174,8 @@ Lyre prototype 1 */
|
|||
(CONFIG_USBOTG == USBOTG_M66591) || \
|
||||
(CONFIG_USBOTG == USBOTG_DESIGNWARE) || \
|
||||
(CONFIG_USBOTG == USBOTG_AS3525) || \
|
||||
(CONFIG_USBOTG == USBOTG_RK27XX)
|
||||
(CONFIG_USBOTG == USBOTG_RK27XX) || \
|
||||
(CONFIG_USBOTG == USBOTG_TNETV105)
|
||||
#define USB_HAS_BULK
|
||||
#define USB_HAS_INTERRUPT
|
||||
#elif defined(CPU_TCC780X)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue