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 00/13] M28EVK/i.MX28 improvements
Date: Tue, 1 May 2012 23:05:54 +0200	[thread overview]
Message-ID: <201205012305.54877.marex@denx.de> (raw)
In-Reply-To: <1335906232-24549-1-git-send-email-marex@denx.de>

> These are some improvements that were stuck in my tree for a while, time to
> expunge them, please consider applying.

Ignore this series, typo mangled Stefano's address, will resend.

> 
> Tested on:
> * DENX M28EVK v2.0
> * DENX M28EVK v1.1
> * Mysterious board #1 ...
> * Unnamed board #2 ...
> 
> Marek Vasut (13):
>   FEC: Abstract out register setup
>   M28EVK: Implement support for new board V2.0
>   M28EVK: Add SD update command
>   i.MX28: Improve passing of data from SPL to U-Boot
>   i.MX28: Implement boot pads sampling and reporting
>   i.MX28: Add LCDIF register definitions
>   i.MX28: Shut down the LCD controller before reset
>   i.MX28: Add LRADC register definitions
>   i.MX28: Add LRADC init to i.MX28 SPL
>   i.MX28: Reorder battery status functions in SPL
>   i.MX28: Add battery boot components to SPL
>   i.MX28: Check if WP detection is implemented at all
>   i.MX28: Avoid redefining serial_put[cs]()
> 
>  arch/arm/cpu/arm926ejs/mx28/Makefile         |    2 +-
>  arch/arm/cpu/arm926ejs/mx28/mx28.c           |   29 +-
>  arch/arm/cpu/arm926ejs/mx28/mx28_init.h      |    4 +
>  arch/arm/cpu/arm926ejs/mx28/spl_boot.c       |   57 ++++
>  arch/arm/cpu/arm926ejs/mx28/spl_lradc_init.c |   86 ++++++
>  arch/arm/cpu/arm926ejs/mx28/spl_mem_init.c   |   10 +-
>  arch/arm/cpu/arm926ejs/mx28/spl_power_init.c |  224 ++++++++++-----
>  arch/arm/include/asm/arch-mx28/imx-regs.h    |    2 +
>  arch/arm/include/asm/arch-mx28/regs-lcdif.h  |  212 ++++++++++++++
>  arch/arm/include/asm/arch-mx28/regs-lradc.h  |  400
> ++++++++++++++++++++++++++ arch/arm/include/asm/arch-mx28/sys_proto.h   | 
>  30 ++
>  board/denx/m28evk/m28evk.c                   |   20 +-
>  board/denx/m28evk/spl_boot.c                 |    8 +-
>  drivers/mmc/mxsmmc.c                         |    3 +-
>  drivers/net/fec_mxc.c                        |   84 +++---
>  include/configs/m28evk.h                     |   10 +
>  include/configs/mx28evk.h                    |    1 +
>  17 files changed, 1043 insertions(+), 139 deletions(-)
>  create mode 100644 arch/arm/cpu/arm926ejs/mx28/spl_lradc_init.c
>  create mode 100644 arch/arm/include/asm/arch-mx28/regs-lcdif.h
>  create mode 100644 arch/arm/include/asm/arch-mx28/regs-lradc.h
> 
> Cc: Detlev Zundel <dzu@denx.de>
> Cc: Fabio Estevam <fabio.estevam@freescale.com>
> Cc: Stefano Babic <sbabic@denxde>
> Cc: Wolfgang Denk <wd@denx.de>

Best regards,
Marek Vasut

  parent reply	other threads:[~2012-05-01 21:05 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-01 21:03 [U-Boot] [PATCH 00/13] M28EVK/i.MX28 improvements Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 01/13] FEC: Abstract out register setup Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 02/13] M28EVK: Implement support for new board V2.0 Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 03/13] M28EVK: Add SD update command Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 04/13] i.MX28: Improve passing of data from SPL to U-Boot Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 05/13] i.MX28: Implement boot pads sampling and reporting Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 06/13] i.MX28: Add LCDIF register definitions Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 07/13] i.MX28: Shut down the LCD controller before reset Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 08/13] i.MX28: Add LRADC register definitions Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 09/13] i.MX28: Add LRADC init to i.MX28 SPL Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 10/13] i.MX28: Reorder battery status functions in SPL Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 11/13] i.MX28: Add battery boot components to SPL Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 12/13] i.MX28: Check if WP detection is implemented at all Marek Vasut
2012-05-01 21:03 ` [U-Boot] [PATCH 13/13] i.MX28: Avoid redefining serial_put[cs]() Marek Vasut
2012-05-01 21:05 ` Marek Vasut [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-05-01 21:09 [U-Boot] [PATCH 00/13] M28EVK/i.MX28 improvements Marek Vasut
2012-05-09 10:52 ` Stefano Babic

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=201205012305.54877.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