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

Commit bc4e814e authored by Viresh Kumar's avatar Viresh Kumar Committed by Russell King
Browse files

ARM: 6017/1: ST SPEAr: Added source files for SPEAr3xx machine family

parent cee37e50
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
#
# SPEAr3XX Machine configuration file
#

if ARCH_SPEAR3XX

choice
	prompt "SPEAr3XX Family"
	default MACH_SPEAR300

config MACH_SPEAR300
	bool "SPEAr300"
	help
	  Supports ST SPEAr300 Machine

config MACH_SPEAR310
	bool "SPEAr310"
	help
	  Supports ST SPEAr310 Machine

config MACH_SPEAR320
	bool "SPEAr320"
	help
	  Supports ST SPEAr320 Machine

endchoice

# Adding SPEAr3XX machine specific configuration files
source "arch/arm/mach-spear3xx/Kconfig300"
source "arch/arm/mach-spear3xx/Kconfig310"
source "arch/arm/mach-spear3xx/Kconfig320"

endif #ARCH_SPEAR3XX
+17 −0
Original line number Diff line number Diff line
#
# SPEAr300 machine configuration file
#

if MACH_SPEAR300

choice
	prompt "SPEAr300 Boards"
	default BOARD_SPEAR300_EVB

config BOARD_SPEAR300_EVB
	bool "SPEAr300 Evaluation Board"
	help
	  Supports ST SPEAr300 Evaluation Board
endchoice

endif	#MACH_SPEAR300
+17 −0
Original line number Diff line number Diff line
#
# SPEAr310 machine configuration file
#

if MACH_SPEAR310

choice
	prompt "SPEAr310 Boards"
	default BOARD_SPEAR310_EVB

config BOARD_SPEAR310_EVB
	bool "SPEAr310 Evaluation Board"
	help
	  Supports ST SPEAr310 Evaluation Board
endchoice

endif	#MACH_SPEAR310
+17 −0
Original line number Diff line number Diff line
#
# SPEAr320 machine configuration file
#

if MACH_SPEAR320

choice
	prompt "SPEAr320 Boards"
	default BOARD_SPEAR320_EVB

config BOARD_SPEAR320_EVB
	bool "SPEAr320 Evaluation Board"
	help
	  Supports ST SPEAr320 Evaluation Board
endchoice

endif	#MACH_SPEAR320
+26 −0
Original line number Diff line number Diff line
#
# Makefile for SPEAr3XX machine series
#

# common files
obj-y	+= spear3xx.o clock.o

# spear300 specific files
obj-$(CONFIG_MACH_SPEAR300) += spear300.o

# spear300 boards files
obj-$(CONFIG_BOARD_SPEAR300_EVB) += spear300_evb.o


# spear310 specific files
obj-$(CONFIG_MACH_SPEAR310) += spear310.o

# spear310 boards files
obj-$(CONFIG_BOARD_SPEAR310_EVB) += spear310_evb.o


# spear320 specific files
obj-$(CONFIG_MACH_SPEAR320) += spear320.o

# spear320 boards files
obj-$(CONFIG_BOARD_SPEAR320_EVB) += spear320_evb.o
Loading