summaryrefslogtreecommitdiff
path: root/firmware/export/config/shanlingq1.h
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2021-09-26 17:28:03 +0100
committerAidan MacDonald <amachronic@protonmail.com>2021-10-16 21:14:42 +0100
commitd085d01f5e009766fe720236249597c7c9a3fd3c (patch)
tree11084fe1d9bbb7efcb8d0fbf3d32640686b73139 /firmware/export/config/shanlingq1.h
parent4fc37eb47f0dd92fadd42aec31a5c8f5d5363eaf (diff)
downloadrockbox-d085d01f5e009766fe720236249597c7c9a3fd3c.tar.gz
rockbox-d085d01f5e009766fe720236249597c7c9a3fd3c.zip
x1000: enable DMA for USB driver
This boosts USB transfer performance a bit, ~10% for reads and ~25% for writes, for large-ish file transfers. Rockbox is still around 33-50% slower than the OF. Change-Id: I236a1e5c69a290c47ed27b70cb2631111fc157ed
Diffstat (limited to 'firmware/export/config/shanlingq1.h')
-rw-r--r--firmware/export/config/shanlingq1.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/export/config/shanlingq1.h b/firmware/export/config/shanlingq1.h
index c7ad1dfa6e..1f1ee79ca7 100644
--- a/firmware/export/config/shanlingq1.h
+++ b/firmware/export/config/shanlingq1.h
@@ -96,7 +96,6 @@
96/* USB support */ 96/* USB support */
97#ifndef SIMULATOR 97#ifndef SIMULATOR
98#define CONFIG_USBOTG USBOTG_DESIGNWARE 98#define CONFIG_USBOTG USBOTG_DESIGNWARE
99#define USB_DW_ARCH_SLAVE
100#define USB_DW_TURNAROUND 5 99#define USB_DW_TURNAROUND 5
101#define HAVE_USBSTACK 100#define HAVE_USBSTACK
102#define USB_VENDOR_ID 0x0525 /* Same as the xDuuo X3, for some reason. */ 101#define USB_VENDOR_ID 0x0525 /* Same as the xDuuo X3, for some reason. */
@@ -107,6 +106,10 @@
107#define HAVE_USB_CHARGING_IN_THREAD 106#define HAVE_USB_CHARGING_IN_THREAD
108#define TARGET_USB_CHARGING_DEFAULT USB_CHARGING_FORCE 107#define TARGET_USB_CHARGING_DEFAULT USB_CHARGING_FORCE
109#define HAVE_BOOTLOADER_USB_MODE 108#define HAVE_BOOTLOADER_USB_MODE
109/* This appears to improve transfer performance (the default is 64 KiB).
110 * Going any higher doesn't help but we're still slower than the OF. */
111#define USB_READ_BUFFER_SIZE (128 * 1024)
112#define USB_WRITE_BUFFER_SIZE (128 * 1024)
110#endif 113#endif
111 114
112/* Rockbox capabilities */ 115/* Rockbox capabilities */