From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932448AbcAUEtZ (ORCPT ); Wed, 20 Jan 2016 23:49:25 -0500 Received: from mail2.asahi-net.or.jp ([202.224.39.198]:43371 "EHLO mail2.asahi-net.or.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755552AbcAUEtV (ORCPT ); Wed, 20 Jan 2016 23:49:21 -0500 Date: Thu, 21 Jan 2016 13:49:19 +0900 Message-ID: <87egdbsfjk.wl-ysato@users.sourceforge.jp> From: Yoshinori Sato To: Linus Torvalds Cc: linux-kernel@vger.kernel.org Subject: [GIT PULL] h8300 update User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/24.5 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello Linus, Could you pull this changes. The following changes since commit 2c487121e3c4f87e82cff493872675bde52e47fc: Merge tag 'leds-for-4.5' of git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds (2016-01-11 20:40:48 -0800) are available in the git repository at: git://git.osdn.jp/gitroot/uclinux-h8/linux.git tags/for-4.5 for you to fetch changes up to 2f1b0077a9604eda130ffb0313c2f1e9db424269: h8300: System call entry enable interrupt. (2016-01-20 23:28:01 +0900) ---------------------------------------------------------------- Add KGDB support. zImage fix. various cleanup ---------------------------------------------------------------- Geert Uytterhoeven (1): clk: h8300: Remove "sh73a0-" part from compatible value Guenter Roeck (1): irqchip: renesas-h8s: Replace ctrl_outw/ctrl_inw with writew/readw Yoshinori Sato (8): h8300: zImage alignment fix h8300: zImage alignment fix h8300: Add LZO compression h8300: signal stack fix h8300: Add KGDB support. h8300: Restraint of warning. h8300: show_stack cleanup h8300: System call entry enable interrupt. .../bindings/clock/renesas,h8300-div-clock.txt | 2 +- arch/h8300/Kconfig | 3 + arch/h8300/boot/compressed/Makefile | 11 +- arch/h8300/boot/compressed/misc.c | 6 + arch/h8300/boot/compressed/vmlinux.lds | 4 +- arch/h8300/include/asm/io.h | 8 +- arch/h8300/include/asm/kgdb.h | 45 +++++++ arch/h8300/include/asm/traps.h | 2 +- arch/h8300/kernel/Makefile | 2 + arch/h8300/kernel/entry.S | 19 +++ arch/h8300/kernel/kgdb.c | 135 +++++++++++++++++++++ arch/h8300/kernel/signal.c | 8 +- arch/h8300/kernel/traps.c | 20 ++- drivers/irqchip/irq-renesas-h8s.c | 10 +- 14 files changed, 244 insertions(+), 31 deletions(-) create mode 100644 arch/h8300/include/asm/kgdb.h create mode 100644 arch/h8300/kernel/kgdb.c -- Yoshinori Sato