All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/3] These three patches add spl for rv1108
@ 2018-01-12  2:54 zhihuan he
  2018-01-12  3:37 ` Kever Yang
  0 siblings, 1 reply; 3+ messages in thread
From: zhihuan he @ 2018-01-12  2:54 UTC (permalink / raw)
  To: u-boot


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

-- 
2.0.0

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

* [U-Boot] [PATCH 0/3] These three patches add spl for rv1108
  2018-01-12  2:54 [U-Boot] [PATCH 0/3] These three patches add spl for rv1108 zhihuan he
@ 2018-01-12  3:37 ` Kever Yang
  2018-01-12  3:58   ` huan.he at rock-chips.com
  0 siblings, 1 reply; 3+ messages in thread
From: Kever Yang @ 2018-01-12  3:37 UTC (permalink / raw)
  To: u-boot

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
>

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

* [U-Boot] [PATCH 0/3] These three patches add spl for rv1108
  2018-01-12  3:37 ` Kever Yang
@ 2018-01-12  3:58   ` huan.he at rock-chips.com
  0 siblings, 0 replies; 3+ messages in thread
From: huan.he at rock-chips.com @ 2018-01-12  3:58 UTC (permalink / raw)
  To: u-boot

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
>

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

end of thread, other threads:[~2018-01-12  3:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-12  2:54 [U-Boot] [PATCH 0/3] These three patches add spl for rv1108 zhihuan he
2018-01-12  3:37 ` Kever Yang
2018-01-12  3:58   ` huan.he at rock-chips.com

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.