From: Juergen Beisert <jbe@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCHv2] Add the Samsung S3C6410 SoC to Barebox
Date: Sat, 28 Jul 2012 17:10:42 +0200 [thread overview]
Message-ID: <1343488250-12570-1-git-send-email-jbe@pengutronix.de> (raw)
This patch series adds support for the Samsung's S3C6410 ARMv11 SoC
and with this main support also two popular platforms which are using this
SoC: FriendlyARM's Mini6410 and Tiny6410.
These patches are based on the 'master' branch and thus suffer on a missing
adpation in the Samsung serial driver, which is part of the 'next' branch.
I would wait until the 'next' branch gets merged into 'master' while the next
release and then re-send the required changes for the serial driver to make
the serial console work with this new SoC.
Comments are still welcome.
Regards,
Juergen
The following changes since commit e8bbacab05d8a8e7e86e31e9208457409bcbb1b0:
i2c: fix printf format specifier (2012-07-26 12:41:55 +0200)
are available in the git repository at:
git://git.pengutronix.de/git/jbe/barebox.git s3c6410_2nd_try_for_inclusion
for you to fetch changes up to 4043fe98bb117399ca9e64c64e38e3bfe64212e2:
ARM/Samsung: add the Tiny6410 platform as a user of the S3C6410 SoC (2012-07-28 16:31:26 +0200)
----------------------------------------------------------------
Juergen Beisert (8):
ARM/Samsung: add S3C6410 SoC iomap
ARM/Samsung: adapt the generic timer driver to support the S3C6410 SoC
ARM/Samsung: add the clock tree support for the S3C6410 SoC
ARM/Samsung: add GPIO handling support for the S3C6410 SoC
ARM/Samsung: add generic S3C6410 SoC specific functions
ARM/Samsung: add the S3C6410 SoC
ARM/Samsung: add the Mini6410 platform as a user of the S3C6410 SoC
ARM/Samsung: add the Tiny6410 platform as a user of the S3C6410 SoC
arch/arm/Kconfig | 6 +
arch/arm/Makefile | 2 +
arch/arm/boards/friendlyarm-mini6410/Makefile | 1 +
arch/arm/boards/friendlyarm-mini6410/config.h | 8 +
arch/arm/boards/friendlyarm-mini6410/env/config | 56 ++
arch/arm/boards/friendlyarm-mini6410/mini6410.c | 305 +++++++++++
arch/arm/boards/friendlyarm-tiny6410/Kconfig | 19 +
arch/arm/boards/friendlyarm-tiny6410/Makefile | 3 +
arch/arm/boards/friendlyarm-tiny6410/config.h | 8 +
.../friendlyarm-tiny6410/development-board.c | 100 ++++
arch/arm/boards/friendlyarm-tiny6410/env/config | 56 ++
arch/arm/boards/friendlyarm-tiny6410/tiny6410.c | 80 +++
arch/arm/boards/friendlyarm-tiny6410/tiny6410.h | 14 +
arch/arm/configs/friendlyarm_mini6410_defconfig | 40 ++
arch/arm/configs/friendlyarm_tiny6410_defconfig | 41 ++
arch/arm/mach-samsung/Kconfig | 40 ++
arch/arm/mach-samsung/Makefile | 1 +
arch/arm/mach-samsung/clocks-s3c64xx.c | 338 ++++++++++++
arch/arm/mach-samsung/gpio-s3c64xx.c | 301 +++++++++++
.../mach-samsung/include/mach/devices-s3c64xx.h | 40 ++
arch/arm/mach-samsung/include/mach/gpio.h | 3 +
arch/arm/mach-samsung/include/mach/iomux-s3c64xx.h | 542 ++++++++++++++++++++
arch/arm/mach-samsung/include/mach/s3c-clocks.h | 3 +
arch/arm/mach-samsung/include/mach/s3c-generic.h | 17 +
arch/arm/mach-samsung/include/mach/s3c-iomap.h | 3 +
.../arm/mach-samsung/include/mach/s3c64xx-clocks.h | 67 +++
arch/arm/mach-samsung/include/mach/s3c64xx-iomap.h | 51 ++
arch/arm/mach-samsung/mem-s3c64xx.c | 66 +++
arch/arm/mach-samsung/s3c-timer.c | 17 +-
29 files changed, 2224 insertions(+), 4 deletions(-)
create mode 100644 arch/arm/boards/friendlyarm-mini6410/Makefile
create mode 100644 arch/arm/boards/friendlyarm-mini6410/config.h
create mode 100644 arch/arm/boards/friendlyarm-mini6410/env/config
create mode 100644 arch/arm/boards/friendlyarm-mini6410/mini6410.c
create mode 100644 arch/arm/boards/friendlyarm-tiny6410/Kconfig
create mode 100644 arch/arm/boards/friendlyarm-tiny6410/Makefile
create mode 100644 arch/arm/boards/friendlyarm-tiny6410/config.h
create mode 100644 arch/arm/boards/friendlyarm-tiny6410/development-board.c
create mode 100644 arch/arm/boards/friendlyarm-tiny6410/env/config
create mode 100644 arch/arm/boards/friendlyarm-tiny6410/tiny6410.c
create mode 100644 arch/arm/boards/friendlyarm-tiny6410/tiny6410.h
create mode 100644 arch/arm/configs/friendlyarm_mini6410_defconfig
create mode 100644 arch/arm/configs/friendlyarm_tiny6410_defconfig
create mode 100644 arch/arm/mach-samsung/clocks-s3c64xx.c
create mode 100644 arch/arm/mach-samsung/gpio-s3c64xx.c
create mode 100644 arch/arm/mach-samsung/include/mach/devices-s3c64xx.h
create mode 100644 arch/arm/mach-samsung/include/mach/iomux-s3c64xx.h
create mode 100644 arch/arm/mach-samsung/include/mach/s3c64xx-clocks.h
create mode 100644 arch/arm/mach-samsung/include/mach/s3c64xx-iomap.h
create mode 100644 arch/arm/mach-samsung/mem-s3c64xx.c
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2012-07-28 15:11 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-28 15:10 Juergen Beisert [this message]
2012-07-28 15:10 ` [PATCH 1/8] ARM/Samsung: add S3C6410 SoC iomap Juergen Beisert
2012-07-28 15:10 ` [PATCH 2/8] ARM/Samsung: adapt the generic timer driver to support the S3C6410 SoC Juergen Beisert
2012-07-28 15:29 ` Juergen Beisert
2012-07-28 15:10 ` [PATCH 3/8] ARM/Samsung: add the clock tree support for " Juergen Beisert
2012-07-28 15:10 ` [PATCH 4/8] ARM/Samsung: add GPIO handling " Juergen Beisert
2012-07-28 15:10 ` [PATCH 5/8] ARM/Samsung: add generic S3C6410 SoC specific functions Juergen Beisert
2012-07-28 15:10 ` [PATCH 6/8] ARM/Samsung: add the S3C6410 SoC Juergen Beisert
2012-07-28 15:10 ` [PATCH 7/8] ARM/Samsung: add the Mini6410 platform as a user of " Juergen Beisert
2012-07-28 15:10 ` [PATCH 8/8] ARM/Samsung: add the Tiny6410 " Juergen Beisert
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=1343488250-12570-1-git-send-email-jbe@pengutronix.de \
--to=jbe@pengutronix.de \
--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