From: Michal Simek <monstr@monstr.eu>
To: torvalds@linux-foundation.org
Cc: LKML <linux-kernel@vger.kernel.org>, Ralf Baechle <ralf@linux-mips.org>
Subject: [GIT PULL] arch/microblaze patches 2.6.33
Date: Mon, 14 Dec 2009 09:01:01 +0100 [thread overview]
Message-ID: <4B25F0BD.3090108@monstr.eu> (raw)
Hi Linus,
please pull the following changes to your tree. There could be small
overlapping additions conflicts in scripts/recordmcount.pl with MIPS
if come first. My patches are against current your head.
Thanks,
Michal
The following changes since commit f40542532e96dda5506eb76badea322f2ae4731c:
Linus Torvalds (1):
Merge branch 'ixp4xx' of git://git.kernel.org/.../chris/linux-2.6
are available in the git repository at:
git://git.monstr.eu/linux-2.6-microblaze.git for-linus
John Linn (1):
microblaze: Fix the heartbeat gpio to be more robust
John Williams (4):
microblaze: Remove the buggy ALLOW_EDIT_AUTO config option
microblaze: Use lowest-common-denominator default CPU settings
microblaze: Simple __copy_tofrom_user for noMMU
microblaze: Core oprofile configs and hooks
Michal Simek (38):
microblaze: GPIO reset support
microblaze: __init_begin symbol must be aligned
microblaze: Add IRQENTRY_TEXT to lds
microblaze: Stack trace support
microblaze: Register timecounter/cyclecounter
microblaze: Lockdep support
microblaze: preliminary enabling for LATENCYTOP support in Kconfig
microblaze: Add TRACE_IRQFLAGS_SUPPORT
microblaze: ftrace: add static function tracer
microblaze: ftrace: enable HAVE_FUNCTION_TRACE_MCOUNT_TEST
microblaze: ftrace: Add dynamic trace support
microblaze: ftrace: add function graph support
microblaze: ftrace: Add dynamic function graph tracer
microblaze: Remove saving and restoring before calling signal code
microblaze: Fix announce message for reset gpio
microblaze: Support both levels for reset
microblaze: Detect new 7.20.d version
microblaze: Fix cache_line_lenght
microblaze: Extend cpuinfo for support write-back caches
microblaze: Ptrace notifying from signal code
microblaze: support U-BOOT image format
microblaze: Move cache macro from cache.h to cacheflush.h
microblaze: Enable asm optimization only for HW with barrel-shifter
microblaze: Update default generic DTS
microblaze: Export memory_start for modules
microblaze: Adding dev_arch_data functions
microblaze: Futex support
microblaze: Remove duplicity from pgalloc.h
microblaze: Checking DTS against PVR for write-back cache
microblaze: Enable futimesat syscall
microblaze: Enable DTC compilation
microblaze: Do not count system calls in default
microblaze: Remove panic_timeout init value
microblaze: Remove ancient and fake microblaze version from
cpu_ver table
microblaze: Add PVR for Microblaze v7.30.a
microblaze: Support for WB cache
microblaze: Remove show_tmem function
microblaze: Remove rt_sigsuspend wrapper
steve@digidescorp.com (3):
microblaze: Fix pfn_valid() for noMMU
microblaze: Fix level interrupt ACKing
microblaze: nommu: Don't clobber R11 on syscalls
arch/microblaze/Kconfig | 19 +
arch/microblaze/Kconfig.debug | 3 +
arch/microblaze/Makefile | 2 +
arch/microblaze/boot/Makefile | 15 +-
arch/microblaze/include/asm/cache.h | 16 -
arch/microblaze/include/asm/cacheflush.h | 123 +++---
arch/microblaze/include/asm/cpuinfo.h | 5 +-
arch/microblaze/include/asm/device.h | 12 +
arch/microblaze/include/asm/ftrace.h | 25 +
arch/microblaze/include/asm/futex.h | 127 +++++-
arch/microblaze/include/asm/irqflags.h | 112 ++---
arch/microblaze/include/asm/page.h | 3 +-
arch/microblaze/include/asm/pgalloc.h | 9 +-
arch/microblaze/include/asm/pvr.h | 30 +-
arch/microblaze/include/asm/setup.h | 2 +
arch/microblaze/include/asm/system.h | 2 +
arch/microblaze/include/asm/uaccess.h | 12 +-
arch/microblaze/kernel/Makefile | 14 +-
arch/microblaze/kernel/cpu/Makefile | 4 +
arch/microblaze/kernel/cpu/cache.c | 663
+++++++++++++++++-------
arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c | 15 +-
arch/microblaze/kernel/cpu/cpuinfo-static.c | 17 +-
arch/microblaze/kernel/cpu/cpuinfo.c | 7 +-
arch/microblaze/kernel/cpu/mb.c | 8 +-
arch/microblaze/kernel/cpu/pvr.c | 2 +-
arch/microblaze/kernel/entry-nommu.S | 2 -
arch/microblaze/kernel/entry.S | 19 +-
arch/microblaze/kernel/ftrace.c | 237 +++++++++
arch/microblaze/kernel/heartbeat.c | 15 +-
arch/microblaze/kernel/intc.c | 10 +-
arch/microblaze/kernel/mcount.S | 170 ++++++
arch/microblaze/kernel/microblaze_ksyms.c | 5 +
arch/microblaze/kernel/process.c | 1 +
arch/microblaze/kernel/reset.c | 140 +++++
arch/microblaze/kernel/setup.c | 40 +--
arch/microblaze/kernel/signal.c | 35 ++-
arch/microblaze/kernel/stacktrace.c | 65 +++
arch/microblaze/kernel/syscall_table.S | 4 +-
arch/microblaze/kernel/timer.c | 28 +
arch/microblaze/kernel/vmlinux.lds.S | 6 +-
arch/microblaze/lib/uaccess.c | 7 +
arch/microblaze/mm/init.c | 1 +
arch/microblaze/mm/pgtable.c | 10 -
arch/microblaze/oprofile/Makefile | 13 +
arch/microblaze/oprofile/microblaze_oprofile.c | 22 +
arch/microblaze/platform/Kconfig.platform | 21 +-
arch/microblaze/platform/generic/Kconfig.auto | 29 +-
arch/microblaze/platform/generic/system.dts | 38 ++-
arch/microblaze/platform/platform.c | 2 +
scripts/recordmcount.pl | 3 +
50 files changed, 1686 insertions(+), 484 deletions(-)
create mode 100644 arch/microblaze/kernel/ftrace.c
create mode 100644 arch/microblaze/kernel/mcount.S
create mode 100644 arch/microblaze/kernel/reset.c
create mode 100644 arch/microblaze/kernel/stacktrace.c
create mode 100644 arch/microblaze/oprofile/Makefile
create mode 100644 arch/microblaze/oprofile/microblaze_oprofile.c
--
Michal Simek, Ing. (M.Eng)
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/
Microblaze U-BOOT custodian
reply other threads:[~2009-12-14 8:01 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B25F0BD.3090108@monstr.eu \
--to=monstr@monstr.eu \
--cc=linux-kernel@vger.kernel.org \
--cc=ralf@linux-mips.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.