public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/16] sun50i: a64: add support for axp803, musb
@ 2017-12-12  6:58 Jagan Teki
  2017-12-12  6:58 ` [U-Boot] [PATCH 01/16] power: sunxi: add AXP803 PMIC support Jagan Teki
                   ` (16 more replies)
  0 siblings, 17 replies; 40+ messages in thread
From: Jagan Teki @ 2017-12-12  6:58 UTC (permalink / raw)
  To: u-boot

This series deals axp803, musb and related improvements on a64
- axp803 PMIC support used by a64
- a64 musb improvements (rework by Philipp [1])
- musb support for bananapi-m64, a64-olinuxino

[1] https://patchwork.ozlabs.org/patch/729246/ 

Jagan Teki (11):
  power: sunxi: add AXP803 PMIC support
  sunxi: adjust usb bases between H3_H5 vs a64
  musb-new: sunxi: add common SUNXI_MUSB_BASE
  sunxi: usb_phy: Update a64 sunxi_usb_phy base
  arm64: allwinner: sync bananapi-m64 usb nodes from Linux
  configs: sun50i: add usb-otg support for bananapi-m64
  configs: sun50i: enable ums on bananapi-m64
  arm64: allwinner: sync a64-olinuxino usb nodes from Linux
  configs: sun50i: add usb-otg support for a64-olinuxino
  configs: sun50i: enable ums on a64-olinuxino
  configs: sun50i: Enable eMMC on a64-olinuxino

Philipp Tomsich (5):
  sunxi (sun50i): Set CONFIG_SUNXI_USB_PHYS to 2 (the A64 has 2 PHYs)
  musb-new: sunxi: a64: add support to select shared phy
  musb-new: sunxi: a64: adds support for clearing the SIDDP
  usb: sunxi: set up usb_phy_passby only for HCI
  sunxi: clock: update a64 usb clock gating and module reset bits

 arch/arm/dts/sun50i-a64-bananapi-m64.dts      |  27 +++
 arch/arm/dts/sun50i-a64-olinuxino.dts         |  19 ++
 arch/arm/include/asm/arch-sunxi/clock_sun6i.h |  16 +-
 arch/arm/include/asm/arch-sunxi/cpu_sun4i.h   |   6 +
 arch/arm/include/asm/arch-sunxi/usb_phy.h     |   2 +
 arch/arm/mach-sunxi/Makefile                  |   9 +
 arch/arm/mach-sunxi/pmic_bus.c                |   9 +-
 arch/arm/mach-sunxi/rsb.c                     |   2 +-
 arch/arm/mach-sunxi/usb_phy.c                 |  24 ++-
 board/sunxi/board.c                           |  40 ++++
 configs/a64-olinuxino_defconfig               |   6 +
 configs/bananapi_m64_defconfig                |   4 +
 drivers/power/Kconfig                         |  95 +++++++---
 drivers/power/Makefile                        |   3 +
 drivers/power/axp803.c                        | 260 ++++++++++++++++++++++++++
 drivers/usb/host/ehci-sunxi.c                 |  10 +
 drivers/usb/host/ohci-sunxi.c                 |  10 +
 drivers/usb/musb-new/musb_regs.h              |   3 +-
 drivers/usb/musb-new/sunxi.c                  |  24 ++-
 include/axp803.h                              |  68 +++++++
 include/axp_pmic.h                            |   4 +
 include/configs/sun50i.h                      |   2 +-
 22 files changed, 598 insertions(+), 45 deletions(-)
 create mode 100644 drivers/power/axp803.c
 create mode 100644 include/axp803.h

-- 
2.7.4

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

end of thread, other threads:[~2017-12-14  6:23 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-12  6:58 [U-Boot] [PATCH 00/16] sun50i: a64: add support for axp803, musb Jagan Teki
2017-12-12  6:58 ` [U-Boot] [PATCH 01/16] power: sunxi: add AXP803 PMIC support Jagan Teki
2017-12-12  7:58   ` Maxime Ripard
2017-12-12  8:50     ` Jagan Teki
2017-12-13  8:16       ` Maxime Ripard
2017-12-12  8:56     ` Jagan Teki
2017-12-12  6:58 ` [U-Boot] [PATCH 02/16] sunxi (sun50i): Set CONFIG_SUNXI_USB_PHYS to 2 (the A64 has 2 PHYs) Jagan Teki
2017-12-12  6:58 ` [U-Boot] [PATCH 03/16] sunxi: adjust usb bases between H3_H5 vs a64 Jagan Teki
2017-12-12  6:58 ` [U-Boot] [PATCH 04/16] musb-new: sunxi: add common SUNXI_MUSB_BASE Jagan Teki
2017-12-12  7:24   ` Chen-Yu Tsai
2017-12-12  6:58 ` [U-Boot] [PATCH 05/16] musb-new: sunxi: a64: add support to select shared phy Jagan Teki
2017-12-12  6:58 ` [U-Boot] [PATCH 06/16] musb-new: sunxi: a64: adds support for clearing the SIDDP Jagan Teki
2017-12-12  6:58 ` [U-Boot] [PATCH 07/16] usb: sunxi: set up usb_phy_passby only for HCI Jagan Teki
2017-12-12  6:58 ` [U-Boot] [PATCH 08/16] sunxi: clock: update a64 usb clock gating and module reset bits Jagan Teki
2017-12-12  8:02   ` Maxime Ripard
2017-12-12  6:58 ` [U-Boot] [PATCH 09/16] sunxi: usb_phy: Update a64 sunxi_usb_phy base Jagan Teki
2017-12-12  6:58 ` [U-Boot] [PATCH 10/16] arm64: allwinner: sync bananapi-m64 usb nodes from Linux Jagan Teki
2017-12-12  8:03   ` Maxime Ripard
2017-12-12  6:58 ` [U-Boot] [PATCH 11/16] configs: sun50i: add usb-otg support for bananapi-m64 Jagan Teki
2017-12-12  8:04   ` Maxime Ripard
2017-12-12  9:13     ` Jagan Teki
2017-12-13  8:17       ` Maxime Ripard
2017-12-12  6:58 ` [U-Boot] [PATCH 12/16] configs: sun50i: enable ums on bananapi-m64 Jagan Teki
2017-12-12  8:12   ` Maxime Ripard
2017-12-12  9:09     ` Jagan Teki
2017-12-13  8:21       ` Maxime Ripard
2017-12-13  1:36     ` [U-Boot] [linux-sunxi] " Icenowy Zheng
2017-12-13  2:01       ` Stefan Brüns
2017-12-13  5:07         ` Jagan Teki
2017-12-12  6:58 ` [U-Boot] [PATCH 13/16] arm64: allwinner: sync a64-olinuxino usb nodes from Linux Jagan Teki
2017-12-12  6:58 ` [U-Boot] [PATCH 14/16] configs: sun50i: add usb-otg support for a64-olinuxino Jagan Teki
2017-12-12  8:12   ` Maxime Ripard
2017-12-12  6:58 ` [U-Boot] [PATCH 15/16] configs: sun50i: enable ums on a64-olinuxino Jagan Teki
2017-12-12  6:58 ` [U-Boot] [PATCH 16/16] configs: sun50i: Enable eMMC " Jagan Teki
2017-12-12  8:05   ` Maxime Ripard
2017-12-12  8:17 ` [U-Boot] [PATCH 00/16] sun50i: a64: add support for axp803, musb Chen-Yu Tsai
2017-12-13 11:51   ` Jagan Teki
2017-12-14  3:02     ` Chen-Yu Tsai
2017-12-14  6:21       ` Jagan Teki
2017-12-14  6:23         ` Chen-Yu Tsai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox