diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2009-01-19 13:41:25 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2009-01-19 13:41:25 +0000 |
| commit | 616c98b38f6ddac0ac3dde8ec0fa248f835717e2 (patch) | |
| tree | 5eeeabb85fbefa162a438edca88611c1bc688269 /firmware/export/pp5020.h | |
| parent | cef6399c4c3bcaa35733bdab8b9016b66b71a6f0 (diff) | |
| download | rockbox-616c98b38f6ddac0ac3dde8ec0fa248f835717e2.zip rockbox-616c98b38f6ddac0ac3dde8ec0fa248f835717e2.tar.gz rockbox-616c98b38f6ddac0ac3dde8ec0fa248f835717e2.tar.bz2 rockbox-616c98b38f6ddac0ac3dde8ec0fa248f835717e2.tar.xz | |
USB detection changes. c200/e200: Consider USB to be powered when charger is plugged but detect USB connection by bus reset. When received, disconnect and restart the driver fully enabled. imx31: Fix hack used to make initial connect succeeded-- set PHY type before initial reset. General: Move some target code out of usb-drv-arc.c and implement it in respective usb sources and CPU headers so things stay clean.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19797 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/pp5020.h')
| -rw-r--r-- | firmware/export/pp5020.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/firmware/export/pp5020.h b/firmware/export/pp5020.h index b4919a2..0f622a9 100644 --- a/firmware/export/pp5020.h +++ b/firmware/export/pp5020.h @@ -23,7 +23,12 @@ /* All info gleaned and/or copied from the iPodLinux project. */ -#define QHARRAY_ATTR __attribute__((section(".qharray"),nocommon)) +/* USBOTG */ +#define USB_NUM_ENDPOINTS 3 +/* This needs to be 2048 byte aligned, but USB_QHARRAY_ATTR should take care + * of that */ +#define USB_QHARRAY_ATTR __attribute__((section(".qharray"),nocommon,aligned(4))) +#define USB_DEVBSS_ATTR IBSS_ATTR /* DRAM starts at 0x10000000, but in Rockbox we remap it to 0x00000000 */ #define DRAM_START 0x10000000 |