public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Marek Vasut <marek.vasut@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/4] Voipac PXA270 OneNAND SPL
Date: Mon, 31 Oct 2011 14:23:09 +0100	[thread overview]
Message-ID: <1320067393-18822-1-git-send-email-marek.vasut@gmail.com> (raw)

Convert OneNAND IPL to SPL framework and make Voipac PXA270 board use it.

This series triggers some checkpatch warnings:
* Warnings in start.S due to length of line. Since I reused the start.S from
  other CPU (arm1136), I'd rather investigate if it'd be possible to create one
  common start.S for armv5?
* Warnings due to used externs. pxa_dram_init() will be cleaned up in a
  subsequent series in all boards.

Marek Vasut (4):
  PXA: Drop Voipac PXA270 OneNAND IPL
  PXA: Rework start.S to be closer to other ARMs
  OneNAND: Add simple OneNAND SPL
  PXA: Adapt Voipac PXA270 to OneNAND SPL

 arch/arm/cpu/pxa/cpu.c                       |   16 +
 arch/arm/cpu/pxa/start.S                     |  382 +++++++++-----------------
 board/vpac270/Makefile                       |    6 +
 board/vpac270/onenand.c                      |  136 +++++++++
 board/vpac270/vpac270.c                      |    2 +
 drivers/mtd/onenand/Makefile                 |    4 +
 drivers/mtd/onenand/onenand_spl.c            |  130 +++++++++
 include/configs/vpac270.h                    |   25 ++-
 include/onenand_uboot.h                      |   18 ++
 onenand_ipl/board/vpac270/Makefile           |   79 ------
 onenand_ipl/board/vpac270/config.mk          |    1 -
 onenand_ipl/board/vpac270/u-boot.onenand.lds |   51 ----
 onenand_ipl/board/vpac270/vpac270.c          |   42 ---
 spl/Makefile                                 |    1 +
 14 files changed, 469 insertions(+), 424 deletions(-)
 create mode 100644 board/vpac270/onenand.c
 create mode 100644 drivers/mtd/onenand/onenand_spl.c
 delete mode 100644 onenand_ipl/board/vpac270/Makefile
 delete mode 100644 onenand_ipl/board/vpac270/config.mk
 delete mode 100644 onenand_ipl/board/vpac270/u-boot.onenand.lds
 delete mode 100644 onenand_ipl/board/vpac270/vpac270.c

Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>

-- 
1.7.6.3

             reply	other threads:[~2011-10-31 13:23 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-31 13:23 Marek Vasut [this message]
2011-10-31 13:23 ` [U-Boot] [PATCH 1/4] PXA: Drop Voipac PXA270 OneNAND IPL Marek Vasut
2011-10-31 13:23 ` [U-Boot] [PATCH 2/4] PXA: Rework start.S to be closer to other ARMs Marek Vasut
2011-11-01 22:53   ` [U-Boot] [PATCH 2/4 V2] " Marek Vasut
2011-11-02  9:01   ` [U-Boot] [PATCH 2/4] " Stefan Herbrechtsmeier
2011-11-02 10:25     ` Marek Vasut
2011-11-02 10:53       ` Stefan Herbrechtsmeier
2011-10-31 13:23 ` [U-Boot] [PATCH 3/4] OneNAND: Add simple OneNAND SPL Marek Vasut
2011-10-31 23:15   ` Scott Wood
2011-11-01 22:54   ` [U-Boot] [PATCH 3/4 V2] " Marek Vasut
2011-11-02 22:41     ` Scott Wood
2011-11-03  0:15       ` Marek Vasut
2011-11-03  0:36         ` Kyungmin Park
2011-11-03  0:59           ` Marek Vasut
2011-11-03 16:19         ` Scott Wood
2011-11-03 16:56           ` Marek Vasut
2011-11-03 17:06             ` Scott Wood
2011-11-03 17:25               ` Marek Vasut
2011-11-03  1:55     ` [U-Boot] [PATCH 3/4 V3] " Marek Vasut
2011-11-03 21:59       ` [U-Boot] [PATCH 3/4 V4] " Marek Vasut
2011-10-31 13:23 ` [U-Boot] [PATCH 4/4] PXA: Adapt Voipac PXA270 to " Marek Vasut
2011-10-31 23:03   ` Scott Wood
2011-11-01 22:12     ` Marek Vasut
2011-11-01 22:34       ` Scott Wood
2011-11-01 22:44         ` Marek Vasut
2011-11-02 22:18           ` Scott Wood
2011-11-01 22:54   ` [U-Boot] [PATCH 4/4 V2] " Marek Vasut
2011-11-02 22:23     ` Scott Wood
2011-11-03  1:56     ` [U-Boot] [PATCH 4/4 V3] " Marek Vasut
2011-11-03 18:09       ` Scott Wood
2011-11-03 21:52         ` Marek Vasut
2011-11-03 22:20           ` Scott Wood
2011-11-04  0:55             ` Marek Vasut
2011-11-04 16:37               ` Scott Wood
2011-11-04 20:07                 ` Marek Vasut
2011-11-04 20:13                   ` Scott Wood
2011-11-04 20:31                     ` Marek Vasut
2011-11-05 22:40                     ` Marek Vasut

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=1320067393-18822-1-git-send-email-marek.vasut@gmail.com \
    --to=marek.vasut@gmail.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