public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Chin Liang See <clsee@altera.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] arm: socfpga: Add support for the Terasic DE-0 Atlas board
Date: Tue, 1 Sep 2015 03:45:56 -0500	[thread overview]
Message-ID: <1441097156.1921.0.camel@clsee-VirtualBox> (raw)
In-Reply-To: <201509011030.38235.marex@denx.de>

On Tue, 2015-09-01 at 10:30 +0200, marex at denx.de wrote:
> On Tuesday, September 01, 2015 at 06:54:14 AM, Chin Liang See wrote:
> > On Mon, 2015-08-31 at 14:57 -0500, dinguyen at opensource.altera.com wrote:
> > > From: Dinh Nguyen <dinguyen@opensource.altera.com>
> > > 
> > > Add support for the Terasic DE0-Nano/Atlas-SoC Kit, which is a CycloneV
> > > based board. The board can boot from SD/MMC. Ethernet is a bit different
> > > because it has a KSZ9031 PHY, so for now, ethernet doesn't quite work
> > > yet, as a few patches are needed to support the PHY.
> > > 
> > > Signed-off-by: Dinh Nguyen <dinguyen@opensource.altera.com>
> > > ---
> > > Hi Marek,
> > > 
> > > This patch is based on your u-boot-socfpga/wip/boards branch.
> > > 
> > > Thanks,
> > > Dinh
> > > ---
> > > 
> > >  arch/arm/dts/Makefile                        |   1 +
> > >  arch/arm/dts/socfpga_cyclone5_de0_sockit.dts |  61 +++
> > >  arch/arm/mach-socfpga/Kconfig                |   7 +
> > >  board/terasic/de0/MAINTAINERS                |   5 +
> > >  board/terasic/de0/Makefile                   |   9 +
> > >  board/terasic/de0/qts/iocsr_config.h         | 658
> > >  +++++++++++++++++++++++++++ board/terasic/de0/qts/pinmux_config.h      
> > >   | 220 +++++++++
> > >  board/terasic/de0/qts/pll_config.h           |  85 ++++
> > >  board/terasic/de0/qts/sdram_config.h         | 342 ++++++++++++++
> > >  board/terasic/de0/socfpga.c                  |  22 +
> > >  configs/socfpga_de0_defconfig                |  21 +
> > >  include/configs/socfpga_de0.h                |  88 ++++
> > >  12 files changed, 1519 insertions(+)
> > >  create mode 100644 arch/arm/dts/socfpga_cyclone5_de0_sockit.dts
> > >  create mode 100644 board/terasic/de0/MAINTAINERS
> > >  create mode 100644 board/terasic/de0/Makefile
> > >  create mode 100644 board/terasic/de0/qts/iocsr_config.h
> > >  create mode 100644 board/terasic/de0/qts/pinmux_config.h
> > >  create mode 100644 board/terasic/de0/qts/pll_config.h
> > >  create mode 100644 board/terasic/de0/qts/sdram_config.h
> > >  create mode 100644 board/terasic/de0/socfpga.c
> > >  create mode 100644 configs/socfpga_de0_defconfig
> > >  create mode 100644 include/configs/socfpga_de0.h
> > > 
> > > diff --git a/include/configs/socfpga_de0.h
> > > b/include/configs/socfpga_de0.h new file mode 100644
> > > index 0000000..47e18ba
> > > --- /dev/null
> > > +++ b/include/configs/socfpga_de0.h
> > > @@ -0,0 +1,88 @@
> > > +/*
> > > + * Copyright (C) 2015 Marek Vasut <marex@denx.de>
> > > + *
> > > + * SPDX-License-Identifier:	GPL-2.0+
> > > + */
> > > +#ifndef __CONFIG_TERASIC_DE0_H__
> > > +#define __CONFIG_TERASIC_DE0_H__
> > > +
> > > +#include <asm/arch/socfpga_base_addrs.h>
> > > +
> > > +/* U-Boot Commands */
> > > +#define CONFIG_SYS_NO_FLASH
> > > +#define CONFIG_DOS_PARTITION
> > > +#define CONFIG_FAT_WRITE
> > > +#define CONFIG_HW_WATCHDOG
> > > +
> > > +#define CONFIG_CMD_ASKENV
> > > +#define CONFIG_CMD_BOOTZ
> > > +#define CONFIG_CMD_CACHE
> > > +#define CONFIG_CMD_DFU
> > > +#define CONFIG_CMD_DHCP
> > > +#define CONFIG_CMD_EXT4
> > > +#define CONFIG_CMD_EXT4_WRITE
> > > +#define CONFIG_CMD_FAT
> > > +#define CONFIG_CMD_FS_GENERIC
> > > +#define CONFIG_CMD_GPIO
> > > +#define CONFIG_CMD_GREPENV
> > > +#define CONFIG_CMD_MII
> > > +#define CONFIG_CMD_MMC
> > > +#define CONFIG_CMD_PING
> > > +#define CONFIG_CMD_USB
> > > +#define CONFIG_CMD_USB_MASS_STORAGE
> > > +
> > > +/* Memory configurations */
> > > +#define PHYS_SDRAM_1_SIZE		0x40000000	/* 1GiB */
> > > +
> > > +/* Booting Linux */
> > > +#define CONFIG_BOOTDELAY	3
> > > +#define CONFIG_BOOTFILE		"fitImage"
> > 
> > Wonder this should be zImage as the mmcload still using zImage?
> 
> Or maybe the mmcload should be fixed instead ; fitImage is preferred.

Yup, I agreed that as we can enable checksum even its zimage.

Thanks
Chin Liang

      reply	other threads:[~2015-09-01  8:45 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-31 19:57 [U-Boot] [PATCH] arm: socfpga: Add support for the Terasic DE-0 Atlas board dinguyen at opensource.altera.com
2015-08-31 22:23 ` Marek Vasut
2015-09-01  4:56   ` Chin Liang See
2015-09-01  8:31     ` Marek Vasut
2015-09-01  7:38   ` Pavel Machek
2015-09-01  8:33     ` Marek Vasut
2015-09-01 15:12       ` Dinh Nguyen
2015-09-01 15:36         ` Marek Vasut
2015-09-01 21:37           ` Dinh Nguyen
2015-09-02  8:05             ` Marek Vasut
2015-09-01 15:09   ` Dinh Nguyen
2015-09-01 15:37     ` Marek Vasut
2015-09-01  4:54 ` Chin Liang See
2015-09-01  8:30   ` Marek Vasut
2015-09-01  8:45     ` Chin Liang See [this message]

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=1441097156.1921.0.camel@clsee-VirtualBox \
    --to=clsee@altera.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