All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL u-boot] Please pull u-boot-amlogic-20210210
@ 2021-02-10 12:54 ` Neil Armstrong
  0 siblings, 0 replies; 3+ messages in thread
From: Neil Armstrong @ 2021-02-10 12:54 UTC (permalink / raw)
  To: u-boot

Hi Tom,

These changes adds the plumbing to support MIPI D-PHYs, including the timings helpers from
Linux, the AXG Analog and Digital D-PHY drivers. Finally automatic detection of model is added
for the HardKernel Odroid N2 & C4 families.

The CI job is at https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic/pipelines/6346

Thanks,
Neil

The following changes since commit e14d5762de1db84cae6d84d59c1e40f3eb26c4c3:

  Merge git://git.denx.de/u-boot-marvell (2021-02-08 10:55:51 -0500)

are available in the Git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20210210

for you to fetch changes up to 8bc780106c1399bd263c4283a8747889a613ca5d:

  board: amlogic: odroid: add runtime detection of the N2/N2+/C4/HC4 variants (2021-02-10 10:00:51 +0100)

----------------------------------------------------------------
- Add configuration helpers for MIPI D-PHY
- generic-phy: add configure op
- Add Amlogic AXG MIPI D-PHY driver & MIPI PCIe Analog PHY driver
- odroid: add runtime detection of the N2/N2+/C4/HC4 variants

----------------------------------------------------------------
Marek Szyprowski (1):
      board: amlogic: odroid: add runtime detection of the N2/N2+/C4/HC4 variants

Neil Armstrong (4):
      phy: dphy: Add configuration helpers
      generic-phy: add configure op
      phy: Add Amlogic AXG MIPI D-PHY driver
      phy: Add Amlogic AXG MIPI PCIe Analog PHY driver

 arch/arm/dts/meson-g12b-odroid-n2-u-boot.dtsi |   6 +
 arch/arm/dts/meson-sm1-odroid-c4-u-boot.dtsi  |   6 +
 board/amlogic/odroid-n2/odroid-n2.c           |  80 ++++++
 configs/odroid-c4_defconfig                   |   4 +-
 configs/odroid-n2_defconfig                   |   4 +-
 drivers/phy/Kconfig                           |  23 ++
 drivers/phy/Makefile                          |   3 +
 drivers/phy/meson-axg-mipi-dphy.c             | 393 ++++++++++++++++++++++++++
 drivers/phy/meson-axg-mipi-pcie-analog.c      | 233 +++++++++++++++
 drivers/phy/phy-core-mipi-dphy.c              | 161 +++++++++++
 drivers/phy/phy-uclass.c                      |  11 +
 include/generic-phy.h                         |  23 ++
 include/phy-mipi-dphy.h                       | 284 +++++++++++++++++++
 13 files changed, 1229 insertions(+), 2 deletions(-)
 create mode 100644 drivers/phy/meson-axg-mipi-dphy.c
 create mode 100644 drivers/phy/meson-axg-mipi-pcie-analog.c
 create mode 100644 drivers/phy/phy-core-mipi-dphy.c
 create mode 100644 include/phy-mipi-dphy.h

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

* [PULL u-boot] Please pull u-boot-amlogic-20210210
@ 2021-02-10 12:54 ` Neil Armstrong
  0 siblings, 0 replies; 3+ messages in thread
From: Neil Armstrong @ 2021-02-10 12:54 UTC (permalink / raw)
  To: trini; +Cc: u-boot-amlogic, U-Boot Mailing List

Hi Tom,

These changes adds the plumbing to support MIPI D-PHYs, including the timings helpers from
Linux, the AXG Analog and Digital D-PHY drivers. Finally automatic detection of model is added
for the HardKernel Odroid N2 & C4 families.

The CI job is at https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic/pipelines/6346

Thanks,
Neil

The following changes since commit e14d5762de1db84cae6d84d59c1e40f3eb26c4c3:

  Merge git://git.denx.de/u-boot-marvell (2021-02-08 10:55:51 -0500)

are available in the Git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20210210

for you to fetch changes up to 8bc780106c1399bd263c4283a8747889a613ca5d:

  board: amlogic: odroid: add runtime detection of the N2/N2+/C4/HC4 variants (2021-02-10 10:00:51 +0100)

----------------------------------------------------------------
- Add configuration helpers for MIPI D-PHY
- generic-phy: add configure op
- Add Amlogic AXG MIPI D-PHY driver & MIPI PCIe Analog PHY driver
- odroid: add runtime detection of the N2/N2+/C4/HC4 variants

----------------------------------------------------------------
Marek Szyprowski (1):
      board: amlogic: odroid: add runtime detection of the N2/N2+/C4/HC4 variants

Neil Armstrong (4):
      phy: dphy: Add configuration helpers
      generic-phy: add configure op
      phy: Add Amlogic AXG MIPI D-PHY driver
      phy: Add Amlogic AXG MIPI PCIe Analog PHY driver

 arch/arm/dts/meson-g12b-odroid-n2-u-boot.dtsi |   6 +
 arch/arm/dts/meson-sm1-odroid-c4-u-boot.dtsi  |   6 +
 board/amlogic/odroid-n2/odroid-n2.c           |  80 ++++++
 configs/odroid-c4_defconfig                   |   4 +-
 configs/odroid-n2_defconfig                   |   4 +-
 drivers/phy/Kconfig                           |  23 ++
 drivers/phy/Makefile                          |   3 +
 drivers/phy/meson-axg-mipi-dphy.c             | 393 ++++++++++++++++++++++++++
 drivers/phy/meson-axg-mipi-pcie-analog.c      | 233 +++++++++++++++
 drivers/phy/phy-core-mipi-dphy.c              | 161 +++++++++++
 drivers/phy/phy-uclass.c                      |  11 +
 include/generic-phy.h                         |  23 ++
 include/phy-mipi-dphy.h                       | 284 +++++++++++++++++++
 13 files changed, 1229 insertions(+), 2 deletions(-)
 create mode 100644 drivers/phy/meson-axg-mipi-dphy.c
 create mode 100644 drivers/phy/meson-axg-mipi-pcie-analog.c
 create mode 100644 drivers/phy/phy-core-mipi-dphy.c
 create mode 100644 include/phy-mipi-dphy.h

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

* [PULL u-boot] Please pull u-boot-amlogic-20210210
  2021-02-10 12:54 ` Neil Armstrong
  (?)
@ 2021-02-10 17:51 ` Tom Rini
  -1 siblings, 0 replies; 3+ messages in thread
From: Tom Rini @ 2021-02-10 17:51 UTC (permalink / raw)
  To: u-boot

On Wed, Feb 10, 2021 at 01:54:54PM +0100, Neil Armstrong wrote:

> Hi Tom,
> 
> These changes adds the plumbing to support MIPI D-PHYs, including the timings helpers from
> Linux, the AXG Analog and Digital D-PHY drivers. Finally automatic detection of model is added
> for the HardKernel Odroid N2 & C4 families.
> 
> The CI job is at https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic/pipelines/6346
> 
> Thanks,
> Neil
> 
> The following changes since commit e14d5762de1db84cae6d84d59c1e40f3eb26c4c3:
> 
>   Merge git://git.denx.de/u-boot-marvell (2021-02-08 10:55:51 -0500)
> 
> are available in the Git repository at:
> 
>   https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20210210
> 
> for you to fetch changes up to 8bc780106c1399bd263c4283a8747889a613ca5d:
> 
>   board: amlogic: odroid: add runtime detection of the N2/N2+/C4/HC4 variants (2021-02-10 10:00:51 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20210210/5c35d650/attachment-0001.sig>

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

end of thread, other threads:[~2021-02-10 17:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-10 12:54 [PULL u-boot] Please pull u-boot-amlogic-20210210 Neil Armstrong
2021-02-10 12:54 ` Neil Armstrong
2021-02-10 17:51 ` Tom Rini

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.