From mboxrd@z Thu Jan 1 00:00:00 1970 From: huan.he at rock-chips.com Date: Fri, 12 Jan 2018 11:58:27 +0800 Subject: [U-Boot] [PATCH 0/3] These three patches add spl for rv1108 In-Reply-To: <1515725687-26143-1-git-send-email-huan.he@rock-chips.com> References: <1515725687-26143-1-git-send-email-huan.he@rock-chips.com>, <818fe5f0-7fe8-156c-d8b4-7b6fa5c8ebd8@rock-chips.com> Message-ID: <201801121158266886970@rock-chips.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Recommend to use patman so send the patch, so that the patch can send in sequence and the following patch with reply-to TAG in header. How much difference between this driver and rk3036 sdram driver? Thanks, - Kever On 01/12/2018 10:54 AM, zhihuan he wrote: > 1.add sdram driver in spl for rv1108. > 2.set rv1108 spl config. > 3.change the style of report sdram capacity to u-boot. > > > zhihuan he (3): > rockchip: add rv1108 sdram driver > rockchip: Add RV1108 SPL support > rockchip: updata the style of reporting sdram cap > > arch/arm/include/asm/arch-rockchip/cru_rv1108.h | 152 +++-- > arch/arm/include/asm/arch-rockchip/grf_rv1108.h | 137 +++-- > arch/arm/include/asm/arch-rockchip/sdram_rv1108.h | 581 +++++++++++++++++++ > arch/arm/mach-rockchip/Kconfig | 2 + > arch/arm/mach-rockchip/Makefile | 1 + > arch/arm/mach-rockchip/rv1108-board-spl.c | 80 +++ > arch/arm/mach-rockchip/rv1108/Makefile | 1 + > arch/arm/mach-rockchip/rv1108/rv1108.c | 30 + > arch/arm/mach-rockchip/rv1108/sdram_rv1108.c | 643 ++++++++++++++++++++++ > board/rockchip/evb_rv1108/evb_rv1108.c | 47 -- > configs/evb-rv1108_defconfig | 14 + > include/configs/rv1108_common.h | 11 + > 12 files changed, 1565 insertions(+), 134 deletions(-) > create mode 100644 arch/arm/include/asm/arch-rockchip/sdram_rv1108.h > create mode 100644 arch/arm/mach-rockchip/rv1108-board-spl.c > create mode 100644 arch/arm/mach-rockchip/rv1108/sdram_rv1108.c >