Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a08ab637 authored by Ben Dooks's avatar Ben Dooks
Browse files

[ARM] S3C64XX: Initial arch directory



Add the initial PLAT_S3C64XX support files
and directory structure.

Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
parent 9bc1aaea
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -517,6 +517,13 @@ config ARCH_S3C2410
	  BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or
	  the Samsung SMDK2410 development board (and derivatives).

config ARCH_S3C64XX
	bool "Samsung S3C64XX"
	select GENERIC_GPIO
	select HAVE_CLK
	help
	  Samsung S3C64XX series based systems

config ARCH_SHARK
	bool "Shark"
	select CPU_SA110
@@ -620,6 +627,7 @@ source "arch/arm/mach-orion5x/Kconfig"
source "arch/arm/mach-kirkwood/Kconfig"

source "arch/arm/plat-s3c24xx/Kconfig"
source "arch/arm/plat-s3c64xx/Kconfig"
source "arch/arm/plat-s3c/Kconfig"

if ARCH_S3C2410
@@ -631,6 +639,11 @@ source "arch/arm/mach-s3c2442/Kconfig"
source "arch/arm/mach-s3c2443/Kconfig"
endif

if ARCH_S3C64XX
source "arch/arm/mach-s3c6400/Kconfig"
source "arch/arm/mach-s3c6410/Kconfig"
endif

source "arch/arm/mach-lh7a40x/Kconfig"

source "arch/arm/mach-imx/Kconfig"
+2 −0
Original line number Diff line number Diff line
@@ -123,6 +123,8 @@ endif
 machine-$(CONFIG_ARCH_S3C2410)	   := s3c2410 s3c2400 s3c2412 s3c2440 s3c2442 s3c2443
 machine-$(CONFIG_ARCH_S3C24A0)	   := s3c24a0
    plat-$(CONFIG_PLAT_S3C24XX)	   := s3c24xx s3c
 machine-$(CONFIG_ARCH_S3C64XX)	   := s3c6400
    plat-$(CONFIG_PLAT_S3C64XX)	   := s3c64xx s3c
 machine-$(CONFIG_ARCH_LH7A40X)	   := lh7a40x
 machine-$(CONFIG_ARCH_VERSATILE)  := versatile
 machine-$(CONFIG_ARCH_IMX)	   := imx
+8 −0
Original line number Diff line number Diff line
# arch/arm/mach-s3c6400/Kconfig
#
# Copyright 2008 Openmoko, Inc.
#	Simtec Electronics, Ben Dooks <ben@simtec.co.uk>
#
# Licensed under GPLv2

# Currently nothing here, this will be added later
+15 −0
Original line number Diff line number Diff line
# arch/arm/mach-s3c6400/Makefile
#
# Copyright 2008 Openmoko, Inc.
# Copyright 2008 Simtec Electronics
#
# Licensed under GPLv2

obj-y				:=
obj-m				:=
obj-n				:=
obj-				:=

# Core support for S3C6400 system

obj-n				+= blank.o
+2 −0
Original line number Diff line number Diff line
   zreladdr-y	:= 0x50008000
params_phys-y	:= 0x50000100
Loading