All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lin Huang <hl@rock-chips.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 00/20] Bring up rk3036 uboot
Date: Fri,  6 Nov 2015 17:33:14 +0800	[thread overview]
Message-ID: <1446802414-31132-1-git-send-email-hl@rock-chips.com> (raw)

This series patch bring up rk3036 uboot, since rk3036 only 4K size
SRAM for SPL, so in SPL stage only support timer, uart, sdram driver,
and back to bootrom when finish ddr initial, and boot up second stage
from bootrom.

Jeffy Chen (2):
  rockchip: Add max init size & chip tag configs
  rockchip: Add support for rk's second level loader

Lin Huang (18):
  rockchip: add timer driver
  rockchip: move SYS_MALLOC_F_LEN to rk3288 own Kconfig
  rockchip: rename board-spl.c to rk3288-board-spl.c
  rockchip: add config decide whether to build common.c
  dm: core: Add SPL Kconfig for REGMAP and SYSCON
  rockchip: serial driver support rk3036
  rockchip: Bring in RK3036 device tree file includes and bindings
  rockchip: rk3036: Add clock driver
  rockchip: rk3036: Add header files for GRF
  rockchip: rk3036: Add Soc reset driver
  rockchip: rk3036: Add a simple syscon driver
  rockchip: rk3036: Add pinctrl driver
  rockchip: Add an rk3036 MMC driver
  rockchip: add early uart driver
  rockchip: add rk3036 sdram driver
  rockchip: rk3036: Add core Soc start-up code
  rockchip: Add basic support for evb-rk3036 board
  rockchip: doc: show packet rk3036 uboot image

 arch/arm/dts/Makefile                             |   3 +-
 arch/arm/dts/rk3036-sdk.dts                       |  46 ++
 arch/arm/dts/rk3036.dtsi                          | 427 +++++++++++++
 arch/arm/include/asm/arch-rockchip/cru_rk3036.h   | 168 +++++
 arch/arm/include/asm/arch-rockchip/grf_rk3036.h   | 493 +++++++++++++++
 arch/arm/include/asm/arch-rockchip/sdram_rk3036.h | 336 ++++++++++
 arch/arm/include/asm/arch-rockchip/timer.h        |  22 +
 arch/arm/include/asm/arch-rockchip/uart.h         |  44 ++
 arch/arm/mach-rockchip/Kconfig                    |  13 +-
 arch/arm/mach-rockchip/Makefile                   |  10 +-
 arch/arm/mach-rockchip/board-spl.c                | 294 ---------
 arch/arm/mach-rockchip/board.c                    |   1 +
 arch/arm/mach-rockchip/rk3036-board-spl.c         |  53 ++
 arch/arm/mach-rockchip/rk3036/Kconfig             |  17 +
 arch/arm/mach-rockchip/rk3036/Makefile            |  13 +
 arch/arm/mach-rockchip/rk3036/reset_rk3036.c      |  45 ++
 arch/arm/mach-rockchip/rk3036/save_boot_param.S   |  34 +
 arch/arm/mach-rockchip/rk3036/sdram_rk3036.c      | 729 ++++++++++++++++++++++
 arch/arm/mach-rockchip/rk3036/syscon_rk3036.c     |  21 +
 arch/arm/mach-rockchip/rk3288-board-spl.c         | 277 ++++++++
 arch/arm/mach-rockchip/rk3288/Kconfig             |   3 +
 arch/arm/mach-rockchip/rk_early_print.c           |  56 ++
 arch/arm/mach-rockchip/rk_timer.c                 |  48 ++
 board/evb_rk3036/evb_rk3036/Kconfig               |  15 +
 board/evb_rk3036/evb_rk3036/MAINTAINERS           |   0
 board/evb_rk3036/evb_rk3036/Makefile              |   7 +
 board/evb_rk3036/evb_rk3036/evb_rk3036.c          |  48 ++
 configs/chromebook_jerry_defconfig                |   2 +
 configs/evb-rk3036_defconfig                      |  25 +
 configs/firefly-rk3288_defconfig                  |   2 +
 configs/sandbox_defconfig                         |   2 +
 doc/README.rockchip                               |   7 +
 drivers/clk/Makefile                              |   1 +
 drivers/clk/clk_rk3036.c                          | 414 ++++++++++++
 drivers/core/Kconfig                              |  19 +
 drivers/core/Makefile                             |   4 +-
 drivers/mmc/Kconfig                               |   9 +
 drivers/mmc/Makefile                              |   1 +
 drivers/mmc/rockchip_3036_dw_mmc.c                | 485 ++++++++++++++
 drivers/pinctrl/Kconfig                           |  18 +
 drivers/pinctrl/rockchip/Makefile                 |   1 +
 drivers/pinctrl/rockchip/pinctrl_rk3036.c         | 276 ++++++++
 drivers/serial/serial_rockchip.c                  |   1 +
 include/configs/evb_rk3036.h                      |  12 +
 include/configs/rk3036_common.h                   | 111 ++++
 include/configs/rk3288_common.h                   |   9 +-
 include/dt-bindings/clock/rk3036-cru.h            | 186 ++++++
 tools/Makefile                                    |   6 +
 tools/rkcommon.c                                  |  26 +-
 tools/rkcommon.h                                  |   4 +-
 tools/rkimage.c                                   |   2 +-
 tools/rksd.c                                      |   6 +-
 tools/rkspi.c                                     |   6 +-
 53 files changed, 4529 insertions(+), 329 deletions(-)
 create mode 100644 arch/arm/dts/rk3036-sdk.dts
 create mode 100644 arch/arm/dts/rk3036.dtsi
 create mode 100644 arch/arm/include/asm/arch-rockchip/cru_rk3036.h
 create mode 100644 arch/arm/include/asm/arch-rockchip/grf_rk3036.h
 create mode 100644 arch/arm/include/asm/arch-rockchip/sdram_rk3036.h
 create mode 100644 arch/arm/include/asm/arch-rockchip/timer.h
 create mode 100644 arch/arm/include/asm/arch-rockchip/uart.h
 delete mode 100644 arch/arm/mach-rockchip/board-spl.c
 create mode 100644 arch/arm/mach-rockchip/rk3036-board-spl.c
 create mode 100644 arch/arm/mach-rockchip/rk3036/Kconfig
 create mode 100644 arch/arm/mach-rockchip/rk3036/Makefile
 create mode 100644 arch/arm/mach-rockchip/rk3036/reset_rk3036.c
 create mode 100644 arch/arm/mach-rockchip/rk3036/save_boot_param.S
 create mode 100644 arch/arm/mach-rockchip/rk3036/sdram_rk3036.c
 create mode 100644 arch/arm/mach-rockchip/rk3036/syscon_rk3036.c
 create mode 100644 arch/arm/mach-rockchip/rk3288-board-spl.c
 create mode 100644 arch/arm/mach-rockchip/rk_early_print.c
 create mode 100644 arch/arm/mach-rockchip/rk_timer.c
 create mode 100644 board/evb_rk3036/evb_rk3036/Kconfig
 create mode 100644 board/evb_rk3036/evb_rk3036/MAINTAINERS
 create mode 100644 board/evb_rk3036/evb_rk3036/Makefile
 create mode 100644 board/evb_rk3036/evb_rk3036/evb_rk3036.c
 create mode 100644 configs/evb-rk3036_defconfig
 create mode 100644 drivers/clk/clk_rk3036.c
 create mode 100644 drivers/mmc/rockchip_3036_dw_mmc.c
 create mode 100644 drivers/pinctrl/rockchip/pinctrl_rk3036.c
 create mode 100644 include/configs/evb_rk3036.h
 create mode 100644 include/configs/rk3036_common.h
 create mode 100644 include/dt-bindings/clock/rk3036-cru.h

-- 
1.9.1

             reply	other threads:[~2015-11-06  9:33 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-06  9:33 Lin Huang [this message]
2015-11-06  9:33 ` [U-Boot] [PATCH v3 01/17] rockchip: add timer driver Lin Huang
2015-11-06  9:33 ` [U-Boot] [PATCH v3 02/17] rockchip: move SYS_MALLOC_F_LEN to rk3288 own Kconfig Lin Huang
2015-11-06 12:08   ` Simon Glass
2015-11-09  2:59     ` hl
2015-11-09  4:46       ` Simon Glass
2015-11-09  4:51         ` hl
2015-11-06  9:33 ` [U-Boot] [PATCH v3 03/17] rockchip: rename board-spl.c to rk3288-board-spl.c Lin Huang
2015-11-06  9:33 ` [U-Boot] [PATCH v3 04/17] rockchip: add config decide whether to build common.c Lin Huang
2015-11-06  9:33 ` [U-Boot] [PATCH v3 05/17] dm: core: Add SPL Kconfig for REGMAP and SYSCON Lin Huang
2015-11-06  9:33 ` [U-Boot] [PATCH v3 06/17] rockchip: serial driver support rk3036 Lin Huang
2015-11-06  9:33 ` [U-Boot] [PATCH v3 07/17] rockchip: Bring in RK3036 device tree file includes and bindings Lin Huang
2015-11-06  9:33 ` [U-Boot] [PATCH v3 08/17] rockchip: rk3036: Add clock driver Lin Huang
2015-11-06  9:33 ` [U-Boot] [PATCH v3 09/17] rockchip: rk3036: Add header files for GRF Lin Huang
2015-11-06  9:33 ` [U-Boot] [PATCH v3 10/17] rockchip: rk3036: Add Soc reset driver Lin Huang
2015-11-06  9:33 ` [U-Boot] [PATCH v3 11/17] rockchip: rk3036: Add a simple syscon driver Lin Huang
2015-11-06  9:33 ` [U-Boot] [PATCH v3 12/17] rockchip: rk3036: Add pinctrl driver Lin Huang
2015-11-06  9:33 ` [U-Boot] [PATCH v3 13/17] rockchip: Add an rk3036 MMC driver Lin Huang
2015-11-06  9:33 ` [U-Boot] [PATCH v3 14/17] rockchip: add early uart driver Lin Huang

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=1446802414-31132-1-git-send-email-hl@rock-chips.com \
    --to=hl@rock-chips.com \
    --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.