Hi all,

This patches add basic support for Samsung's S5P6440 SoC.
The feature set that is added are clock, timer, uart and interrupts.

The clock changes are based on Harald Welte's patch. This patch is
also based on Ben's plat-samsung patch.

[PATCH 1/7] ARM: S5P6440: Kconfigs and Makefiles
[PATCH 2/7] ARM: S5P6440: CPU initialization
[PATCH 3/7] ARM: S5P6440: Clock and PLL support
[PATCH 4/7] ARM: S5P6440: IRQ support
[PATCH 5/7] ARM: S5P6440: Timer support
[PATCH 6/7] ARM: S5P6440: Board and configuration file
[PATCH 7/7] ARM: S5P6440: Serial port support

Signed-off-by: Kukjin Kim <[email protected]>
Signed-off-by: Adityapratap Sharma <[email protected]>
Signed-off-by: Thomas Abraham <[email protected]>
Signed-off-by: Atul Dahiya <[email protected]>
---
 arch/arm/Kconfig                                 |   14 +-
 arch/arm/Makefile                                |    2 +
 arch/arm/configs/s5p6440_defconfig               |  893
++++++++++++++++++++++
 arch/arm/mach-s5p6440/Kconfig                    |   21 +
 arch/arm/mach-s5p6440/Makefile                   |   19 +
 arch/arm/mach-s5p6440/Makefile.boot              |    2 +
 arch/arm/mach-s5p6440/cpu.c                      |  120 +++
 arch/arm/mach-s5p6440/include/mach/debug-macro.S |   37 +
 arch/arm/mach-s5p6440/include/mach/entry-macro.S |   42 +
 arch/arm/mach-s5p6440/include/mach/gpio-core.h   |   19 +
 arch/arm/mach-s5p6440/include/mach/gpio.h        |   79 ++
 arch/arm/mach-s5p6440/include/mach/hardware.h    |   18 +
 arch/arm/mach-s5p6440/include/mach/idle.h        |   23 +
 arch/arm/mach-s5p6440/include/mach/irqs.h        |  111 +++
 arch/arm/mach-s5p6440/include/mach/map.h         |  100 +++
 arch/arm/mach-s5p6440/include/mach/memory.h      |   22 +
 arch/arm/mach-s5p6440/include/mach/pwm-clock.h   |   58 ++
 arch/arm/mach-s5p6440/include/mach/regs-clock.h  |  207 +++++
 arch/arm/mach-s5p6440/include/mach/regs-irq.h    |   23 +
 arch/arm/mach-s5p6440/include/mach/system.h      |   40 +
 arch/arm/mach-s5p6440/include/mach/tick.h        |   24 +
 arch/arm/mach-s5p6440/include/mach/uncompress.h  |   24 +
 arch/arm/mach-s5p6440/mach-smdk6440.c            |  113 +++
 arch/arm/plat-s3c/include/plat/cpu.h             |    2 +
 arch/arm/plat-s3c/include/plat/devs.h            |    1 +
 arch/arm/plat-s3c/include/plat/regs-serial.h     |    1 +
 arch/arm/plat-s5p/Kconfig                        |   36 +
 arch/arm/plat-s5p/Makefile                       |   25 +
 arch/arm/plat-s5p/clock.c                        |  147 ++++
 arch/arm/plat-s5p/cpu.c                          |   88 +++
 arch/arm/plat-s5p/dev-uart.c                     |  165 ++++
 arch/arm/plat-s5p/include/plat/irqs.h            |   79 ++
 arch/arm/plat-s5p/include/plat/pll.h             |   74 ++
 arch/arm/plat-s5p/include/plat/s5p-clock.h       |   41 +
 arch/arm/plat-s5p/include/plat/s5p6440.h         |   33 +
 arch/arm/plat-s5p/irq.c                          |  251 ++++++
 arch/arm/plat-s5p/s5p6440-clock.c                |  703 +++++++++++++++++
 arch/arm/plat-s5p/s5p6440-init.c                 |   23 +
 arch/arm/plat-s5p/setup-i2c0.c                   |   23 +
 arch/arm/plat-s5p/time.c                         |  227 ++++++
 arch/arm/plat-samsung/include/plat/clock.h       |    1 +
 drivers/serial/Kconfig                           |    9 +-
 drivers/serial/Makefile                          |    1 +
 43 files changed, 3939 insertions(+), 2 deletions(-)

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <[email protected]>, Senior Engineer,
System LSI Division, SAMSUNG ELECTRONICS CO., LTD.

--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to