mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] Addd the Samsung S3C6410 SoC to Barebox
@ 2012-07-21 10:04 Juergen Beisert
  2012-07-21 10:04 ` [PATCH 1/8] ARM/Samsung: add S3C6410 SoC iomap Juergen Beisert
                   ` (7 more replies)
  0 siblings, 8 replies; 10+ messages in thread
From: Juergen Beisert @ 2012-07-21 10:04 UTC (permalink / raw)
  To: barebox

This patch series tries to add 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.

Comments are welcome.

If someone wants to try this series it can be found here
git://git.pengutronix.de/git/jbe/barebox.git, branch "master_s3c6410_inclusion"

Note: this series depends on the previously sent patch series
"ARM/Samsung: more clean up..."

Juergen


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

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCHv2] Add the Samsung S3C6410 SoC to Barebox
@ 2012-07-28 15:10 Juergen Beisert
  2012-07-28 15:10 ` [PATCH 4/8] ARM/Samsung: add GPIO handling support for the S3C6410 SoC Juergen Beisert
  0 siblings, 1 reply; 10+ messages in thread
From: Juergen Beisert @ 2012-07-28 15:10 UTC (permalink / raw)
  To: barebox

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

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2012-07-28 15:11 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-21 10:04 [PATCH] Addd the Samsung S3C6410 SoC to Barebox Juergen Beisert
2012-07-21 10:04 ` [PATCH 1/8] ARM/Samsung: add S3C6410 SoC iomap Juergen Beisert
2012-07-21 10:04 ` [PATCH 2/8] ARM/Samsung: adapt the generic timer driver to support the S3C6410 SoC Juergen Beisert
2012-07-21 10:04 ` [PATCH 3/8] ARM/Samsung: add the clock tree support for " Juergen Beisert
2012-07-21 10:04 ` [PATCH 4/8] ARM/Samsung: add GPIO handling " Juergen Beisert
2012-07-21 10:04 ` [PATCH 5/8] ARM/Samsung: add generic S3C6410 SoC specific functions Juergen Beisert
2012-07-21 10:04 ` [PATCH 6/8] ARM/Samsung: add the S3C6410 SoC Juergen Beisert
2012-07-21 10:04 ` [PATCH 7/8] ARM/Samsung: add the Mini6410 platform as the first user of " Juergen Beisert
2012-07-21 10:04 ` [PATCH 8/8] ARM/Samsung: add the Tiny6410 platform as the second " Juergen Beisert
2012-07-28 15:10 [PATCHv2] Add the Samsung S3C6410 SoC to Barebox Juergen Beisert
2012-07-28 15:10 ` [PATCH 4/8] ARM/Samsung: add GPIO handling support for the S3C6410 SoC Juergen Beisert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox