mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Alexey Galakhov <agalakhov@gmail.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCHv4 0/7] S5PV210 support (upd.)
Date: Mon, 21 May 2012 22:00:44 +0200	[thread overview]
Message-ID: <20120521200044.GE30400@pengutronix.de> (raw)
In-Reply-To: <1337334211-12576-1-git-send-email-agalakhov@gmail.com>

Hi Alexey,

Finally applied this series up to 5/7, see comment there.

Thanks
 Sascha

On Fri, May 18, 2012 at 03:43:24PM +0600, Alexey Galakhov wrote:
> Removed function renaming (s3c24xx_get_memory_size).
> Everything else is left untouched and only reflects the
> above change.
> 
> Alexey Galakhov (7):
>   Make S3C24xx config options available for all S3Cs
>   Split S3C generic and S3C24xx specific code
>   Add support for Samsung S5P architecture (S5PV210)
>   S5P boot header and image generator
>   S5P lowlevel clock init
>   S5P DRAM support
>   Add FriendlyArm Tiny210 board (S5PV210)
> 
>  .gitignore                                         |    2 +
>  Makefile                                           |    2 +-
>  arch/arm/Kconfig                                   |    6 +
>  arch/arm/Makefile                                  |    8 +
>  arch/arm/boards/a9m2410/a9m2410.c                  |    2 +-
>  arch/arm/boards/a9m2410/config.h                   |    2 +-
>  arch/arm/boards/a9m2410/lowlevel_init.S            |    2 +-
>  arch/arm/boards/a9m2440/a9m2440.c                  |    2 +-
>  arch/arm/boards/a9m2440/config.h                   |    2 +-
>  arch/arm/boards/a9m2440/lowlevel_init.S            |    2 +-
>  arch/arm/boards/mini2440/config.h                  |    2 +-
>  arch/arm/boards/mini2440/lowlevel_init.S           |    2 +-
>  arch/arm/boards/mini2440/mini2440.c                |    2 +-
>  arch/arm/boards/tiny210/Makefile                   |    1 +
>  arch/arm/boards/tiny210/config.h                   |   21 +
>  arch/arm/boards/tiny210/lowlevel.c                 |   76 ++
>  arch/arm/boards/tiny210/tiny210.c                  |  113 +++
>  arch/arm/configs/a9m2410_defconfig                 |    2 +-
>  arch/arm/configs/a9m2440_defconfig                 |    4 +-
>  arch/arm/configs/mini2440_defconfig                |    2 +-
>  arch/arm/configs/tiny210_defconfig                 |   17 +
>  arch/arm/mach-samsung/Kconfig                      |   57 +-
>  arch/arm/mach-samsung/Makefile                     |    7 +-
>  arch/arm/mach-samsung/clocks-s5pcxx.c              |   98 +++
>  arch/arm/mach-samsung/generic.c                    |  113 ---
>  arch/arm/mach-samsung/gpio-s5pcxx.c                |  123 +++
>  arch/arm/mach-samsung/include/mach/gpio.h          |    3 +
>  arch/arm/mach-samsung/include/mach/iomux-s5pcxx.h  |  798 ++++++++++++++++++++
>  arch/arm/mach-samsung/include/mach/s3c-clocks.h    |   25 +-
>  arch/arm/mach-samsung/include/mach/s3c-generic.h   |    9 +-
>  arch/arm/mach-samsung/include/mach/s3c-iomap.h     |   56 +-
>  .../arm/mach-samsung/include/mach/s3c24xx-clocks.h |   24 +
>  arch/arm/mach-samsung/include/mach/s3c24xx-gpio.h  |    6 +-
>  arch/arm/mach-samsung/include/mach/s3c24xx-iomap.h |   69 ++
>  arch/arm/mach-samsung/include/mach/s3c24xx-nand.h  |    2 +-
>  arch/arm/mach-samsung/include/mach/s5pcxx-clocks.h |   55 ++
>  arch/arm/mach-samsung/include/mach/s5pcxx-iomap.h  |   52 ++
>  arch/arm/mach-samsung/lowlevel-init.S              |  317 --------
>  arch/arm/mach-samsung/lowlevel-s3c24x0.S           |  317 ++++++++
>  arch/arm/mach-samsung/lowlevel-s5pcxx.c            |   61 ++
>  arch/arm/mach-samsung/mem-s3c24x0.c                |  143 ++++
>  arch/arm/mach-samsung/mem-s5pcxx.c                 |  260 +++++++
>  drivers/mtd/nand/nand_s3c24xx.c                    |   10 +-
>  scripts/Makefile                                   |    1 +
>  scripts/s5p_cksum.c                                |  140 ++++
>  45 files changed, 2487 insertions(+), 531 deletions(-)
>  create mode 100644 arch/arm/boards/tiny210/Makefile
>  create mode 100644 arch/arm/boards/tiny210/config.h
>  create mode 100644 arch/arm/boards/tiny210/lowlevel.c
>  create mode 100644 arch/arm/boards/tiny210/tiny210.c
>  create mode 100644 arch/arm/configs/tiny210_defconfig
>  create mode 100644 arch/arm/mach-samsung/clocks-s5pcxx.c
>  create mode 100644 arch/arm/mach-samsung/gpio-s5pcxx.c
>  create mode 100644 arch/arm/mach-samsung/include/mach/iomux-s5pcxx.h
>  create mode 100644 arch/arm/mach-samsung/include/mach/s3c24xx-clocks.h
>  create mode 100644 arch/arm/mach-samsung/include/mach/s3c24xx-iomap.h
>  create mode 100644 arch/arm/mach-samsung/include/mach/s5pcxx-clocks.h
>  create mode 100644 arch/arm/mach-samsung/include/mach/s5pcxx-iomap.h
>  delete mode 100644 arch/arm/mach-samsung/lowlevel-init.S
>  create mode 100644 arch/arm/mach-samsung/lowlevel-s3c24x0.S
>  create mode 100644 arch/arm/mach-samsung/lowlevel-s5pcxx.c
>  create mode 100644 arch/arm/mach-samsung/mem-s3c24x0.c
>  create mode 100644 arch/arm/mach-samsung/mem-s5pcxx.c
>  create mode 100644 scripts/s5p_cksum.c
> 
> -- 
> 1.7.10
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-15 13:20 [PATCHv3 0/7] Cleaned up version of S5PV210 code Alexey Galakhov
2012-05-15 13:20 ` [PATCH 1/7] Make S3C24xx config options available for all S3Cs Alexey Galakhov
2012-05-15 13:20 ` [PATCH 2/7] Split S3C generic and S3C24xx specific code Alexey Galakhov
2012-05-17 17:52   ` Sascha Hauer
2012-05-17 18:33     ` Alexey Galakhov
2012-05-17 19:49       ` Juergen Beisert
2012-05-18  6:49         ` Alexey Galakhov
2012-05-18  8:38           ` Sascha Hauer
2012-05-18  9:06             ` Alexey Galakhov
2012-05-18  8:35       ` Sascha Hauer
2012-05-18  9:43     ` [PATCHv4 0/7] S5PV210 support (upd.) Alexey Galakhov
2012-05-18  9:43       ` [PATCH 1/7] Make S3C24xx config options available for all S3Cs Alexey Galakhov
2012-05-18  9:43       ` [PATCHv4 2/7] Split S3C generic and S3C24xx specific code Alexey Galakhov
2012-05-18  9:43       ` [PATCH 3/7] Add support for Samsung S5P architecture (S5PV210) Alexey Galakhov
2012-05-18  9:43       ` [PATCH 4/7] S5P boot header and image generator Alexey Galakhov
2012-05-18  9:43       ` [PATCHv4 5/7] S5P lowlevel clock init Alexey Galakhov
2012-05-18  9:43       ` [PATCHv4 6/7] S5P DRAM support Alexey Galakhov
2012-05-21 20:02         ` Sascha Hauer
2012-05-22  9:17           ` Alexey Galakhov
2012-05-22 18:29             ` Sascha Hauer
2012-05-22 19:12               ` Alexey Galakhov
2012-05-18  9:43       ` [PATCHv4 7/7] Add FriendlyArm Tiny210 board (S5PV210) Alexey Galakhov
2012-05-21 20:00       ` Sascha Hauer [this message]
2012-05-22  9:18         ` [PATCHv4 0/7] S5PV210 support (upd.) Alexey Galakhov
2012-05-15 13:20 ` [PATCH 3/7] Add support for Samsung S5P architecture (S5PV210) Alexey Galakhov
2012-05-15 13:20 ` [PATCH 4/7] S5P boot header and image generator Alexey Galakhov
2012-05-15 13:20 ` [PATCH 5/7] S5P lowlevel clock init Alexey Galakhov
2012-05-15 13:20 ` [PATCH 6/7] S5P DRAM support Alexey Galakhov
2012-05-15 13:20 ` [PATCH 7/7] Add FriendlyArm Tiny210 board (S5PV210) Alexey Galakhov

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=20120521200044.GE30400@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=agalakhov@gmail.com \
    --cc=barebox@lists.infradead.org \
    /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