public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Minkyu Kang <mk7.kang@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Please pull u-boot-samsung/master
Date: Thu, 26 May 2011 19:43:06 +0900	[thread overview]
Message-ID: <4DDE2EBA.20803@samsung.com> (raw)

Dear Albert ARIBAUD,

The following changes since commit f14a522a6cb6b843d31fd099b5af6a57142f2364:

  BeagleBoard: fixed typo in typecast (2011-05-23 09:04:39 +0200)

are available in the git repository at:
  ssh://gu-samsung at git.denx.de/u-boot-samsung master

Chander Kashyap (4):
      S5P: GPIO Macro Values Corrected.
      S5P:SROM config code moved to s5p-common directory
      ARMV7: Add support for Samsung SMDKV310 Board
      ARMV7: MMC SPL Boot support for SMDKV310 board

David M?ller (ELSOFT AG) (4):
      SMDK2410: activate ARM relocation feature
      SMDK2410: remove unneeded config.mk
      SMDK2410: use the CFI driver (and remove the old one)
      SMDK2410: various cleanup/code style fixes

Dirk Behme (1):
      MMC S5P: Fix typo

Jaehoon Chung (1):
      S5P: add set_mmc_clk for external clock control

Minkyu Kang (2):
      S5PC2XX: Support the cpu revision
      S5PC2XX: clock: support pwm clock for evt1 (cpu revision 1)

seedshope (1):
      Add _end for the end of u-boot image for SMDK6400

 MAINTAINERS                                        |    4 +
 Makefile                                           |   11 +
 arch/arm/cpu/armv7/s5p-common/Makefile             |    3 +-
 arch/arm/cpu/armv7/s5p-common/cpu_info.c           |    2 +
 arch/arm/cpu/armv7/{s5pc1xx => s5p-common}/sromc.c |   22 +-
 arch/arm/cpu/armv7/s5pc1xx/Makefile                |    1 -
 arch/arm/cpu/armv7/s5pc1xx/clock.c                 |    5 +
 arch/arm/cpu/armv7/s5pc2xx/clock.c                 |   76 +++-
 arch/arm/include/asm/arch-s5pc1xx/clk.h            |    1 +
 arch/arm/include/asm/arch-s5pc1xx/gpio.h           |    4 +-
 arch/arm/include/asm/arch-s5pc1xx/mmc.h            |    1 +
 .../include/asm/arch-s5pc1xx/{smc.h => sromc.h}    |    8 +-
 arch/arm/include/asm/arch-s5pc2xx/clk.h            |    1 +
 arch/arm/include/asm/arch-s5pc2xx/cpu.h            |   12 +-
 arch/arm/include/asm/arch-s5pc2xx/gpio.h           |    7 +-
 arch/arm/include/asm/arch-s5pc2xx/mmc.h            |    1 +
 arch/arm/include/asm/arch-s5pc2xx/sromc.h          |   51 +++
 board/samsung/smdk2410/Makefile                    |    2 +-
 board/samsung/smdk2410/config.mk                   |   25 -
 board/samsung/smdk2410/flash.c                     |  433 ------------------
 board/samsung/smdk2410/smdk2410.c                  |   73 ++--
 board/samsung/smdkc100/smdkc100.c                  |    4 +-
 board/samsung/smdkv310/Makefile                    |   46 ++
 board/samsung/smdkv310/lowlevel_init.S             |  470 ++++++++++++++++++++
 board/samsung/smdkv310/mem_setup.S                 |  365 +++++++++++++++
 board/samsung/smdkv310/smdkv310.c                  |  136 ++++++
 boards.cfg                                         |    1 +
 drivers/mmc/s5p_mmc.c                              |    6 +-
 include/configs/smdk2410.h                         |  181 +++++---
 include/configs/smdkv310.h                         |  169 +++++++
 mmc_spl/board/samsung/smdkv310/Makefile            |  105 +++++
 mmc_spl/board/samsung/smdkv310/mmc_boot.c          |   85 ++++
 .../board/samsung/smdkv310/tools/mkv310_image.c    |  116 +++++
 mmc_spl/board/samsung/smdkv310/u-boot.lds          |   86 ++++
 nand_spl/board/samsung/smdk6400/u-boot.lds         |    2 +
 35 files changed, 1921 insertions(+), 594 deletions(-)
 rename arch/arm/cpu/armv7/{s5pc1xx => s5p-common}/sromc.c (68%)
 rename arch/arm/include/asm/arch-s5pc1xx/{smc.h => sromc.h} (92%)
 create mode 100644 arch/arm/include/asm/arch-s5pc2xx/sromc.h
 delete mode 100644 board/samsung/smdk2410/config.mk
 delete mode 100644 board/samsung/smdk2410/flash.c
 create mode 100644 board/samsung/smdkv310/Makefile
 create mode 100644 board/samsung/smdkv310/lowlevel_init.S
 create mode 100644 board/samsung/smdkv310/mem_setup.S
 create mode 100644 board/samsung/smdkv310/smdkv310.c
 create mode 100644 include/configs/smdkv310.h
 create mode 100644 mmc_spl/board/samsung/smdkv310/Makefile
 create mode 100644 mmc_spl/board/samsung/smdkv310/mmc_boot.c
 create mode 100644 mmc_spl/board/samsung/smdkv310/tools/mkv310_image.c
 create mode 100644 mmc_spl/board/samsung/smdkv310/u-boot.lds

             reply	other threads:[~2011-05-26 10:43 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-26 10:43 Minkyu Kang [this message]
2011-05-26 10:59 ` [U-Boot] Please pull u-boot-samsung/master Albert ARIBAUD
  -- strict thread matches above, loose matches on Subject: below --
2012-06-18  8:50 [U-Boot] please " Minkyu Kang
2012-06-23  7:18 ` Albert ARIBAUD
2012-04-25  7:51 Minkyu Kang
2012-04-26 21:26 ` Albert ARIBAUD
2012-03-08 10:14 Minkyu Kang
2012-03-27  9:44 ` Minkyu Kang
2012-03-27 20:09   ` Albert ARIBAUD
2012-02-10  1:01 Minkyu Kang
2012-02-10 19:59 ` Albert ARIBAUD
2011-12-09  9:15 Minkyu Kang
2011-12-09 16:39 ` Albert ARIBAUD
2011-10-28  8:19 Minkyu Kang
2011-10-28 15:17 ` Albert ARIBAUD
2011-09-02  8:05 Minkyu Kang
2011-09-03 19:23 ` Albert ARIBAUD
2011-08-19  5:34 Minkyu Kang
2011-08-19 18:22 ` Albert ARIBAUD
2011-05-26  5:22 [U-Boot] Please " Minkyu Kang
2011-05-26  5:49 ` Albert ARIBAUD
2011-05-26  6:24   ` Minkyu Kang
2011-05-26  8:13     ` Albert ARIBAUD
2011-05-26 10:40       ` Minkyu Kang
2011-03-24  6:58 Minkyu Kang
2011-03-24 13:57 ` Albert ARIBAUD
2011-03-25  2:02   ` Minkyu Kang
2011-03-25  7:23     ` Albert ARIBAUD
2011-03-25  9:59       ` Minkyu Kang
2011-03-26 14:59         ` Albert ARIBAUD
2011-01-27 12:29 Minkyu Kang
2011-01-27 22:11 ` Albert ARIBAUD
2010-11-30  8:56 Minkyu Kang
2010-11-30 20:32 ` Wolfgang Denk
2010-10-28  7:29 Minkyu Kang
2010-10-29 19:48 ` Wolfgang Denk
2010-08-31 10:27 Minkyu Kang
2010-09-07 22:04 ` Wolfgang Denk
2010-08-03  7:54 Minkyu Kang
2010-08-03 22:35 ` Wolfgang Denk
2010-06-02 23:55 Minkyu Kang
2010-06-06 11:44 ` Tom Rix
2010-06-09  0:08   ` Minkyu Kang
2010-06-15  4:23     ` Tom Rix
2010-04-13 10:02 Minkyu Kang
2010-04-17 22:07 ` Tom Rix
2010-03-05 10:03 Minkyu Kang
2010-03-05 20:29 ` Tom
2010-03-08  6:08   ` Minkyu Kang
2010-03-12 19:43     ` Tom
2010-03-13 16:32     ` Tom
2010-01-13  4:25 Minkyu Kang
2010-01-15 13:28 ` Tom
2009-11-20 10:45 Minkyu Kang
2009-11-20 22:16 ` Tom
2009-10-12  7:38 Minkyu Kang
2009-10-12 11:16 ` Tom Rix
2009-10-14  3:31 ` Tom Rix
2009-10-14 10:16   ` Abdoulaye Walsimou Gaye
2009-10-14 11:28   ` Stefan Roese
2009-10-14 12:39     ` Tom Rix
2009-10-14 12:46     ` Tom Rix
2009-10-14 13:23       ` Minkyu Kang

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=4DDE2EBA.20803@samsung.com \
    --to=mk7.kang@samsung.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