public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH V5] ARM: mx6: Add support for Kosagi Novena
Date: Thu, 9 Oct 2014 16:08:04 +0200	[thread overview]
Message-ID: <201410091608.04662.marex@denx.de> (raw)
In-Reply-To: <54363AED.3030302@denx.de>

On Thursday, October 09, 2014 at 09:36:13 AM, Stefano Babic wrote:
> Hi Marek,
> 
> On 06/10/2014 18:02, Marek Vasut wrote:
> > Add support for the Kosagi Novena board. Currently supported are:
> > - I2C busses
> > - FEC Ethernet
> > - MMC0, MMC1, Booting from MMC
> > - SATA
> > - USB ports
> > - USB Ethernet
> > 
> > Signed-off-by: Marek Vasut <marex@denx.de>
> > Cc: Stefano Babic <sbabic@denx.de>
> > Cc: Sean Cross <xobs@kosagi.com>
> > Cc: Nikolay Dimitrov <picmaster@mail.bg>
> > ---
> > 
> >  arch/arm/Kconfig                 |   4 +
> >  board/kosagi/novena/Kconfig      |  23 ++
> >  board/kosagi/novena/Makefile     |  11 +
> >  board/kosagi/novena/novena.c     | 342 +++++++++++++++++++++++
> >  board/kosagi/novena/novena_spl.c | 581
> >  +++++++++++++++++++++++++++++++++++++++ board/kosagi/novena/setup.cfg  
> >   |  47 ++++
> >  configs/novena_defconfig         |   4 +
> >  include/configs/imx6_spl.h       |   2 +-
> >  include/configs/novena.h         | 303 ++++++++++++++++++++
> >  9 files changed, 1316 insertions(+), 1 deletion(-)
> >  create mode 100644 board/kosagi/novena/Kconfig
> >  create mode 100644 board/kosagi/novena/Makefile
> >  create mode 100644 board/kosagi/novena/novena.c
> >  create mode 100644 board/kosagi/novena/novena_spl.c
> >  create mode 100644 board/kosagi/novena/setup.cfg
> >  create mode 100644 configs/novena_defconfig
> >  create mode 100644 include/configs/novena.h
> > 
> > V2: - Drop the tegra_keyboard_init() comment altogether
> > 
> >     - Immediatelly return from the SD controller probe function on
> >     failure - Rename PFUZE100_PMIC to just PFUZE100
> >     - Fix the IMX OTP support with CMD_FUSE
> >     - Enabling LVDS clock is still in place, since this is coming soon.
> > 
> > V3: - Zap rootpath builtin env
> > V4: - Zap the checkpatch issues
> > 
> >     - Update comments
> > 
> > V5: - Don't configure VGEN1
> > 
> >     - Set FPGA into reset in SPL
> >     - Drop ECSPI1 and add ECSPI3 mux
> >     - Drop UART1 and add UART3, UART4 muxes
> >     - Add separate mux option for the RGMII pins which doesn't set SPEED
> >     field - Move the configuration of RGMII after they were configured
> >     in GPIO mode
> > 
> > diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
> > index 106aed9..4da1923 100644
> > --- a/arch/arm/Kconfig
> > +++ b/arch/arm/Kconfig
> > @@ -411,6 +411,9 @@ config TARGET_GW_VENTANA
> > 
> >  config TARGET_HUMMINGBOARD
> >  
> >  	bool "Support hummingboard"
> > 
> > +config TARGET_KOSAGI_NOVENA
> > +	bool "Support Kosagi Novena"
> > +
> > 
> >  config TARGET_TQMA6
> >  
> >  	bool "TQ Systems TQMa6 board"
> > 
> > @@ -637,6 +640,7 @@ source "board/imx31_phycore/Kconfig"
> > 
> >  source "board/isee/igep0033/Kconfig"
> >  source "board/jornada/Kconfig"
> >  source "board/karo/tx25/Kconfig"
> > 
> > +source "board/kosagi/novena/Kconfig"
> > 
> >  source "board/logicpd/imx27lite/Kconfig"
> >  source "board/logicpd/imx31_litekit/Kconfig"
> >  source "board/mpl/vcma9/Kconfig"
> > 
> > diff --git a/board/kosagi/novena/Kconfig b/board/kosagi/novena/Kconfig
> > new file mode 100644
> > index 0000000..4e52be9
> > --- /dev/null
> > +++ b/board/kosagi/novena/Kconfig
> > @@ -0,0 +1,23 @@
> > +if TARGET_KOSAGI_NOVENA
> > +
> > +config SYS_CPU
> > +	string
> > +	default "armv7"
> 
> See http://patchwork.ozlabs.org/patch/397186/.
> 
> According to Masahiro, "strings" is not required and can be dropped.

Dropped, thanks!

      reply	other threads:[~2014-10-09 14:08 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-06 16:02 [U-Boot] [PATCH V5] ARM: mx6: Add support for Kosagi Novena Marek Vasut
2014-10-07  9:52 ` Sean Cross
2014-10-07 10:05   ` Marek Vasut
2014-10-07 21:55 ` Nikolay Dimitrov
2014-10-08  7:47   ` Sean Cross
2014-10-08 15:35     ` picmaster at mail.bg
2014-10-08 23:59       ` Marek Vasut
2014-10-09  0:13         ` Nikolay Dimitrov
2014-10-09  0:28           ` Marek Vasut
2014-10-09  1:04             ` Nikolay Dimitrov
2014-10-09 23:13               ` Marek Vasut
2014-10-09  7:31             ` Stefano Babic
2014-10-09 14:08               ` Marek Vasut
2014-10-09  5:32         ` Sean Cross
2014-10-09  5:38       ` Sean Cross
2014-10-09 11:48         ` Nikolay Dimitrov
2014-10-08 23:59   ` Marek Vasut
2014-10-09  7:36 ` Stefano Babic
2014-10-09 14:08   ` Marek Vasut [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=201410091608.04662.marex@denx.de \
    --to=marex@denx.de \
    --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