All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Heiko Stübner" <heiko@sntech.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 00/52] Support OF_PLATDATA in TPL, enable RK3368 DRAM init and add RK3368-uQ7
Date: Mon, 24 Jul 2017 10:59:38 +0200	[thread overview]
Message-ID: <2590116.09N9GbK5LB@diego> (raw)
In-Reply-To: <c41be817-0d78-edc3-835a-a6bba94d1b13@rock-chips.com>

Am Montag, 24. Juli 2017, 16:38:52 CEST schrieb Andy Yan:
> Hi Philipp:
> 
> On 2017年07月21日 18:55, Dr. Philipp Tomsich wrote:
> >> On 21 Jul 2017, at 04:33, Andy Yan <andy.yan@rock-chips.com> wrote:
> >> 
> >> Hi:
> >> 
> >> On 2017年07月19日 04:35, Philipp Tomsich wrote:
> >>> Here's a series that has a lot going on, but I didn't want to split it
> >>> to allow everyone to understand the motivation between some of the
> >>> changes to the SPL/TPL framework.  The short summary of this is
> >>> "enablement for DRAM init on the RK3368 with everything else that's
> >>> necessary to do it using OF_PLATDATA in TPL".
> >>> 
> >>> Enabling the RK3368 created a few more challenges that I'd expected:
> >>>   - I needed different stack locations, text addresses and sizes for
> >>>   
> >>>     TPL and SPL
> >>>   
> >>>   - the TPL stage was to use OF_PLATDATA and SPL was to use full
> >>>   OF_CONTROL
> >>>   - with the RK3368 TPL stage, there was a need to extend the
> >>>   back-to-bootrom
> >>>   
> >>>     support for Rockchip to AArch64
> >>>   
> >>>   - I wanted to start folding some of the Rockchip specific SPL support
> >>>   
> >>>     (i.e. back-to-bootrom) back into the general SPL framework to allow
> >>>     using it as a general boot method
> >> 
> >> I have a confusion here: according to the README.TPL,  TPL is Third
> >> Program Loader, which loaded by the SPL. So I think it should run after
> >> the SPL. But from RK3188 and RK3368 TPL implementation , they all run
> >> before SPL.Maybe it is my misunderstanding, hope to get some
> >> guidance.:-)> 
> > I think you are right and most Rockchip boards have been using this the
> > wrong way around.

Actually at first I also had the ordering of SPL -> TPL -> uboot for rk3188
but after discussions with Simon and Tom Rini, the opinion was that TPL
stands for "tiny" program loader and should run before the full SPL.

So I switched that stuff around on rk3188.


Heiko

>      Only RK3188 uses TPL now.
> 
> > With the fine-grained configurability that I created for the RK3368, it
> > will be easy enough to switch this around on the RK3368. However, this
> > will then also be done for the other RK3xxx devices to restore
> > consistency.
> > 
> > I would prefer to first add the RK3368 support with the “backwards
> > TPL/SPL” (i.e. TPL before SPL) to remain consistent with current
> > mach-rockchip usage of the TPL/SPL terminology. Once this is merged, we
> > can then switch this around for each board individually.> 
> >>> So I ended up separating quite a bit of features between SPL and TPL
> >>> while keeping things transparent to the few other boards using TPL (at
> >>> least I hope that things are transparent, as we didn't have any of
> >>> those in our lab to test on)...
> >>> 
> >>> Tested with: RK3368-uQ7, Debian 9, Linux 4.13-rc1.
> >>> 
> >>> Just one final remark: the DMC driver for the RK3368 currently covers
> >>> the configuration we use on the RK3368-uQ7 (i.e. 32bit wide, 2 ranks)
> >>> and is stress-tested (including 8-way SPEC runs) at all 3 supported
> >>> speeds.  I've built a bit of infrastructure (e.g. the way the
> >>> memory-schedule is determined) that I hope will be a useful
> >>> starting-point in unifying the drivers for the various closely related
> >>> DRAM controllers (e.g. for the RK3288) for Rockchip devices in the
> >>> future.
> >>> 
> >>> Klaus Goger (1):
> >>>    rockchip: board: puma_rk3399: rename ATF firmware
> >>> 
> >>> Philipp Tomsich (51):
> >>>    spl: add a 'return to bootrom' boot method
> >>>    spl: configure 'return to bootrom' separately for SPL and TPL
> >>>    rockchip: back-to-bootrom: add 'back-to-bootrom' support for AArch64
> >>>    rockchip: back-to-bootrom: split BACK_TO_BOOTROM for TPL/SPL
> >>>    rockchip: back-to-bootrom: simplify the #ifdef-check for LIBGENERIC
> >>>    in
> >>>    
> >>>      TPL/SPL
> >>>    
> >>>    spl: dm: Kconfig: use more specific prereqs for SPL_REGMAP and
> >>>    
> >>>      SPL_SYSCON
> >>>    
> >>>    spl: dm: Kconfig: split REGMAP/SYSCON support for TPL from SPL
> >>>    spl: dm: Kconfig: SPL_RAM depends on SPL_DM
> >>>    spl: dm: Kconfig: introduce TPL_RAM (in analogy to SPL_RAM)
> >>>    spl: dm: Kconfig: SPL_CLK depens on SPL_DM
> >>>    spl: dm: Kconfig: split CLK support for SPL and TPL
> >>>    spl: dm: Kconfig: split OF_CONTROL and OF_PLATDATA between SPL and
> >>>    TPL
> >>>    spl: dm: use CONFIG_IS_ENABLED to test for the DM option
> >>>    armv8: remove unused low-level modules from TPL
> >>>    armv8: spl: Support separate stack for TPL
> >>>    spl: allow a separate TEXT_BASE, LDSCRIPT and MAX_SIZE for TPL
> >>>    spl: Kconfig: split SYS_MALLOC_SIMPLE for TPL and SPL
> >>>    lib: spl: differentiate between TPL and SPL for
> >>>    
> >>>      libfdt/of_control/of_platdata
> >>>    
> >>>    spl: consistently use $(SPL_TPL_) to select features for SPL and TPL
> >>>    
> >>>      builds
> >>>    
> >>>    spl: add TPL_DRIVER_MISC_SUPPORT option
> >>>    drivers: spl: consistently use the $(SPL_TPL_) macro
> >>>    rockchip: Makefile: allow selective inclusion of sdram_common.o from
> >>>    
> >>>      TPL/SPL/U-Boot
> >>>    
> >>>    rockchip: rk3368: improve Kconfig text for the RK3368
> >>>    rockchip: rk3368: mkimage: add support for the RK3368
> >>>    rockchip: rk3368: pmugrf: add definitions for os_reg[0..3]
> >>>    rockchip: rk3368: define CONFIG_SYS_SDRAM_BASE
> >>>    rockchip: rk3368: spl: define COUNTER_FREQUENCY to 24MHz
> >>>    rockchip: rk3368: spl: add memory layout for TPL and SPL
> >>>    rockchip: rk3368: syscon: MSCH/PMUGRF/GRF support for OF_PLATDATA
> >>>    rockchip: rk3368: grf: use shifted-constants and prefix with RK3368_
> >>>    rockchip: pinctrl: rk3368: add GMAC (RGMII only) support
> >>>    rockchip: pinctrl: rk3368: add support for configuring the MMC pins
> >>>    rockchip: clk: rk3368: implement bandwidth adjust for PLLs
> >>>    rockchip: clk: rk3368: support OF_PLATDATA for the RK3368 clk driver
> >>>    rockchip: clk: rk3368: do not change CPLL/GPLL before returning to
> >>>    
> >>>      BROM
> >>>    
> >>>    rockchip: clk: rk3368: implement DPLL (DRAM PLL) support
> >>>    rockchip: clk: rk3368: define DMA1_SRST_REQ and DMA2_SRST_REQ
> >>>    rockchip: clk: rk3368: implement MMC/SD clock reparenting
> >>>    rockchip: clk: rk3368: support configuring the DRAM PLL (from TPL)
> >>>    rockchip: clk: rk3368: add support for GMAC (SLCK_MAC) clock
> >>>    rockchip: clk: rk3368: mark 'priv' __maybe_unused in
> >>>    
> >>>      rk3368_clk_set_rate()
> >>>    
> >>>    net: gmac_rockchip: Add support for the RK3368 GMAC
> >>>    rockchip: Makefile: streamline SPL/TPL configuration
> >>>    rockchip: rk3368: add DRAM controller driver with DRAM initialisation
> >>>    rockchip: dts: rk3368: add DMC node in rk3368.dtsi
> >>>    rockchip: rk3368: spl: enable SPL_FRAMEWORK in rk3368_common.h
> >>>    rockchip: rk3368: spl: add TPL support
> >>>    rockchip: rk3368: spl: add SPL support
> >>>    rockchip: rk3368: spl: mark SPL and TPL as supported for
> >>>    
> >>>      ROCKCHIP_RK3368
> >>>    
> >>>    rockchip: board: lion-rk3368: add support for the RK3368-uQ7
> >>>    rockchip: board: puma-rk3399: fix warnings in
> >>>    
> >>>      puma_rk3399/fit_spl_atf.its
> >>>   
> >>>   Makefile                                           |   2 +-
> >>>   arch/arm/cpu/armv8/Makefile                        |   4 +-
> >>>   arch/arm/dts/Makefile                              |   1 +
> >>>   arch/arm/dts/rk3368-lion.dts                       | 209 +++++
> >>>   arch/arm/dts/rk3368.dtsi                           |  26 +-
> >>>   arch/arm/include/asm/arch-rockchip/cru_rk3368.h    |  15 +-
> >>>   arch/arm/include/asm/arch-rockchip/ddr_rk3368.h    | 187 ++++
> >>>   arch/arm/include/asm/arch-rockchip/grf_rk3368.h    | 615 +++++++------
> >>>   arch/arm/include/asm/spl.h                         |   1 +
> >>>   arch/arm/lib/crt0_64.S                             |   4 +-
> >>>   arch/arm/mach-rockchip/Kconfig                     |  37 +-
> >>>   arch/arm/mach-rockchip/Makefile                    |  51 +-
> >>>   arch/arm/mach-rockchip/bootrom.c                   |   4 +-
> >>>   arch/arm/mach-rockchip/rk3188-board-spl.c          |   5 +-
> >>>   arch/arm/mach-rockchip/rk3188-board.c              |   2 +-
> >>>   arch/arm/mach-rockchip/rk3288-board-spl.c          |   4 +-
> >>>   arch/arm/mach-rockchip/rk3288-board.c              |   4 +-
> >>>   arch/arm/mach-rockchip/rk3368-board-spl.c          |  91 ++
> >>>   arch/arm/mach-rockchip/rk3368-board-tpl.c          | 158 ++++
> >>>   arch/arm/mach-rockchip/rk3368/Kconfig              |  21 +
> >>>   arch/arm/mach-rockchip/rk3368/Makefile             |   1 -
> >>>   arch/arm/mach-rockchip/rk3368/sdram_rk3368.c       |  60 --
> >>>   arch/arm/mach-rockchip/rk3368/syscon_rk3368.c      |  35 +
> >>>   arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds       |  13 +
> >>>   arch/arm/mach-rockchip/rk3399-board-spl.c          |   4 +-
> >>>   arch/arm/mach-rockchip/save_boot_param.S           |  37 +
> >>>   board/theobroma-systems/lion_rk3368/Kconfig        |  15 +
> >>>   board/theobroma-systems/lion_rk3368/MAINTAINERS    |  10 +
> >>>   board/theobroma-systems/lion_rk3368/Makefile       |   7 +
> >>>   board/theobroma-systems/lion_rk3368/README         |  60 ++
> >>>   .../theobroma-systems/lion_rk3368/fit_spl_atf.its  |  51 ++
> >>>   board/theobroma-systems/lion_rk3368/lion_rk3368.c  |  25 +
> >>>   board/theobroma-systems/puma_rk3399/README         |   2 +-
> >>>   .../theobroma-systems/puma_rk3399/fit_spl_atf.its  |  20 +-
> >>>   common/Makefile                                    |   8 +-
> >>>   common/spl/Kconfig                                 |  39 +
> >>>   common/spl/Makefile                                |  35 +-
> >>>   common/spl/spl.c                                   |   5 +-
> >>>   common/spl/spl_bootrom.c                           |  27 +
> >>>   configs/evb-rk3288_defconfig                       |   2 +-
> >>>   configs/fennec-rk3288_defconfig                    |   2 +-
> >>>   configs/firefly-rk3288_defconfig                   |   2 +-
> >>>   configs/lion-rk3368_defconfig                      |  79 ++
> >>>   configs/miqi-rk3288_defconfig                      |   2 +-
> >>>   configs/popmetal-rk3288_defconfig                  |   2 +-
> >>>   configs/rock2_defconfig                            |   2 +-
> >>>   configs/rock_defconfig                             |   2 +-
> >>>   configs/tinker-rk3288_defconfig                    |   2 +-
> >>>   doc/README.rockchip                                |   2 +-
> >>>   .../clock/rockchip,rk3368-dmc.txt                  |  67 ++
> >>>   drivers/Makefile                                   |  36 +-
> >>>   drivers/clk/Kconfig                                |  12 +-
> >>>   drivers/clk/Makefile                               |   2 +-
> >>>   drivers/clk/rockchip/clk_rk3368.c                  | 222 ++++-
> >>>   drivers/core/Kconfig                               |  23 +-
> >>>   drivers/core/Makefile                              |   4 +-
> >>>   drivers/net/gmac_rockchip.c                        |  54 ++
> >>>   drivers/pinctrl/rockchip/pinctrl_rk3368.c          | 101 ++-
> >>>   drivers/ram/Kconfig                                |  11 +-
> >>>   drivers/ram/Makefile                               |   2 +
> >>>   drivers/ram/rockchip/Makefile                      |   7 +
> >>>   drivers/ram/rockchip/dmc-rk3368.c                  | 990
> >>>   +++++++++++++++++++++ dts/Kconfig                                    
> >>>      |  29 +
> >>>   include/configs/lion_rk3368.h                      |  19 +
> >>>   include/configs/rk3188_common.h                    |   2 +-
> >>>   include/configs/rk3288_common.h                    |   2 +-
> >>>   include/configs/rk3368_common.h                    |  15 +
> >>>   include/configs/rock.h                             |   2 +-
> >>>   include/configs/rockchip-common.h                  |   2 +-
> >>>   include/dt-bindings/memory/rk3368-dmc.h            |  30 +
> >>>   include/linux/kconfig.h                            |  13 +
> >>>   include/spl.h                                      |  10 +
> >>>   lib/Makefile                                       |  10 +-
> >>>   scripts/Makefile.spl                               |  14 +-
> >>>   scripts/config_whitelist.txt                       |   4 +
> >>>   tools/rkcommon.c                                   |   1 +
> >>>   76 files changed, 3142 insertions(+), 534 deletions(-)
> >>>   create mode 100644 arch/arm/dts/rk3368-lion.dts
> >>>   create mode 100644 arch/arm/include/asm/arch-rockchip/ddr_rk3368.h
> >>>   create mode 100644 arch/arm/mach-rockchip/rk3368-board-spl.c
> >>>   create mode 100644 arch/arm/mach-rockchip/rk3368-board-tpl.c
> >>>   delete mode 100644 arch/arm/mach-rockchip/rk3368/sdram_rk3368.c
> >>>   create mode 100644 arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds
> >>>   create mode 100644 board/theobroma-systems/lion_rk3368/Kconfig
> >>>   create mode 100644 board/theobroma-systems/lion_rk3368/MAINTAINERS
> >>>   create mode 100644 board/theobroma-systems/lion_rk3368/Makefile
> >>>   create mode 100644 board/theobroma-systems/lion_rk3368/README
> >>>   create mode 100644 board/theobroma-systems/lion_rk3368/fit_spl_atf.its
> >>>   create mode 100644 board/theobroma-systems/lion_rk3368/lion_rk3368.c
> >>>   create mode 100644 common/spl/spl_bootrom.c
> >>>   create mode 100644 configs/lion-rk3368_defconfig
> >>>   create mode 100644
> >>>   doc/device-tree-bindings/clock/rockchip,rk3368-dmc.txt
> >>>   create mode 100644 drivers/ram/rockchip/Makefile
> >>>   create mode 100644 drivers/ram/rockchip/dmc-rk3368.c
> >>>   create mode 100644 include/configs/lion_rk3368.h
> >>>   create mode 100644 include/dt-bindings/memory/rk3368-dmc.h

  reply	other threads:[~2017-07-24  8:59 UTC|newest]

Thread overview: 75+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-18 20:35 [U-Boot] [PATCH 00/52] Support OF_PLATDATA in TPL, enable RK3368 DRAM init and add RK3368-uQ7 Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 01/52] spl: add a 'return to bootrom' boot method Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 02/52] spl: configure 'return to bootrom' separately for SPL and TPL Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 03/52] rockchip: back-to-bootrom: add 'back-to-bootrom' support for AArch64 Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 04/52] rockchip: back-to-bootrom: split BACK_TO_BOOTROM for TPL/SPL Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 05/52] rockchip: back-to-bootrom: simplify the #ifdef-check for LIBGENERIC in TPL/SPL Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 06/52] spl: dm: Kconfig: use more specific prereqs for SPL_REGMAP and SPL_SYSCON Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 07/52] spl: dm: Kconfig: split REGMAP/SYSCON support for TPL from SPL Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 08/52] spl: dm: Kconfig: SPL_RAM depends on SPL_DM Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 09/52] spl: dm: Kconfig: introduce TPL_RAM (in analogy to SPL_RAM) Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 10/52] spl: dm: Kconfig: SPL_CLK depens on SPL_DM Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 11/52] spl: dm: Kconfig: split CLK support for SPL and TPL Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 12/52] spl: dm: Kconfig: split OF_CONTROL and OF_PLATDATA between " Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 13/52] spl: dm: use CONFIG_IS_ENABLED to test for the DM option Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 14/52] armv8: remove unused low-level modules from TPL Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 15/52] armv8: spl: Support separate stack for TPL Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 16/52] spl: allow a separate TEXT_BASE, LDSCRIPT and MAX_SIZE " Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 17/52] spl: Kconfig: split SYS_MALLOC_SIMPLE for TPL and SPL Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 18/52] lib: spl: differentiate between TPL and SPL for libfdt/of_control/of_platdata Philipp Tomsich
2017-07-18 20:35 ` [U-Boot] [PATCH 19/52] spl: consistently use $(SPL_TPL_) to select features for SPL and TPL builds Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 20/52] spl: add TPL_DRIVER_MISC_SUPPORT option Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 21/52] drivers: spl: consistently use the $(SPL_TPL_) macro Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 22/52] rockchip: Makefile: allow selective inclusion of sdram_common.o from TPL/SPL/U-Boot Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 23/52] rockchip: rk3368: improve Kconfig text for the RK3368 Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 24/52] rockchip: rk3368: mkimage: add support " Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 25/52] rockchip: rk3368: pmugrf: add definitions for os_reg[0..3] Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 26/52] rockchip: rk3368: define CONFIG_SYS_SDRAM_BASE Philipp Tomsich
2017-07-18 21:13   ` Heiko Stuebner
2017-07-18 20:36 ` [U-Boot] [PATCH 27/52] rockchip: rk3368: spl: define COUNTER_FREQUENCY to 24MHz Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 28/52] rockchip: rk3368: spl: add memory layout for TPL and SPL Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 29/52] rockchip: rk3368: syscon: MSCH/PMUGRF/GRF support for OF_PLATDATA Philipp Tomsich
2017-07-21  3:21   ` Andy Yan
2017-07-18 20:36 ` [U-Boot] [PATCH 30/52] rockchip: rk3368: grf: use shifted-constants and prefix with RK3368_ Philipp Tomsich
2017-07-21  3:50   ` Andy Yan
2017-07-21  8:34     ` Dr. Philipp Tomsich
2017-07-24  8:34       ` Andy Yan
2017-07-24  9:11         ` Dr. Philipp Tomsich
2017-07-24 12:45           ` Kever Yang
2017-07-24 13:10             ` Dr. Philipp Tomsich
2017-07-24 16:43               ` Simon Glass
2017-07-24 16:49                 ` Dr. Philipp Tomsich
2017-07-24 17:17                   ` Simon Glass
2017-07-24 18:24                     ` Dr. Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 31/52] rockchip: pinctrl: rk3368: add GMAC (RGMII only) support Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 32/52] rockchip: pinctrl: rk3368: add support for configuring the MMC pins Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 33/52] rockchip: clk: rk3368: implement bandwidth adjust for PLLs Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 34/52] rockchip: clk: rk3368: support OF_PLATDATA for the RK3368 clk driver Philipp Tomsich
2017-07-21  6:36   ` Andy Yan
2017-07-21  8:26     ` Dr. Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 35/52] rockchip: clk: rk3368: do not change CPLL/GPLL before returning to BROM Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 36/52] rockchip: clk: rk3368: implement DPLL (DRAM PLL) support Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 37/52] rockchip: clk: rk3368: define DMA1_SRST_REQ and DMA2_SRST_REQ Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 38/52] rockchip: clk: rk3368: implement MMC/SD clock reparenting Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 39/52] rockchip: clk: rk3368: support configuring the DRAM PLL (from TPL) Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 40/52] rockchip: clk: rk3368: add support for GMAC (SLCK_MAC) clock Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 41/52] rockchip: clk: rk3368: mark 'priv' __maybe_unused in rk3368_clk_set_rate() Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 42/52] net: gmac_rockchip: Add support for the RK3368 GMAC Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 43/52] rockchip: Makefile: streamline SPL/TPL configuration Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 44/52] rockchip: rk3368: add DRAM controller driver with DRAM initialisation Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 45/52] rockchip: dts: rk3368: add DMC node in rk3368.dtsi Philipp Tomsich
2017-07-21  7:15   ` Andy Yan
2017-07-18 20:36 ` [U-Boot] [PATCH 46/52] rockchip: rk3368: spl: enable SPL_FRAMEWORK in rk3368_common.h Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 47/52] rockchip: rk3368: spl: add TPL support Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 48/52] rockchip: rk3368: spl: add SPL support Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 49/52] rockchip: rk3368: spl: mark SPL and TPL as supported for ROCKCHIP_RK3368 Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 50/52] rockchip: board: lion-rk3368: add support for the RK3368-uQ7 Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 51/52] rockchip: board: puma-rk3399: fix warnings in puma_rk3399/fit_spl_atf.its Philipp Tomsich
2017-07-18 20:36 ` [U-Boot] [PATCH 52/52] rockchip: board: puma_rk3399: rename ATF firmware Philipp Tomsich
2017-07-21  2:33 ` [U-Boot] [PATCH 00/52] Support OF_PLATDATA in TPL, enable RK3368 DRAM init and add RK3368-uQ7 Andy Yan
2017-07-21 10:55   ` Dr. Philipp Tomsich
2017-07-24  8:38     ` Andy Yan
2017-07-24  8:59       ` Heiko Stübner [this message]
2017-07-24  9:03         ` Dr. Philipp Tomsich
2017-07-24  9:23         ` Łukasz Majewski
2017-07-24  9:59           ` Heiko Stübner

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=2590116.09N9GbK5LB@diego \
    --to=heiko@sntech.de \
    --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 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.