All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH V3 00/20] Make mv_udc work for i.mx6
@ 2013-08-01 23:27 Troy Kisky
  2013-08-01 23:27 ` [U-Boot] [PATCH V3 01/20] Add functions for use with i.mx6 otg udc Troy Kisky
                   ` (21 more replies)
  0 siblings, 22 replies; 41+ messages in thread
From: Troy Kisky @ 2013-08-01 23:27 UTC (permalink / raw)
  To: u-boot

Hi Marek, Stefano


This series is based on u-boot-usb/master branch.
After this series, nitrogen6x works with tftpboot to transfer
files over usb.

V2 was dropped to my bad posting of it and should be ignored.

This V3 is a rebase and most patches had to be changed slightly.
I also ran a ./MAKEALL -a arm and fixed the errors that the V1
series had.

The most noticeable change is the addition of

usb: gadget: mv_udc: fix hardware udc address for i.MX6

Let me know if you want to go back to a udc variable
to store the address instead of using hcor.


Stefano, would you like to take patches 1-5 ?
I'll likely need a V3, but maybe the early ones
will be approved.

Thanks



Troy Kisky (20):
  Add functions for use with i.mx6 otg udc
  mx6: iomux: add GPR1 defines
  nitrogen6x: add otg usb ethernet gadget support
  nitrogen6x: add CONFIG_MV_UDC
  arch-mxs/sys_proto.h: include regs-common.h
  usb: gadget: mv_udc: fix hardware udc address for i.MX6
  usb: gadget: config: fix unaligned access issues
  usb: gadget: mv_udc: add MX6Q specific reset
  usb: gadget: ether set wMaxPacketSize
  usb: gadget: ether: return error from rx_submit if no request
  usb: gadget: mv_udc: split mv_udc.h file
  usb: udc: add udc.h include file
  usb: gadget: mv_udc: fix typo in error message
  usb: gadget: mv_udc: set is_dualspeed = 1
  usb: gadget: mv_udc: fix full speed connections
  usb: gadget: mv_udc: optimize bounce
  usb: gadget: mv_udc: flush item before head
  usb: gadget: mv_udc: optimize ep_enable
  usb: gadget: mv_udc: zero transfer descriptor memory on probe
  usb: gadget: mv_udc: clear desc upon ep_disable

 arch/arm/cpu/armv7/mx6/soc.c              |  47 ++++++++++
 arch/arm/include/asm/arch-mx6/crm_regs.h  |   3 +
 arch/arm/include/asm/arch-mx6/imx-regs.h  |  17 ++++
 arch/arm/include/asm/arch-mx6/iomux.h     |   6 ++
 arch/arm/include/asm/arch-mx6/sys_proto.h |   4 +
 arch/arm/include/asm/arch-mxs/sys_proto.h |   2 +
 board/boundary/nitrogen6x/nitrogen6x.c    |  16 ++++
 drivers/serial/usbtty.h                   |   3 +-
 drivers/usb/gadget/config.c               |   6 +-
 drivers/usb/gadget/designware_udc.c       |   1 +
 drivers/usb/gadget/ether.c                |   4 +
 drivers/usb/gadget/mpc8xx_udc.c           |   1 +
 drivers/usb/gadget/mv_udc.c               | 141 +++++++++++++++++++-----------
 drivers/usb/gadget/mv_udc.h               | 115 ++++++++++++++++++++++++
 drivers/usb/gadget/omap1510_udc.c         |   1 +
 drivers/usb/gadget/pxa27x_udc.c           |   1 +
 drivers/usb/musb/musb_udc.c               |   3 +-
 include/configs/nitrogen6x.h              |   6 ++
 include/usb/designware_udc.h              |  31 -------
 include/usb/mpc8xx_udc.h                  |  19 +---
 include/usb/musb_udc.h                    |  40 ---------
 include/usb/mv_udc.h                      | 118 -------------------------
 include/usb/omap1510_udc.h                |  27 +-----
 include/usb/pxa27x_udc.h                  |  26 +-----
 include/usb/udc.h                         |  63 +++++++++++++
 25 files changed, 389 insertions(+), 312 deletions(-)
 create mode 100644 drivers/usb/gadget/mv_udc.h
 delete mode 100644 include/usb/musb_udc.h
 create mode 100644 include/usb/udc.h

-- 
1.8.1.2

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

end of thread, other threads:[~2013-08-16 18:20 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-01 23:27 [U-Boot] [PATCH V3 00/20] Make mv_udc work for i.mx6 Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 01/20] Add functions for use with i.mx6 otg udc Troy Kisky
2013-08-02 10:48   ` Marek Vasut
2013-08-02 19:44     ` Troy Kisky
2013-08-02 22:10       ` Marek Vasut
2013-08-02 23:41         ` Troy Kisky
2013-08-03  1:45           ` Marek Vasut
2013-08-03  2:24             ` Troy Kisky
2013-08-03 16:47               ` Marek Vasut
2013-08-03 19:30                 ` Troy Kisky
2013-08-03 22:46                   ` Marek Vasut
2013-08-15 21:36                   ` Marek Vasut
2013-08-16 18:20                     ` Troy Kisky
2013-08-04 20:15   ` Wolfgang Denk
2013-08-05 20:15     ` Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 02/20] mx6: iomux: add GPR1 defines Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 03/20] nitrogen6x: add otg usb ethernet gadget support Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 04/20] nitrogen6x: add CONFIG_MV_UDC Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 05/20] arch-mxs/sys_proto.h: include regs-common.h Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 06/20] usb: gadget: mv_udc: fix hardware udc address for i.MX6 Troy Kisky
2013-08-02 10:53   ` Marek Vasut
2013-08-01 23:27 ` [U-Boot] [PATCH V3 07/20] usb: gadget: config: fix unaligned access issues Troy Kisky
2013-08-02 10:57   ` Marek Vasut
2013-08-01 23:27 ` [U-Boot] [PATCH V3 08/20] usb: gadget: mv_udc: add MX6Q specific reset Troy Kisky
2013-08-02 10:58   ` Marek Vasut
2013-08-01 23:27 ` [U-Boot] [PATCH V3 09/20] usb: gadget: ether set wMaxPacketSize Troy Kisky
2013-08-02 10:59   ` Marek Vasut
2013-08-01 23:27 ` [U-Boot] [PATCH V3 10/20] usb: gadget: ether: return error from rx_submit if no request Troy Kisky
2013-08-02 11:07   ` Marek Vasut
2013-08-01 23:27 ` [U-Boot] [PATCH V3 11/20] usb: gadget: mv_udc: split mv_udc.h file Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 12/20] usb: udc: add udc.h include file Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 13/20] usb: gadget: mv_udc: fix typo in error message Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 14/20] usb: gadget: mv_udc: set is_dualspeed = 1 Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 15/20] usb: gadget: mv_udc: fix full speed connections Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 16/20] usb: gadget: mv_udc: optimize bounce Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 17/20] usb: gadget: mv_udc: flush item before head Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 18/20] usb: gadget: mv_udc: optimize ep_enable Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 19/20] usb: gadget: mv_udc: zero transfer descriptor memory on probe Troy Kisky
2013-08-01 23:27 ` [U-Boot] [PATCH V3 20/20] usb: gadget: mv_udc: clear desc upon ep_disable Troy Kisky
2013-08-02 11:14 ` [U-Boot] [PATCH V3 00/20] Make mv_udc work for i.mx6 Marek Vasut
2013-08-02 14:43 ` Stefano Babic

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.