All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] IPQ40xx: Improve support
@ 2020-10-08 20:05 Robert Marko
  2020-10-08 20:05 ` [PATCH 1/6] spi: Add Qualcomm QUP SPI controller driver Robert Marko
                   ` (5 more replies)
  0 siblings, 6 replies; 15+ messages in thread
From: Robert Marko @ 2020-10-08 20:05 UTC (permalink / raw)
  To: u-boot

This is a third patch series working towards providing
a usable U-boot support for Qualcomm IPQ40xx SoC-s.

This patch series adds SPI driver so booting is finally
possible, RNG driver for the built in pseudo RNG and
MDIO driver to prepare for future ethernet support.

Booting Linux is now possible.

Signed-off-by: Robert Marko <robert.marko@sartura.hr>
Cc: Luka Perkov <luka.perkov@sartura.hr>

Robert Marko (6):
  spi: Add Qualcomm QUP SPI controller driver
  IPQ40xx: Add SPI support
  net: Add IPQ40xx MDIO driver
  IPQ40xx: Add support for MDIO
  rng: Add Qualcomm MSM PRNG driver
  IPQ40xx: Add PRNG support

 MAINTAINERS                              |   3 +
 arch/arm/dts/qcom-ipq4019.dtsi           |  47 ++
 arch/arm/mach-ipq40xx/clock-ipq4019.c    |  21 +-
 arch/arm/mach-ipq40xx/pinctrl-ipq4019.c  |   7 +
 doc/device-tree-bindings/spi/spi-qup.txt |  33 +
 drivers/net/Kconfig                      |   7 +
 drivers/net/Makefile                     |   1 +
 drivers/net/mdio-ipq4019.c               | 146 +++++
 drivers/rng/Kconfig                      |   7 +
 drivers/rng/Makefile                     |   1 +
 drivers/rng/msm_rng.c                    | 143 ++++
 drivers/spi/Kconfig                      |  10 +
 drivers/spi/Makefile                     |   1 +
 drivers/spi/spi-qup.c                    | 803 +++++++++++++++++++++++
 14 files changed, 1228 insertions(+), 2 deletions(-)
 create mode 100644 doc/device-tree-bindings/spi/spi-qup.txt
 create mode 100644 drivers/net/mdio-ipq4019.c
 create mode 100644 drivers/rng/msm_rng.c
 create mode 100644 drivers/spi/spi-qup.c

-- 
2.28.0

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

end of thread, other threads:[~2020-12-14 17:32 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-08 20:05 [PATCH 0/6] IPQ40xx: Improve support Robert Marko
2020-10-08 20:05 ` [PATCH 1/6] spi: Add Qualcomm QUP SPI controller driver Robert Marko
2020-10-23  0:28   ` Tom Rini
2020-10-08 20:05 ` [PATCH 2/6] IPQ40xx: Add SPI support Robert Marko
2020-10-23  0:28   ` Tom Rini
2020-10-08 20:05 ` [PATCH 3/6] net: Add IPQ40xx MDIO driver Robert Marko
2020-10-23  0:28   ` Tom Rini
2020-10-08 20:05 ` [PATCH 4/6] IPQ40xx: Add support for MDIO Robert Marko
2020-10-23  0:29   ` Tom Rini
2020-10-08 20:05 ` [PATCH 5/6] rng: Add Qualcomm MSM PRNG driver Robert Marko
2020-10-23  0:29   ` Tom Rini
2020-12-14 17:22     ` Heinrich Schuchardt
2020-12-14 17:32       ` Robert Marko
2020-10-08 20:05 ` [PATCH 6/6] IPQ40xx: Add PRNG support Robert Marko
2020-10-23  0:29   ` 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.