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

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

ARM: 6015/1: ST SPEAr: Added source files for SPEAr6xx machine family

parent 8c0236fc
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
#
# SPEAr6XX Machine configuration file
#

if ARCH_SPEAR6XX

choice
	prompt "SPEAr6XX Family"
	default MACH_SPEAR600

config MACH_SPEAR600
	bool "SPEAr600"
	help
	  Supports ST SPEAr600 Machine
endchoice

# Adding SPEAr6XX machine specific configuration files
source "arch/arm/mach-spear6xx/Kconfig600"

endif #ARCH_SPEAR6XX
+17 −0
Original line number Diff line number Diff line
#
# SPEAr600 machine configuration file
#

if MACH_SPEAR600

choice
	prompt "SPEAr600 Boards"
	default BOARD_SPEAR600_EVB

config	BOARD_SPEAR600_EVB
	bool "SPEAr600 Evaluation Board"
	help
	  Supports ST SPEAr600 Evaluation Board
endchoice

endif	#MACH_SPEAR600
+12 −0
Original line number Diff line number Diff line
#
# Makefile for SPEAr6XX machine series
#

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

# spear600 specific files
obj-$(CONFIG_MACH_SPEAR600) += spear600.o

# spear600 boards files
obj-$(CONFIG_BOARD_SPEAR600_EVB) += spear600_evb.o
+3 −0
Original line number Diff line number Diff line
zreladdr-y	:= 0x00008000
params_phys-y	:= 0x00000100
initrd_phys-y	:= 0x00800000
+25 −0
Original line number Diff line number Diff line
/*
 * arch/arm/mach-spear6xx/spear600.c
 *
 * SPEAr600 machine source file
 *
 * Copyright (C) 2009 ST Microelectronics
 * Rajeev Kumar<rajeev-dlh.kumar@st.com>
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2. This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */

#include <linux/ptrace.h>
#include <asm/irq.h>
#include <mach/generic.h>
#include <mach/spear.h>

/* Add spear600 specific devices here */

void __init spear600_init(void)
{
	/* call spear6xx family common init function */
	spear6xx_init();
}
Loading