From: hl <hl@rock-chips.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v1 12/12] rockchip: Add basic support for evb-rk3036 board
Date: Fri, 23 Oct 2015 10:50:58 +0800 [thread overview]
Message-ID: <5629A092.5030804@rock-chips.com> (raw)
In-Reply-To: <CAPnjgZ1Ts71JQ3YpykPKDR+eA_wBpkT9zMRN_qTNrud7Kvw3Qw@mail.gmail.com>
Hi Simon,
On 23/10/15 09:34, Simon Glass wrote:
> Hi,
>
> On 22 October 2015 at 19:27, hl <hl@rock-chips.com> wrote:
>> Hi Simon,
>>
>>
>> On 22/10/15 22:08, Simon Glass wrote:
>>> On 20 October 2015 at 20:37, Lin Huang <hl@rock-chips.com> wrote:
>>>> This add some basic files required to allow the board to dispaly
>>>> serial message and can run command(mmc info etc)
>>>>
>>>> Signed-off-by: Lin Huang <hl@rock-chips.com>
>>>> ---
>>>> Changes in v1:
>>>> - clean copyright announcement
>>>>
>>>> arch/arm/dts/Makefile | 3 ++-
>>>> arch/arm/dts/rk3036-sdk.dts | 46
>>>> ++++++++++++++++++++++++++++++++
>>>> 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 | 7 +++++
>>>> configs/evb-rk3036_defconfig | 41
>>>> ++++++++++++++++++++++++++++
>>>> include/configs/evb_rk3036.h | 12 +++++++++
>>>> 8 files changed, 130 insertions(+), 1 deletion(-)
>>>> create mode 100644 arch/arm/dts/rk3036-sdk.dts
>>>> 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 include/configs/evb_rk3036.h
>>>>
>>> Can you also please update doc/README.rockchip with build instructions
>>> and how to get an image onto this board?
>> I try to figure out how to merge binary blob and u-boot-dtb.bin use
>> mkimage,
>> i will update doc/README ASAP when i finish it. And where should the
>> binary blob store?
> Hopefully we don't need the binary block, and u-boot-spl.bin will
> contain all the code needed. There are boards already with tiny SPL
> images.
>
> Then you can just provide instructions on how to build the image,
> perhaps with the 'dd' tool. You don't need to build an entire image in
> the build system - just provide instructions on how someone might put
> the SPL and U-Boot onto an SD card and get it to boot.
Okay, i will implement rk3036 sdram driver first, and try to run it
in SPL,
it may take some times.
> Regards,
> Simon
>
>
>
--
Lin Huang
next prev parent reply other threads:[~2015-10-23 2:50 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-21 2:37 [U-Boot] [PATCH v1 00/12] Bring up rk3036 uboot Lin Huang
2015-10-21 2:37 ` [U-Boot] [PATCH v1 01/12] rockchip: define SUPPORT_SPL and SPL config in RK3288 config Lin Huang
2015-10-22 14:07 ` Simon Glass
2015-10-22 16:01 ` Eddie Cai
2015-10-22 16:30 ` Simon Glass
2015-10-23 0:54 ` Eddie Cai
2015-10-23 1:04 ` Simon Glass
2015-10-23 1:21 ` hl
2015-10-26 4:12 ` Simon Glass
2015-10-27 0:27 ` hl
2015-10-27 19:03 ` Simon Glass
2015-10-23 0:50 ` hl
2015-10-23 0:54 ` Simon Glass
2015-10-21 2:37 ` [U-Boot] [PATCH v1 02/12] rockchip: implement rockchip timer init function Lin Huang
2015-10-22 14:07 ` Simon Glass
2015-10-21 2:37 ` [U-Boot] [PATCH v1 03/12] rockchip: serial driver support rk3036 Lin Huang
2015-10-22 14:07 ` Simon Glass
2015-10-23 0:51 ` hl
2015-10-21 2:37 ` [U-Boot] [PATCH v1 04/12] rockchip: Bring in RK3036 device tree file includes and bindings Lin Huang
2015-10-22 14:07 ` Simon Glass
2015-10-21 2:37 ` [U-Boot] [PATCH v1 05/12] rockchip: rk3036: Add clock driver Lin Huang
2015-10-22 14:07 ` Simon Glass
2015-10-23 0:56 ` hl
2015-10-21 2:37 ` [U-Boot] [PATCH v1 06/12] rockchip: rk3036: Add header files for GRF Lin Huang
2015-10-22 14:07 ` Simon Glass
2015-10-21 2:37 ` [U-Boot] [PATCH v1 07/12] rockchip: rk3036: Add Soc reset driver Lin Huang
2015-10-22 14:07 ` Simon Glass
2015-10-21 2:37 ` [U-Boot] [PATCH v1 08/12] rockchip: rk3036: Add a simple syscon driver Lin Huang
2015-10-22 14:08 ` Simon Glass
2015-10-21 2:37 ` [U-Boot] [PATCH v1 09/12] rockchip: rk3036: Add pinctrl driver Lin Huang
2015-10-22 14:08 ` Simon Glass
2015-10-21 2:37 ` [U-Boot] [PATCH v1 10/12] rockchip: Add an rk3036 MMC driver Lin Huang
2015-10-22 14:08 ` Simon Glass
2015-10-23 1:03 ` hl
2015-10-21 2:37 ` [U-Boot] [PATCH v1 11/12] rockchip: rk3036: Add core Soc start-up code Lin Huang
2015-10-22 14:08 ` Simon Glass
2015-10-21 2:37 ` [U-Boot] [PATCH v1 12/12] rockchip: Add basic support for evb-rk3036 board Lin Huang
2015-10-22 14:08 ` Simon Glass
2015-10-23 1:27 ` hl
2015-10-23 1:34 ` Simon Glass
2015-10-23 2:50 ` hl [this message]
2015-10-23 2:53 ` Simon Glass
-- strict thread matches above, loose matches on Subject: below --
2015-10-21 5:37 [U-Boot] [PATCH v1 00/12] Bring up rk3036 uboot Lin Huang
2015-10-21 5:37 ` [U-Boot] [PATCH v1 12/12] rockchip: Add basic support for evb-rk3036 board 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=5629A092.5030804@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox