2005-04-16 22:20:36 +00:00
|
|
|
#
|
|
|
|
# Makefile for the Linux/MIPS kernel.
|
|
|
|
#
|
|
|
|
|
2012-05-03 09:02:55 +00:00
|
|
|
extra-y := head.o vmlinux.lds
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
obj-y += cpu-probe.o branch.o entry.o genex.o irq.o process.o \
|
2008-03-08 02:55:58 +00:00
|
|
|
ptrace.o reset.o setup.o signal.o syscall.o \
|
2010-02-19 00:13:04 +00:00
|
|
|
time.o topology.o traps.o unaligned.o watch.o vdso.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-11-20 12:34:29 +00:00
|
|
|
ifdef CONFIG_FUNCTION_TRACER
|
MIPS: Tracing: Add dynamic function tracer support
With dynamic function tracer, by default, _mcount is defined as an
"empty" function, it returns directly without any more action . When
enabling it in user-space, it will jump to a real tracing
function(ftrace_caller), and do the real job for us.
Differ from the static function tracer, dynamic function tracer provides
two functions ftrace_make_call()/ftrace_make_nop() to enable/disable the
tracing of some indicated kernel functions(set_ftrace_filter).
In the -v4 version, the implementation of this support is basically the same as
X86 version does: _mcount is implemented as an empty function and ftrace_caller
is implemented as a real tracing function respectively.
But in this version, to support module tracing with the help of
-mlong-calls in arch/mips/Makefile:
MODFLAGS += -mlong-calls.
The stuff becomes a little more complex. We need to cope with two
different type of calling to _mcount.
For the kernel part, the calling to _mcount(result of "objdump -hdr
vmlinux"). is like this:
108: 03e0082d move at,ra
10c: 0c000000 jal 0 <fpcsr_pending>
10c: R_MIPS_26 _mcount
10c: R_MIPS_NONE *ABS*
10c: R_MIPS_NONE *ABS*
110: 00020021 nop
For the module with -mlong-calls, it looks like this:
c: 3c030000 lui v1,0x0
c: R_MIPS_HI16 _mcount
c: R_MIPS_NONE *ABS*
c: R_MIPS_NONE *ABS*
10: 64630000 daddiu v1,v1,0
10: R_MIPS_LO16 _mcount
10: R_MIPS_NONE *ABS*
10: R_MIPS_NONE *ABS*
14: 03e0082d move at,ra
18: 0060f809 jalr v1
In the kernel version, there is only one "_mcount" string for every
kernel function, so, we just need to match this one in mcount_regex of
scripts/recordmcount.pl, but in the module version, we need to choose
one of the two to match. Herein, I choose the first one with
"R_MIPS_HI16 _mcount".
and In the kernel verion, without module tracing support, we just need
to replace "jal _mcount" by "jal ftrace_caller" to do real tracing, and
filter the tracing of some kernel functions via replacing it by a nop
instruction.
but as we have described before, the instruction "jal ftrace_caller" only left
32bit length for the address of ftrace_caller, it will fail when calling from
the module space. so, herein, we must replace something else.
the basic idea is loading the address of ftrace_caller to v1 via changing these
two instructions:
lui v1,0x0
addiu v1,v1,0
If we want to enable the tracing, we need to replace the above instructions to:
lui v1, HI_16BIT_ftrace_caller
addiu v1, v1, LOW_16BIT_ftrace_caller
If we want to stop the tracing of the indicated kernel functions, we
just need to replace the "jalr v1" to a nop instruction. but we need to
replace two instructions and encode the above two instructions
oursevles.
Is there a simpler solution? Yes! Here it is, in this version, we put _mcount
and ftrace_caller together, which means the address of _mcount and
ftrace_caller is the same:
_mcount:
ftrace_caller:
j ftrace_stub
nop
...(do real tracing here)...
ftrace_stub:
jr ra
move ra, at
By default, the kernel functions call _mcount, and then jump to ftrace_stub and
return. and when we want to do real tracing, we just need to remove that "j
ftrace_stub", and it will run through the two "nop" instructions and then do
the real tracing job.
what about filtering job? we just need to do this:
lui v1, hi_16bit_of_mcount <--> b 1f (0x10000004)
addiu v1, v1, low_16bit_of_mcount
move at, ra
jalr v1
nop
1f: (rec->ip + 12)
In linux-mips64, there will be some local symbols, whose name are
prefixed by $L, which need to be filtered. thanks goes to Steven for
writing the mips64-specific function_regex.
In a conclusion, with RISC, things becomes easier with such a "stupid"
trick, RISC is something like K.I.S.S, and also, there are lots of
"simple" tricks in the whole ftrace support, thanks goes to Steven and
the other folks for providing such a wonderful tracing framework!
Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
Cc: Nicholas Mc Guire <der.herr@hofr.at>
Cc: zhangfx@lemote.com
Cc: Wu Zhangjin <wuzhangjin@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: linux-kernel@vger.kernel.org
Cc: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/675/
Acked-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2009-11-20 12:34:32 +00:00
|
|
|
CFLAGS_REMOVE_ftrace.o = -pg
|
2009-11-20 12:34:29 +00:00
|
|
|
CFLAGS_REMOVE_early_printk.o = -pg
|
2011-09-24 00:29:55 +00:00
|
|
|
CFLAGS_REMOVE_perf_event.o = -pg
|
|
|
|
CFLAGS_REMOVE_perf_event_mipsxx.o = -pg
|
2009-11-20 12:34:29 +00:00
|
|
|
endif
|
|
|
|
|
2007-11-01 01:57:55 +00:00
|
|
|
obj-$(CONFIG_CEVT_BCM1480) += cevt-bcm1480.o
|
2008-12-21 08:26:22 +00:00
|
|
|
obj-$(CONFIG_CEVT_R4K_LIB) += cevt-r4k.o
|
2008-09-09 19:48:52 +00:00
|
|
|
obj-$(CONFIG_MIPS_MT_SMTC) += cevt-smtc.o
|
2008-04-25 03:11:44 +00:00
|
|
|
obj-$(CONFIG_CEVT_DS1287) += cevt-ds1287.o
|
2007-10-22 10:43:15 +00:00
|
|
|
obj-$(CONFIG_CEVT_GT641XX) += cevt-gt641xx.o
|
2007-11-01 01:57:55 +00:00
|
|
|
obj-$(CONFIG_CEVT_SB1250) += cevt-sb1250.o
|
2007-10-24 16:34:09 +00:00
|
|
|
obj-$(CONFIG_CEVT_TXX9) += cevt-txx9.o
|
2007-11-01 01:57:55 +00:00
|
|
|
obj-$(CONFIG_CSRC_BCM1480) += csrc-bcm1480.o
|
2008-04-24 00:48:40 +00:00
|
|
|
obj-$(CONFIG_CSRC_IOASIC) += csrc-ioasic.o
|
2009-08-31 00:15:11 +00:00
|
|
|
obj-$(CONFIG_CSRC_POWERTV) += csrc-powertv.o
|
2008-12-21 08:26:22 +00:00
|
|
|
obj-$(CONFIG_CSRC_R4K_LIB) += csrc-r4k.o
|
2007-11-01 01:57:55 +00:00
|
|
|
obj-$(CONFIG_CSRC_SB1250) += csrc-sb1250.o
|
2008-04-28 16:14:26 +00:00
|
|
|
obj-$(CONFIG_SYNC_R4K) += sync-r4k.o
|
2007-10-18 16:48:11 +00:00
|
|
|
|
2006-09-26 14:44:01 +00:00
|
|
|
obj-$(CONFIG_STACKTRACE) += stacktrace.o
|
2005-02-21 10:45:09 +00:00
|
|
|
obj-$(CONFIG_MODULES) += mips_ksyms.o module.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
MIPS: Tracing: Add dynamic function tracer support
With dynamic function tracer, by default, _mcount is defined as an
"empty" function, it returns directly without any more action . When
enabling it in user-space, it will jump to a real tracing
function(ftrace_caller), and do the real job for us.
Differ from the static function tracer, dynamic function tracer provides
two functions ftrace_make_call()/ftrace_make_nop() to enable/disable the
tracing of some indicated kernel functions(set_ftrace_filter).
In the -v4 version, the implementation of this support is basically the same as
X86 version does: _mcount is implemented as an empty function and ftrace_caller
is implemented as a real tracing function respectively.
But in this version, to support module tracing with the help of
-mlong-calls in arch/mips/Makefile:
MODFLAGS += -mlong-calls.
The stuff becomes a little more complex. We need to cope with two
different type of calling to _mcount.
For the kernel part, the calling to _mcount(result of "objdump -hdr
vmlinux"). is like this:
108: 03e0082d move at,ra
10c: 0c000000 jal 0 <fpcsr_pending>
10c: R_MIPS_26 _mcount
10c: R_MIPS_NONE *ABS*
10c: R_MIPS_NONE *ABS*
110: 00020021 nop
For the module with -mlong-calls, it looks like this:
c: 3c030000 lui v1,0x0
c: R_MIPS_HI16 _mcount
c: R_MIPS_NONE *ABS*
c: R_MIPS_NONE *ABS*
10: 64630000 daddiu v1,v1,0
10: R_MIPS_LO16 _mcount
10: R_MIPS_NONE *ABS*
10: R_MIPS_NONE *ABS*
14: 03e0082d move at,ra
18: 0060f809 jalr v1
In the kernel version, there is only one "_mcount" string for every
kernel function, so, we just need to match this one in mcount_regex of
scripts/recordmcount.pl, but in the module version, we need to choose
one of the two to match. Herein, I choose the first one with
"R_MIPS_HI16 _mcount".
and In the kernel verion, without module tracing support, we just need
to replace "jal _mcount" by "jal ftrace_caller" to do real tracing, and
filter the tracing of some kernel functions via replacing it by a nop
instruction.
but as we have described before, the instruction "jal ftrace_caller" only left
32bit length for the address of ftrace_caller, it will fail when calling from
the module space. so, herein, we must replace something else.
the basic idea is loading the address of ftrace_caller to v1 via changing these
two instructions:
lui v1,0x0
addiu v1,v1,0
If we want to enable the tracing, we need to replace the above instructions to:
lui v1, HI_16BIT_ftrace_caller
addiu v1, v1, LOW_16BIT_ftrace_caller
If we want to stop the tracing of the indicated kernel functions, we
just need to replace the "jalr v1" to a nop instruction. but we need to
replace two instructions and encode the above two instructions
oursevles.
Is there a simpler solution? Yes! Here it is, in this version, we put _mcount
and ftrace_caller together, which means the address of _mcount and
ftrace_caller is the same:
_mcount:
ftrace_caller:
j ftrace_stub
nop
...(do real tracing here)...
ftrace_stub:
jr ra
move ra, at
By default, the kernel functions call _mcount, and then jump to ftrace_stub and
return. and when we want to do real tracing, we just need to remove that "j
ftrace_stub", and it will run through the two "nop" instructions and then do
the real tracing job.
what about filtering job? we just need to do this:
lui v1, hi_16bit_of_mcount <--> b 1f (0x10000004)
addiu v1, v1, low_16bit_of_mcount
move at, ra
jalr v1
nop
1f: (rec->ip + 12)
In linux-mips64, there will be some local symbols, whose name are
prefixed by $L, which need to be filtered. thanks goes to Steven for
writing the mips64-specific function_regex.
In a conclusion, with RISC, things becomes easier with such a "stupid"
trick, RISC is something like K.I.S.S, and also, there are lots of
"simple" tricks in the whole ftrace support, thanks goes to Steven and
the other folks for providing such a wonderful tracing framework!
Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
Cc: Nicholas Mc Guire <der.herr@hofr.at>
Cc: zhangfx@lemote.com
Cc: Wu Zhangjin <wuzhangjin@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: linux-kernel@vger.kernel.org
Cc: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/675/
Acked-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2009-11-20 12:34:32 +00:00
|
|
|
obj-$(CONFIG_FUNCTION_TRACER) += mcount.o ftrace.o
|
2009-11-20 12:34:29 +00:00
|
|
|
|
2007-06-06 06:52:43 +00:00
|
|
|
obj-$(CONFIG_CPU_LOONGSON2) += r4k_fpu.o r4k_switch.o
|
|
|
|
obj-$(CONFIG_CPU_MIPS32) += r4k_fpu.o r4k_switch.o
|
|
|
|
obj-$(CONFIG_CPU_MIPS64) += r4k_fpu.o r4k_switch.o
|
2005-04-16 22:20:36 +00:00
|
|
|
obj-$(CONFIG_CPU_R3000) += r2300_fpu.o r2300_switch.o
|
|
|
|
obj-$(CONFIG_CPU_R4300) += r4k_fpu.o r4k_switch.o
|
|
|
|
obj-$(CONFIG_CPU_R4X00) += r4k_fpu.o r4k_switch.o
|
|
|
|
obj-$(CONFIG_CPU_R5000) += r4k_fpu.o r4k_switch.o
|
2007-06-06 06:52:43 +00:00
|
|
|
obj-$(CONFIG_CPU_R6000) += r6000_fpu.o r4k_switch.o
|
2005-04-16 22:20:36 +00:00
|
|
|
obj-$(CONFIG_CPU_R5432) += r4k_fpu.o r4k_switch.o
|
2008-10-23 16:27:57 +00:00
|
|
|
obj-$(CONFIG_CPU_R5500) += r4k_fpu.o r4k_switch.o
|
2005-04-16 22:20:36 +00:00
|
|
|
obj-$(CONFIG_CPU_R8000) += r4k_fpu.o r4k_switch.o
|
|
|
|
obj-$(CONFIG_CPU_RM7000) += r4k_fpu.o r4k_switch.o
|
|
|
|
obj-$(CONFIG_CPU_RM9000) += r4k_fpu.o r4k_switch.o
|
|
|
|
obj-$(CONFIG_CPU_NEVADA) += r4k_fpu.o r4k_switch.o
|
|
|
|
obj-$(CONFIG_CPU_R10000) += r4k_fpu.o r4k_switch.o
|
|
|
|
obj-$(CONFIG_CPU_SB1) += r4k_fpu.o r4k_switch.o
|
2007-06-06 06:52:43 +00:00
|
|
|
obj-$(CONFIG_CPU_TX39XX) += r2300_fpu.o r2300_switch.o
|
|
|
|
obj-$(CONFIG_CPU_TX49XX) += r4k_fpu.o r4k_switch.o
|
|
|
|
obj-$(CONFIG_CPU_VR41XX) += r4k_fpu.o r4k_switch.o
|
2008-12-11 23:33:28 +00:00
|
|
|
obj-$(CONFIG_CPU_CAVIUM_OCTEON) += octeon_switch.o
|
2011-05-06 20:06:57 +00:00
|
|
|
obj-$(CONFIG_CPU_XLR) += r4k_fpu.o r4k_switch.o
|
2011-11-16 00:21:28 +00:00
|
|
|
obj-$(CONFIG_CPU_XLP) += r4k_fpu.o r4k_switch.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
obj-$(CONFIG_SMP) += smp.o
|
2007-11-24 22:33:28 +00:00
|
|
|
obj-$(CONFIG_SMP_UP) += smp-up.o
|
2011-11-16 01:25:45 +00:00
|
|
|
obj-$(CONFIG_CPU_BMIPS) += smp-bmips.o bmips_vec.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-04-05 08:45:45 +00:00
|
|
|
obj-$(CONFIG_MIPS_MT) += mips-mt.o
|
2007-07-03 13:37:43 +00:00
|
|
|
obj-$(CONFIG_MIPS_MT_FPAFF) += mips-mt-fpaff.o
|
2006-04-05 08:45:45 +00:00
|
|
|
obj-$(CONFIG_MIPS_MT_SMTC) += smtc.o smtc-asm.o smtc-proc.o
|
|
|
|
obj-$(CONFIG_MIPS_MT_SMP) += smp-mt.o
|
2008-04-28 16:14:26 +00:00
|
|
|
obj-$(CONFIG_MIPS_CMP) += smp-cmp.o
|
2007-09-13 11:32:02 +00:00
|
|
|
obj-$(CONFIG_CPU_MIPSR2) += spram.o
|
2005-08-17 17:44:08 +00:00
|
|
|
|
2005-07-14 15:57:16 +00:00
|
|
|
obj-$(CONFIG_MIPS_VPE_LOADER) += vpe.o
|
|
|
|
obj-$(CONFIG_MIPS_VPE_APSP_API) += rtlx.o
|
2008-04-16 13:32:22 +00:00
|
|
|
obj-$(CONFIG_MIPS_APSP_KSPD) += kspd.o
|
2005-07-14 15:57:16 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
obj-$(CONFIG_I8259) += i8259.o
|
|
|
|
obj-$(CONFIG_IRQ_CPU) += irq_cpu.o
|
|
|
|
obj-$(CONFIG_IRQ_CPU_RM7K) += irq-rm7000.o
|
|
|
|
obj-$(CONFIG_IRQ_CPU_RM9K) += irq-rm9000.o
|
2008-07-15 17:44:34 +00:00
|
|
|
obj-$(CONFIG_MIPS_MSC) += irq-msc01.o
|
2007-08-02 14:35:53 +00:00
|
|
|
obj-$(CONFIG_IRQ_TXX9) += irq_txx9.o
|
2007-09-13 14:51:26 +00:00
|
|
|
obj-$(CONFIG_IRQ_GT641XX) += irq-gt641xx.o
|
2008-04-28 16:14:26 +00:00
|
|
|
obj-$(CONFIG_IRQ_GIC) += irq-gic.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-08-03 18:22:20 +00:00
|
|
|
obj-$(CONFIG_KPROBES) += kprobes.o
|
2005-09-03 22:56:16 +00:00
|
|
|
obj-$(CONFIG_32BIT) += scall32-o32.o
|
|
|
|
obj-$(CONFIG_64BIT) += scall64-64.o
|
2007-02-15 01:53:00 +00:00
|
|
|
obj-$(CONFIG_MIPS32_COMPAT) += linux32.o ptrace32.o signal32.o
|
2005-04-16 22:20:36 +00:00
|
|
|
obj-$(CONFIG_MIPS32_N32) += binfmt_elfn32.o scall64-n32.o signal_n32.o
|
2007-02-15 01:53:00 +00:00
|
|
|
obj-$(CONFIG_MIPS32_O32) += binfmt_elfo32.o scall64-o32.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-07-29 20:58:53 +00:00
|
|
|
obj-$(CONFIG_KGDB) += kgdb.o
|
2005-04-16 22:20:36 +00:00
|
|
|
obj-$(CONFIG_PROC_FS) += proc.o
|
|
|
|
|
2005-09-03 22:56:16 +00:00
|
|
|
obj-$(CONFIG_64BIT) += cpu-bugs64.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-10-11 22:46:10 +00:00
|
|
|
obj-$(CONFIG_I8253) += i8253.o
|
2006-03-14 05:11:50 +00:00
|
|
|
|
2008-04-04 15:55:41 +00:00
|
|
|
obj-$(CONFIG_GPIO_TXX9) += gpio_txx9.o
|
|
|
|
|
2006-10-18 13:14:55 +00:00
|
|
|
obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o
|
2007-03-01 11:56:43 +00:00
|
|
|
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
|
2010-02-16 23:26:35 +00:00
|
|
|
obj-$(CONFIG_SPINLOCK_TEST) += spinlock_test.o
|
2010-11-23 15:06:25 +00:00
|
|
|
obj-$(CONFIG_MIPS_MACHINE) += mips_machine.o
|
2006-10-18 13:14:55 +00:00
|
|
|
|
2010-10-13 06:52:46 +00:00
|
|
|
obj-$(CONFIG_OF) += prom.o
|
|
|
|
|
2007-10-14 20:21:35 +00:00
|
|
|
CFLAGS_cpu-bugs64.o = $(shell if $(CC) $(KBUILD_CFLAGS) -Wa,-mdaddi -c -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-DHAVE_AS_SET_DADDI"; fi)
|
2007-07-10 16:33:01 +00:00
|
|
|
|
|
|
|
obj-$(CONFIG_HAVE_STD_PC_SERIAL_PORT) += 8250-platform.o
|
2007-07-30 10:48:58 +00:00
|
|
|
|
2009-11-16 17:32:59 +00:00
|
|
|
obj-$(CONFIG_MIPS_CPUFREQ) += cpufreq/
|
|
|
|
|
2011-09-24 00:29:55 +00:00
|
|
|
obj-$(CONFIG_PERF_EVENTS) += perf_event.o
|
|
|
|
obj-$(CONFIG_HW_PERF_EVENTS) += perf_event_mipsxx.o
|
2010-10-12 11:37:22 +00:00
|
|
|
|
2010-12-28 21:26:23 +00:00
|
|
|
obj-$(CONFIG_JUMP_LABEL) += jump_label.o
|
|
|
|
|
2009-12-17 01:57:36 +00:00
|
|
|
CPPFLAGS_vmlinux.lds := $(KBUILD_CFLAGS)
|