All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lukasz Majewski <l.majewski@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 0/5] usb:gadget USB Gadget support
Date: Wed, 13 Jul 2011 16:29:47 +0200	[thread overview]
Message-ID: <1310567392-29082-1-git-send-email-l.majewski@samsung.com> (raw)

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

             reply	other threads:[~2011-07-13 14:29 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-13 14:29 Lukasz Majewski [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1310567392-29082-1-git-send-email-l.majewski@samsung.com \
    --to=l.majewski@samsung.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.