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

Commit ceade897 authored by Russell King's avatar Russell King
Browse files

ARM: Add Versatile Express support

parent 9bf5b2ef
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -276,6 +276,20 @@ config ARCH_VERSATILE
	help
	  This enables support for ARM Ltd Versatile board.

config ARCH_VEXPRESS
	bool "ARM Ltd. Versatile Express family"
	select ARCH_WANT_OPTIONAL_GPIOLIB
	select ARM_AMBA
	select ARM_TIMER_SP804
	select COMMON_CLKDEV
	select GENERIC_CLOCKEVENTS
	select GENERIC_TIME
	select HAVE_CLK
	select ICST
	select PLAT_VERSATILE
	help
	  This enables support for the ARM Ltd Versatile Express boards.

config ARCH_AT91
	bool "Atmel AT91"
	select GENERIC_GPIO
@@ -926,6 +940,8 @@ source "arch/arm/mach-ux500/Kconfig"

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

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

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

# Definitions to make life easier
+1 −0
Original line number Diff line number Diff line
@@ -175,6 +175,7 @@ machine-$(CONFIG_ARCH_STMP37XX) := stmp37xx
machine-$(CONFIG_ARCH_U300)		:= u300
machine-$(CONFIG_ARCH_U8500)		:= ux500
machine-$(CONFIG_ARCH_VERSATILE)	:= versatile
machine-$(CONFIG_ARCH_VEXPRESS)		:= vexpress
machine-$(CONFIG_ARCH_W90X900)		:= w90x900
machine-$(CONFIG_ARCH_NUC93X)		:= nuc93x
machine-$(CONFIG_FOOTBRIDGE)		:= footbridge
+4 −0
Original line number Diff line number Diff line
menu "Versatile Express platform type"
	depends on ARCH_VEXPRESS

endmenu
+5 −0
Original line number Diff line number Diff line
#
# Makefile for the linux kernel.
#

obj-y					:= v2m.o
+3 −0
Original line number Diff line number Diff line
   zreladdr-y	:= 0x60008000
params_phys-y	:= 0x60000100
initrd_phys-y	:= 0x60800000
Loading