All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/5] usb:gadget USB Gadget support
@ 2011-07-13 14:29 Lukasz Majewski
  2011-07-13 14:29 ` [U-Boot] [PATCH v2 1/5] usb:gadget:s5p USB Device Controller (UDC) implementation Lukasz Majewski
                   ` (4 more replies)
  0 siblings, 5 replies; 19+ messages in thread
From: Lukasz Majewski @ 2011-07-13 14:29 UTC (permalink / raw)
  To: u-boot

Presented patches provide Linux USB Gadget support for U-boot running 
on the Samsung's SoC family of processors.
This patch series include UDC driver and example USB Mass Storage
gadger implementation.

---
Changes for v2:
        - Patches have been divided in a more logical way
        - Some #define registers definitions (in the UDC) have been
          replaced with structures
        - Detailed information about Kernel origin for USB Mass Storage
          Gadget files
        - Code cleanup and fixes

Lukasz Majewski (5):
  usb:gadget:s5p USB Device Controller (UDC) implementation
  usb:gadget:s5p Enabling the USB Gadget framework at GONI
  usb:gadget: USB Mass Storage - files from Linux kernel
  usb:gadget: USB Mass Storage Gadget support
  usb:gadget:s5p Support for USB Mass Storage Gadget on GONI

 arch/arm/include/asm/arch-s5pc1xx/cpu.h    |    4 +
 arch/arm/include/asm/arch-s5pc1xx/hs_otg.h |   32 +
 board/samsung/goni/goni.c                  |  139 ++
 common/Makefile                            |    1 +
 common/cmd_usb_mass_storage.c              |   78 +
 drivers/usb/gadget/Makefile                |    7 +-
 drivers/usb/gadget/file_storage.c          | 3536 ++++++++++++++++++++++++++++
 drivers/usb/gadget/regs-otg.h              |  209 ++
 drivers/usb/gadget/s3c_udc_otg.c           |  892 +++++++
 drivers/usb/gadget/s3c_udc_otg_xfer_dma.c  | 1419 +++++++++++
 drivers/usb/gadget/storage_common.c        |  765 ++++++
 include/configs/s5p_goni.h                 |   10 +
 include/usb/lin_gadget_compat.h            |   66 +
 include/usb/s3c_udc.h                      |  160 ++
 include/usb_mass_storage.h                 |   56 +
 15 files changed, 7371 insertions(+), 3 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-s5pc1xx/hs_otg.h
 create mode 100644 common/cmd_usb_mass_storage.c
 create mode 100644 drivers/usb/gadget/file_storage.c
 create mode 100644 drivers/usb/gadget/regs-otg.h
 create mode 100644 drivers/usb/gadget/s3c_udc_otg.c
 create mode 100644 drivers/usb/gadget/s3c_udc_otg_xfer_dma.c
 create mode 100644 drivers/usb/gadget/storage_common.c
 create mode 100644 include/usb/lin_gadget_compat.h
 create mode 100644 include/usb/s3c_udc.h
 create mode 100644 include/usb_mass_storage.h

-- 
1.7.2.3

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2011-10-10 22:00 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-13 14:29 [U-Boot] [PATCH v2 0/5] usb:gadget USB Gadget support Lukasz Majewski
2011-07-13 14:29 ` [U-Boot] [PATCH v2 1/5] usb:gadget:s5p USB Device Controller (UDC) implementation Lukasz Majewski
2011-07-13 14:43   ` Vitaly Kuzmichev
2011-07-14  8:14   ` [U-Boot] [RESEND PATCH " Lukasz Majewski
2011-10-06 22:10   ` [U-Boot] [PATCH " Wolfgang Denk
2011-10-07  7:39     ` Lukasz Majewski
2011-10-09 19:43       ` Wolfgang Denk
2011-10-10 20:00         ` Scott Wood
2011-10-10 20:38           ` Wolfgang Denk
2011-10-10 20:55             ` Scott Wood
2011-10-10 21:54               ` Wolfgang Denk
2011-10-10 22:00                 ` Scott Wood
2011-07-13 14:29 ` [U-Boot] [PATCH v2 2/5] usb:gadget:s5p Enabling the USB Gadget framework at GONI Lukasz Majewski
2011-07-13 14:29 ` [U-Boot] [PATCH v2 3/5] usb:gadget: USB Mass Storage - files from Linux kernel Lukasz Majewski
2011-10-06 22:10   ` Wolfgang Denk
2011-10-07  7:28     ` Lukasz Majewski
2011-10-07  8:25       ` Wolfgang Denk
2011-07-13 14:29 ` [U-Boot] [PATCH v2 4/5] usb:gadget: USB Mass Storage Gadget support Lukasz Majewski
2011-07-13 14:29 ` [U-Boot] [PATCH v2 5/5] usb:gadget:s5p Support for USB Mass Storage Gadget on GONI Lukasz Majewski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.