Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
0d8e08f5
Commit
0d8e08f5
authored
Apr 19, 2012
by
Viresh Kumar
Committed by
Arnd Bergmann
May 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SPEAr13xx: Add compilation support
Signed-off-by:
Viresh Kumar
<
viresh.kumar@st.com
>
parent
07658d9a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
2 deletions
+17
-2
arch/arm/Makefile
arch/arm/Makefile
+2
-0
arch/arm/plat-spear/Kconfig
arch/arm/plat-spear/Kconfig
+12
-0
arch/arm/plat-spear/Makefile
arch/arm/plat-spear/Makefile
+3
-2
No files found.
arch/arm/Makefile
View file @
0d8e08f5
...
...
@@ -192,6 +192,8 @@ machine-$(CONFIG_ARCH_VEXPRESS) := vexpress
machine-$(CONFIG_ARCH_VT8500)
:=
vt8500
machine-$(CONFIG_ARCH_W90X900)
:=
w90x900
machine-$(CONFIG_FOOTBRIDGE)
:=
footbridge
machine-$(CONFIG_MACH_SPEAR1310)
:=
spear13xx
machine-$(CONFIG_MACH_SPEAR1340)
:=
spear13xx
machine-$(CONFIG_MACH_SPEAR300)
:=
spear3xx
machine-$(CONFIG_MACH_SPEAR310)
:=
spear3xx
machine-$(CONFIG_MACH_SPEAR320)
:=
spear3xx
...
...
arch/arm/plat-spear/Kconfig
View file @
0d8e08f5
...
...
@@ -8,6 +8,17 @@ choice
prompt "ST SPEAr Family"
default ARCH_SPEAR3XX
config ARCH_SPEAR13XX
bool "ST SPEAr13xx with Device Tree"
select ARM_GIC
select CPU_V7
select USE_OF
select HAVE_SMP
select MIGHT_HAVE_CACHE_L2X0
select PINCTRL
help
Supports for ARM's SPEAR13XX family
config ARCH_SPEAR3XX
bool "ST SPEAr3xx with Device Tree"
select ARM_VIC
...
...
@@ -27,6 +38,7 @@ config ARCH_SPEAR6XX
endchoice
# Adding SPEAr machine specific configuration files
source "arch/arm/mach-spear13xx/Kconfig"
source "arch/arm/mach-spear3xx/Kconfig"
source "arch/arm/mach-spear6xx/Kconfig"
...
...
arch/arm/plat-spear/Makefile
View file @
0d8e08f5
...
...
@@ -3,6 +3,7 @@
#
# Common support
obj-y
:=
restart.o time.o
pl080.o
obj-y
:=
restart.o time.o
obj-$(CONFIG_ARCH_SPEAR3XX)
+=
shirq.o
obj-$(CONFIG_ARCH_SPEAR3XX)
+=
pl080.o shirq.o
obj-$(CONFIG_ARCH_SPEAR6XX)
+=
pl080.o
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment