All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 00/11] rockchip fixes and extend rk3568 support
@ 2022-02-22  1:31 Peter Geis
  2022-02-22  1:31 ` [PATCH v1 01/11] clk: rockchip: rk3568: fix reset handler Peter Geis
                   ` (13 more replies)
  0 siblings, 14 replies; 44+ messages in thread
From: Peter Geis @ 2022-02-22  1:31 UTC (permalink / raw)
  Cc: Peter Geis, u-boot

to: Simon Glass <sjg@chromium.org>
to: Philipp Tomsich <philipp.tomsich@vrull.eu>
to: Kever Yang <kever.yang@rock-chips.com>
to: Lukasz Majewski <lukma@denx.de>
to: Sean Anderson <seanga2@gmail.com>
to: Peng Fan <peng.fan@nxp.com>
to: Jaehoon Chung <jh80.chung@samsung.com>
to: Heiko Stübner <heiko@sntech.de>
cc: u-boot@lists.denx.de

Good Evening,

The following is a few patches for rockchip mainline u-boot support.
Patches 1-3 are fixes for the rk3568 reset handler, rockchip emmc dma to
sram, and building the rockchip-sfc driver.
Patch 4 adds a sanity check for the minimum sfc frequency.
Patch 5 and 6 add adc support to spl and enable the rockchip recovery
handler in spl, before attempting to load u-boot.
Patch 7 enables rk3568 spl bootrom device detection.
Patch 8 enables automatic clock gating and other power saving features
on rk3568, which solves the chip running hotter compared to downstream.
Patch 9 and 10 move the dwc3 platform data to the chip specific code and
enable dwc3 otg support on rk3568.
Patch 11 is an RFC patch for fixing ram detection on rk3568. Downstream
goes about this a different way, where they implemented a special
library to handle this.

Please review and *especially test* patch 11.

Very Respectfully,
Peter Geis

Peter Geis (11):
  clk: rockchip: rk3568: fix reset handler
  mmc: sdhci: allow disabling sdma in spl
  spi: rockchip-sfc: fix building rockchip-sfc
  spi: rockchip-sfc: sanity check minimum freq
  spl: support adc drivers in spl
  rockchip: handle bootrom recovery mode in spl
  rockchip: rk3568: add boot device detection
  rockchip: rk3568: enable automatic clock gating
  rockchip: move dwc3 config to chip specific handler
  rockchip: rk3568: add dwc3 otg support
  [RFC] rockchip: rk356x: attempt to fix ram detection

 arch/arm/mach-rockchip/Kconfig         |   1 +
 arch/arm/mach-rockchip/Makefile        |   6 +-
 arch/arm/mach-rockchip/board.c         |  24 ------
 arch/arm/mach-rockchip/boot_mode.c     |   4 +-
 arch/arm/mach-rockchip/rk3399/rk3399.c |  29 +++++++
 arch/arm/mach-rockchip/rk3568/rk3568.c | 112 +++++++++++++++++++++++++
 arch/arm/mach-rockchip/sdram.c         |  19 +++--
 common/board_f.c                       |   7 ++
 common/spl/Kconfig                     |   5 ++
 drivers/Makefile                       |   1 +
 drivers/clk/rockchip/clk_rk3568.c      |   2 +
 drivers/mmc/Kconfig                    |   7 ++
 drivers/mmc/sdhci.c                    |   6 +-
 drivers/spi/rockchip_sfc.c             |   6 ++
 include/configs/rk3568_common.h        |   5 ++
 15 files changed, 197 insertions(+), 37 deletions(-)

-- 
2.25.1


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

end of thread, other threads:[~2023-02-27  7:11 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-22  1:31 [PATCH v1 00/11] rockchip fixes and extend rk3568 support Peter Geis
2022-02-22  1:31 ` [PATCH v1 01/11] clk: rockchip: rk3568: fix reset handler Peter Geis
2022-03-12  2:24   ` Simon Glass
2022-03-12  3:32     ` Peter Geis
2022-03-12  5:02       ` Simon Glass
2022-03-14  8:51   ` Kever Yang
2023-01-04 18:30   ` Jagan Teki
2022-02-22  1:31 ` [PATCH v1 02/11] mmc: sdhci: allow disabling sdma in spl Peter Geis
2022-02-25  1:46   ` Jaehoon Chung
2022-03-14  8:41   ` Kever Yang
2022-02-22  1:31 ` [PATCH v1 03/11] spi: rockchip-sfc: fix building rockchip-sfc Peter Geis
2022-03-14  8:45   ` Kever Yang
2022-03-14 11:36     ` Peter Geis
2022-02-22  1:31 ` [PATCH v1 04/11] spi: rockchip-sfc: sanity check minimum freq Peter Geis
2022-03-14  8:53   ` Kever Yang
2022-03-15  2:10     ` Jon Lin
2022-02-22  1:31 ` [PATCH v1 05/11] spl: support adc drivers in spl Peter Geis
2022-02-22  1:31 ` [PATCH v1 06/11] rockchip: handle bootrom recovery mode " Peter Geis
2022-03-12  2:24   ` Simon Glass
2022-03-12  3:37     ` Peter Geis
2022-03-14  9:08   ` Kever Yang
2022-03-14 11:51     ` Peter Geis
2022-03-14 11:59   ` Philipp Tomsich
2022-03-14 12:34     ` Peter Geis
2022-02-22  1:31 ` [PATCH v1 07/11] rockchip: rk3568: add boot device detection Peter Geis
2022-03-12  2:24   ` Simon Glass
2022-03-12  3:34     ` Peter Geis
2022-02-22  1:31 ` [PATCH v1 08/11] rockchip: rk3568: enable automatic clock gating Peter Geis
2022-03-12  2:24   ` Simon Glass
2022-03-14  8:52   ` Kever Yang
2022-02-22  1:31 ` [PATCH v1 09/11] rockchip: move dwc3 config to chip specific handler Peter Geis
2022-03-12  2:24   ` Simon Glass
2023-02-27  7:10   ` Jagan Teki
2022-02-22  1:31 ` [PATCH v1 10/11] rockchip: rk3568: add dwc3 otg support Peter Geis
2022-03-12  2:24   ` Simon Glass
2022-03-12  3:38     ` Peter Geis
2022-02-22  1:31 ` [PATCH v1 11/11] [RFC] rockchip: rk356x: attempt to fix ram detection Peter Geis
2022-03-12  2:24   ` Simon Glass
2022-03-12  3:54     ` Peter Geis
2022-03-12  5:02       ` Simon Glass
2022-03-12 14:46 ` [PATCH v1 00/11] rockchip fixes and extend rk3568 support Kever Yang
2022-03-14  8:56 ` Kever Yang
2022-03-14 11:42   ` Peter Geis
2022-03-14  9:06 ` Jagan Teki

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.