public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Jagan Teki <jagan@amarulasolutions.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Pull request: u-boot-sunxi/master
Date: Mon,  4 Jun 2018 18:13:56 +0530	[thread overview]
Message-ID: <20180604124356.12039-1-jagan@amarulasolutions.com> (raw)

Hi Tom,

Please pull this PR.

thanks,
Jagan.

The following changes since commit 8730d012c9bd92d6412b3ef6e33b40c5df00f225:

  Merge tag 'arc-uart-updates-for-2018.07-rc1' of git://git.denx.de/u-boot-arc (2018-05-24 09:54:25 -0400)

are available in the Git repository at:

  git://git.denx.de/u-boot-sunxi.git master

for you to fetch changes up to 2e8dbe14e766deae16c75f357f926f08b881dc66:

  board: sun50i: Add Amarula A64-Relic initial support (2018-06-04 18:09:25 +0530)

----------------------------------------------------------------
Chen-Yu Tsai (1):
      sunxi: clock: Fix OHCI clock gating for H3/H5

Jagan Teki (34):
      usb: sunxi: Simplify ccm reg base code
      musb: sunxi: Add proper macros instead of numericals
      musb: sunxi: Use simple way to fill musb_hdrc pdata
      musb: sunxi: Add fifo config
      sunxi: clock: Fix clock gating for H3/H5/A64
      musb: sunxi: Add OTG device clkgate and reset for H3/H5
      musb: sunxi: Use BIT instead of numerical shift
      musb: sunxi: Add support for H3/H5/A64
      phy: Add Allwinner A64 USB PHY driver
      phy: sun4i-usb: Add id_detect and vbus_detect ops
      phy: sun4i-usb: Add H3/H5 PHY config
      phy: sun4i-usb: Add V3S PHY config
      phy: sun4i-usb: Add A83T USB PHY config
      phy: sun4i-usb: Add A10/A13/A20 PHY config
      phy: sun4i-usb: Add A31 PHY config
      phy: sun4i-usb: Add A33 USB PHY config
      phy: sun4i-usb: Add A23 USB PHY config
      device-tree-bindings: phy: Sync sun4i-usb-phy bindings
      board: sunxi: Use generic-phy for board_usb_cable_connected
      phy: sun4i-usb: Add a sunxi specific function for setting squelch-detect
      usb: sunxi: Switch to use generic-phy
      sunxi: Drop legacy usb_phy.c
      arm64: allwinner: a64: bananapi-m64: Sync usb_otg node from Linux
      configs: bananapi-m64: Enable USB OTG peripheral mode
      ARM: dts: sun8i: a83t: Sync usbphy node from Linux
      arm64: allwinner: a64: bananapi-m64: Sync usb host nodes from Linux
      ARM: dts: sun8i-h3: bananapi-m2-plus: Sync usb otg nodes from Linux
      configs: bananapi-m2-plus: Enable USB OTG peripheral mode
      arm64: allwinner: h5: orangepi-pc2: Order nodes in alphabetic
      arm64: allwinner: h5: orangepi-pc2: Sync usb otg nodes from Linux
      configs: orangepi-pc2: Enable USB OTG peripheral mode
      arm64: allwinner: h5: orangepi-prime: Sync usb otg nodes from Linux
      configs: orangepi-prime: Enable USB OTG peripheral mode
      board: sun50i: Add Amarula A64-Relic initial support

Jun Nie (1):
      sunxi: h3: Sync OTG and HCI nodes from Linux DT

Maxime Ripard (1):
      Revert "sunxi: binman: Add U-Boot binary size check"

 arch/arm/dts/Makefile                          |   1 +
 arch/arm/dts/sun50i-a64-amarula-relic.dts      |  65 +++
 arch/arm/dts/sun50i-a64-bananapi-m64.dts       |  26 ++
 arch/arm/dts/sun50i-h5-orangepi-pc2.dts        |  59 ++-
 arch/arm/dts/sun50i-h5-orangepi-prime.dts      |  13 +
 arch/arm/dts/sun8i-a83t.dtsi                   |  20 +
 arch/arm/dts/sun8i-h3-bananapi-m2-plus.dts     |  13 +
 arch/arm/dts/sun8i-h3.dtsi                     |  32 ++
 arch/arm/dts/sunxi-u-boot.dtsi                 |  12 -
 arch/arm/include/asm/arch-sunxi/clock_sun6i.h  |  23 +-
 arch/arm/include/asm/arch-sunxi/usb_phy.h      |  20 -
 arch/arm/mach-sunxi/Kconfig                    |   9 +
 arch/arm/mach-sunxi/Makefile                   |   3 -
 arch/arm/mach-sunxi/usb_phy.c                  | 406 -----------------
 board/sunxi/MAINTAINERS                        |   6 +
 board/sunxi/board.c                            |  40 +-
 configs/Sinovoip_BPI_M2_Plus_defconfig         |   1 +
 configs/amarula_a64_relic_defconfig            |  17 +
 configs/bananapi_m64_defconfig                 |   1 +
 configs/orangepi_pc2_defconfig                 |   1 +
 configs/orangepi_prime_defconfig               |   1 +
 doc/device-tree-bindings/phy/sun4i-usb-phy.txt |  65 +++
 drivers/Kconfig                                |   2 +
 drivers/Makefile                               |   1 +
 drivers/phy/allwinner/Kconfig                  |  13 +
 drivers/phy/allwinner/Makefile                 |   6 +
 drivers/phy/allwinner/phy-sun4i-usb.c          | 575 +++++++++++++++++++++++++
 drivers/usb/host/ehci-sunxi.c                  |  66 ++-
 drivers/usb/host/ohci-sunxi.c                  |  72 +++-
 drivers/usb/musb-new/musb_core.h               |   4 +
 drivers/usb/musb-new/musb_regs.h               |   3 +-
 drivers/usb/musb-new/musb_uboot.c              |  22 +-
 drivers/usb/musb-new/sunxi.c                   | 228 ++++++++--
 include/phy-sun4i-usb.h                        |  34 ++
 34 files changed, 1280 insertions(+), 580 deletions(-)
 create mode 100644 arch/arm/dts/sun50i-a64-amarula-relic.dts
 delete mode 100644 arch/arm/include/asm/arch-sunxi/usb_phy.h
 delete mode 100644 arch/arm/mach-sunxi/usb_phy.c
 create mode 100644 configs/amarula_a64_relic_defconfig
 create mode 100644 doc/device-tree-bindings/phy/sun4i-usb-phy.txt
 create mode 100644 drivers/phy/allwinner/Kconfig
 create mode 100644 drivers/phy/allwinner/Makefile
 create mode 100644 drivers/phy/allwinner/phy-sun4i-usb.c
 create mode 100644 include/phy-sun4i-usb.h

             reply	other threads:[~2018-06-04 12:43 UTC|newest]

Thread overview: 125+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-04 12:43 Jagan Teki [this message]
2018-06-04 15:09 ` [U-Boot] Pull request: u-boot-sunxi/master Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2019-10-26 17:48 Jagan Teki
2019-10-30 17:01 ` Tom Rini
2019-07-16 14:59 Jagan Teki
2019-07-17 12:27 ` Tom Rini
2019-05-20 17:15 Jagan Teki
2019-05-21 15:44 ` Tom Rini
2019-04-27 16:17 Jagan Teki
2019-04-27 21:46 ` Tom Rini
2019-04-29 17:14   ` Jagan Teki
2019-04-17 12:27 Jagan Teki
2019-04-18 16:20 ` Tom Rini
2019-04-12 13:04 Jagan Teki
2019-04-13  3:41 ` Tom Rini
2019-04-01 16:30 Jagan Teki
2019-04-01 19:55 ` Tom Rini
2019-03-11 17:29 Jagan Teki
2019-03-12 14:55 ` Tom Rini
2019-02-28 19:08 Jagan Teki
2019-02-28 23:55 ` Tom Rini
2019-02-14 17:20 Jagan Teki
2019-02-16  1:09 ` Tom Rini
2019-01-30 16:26 Jagan Teki
2019-01-31  2:42 ` Tom Rini
2019-01-24 20:14 Jagan Teki
2019-01-25 15:17 ` Tom Rini
2019-01-10  9:20 Jagan Teki
2019-01-10 23:18 ` Tom Rini
2019-01-01 19:22 Jagan Teki
2019-01-02  1:02 ` Tom Rini
2018-12-07 20:54 Jagan Teki
2018-12-08 13:49 ` Tom Rini
2018-11-26 18:27 Jagan Teki
2018-11-27  3:12 ` Tom Rini
2018-11-13 19:19 Jagan Teki
2018-11-13 19:42 ` Tom Rini
2018-11-13 20:05   ` Jagan Teki
2018-11-15 21:04 ` Tom Rini
2018-10-26 15:00 Jagan Teki
2018-10-26 17:08 ` Tom Rini
2018-10-12  6:16 Jagan Teki
2018-10-15 12:41 ` Tom Rini
2018-09-28 16:44 Jagan Teki
2018-09-30  2:27 ` Tom Rini
2018-08-24  8:50 Jagan Teki
2018-08-25 13:16 ` Tom Rini
2018-08-20 12:44 Jagan Teki
2018-08-20 22:11 ` Tom Rini
2018-07-31 18:11 Jagan Teki
2018-08-01 11:13 ` Tom Rini
2018-08-01 11:47   ` Jagan Teki
2018-08-01 12:43     ` Chen-Yu Tsai
2018-08-01 12:55       ` Tom Rini
2018-08-01 12:58         ` Chen-Yu Tsai
2018-08-01 13:02           ` Tom Rini
2018-08-02  9:27         ` Jagan Teki
2018-08-02 11:13           ` Tom Rini
2018-08-04 17:48             ` Jagan Teki
2018-08-04 17:52               ` Icenowy Zheng
2018-08-04 18:34               ` Icenowy Zheng
2018-08-04 18:51               ` Tom Rini
2018-08-04 18:52                 ` Icenowy Zheng
2018-08-04 18:58                 ` Icenowy Zheng
2018-08-04 20:11                   ` Tom Rini
2018-08-05 11:59 ` Tom Rini
2018-07-17 15:45 Jagan Teki
2018-07-18  0:30 ` Tom Rini
2018-07-03 16:39 Jagan Teki
2018-07-04 16:28 ` Tom Rini
2018-05-09 11:03 Jagan Teki
2018-05-10 11:16 ` Tom Rini
2018-04-27 13:02 Jagan Teki
2018-04-29 21:05 ` Tom Rini
2018-04-30 10:39   ` Jagan Teki
2018-04-30 16:15 ` Tom Rini
2018-04-04  8:55 Jagan Teki
2018-04-05 23:39 ` Tom Rini
2018-03-19 20:00 Jagan Teki
2018-03-20  0:09 ` Tom Rini
2018-03-14 14:05 Jagan Teki
2018-03-15 12:26 ` Tom Rini
2018-01-26 14:35 Jagan Teki
2018-01-26 21:00 ` Tom Rini
2018-01-11 19:02 Jagan Teki
2018-01-12 12:18 ` Tom Rini
2017-12-19 11:47 Jagan Teki
2017-12-19 20:44 ` Tom Rini
2017-11-10 14:07 Jagan Teki
2017-11-10 15:28 ` Tom Rini
2017-11-09 11:45 Jagan Teki
2017-11-10  3:20 ` Tom Rini
2017-09-01 17:10 Jagan Teki
2017-09-01 18:02 ` Tom Rini
2017-08-29  7:27 Jagan Teki
2017-09-01 16:42 ` Tom Rini
2017-09-01 16:48   ` Jagan Teki
2017-08-16 13:11 Jagan Teki
2017-08-17  1:17 ` Tom Rini
2017-06-16 16:24 Jagan Teki
2017-06-16 17:13 ` Siarhei Siamashka
2017-06-16 19:11   ` Jagan Teki
2017-06-20  2:53 ` Jagan Teki
2017-06-20  2:54 ` Tom Rini
2017-06-01 13:43 [U-Boot] Pull Request: u-boot-sunxi/master Jagan Teki
2017-06-04 17:11 ` Tom Rini
2017-05-22 10:03 [U-Boot] Pull request: u-boot-sunxi/master Jagan Teki
2017-05-23  0:18 ` Tom Rini
2017-05-08 16:12 Jagan Teki
2017-05-09  0:12 ` Tom Rini
2017-04-25 18:56 Jagan Teki
2017-04-26 19:16 ` Tom Rini
2017-04-07 17:52 Jagan Teki
2017-04-09  1:16 ` Tom Rini
2017-02-27 14:21 Jagan Teki
2017-02-27 14:56 ` Tom Rini
2017-02-28 10:20   ` Andre Przywara
2017-01-15 17:27 Jagan Teki
2017-01-16  4:01 ` Tom Rini
2017-01-04 16:36 Jagan Teki
2017-01-04 16:41 ` Tom Rini
2017-01-10 23:14 ` Tom Rini
2016-12-23 23:33 Jagan Teki
2016-12-26 13:32 ` Tom Rini
2016-12-27 22:54 ` Tom Rini

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=20180604124356.12039-1-jagan@amarulasolutions.com \
    --to=jagan@amarulasolutions.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox