Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

x1000: tweak USB fifo sizes

The old sizes limited the number of usable endpoints and were
unnecessarily large.

Change-Id: Ia17d3b62ecc40c8ca289d78f2275c7842c09deed

+7 -4
+7 -4
firmware/target/mips/ingenic_x1000/usb-x1000.c
··· 35 35 const struct usb_dw_config usb_dw_config = { 36 36 .phytype = DWC_PHYTYPE_UTMI_16, 37 37 38 - /* Available FIFO memory: 3576 words */ 39 - .rx_fifosz = 1024, 40 - .nptx_fifosz = 128, /* 1 dedicated FIFO for EP0 */ 41 - .ptx_fifosz = 768, /* 3 dedicated FIFOs */ 38 + /* Available FIFO memory: 3576 words 39 + * Number of endpoints: 9 40 + * Max packet size: 512 bytes 41 + */ 42 + .rx_fifosz = 816, /* shared RxFIFO */ 43 + .nptx_fifosz = 32, /* only used for EP0 IN */ 44 + .ptx_fifosz = 384, /* room for 7 IN EPs */ 42 45 43 46 #ifndef USB_DW_ARCH_SLAVE 44 47 .ahb_burst_len = HBSTLEN_INCR16,