All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 00/11] S3C24XX: Add support to MINI2416 board
@ 2012-09-18 17:40 José Miguel Gonçalves
  2012-09-18 17:40 ` [U-Boot] [PATCH v3 01/11] Add configuration option to select printf() inclusion on SPL José Miguel Gonçalves
                   ` (10 more replies)
  0 siblings, 11 replies; 17+ messages in thread
From: José Miguel Gonçalves @ 2012-09-18 17:40 UTC (permalink / raw)
  To: u-boot

Support for the MINI2416 board based on a Samsung's S3C2416 SoC with
64MB DDR2 SDRAM, 256MB NAND Flash, a LAN9220 Ethernet Controller and a
WM8731 Audio CODEC.

Changes for v2:
   - Coding style cleanup
   - Removed new serial and rtc drivers
   - Use of in-tree serial and rtc drivers

Changes for v3:
   - Rebased on new SPL framework:
     http://github.com/trini/u-boot WIP/spl-improvements
   - Removed patch "ARM: fix relocation on ARM926EJS"
   - Add patch to configure printf() inclusion on SPL
   - Changed new binary target name from u-boot-ubl.bin to u-boot-pad.bin
   - Removed magic numbers
   - Checkpatch clean except:
     - False positive:
	ERROR: spaces required around that ':' (ctx:VxV)
	#692: FILE: include/configs/mini2416.h:165:
	+#define CONFIG_ETHADDR			FE:11:22:33:44:55
     - Following preexistent coding style:
	WARNING: please, no spaces at the start of a line
	#1716: FILE: include/common.h:631:
	+    defined(CONFIG_S3C24XX) || \$

Jos? Miguel Gon?alves (11):
  Add configuration option to select printf() inclusion on SPL
  S3C24XX: Add core support for Samsung's S3C24XX SoCs
  serial: Add support to 4 ports in serial_s3c24x0
  serial: Use a more precise baud rate generation for serial_s3c24x0
  serial: Remove unnecessary delay in serial_s3c24x0
  rtc: Improve rtc_get() on s3c24x0_rtc
  rtc: Fix rtc_reset() on s3c24x0_rtc
  rtc: Don't allow setting unsuported years on s3c24x0_rtc
  S3C24XX: Add NAND Flash driver
  Add u-boot-pad.bin target to the Makefile
  S3C24XX: Add support to MINI2416 board

 MAINTAINERS                                     |    4 +
 Makefile                                        |   11 +-
 README                                          |    3 +
 arch/arm/cpu/arm926ejs/s3c24xx/Makefile         |   56 +++
 arch/arm/cpu/arm926ejs/s3c24xx/cpu.c            |   57 +++
 arch/arm/cpu/arm926ejs/s3c24xx/cpu_info.c       |   57 +++
 arch/arm/cpu/arm926ejs/s3c24xx/s3c2412_speed.c  |  114 +++++
 arch/arm/cpu/arm926ejs/s3c24xx/s3c2416_speed.c  |  116 +++++
 arch/arm/cpu/arm926ejs/s3c24xx/timer.c          |  152 ++++++
 arch/arm/include/asm/arch-s3c24xx/s3c2412.h     |  130 +++++
 arch/arm/include/asm/arch-s3c24xx/s3c2416.h     |  183 +++++++
 arch/arm/include/asm/arch-s3c24xx/s3c24x0_cpu.h |   41 ++
 arch/arm/include/asm/arch-s3c24xx/s3c24xx.h     |  615 +++++++++++++++++++++++
 arch/arm/include/asm/arch-s3c24xx/s3c24xx_cpu.h |   30 ++
 arch/arm/include/asm/arch-s3c24xx/spl.h         |   29 ++
 board/boardcon/mini2416/Makefile                |   47 ++
 board/boardcon/mini2416/config.mk               |    4 +
 board/boardcon/mini2416/mini2416.c              |  104 ++++
 board/boardcon/mini2416/mini2416_spl.c          |  203 ++++++++
 board/boardcon/mini2416/u-boot-spl.lds          |   63 +++
 boards.cfg                                      |    1 +
 drivers/mtd/nand/Makefile                       |    1 +
 drivers/mtd/nand/s3c24xx_nand.c                 |  246 +++++++++
 drivers/rtc/s3c24x0_rtc.c                       |   30 +-
 drivers/serial/serial_s3c24x0.c                 |   52 +-
 include/common.h                                |   12 +
 include/configs/VCMA9.h                         |    2 +-
 include/configs/mini2416.h                      |  202 ++++++++
 include/configs/smdk2410.h                      |    2 +-
 29 files changed, 2540 insertions(+), 27 deletions(-)
 create mode 100644 arch/arm/cpu/arm926ejs/s3c24xx/Makefile
 create mode 100644 arch/arm/cpu/arm926ejs/s3c24xx/cpu.c
 create mode 100644 arch/arm/cpu/arm926ejs/s3c24xx/cpu_info.c
 create mode 100644 arch/arm/cpu/arm926ejs/s3c24xx/s3c2412_speed.c
 create mode 100644 arch/arm/cpu/arm926ejs/s3c24xx/s3c2416_speed.c
 create mode 100644 arch/arm/cpu/arm926ejs/s3c24xx/timer.c
 create mode 100644 arch/arm/include/asm/arch-s3c24xx/s3c2412.h
 create mode 100644 arch/arm/include/asm/arch-s3c24xx/s3c2416.h
 create mode 100644 arch/arm/include/asm/arch-s3c24xx/s3c24x0_cpu.h
 create mode 100644 arch/arm/include/asm/arch-s3c24xx/s3c24xx.h
 create mode 100644 arch/arm/include/asm/arch-s3c24xx/s3c24xx_cpu.h
 create mode 100644 arch/arm/include/asm/arch-s3c24xx/spl.h
 create mode 100644 board/boardcon/mini2416/Makefile
 create mode 100644 board/boardcon/mini2416/config.mk
 create mode 100644 board/boardcon/mini2416/mini2416.c
 create mode 100644 board/boardcon/mini2416/mini2416_spl.c
 create mode 100644 board/boardcon/mini2416/u-boot-spl.lds
 create mode 100644 drivers/mtd/nand/s3c24xx_nand.c
 create mode 100644 include/configs/mini2416.h

-- 
1.7.9.5

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

end of thread, other threads:[~2012-09-18 20:57 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-18 17:40 [U-Boot] [PATCH v3 00/11] S3C24XX: Add support to MINI2416 board José Miguel Gonçalves
2012-09-18 17:40 ` [U-Boot] [PATCH v3 01/11] Add configuration option to select printf() inclusion on SPL José Miguel Gonçalves
2012-09-18 17:40 ` [U-Boot] [PATCH v3 02/11] S3C24XX: Add core support for Samsung's S3C24XX SoCs José Miguel Gonçalves
2012-09-18 17:40 ` [U-Boot] [PATCH v3 03/11] serial: Add support to 4 ports in serial_s3c24x0 José Miguel Gonçalves
2012-09-18 17:40 ` [U-Boot] [PATCH v3 04/11] serial: Use a more precise baud rate generation for serial_s3c24x0 José Miguel Gonçalves
2012-09-18 17:40 ` [U-Boot] [PATCH v3 05/11] serial: Remove unnecessary delay in serial_s3c24x0 José Miguel Gonçalves
2012-09-18 17:40 ` [U-Boot] [PATCH v3 06/11] rtc: Improve rtc_get() on s3c24x0_rtc José Miguel Gonçalves
2012-09-18 17:40 ` [U-Boot] [PATCH v3 07/11] rtc: Fix rtc_reset() " José Miguel Gonçalves
2012-09-18 17:40 ` [U-Boot] [PATCH v3 08/11] rtc: Don't allow setting unsuported years " José Miguel Gonçalves
2012-09-18 17:40 ` [U-Boot] [PATCH v3 09/11] S3C24XX: Add NAND Flash driver José Miguel Gonçalves
2012-09-18 18:02   ` Scott Wood
2012-09-18 18:22     ` José Miguel Gonçalves
2012-09-18 18:30       ` Scott Wood
2012-09-18 18:48         ` José Miguel Gonçalves
2012-09-18 20:57           ` Scott Wood
2012-09-18 17:40 ` [U-Boot] [PATCH v3 10/11] Add u-boot-pad.bin target to the Makefile José Miguel Gonçalves
2012-09-18 17:40 ` [U-Boot] [PATCH v3 11/11] S3C24XX: Add support to MINI2416 board José Miguel Gonçalves

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.