aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile9
-rw-r--r--arch/sparc/Kconfig7
-rw-r--r--arch/sparc/Makefile82
-rw-r--r--arch/sparc/configs/sparc32_defconfig (renamed from arch/sparc/defconfig)0
-rw-r--r--arch/sparc/configs/sparc64_defconfig (renamed from arch/sparc64/defconfig)0
-rw-r--r--arch/sparc64/Kconfig1
-rw-r--r--arch/sparc64/Makefile48
7 files changed, 81 insertions, 66 deletions
diff --git a/Makefile b/Makefile
index 9a49960f7aad..7ec3b97336ca 100644
--- a/Makefile
+++ b/Makefile
@@ -205,13 +205,14 @@ ifeq ($(ARCH),x86_64)
205 SRCARCH := x86 205 SRCARCH := x86
206endif 206endif
207 207
208# Where to locate arch specific headers 208# Additional ARCH settings for sparc
209ifeq ($(ARCH),sparc64) 209ifeq ($(ARCH),sparc64)
210 hdr-arch := sparc 210 SRCARCH := sparc
211else
212 hdr-arch := $(SRCARCH)
213endif 211endif
214 212
213# Where to locate arch specific headers
214hdr-arch := $(SRCARCH)
215
215KCONFIG_CONFIG ?= .config 216KCONFIG_CONFIG ?= .config
216 217
217# SHELL used by kbuild 218# SHELL used by kbuild
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig
index e16253531624..26ddeedb5166 100644
--- a/arch/sparc/Kconfig
+++ b/arch/sparc/Kconfig
@@ -41,6 +41,13 @@ config SPARC64
41 select RTC_DRV_SUN4V 41 select RTC_DRV_SUN4V
42 select RTC_DRV_STARFIRE 42 select RTC_DRV_STARFIRE
43 43
44config ARCH_DEFCONFIG
45 string
46 default "arch/sparc/configs/sparc32_defconfig" if SPARC32
47 default "arch/sparc/configs/sparc64_defconfig" if SPARC64
48
49
50
44config 64BIT 51config 64BIT
45 def_bool y if SPARC64 52 def_bool y if SPARC64
46 53
diff --git a/arch/sparc/Makefile b/arch/sparc/Makefile
index 9c4c8b8b451d..3c043baf92bc 100644
--- a/arch/sparc/Makefile
+++ b/arch/sparc/Makefile
@@ -2,9 +2,21 @@
2# sparc/Makefile 2# sparc/Makefile
3# 3#
4# Makefile for the architecture dependent flags and dependencies on the 4# Makefile for the architecture dependent flags and dependencies on the
5# Sparc. 5# Sparc and sparc64.
6# 6#
7# Copyright (C) 1994 David S. Miller (davem@caip.rutgers.edu) 7# Copyright (C) 1994,1996,1998 David S. Miller (davem@caip.rutgers.edu)
8# Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz)
9
10# We are not yet configured - so test on arch
11ifeq ($(ARCH),sparc)
12 KBUILD_DEFCONFIG := sparc32_defconfig
13else
14 KBUILD_DEFCONFIG := sparc64_defconfig
15endif
16
17ifeq ($(CONFIG_SPARC32),y)
18#####
19# sparc32
8# 20#
9 21
10# 22#
@@ -26,10 +38,48 @@ CPPFLAGS_vmlinux.lds += -m32
26# Actual linking is done with "make image". 38# Actual linking is done with "make image".
27LDFLAGS_vmlinux = -r 39LDFLAGS_vmlinux = -r
28 40
29head-y := arch/sparc/kernel/head.o arch/sparc/kernel/init_task.o 41# Default target
42all: zImage
43
44
45else
46#####
47# sparc64
48#
49
50CHECKFLAGS += -D__sparc__ -D__sparc_v9__ -D__arch64__ -m64
51
52# Undefine sparc when processing vmlinux.lds - it is used
53# And teach CPP we are doing 64 bit builds (for this case)
54CPPFLAGS_vmlinux.lds += -m64 -Usparc
55LDFLAGS := -m elf64_sparc
56export BITS := 64
57
58KBUILD_CFLAGS += -m64 -pipe -mno-fpu -mcpu=ultrasparc -mcmodel=medlow \
59 -ffixed-g4 -ffixed-g5 -fcall-used-g7 -Wno-sign-compare \
60 -Wa,--undeclared-regs
61KBUILD_CFLAGS += $(call cc-option,-mtune=ultrasparc3)
62KBUILD_AFLAGS += -m64 -mcpu=ultrasparc -Wa,--undeclared-regs
63
64ifeq ($(CONFIG_MCOUNT),y)
65 KBUILD_CFLAGS += -pg
66endif
67
68endif
30 69
31core-y += arch/sparc/kernel/ arch/sparc/mm/ arch/sparc/math-emu/ 70head-$(CONFIG_SPARC32) := arch/sparc/kernel/head.o
32libs-y += arch/sparc/prom/ arch/sparc/lib/ 71head-$(CONFIG_SPARC32) += arch/sparc/kernel/init_task.o
72head-$(CONFIG_SPARC64) := arch/sparc64/kernel/head.o
73head-$(CONFIG_SPARC64) += arch/sparc64/kernel/init_task.o
74
75core-$(CONFIG_SPARC32) += arch/sparc/kernel/
76core-$(CONFIG_SPARC64) += arch/sparc64/kernel/
77core-y += arch/sparc/mm/ arch/sparc/math-emu/
78
79libs-$(CONFIG_SPARC32) += arch/sparc/prom/
80libs-$(CONFIG_SPARC32) += arch/sparc/lib/
81libs-$(CONFIG_SPARC64) += arch/sparc64/prom/
82libs-$(CONFIG_SPARC64) += arch/sparc64/lib/
33 83
34drivers-$(CONFIG_OPROFILE) += arch/sparc/oprofile/ 84drivers-$(CONFIG_OPROFILE) += arch/sparc/oprofile/
35 85
@@ -44,23 +94,29 @@ ifdef CONFIG_KALLSYMS
44export kallsyms.o := .tmp_kallsyms2.o 94export kallsyms.o := .tmp_kallsyms2.o
45endif 95endif
46 96
47# Default target 97boot-y := arch/sparc/boot
48all: zImage 98boot-$(CONFIG_SPARC64) := arch/sparc64/boot
49
50boot := arch/sparc/boot
51 99
52image zImage tftpboot.img: vmlinux 100image zImage tftpboot.img vmlinux.aout: vmlinux
53 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 101 $(Q)$(MAKE) $(build)=$(boot-y) $(boot-y)/$@
54 102
55archclean: 103archclean:
56 $(Q)$(MAKE) $(clean)=$(boot) 104 $(Q)$(MAKE) $(clean)=$(boot-y)
57 105
58# This is the image used for packaging 106# This is the image used for packaging
59KBUILD_IMAGE := $(boot)/zImage 107KBUILD_IMAGE := $(boot-y)/zImage
60 108
61# Don't use tabs in echo arguments. 109# Don't use tabs in echo arguments.
110ifeq ($(ARCH),sparc)
62define archhelp 111define archhelp
63 echo '* image - kernel image ($(boot)/image)' 112 echo '* image - kernel image ($(boot)/image)'
64 echo '* zImage - stripped kernel image ($(boot)/zImage)' 113 echo '* zImage - stripped kernel image ($(boot)/zImage)'
65 echo ' tftpboot.img - image prepared for tftp' 114 echo ' tftpboot.img - image prepared for tftp'
66endef 115endef
116else
117define archhelp
118 echo '* vmlinux - Standard sparc64 kernel'
119 echo ' vmlinux.aout - a.out kernel for sparc64'
120 echo ' tftpboot.img - image prepared for tftp'
121endef
122endif
diff --git a/arch/sparc/defconfig b/arch/sparc/configs/sparc32_defconfig
index 2e3a149ea0e7..2e3a149ea0e7 100644
--- a/arch/sparc/defconfig
+++ b/arch/sparc/configs/sparc32_defconfig
diff --git a/arch/sparc64/defconfig b/arch/sparc/configs/sparc64_defconfig
index 05d19a3e590f..05d19a3e590f 100644
--- a/arch/sparc64/defconfig
+++ b/arch/sparc/configs/sparc64_defconfig
diff --git a/arch/sparc64/Kconfig b/arch/sparc64/Kconfig
deleted file mode 100644
index caa9421d598a..000000000000
--- a/arch/sparc64/Kconfig
+++ /dev/null
@@ -1 +0,0 @@
1source arch/sparc/Kconfig
diff --git a/arch/sparc64/Makefile b/arch/sparc64/Makefile
deleted file mode 100644
index bfe08680c897..000000000000
--- a/arch/sparc64/Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
1# sparc64/Makefile
2#
3# Makefile for the architecture dependent flags and dependencies on the
4# 64-bit Sparc.
5#
6# Copyright (C) 1996,1998 David S. Miller (davem@caip.rutgers.edu)
7# Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz)
8#
9
10CHECKFLAGS += -D__sparc__ -D__sparc_v9__ -D__arch64__ -m64
11
12# Undefine sparc when processing vmlinux.lds - it is used
13# And teach CPP we are doing 64 bit builds (for this case)
14CPPFLAGS_vmlinux.lds += -m64 -Usparc
15LDFLAGS := -m elf64_sparc
16export BITS := 64
17
18KBUILD_CFLAGS += -m64 -pipe -mno-fpu -mcpu=ultrasparc -mcmodel=medlow \
19 -ffixed-g4 -ffixed-g5 -fcall-used-g7 -Wno-sign-compare \
20 -Wa,--undeclared-regs
21KBUILD_CFLAGS += $(call cc-option,-mtune=ultrasparc3)
22KBUILD_AFLAGS += -m64 -mcpu=ultrasparc -Wa,--undeclared-regs
23
24ifeq ($(CONFIG_MCOUNT),y)
25 KBUILD_CFLAGS += -pg
26endif
27
28head-y := arch/sparc64/kernel/head.o arch/sparc64/kernel/init_task.o
29
30core-y += arch/sparc64/kernel/ arch/sparc/mm/
31core-y += arch/sparc/math-emu/
32libs-y += arch/sparc64/prom/ arch/sparc64/lib/
33drivers-$(CONFIG_OPROFILE) += arch/sparc/oprofile/
34
35boot := arch/sparc64/boot
36
37image tftpboot.img vmlinux.aout: vmlinux
38 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
39
40archclean:
41 $(Q)$(MAKE) $(clean)=$(boot)
42
43define archhelp
44 echo '* vmlinux - Standard sparc64 kernel'
45 echo ' vmlinux.aout - a.out kernel for sparc64'
46 echo ' tftpboot.img - Image prepared for tftp'
47endef
48