summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
authorCástor Muñoz <cmvidal@gmail.com>2016-07-31 03:00:43 +0200
committerCástor Muñoz <cmvidal@gmail.com>2016-08-02 04:57:49 +0200
commit5e305d35c94199241f71a994cf6a691aec49688c (patch)
tree51b52755a57017b3270720e303193e2daac3d3cf /firmware/SOURCES
parent0f89b041c0803e7e1cee2c9bcfc08b209d1c88fd (diff)
downloadrockbox-5e305d35c94199241f71a994cf6a691aec49688c.tar.gz
rockbox-5e305d35c94199241f71a994cf6a691aec49688c.zip
Introduce new USB driver for Synopsys DesignWare USB OTG core.
Based on g#844 and g#949, it is intended as a replacement for the current s3c6400x USB driver. The DesignWare USB OTG core is integrated into many SoC's, however HW core version and capabilities (mainly DMA mode, Tx FIFO mode, FIFO size and number of available IN/OUT endpoins) may differ: CPU targets HW ver DMA NPTX FIFO FIFO sz #IN/OUT -------- ------------- ------ --- --------- ------- ------- as3525v2 sansaclipplus 2.60a Yes Dedicated 0x535 4/4 sansaclipv2 sansaclipzip sansafuzev2 s5l8701 ipodnano2g 2.20a Yes Shared 0x500 4/5 s5l8702 ipod6g 2.60a Yes Dedicated 0x820 7/7 ipodnano3g s5l8720 ipodnano4g ? ? ? ? ? Functionality supported by this driver: - Device mode, compatible with USB 1.1/2.0 hosts. - Shared FIFO (USB_DW_SHARED_FIFO) or dedicated FIFOs. - No DMA (USB_DW_ARCH_SLAVE) or internal DMA mode. - Concurrent transfers: control, bulk (usb_storage, usb_serial) and interrupt (usb_hid). Actually this driver is not used by any CPU, it will be enabled for each individual CPU/target in next patches. Change-Id: I74a1e836d18927a31f6977d71115fb442477dd5f
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r--firmware/SOURCES2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index db3f09ea8e..9aab3c1115 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -766,6 +766,8 @@ target/arm/usb-drv-arc.c
766target/arm/as3525/usb-drv-as3525.c 766target/arm/as3525/usb-drv-as3525.c
767#elif CONFIG_USBOTG == USBOTG_S3C6400X 767#elif CONFIG_USBOTG == USBOTG_S3C6400X
768target/arm/usb-s3c6400x.c 768target/arm/usb-s3c6400x.c
769#elif CONFIG_USBOTG == USBOTG_DESIGNWARE
770target/arm/usb-designware.c
769#elif CONFIG_USBOTG == USBOTG_ISP1583 771#elif CONFIG_USBOTG == USBOTG_ISP1583
770drivers/isp1583.c 772drivers/isp1583.c
771#elif CONFIG_USBOTG == USBOTG_RK27XX 773#elif CONFIG_USBOTG == USBOTG_RK27XX