All of lore.kernel.org
 help / color / mirror / Atom feed
From: takahiro.akashi@linaro.org (AKASHI Takahiro)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v22 0/8] arm64: add kdump support
Date: Tue, 12 Jul 2016 14:05:06 +0900	[thread overview]
Message-ID: <20160712050514.22307-1-takahiro.akashi@linaro.org> (raw)

This patch series adds kdump support on arm64.

To load a crash-dump kernel to the systems, a series of patches to
kexec-tools [1], which have not yet been merged upstream, are needed.
Please update to the latest if you have been using an older version.

To examine vmcore (/proc/vmcore) on a crash-dump kernel, you can use
  - crash utility (coming v7.1.6 or later) [2]
    (Necessary patches have already been queued in the master.)

[1]  https://git.kernel.org/cgit/linux/kernel/git/geoff/kexec-tools.git
     (Please rename "linux,usable-memory" to "linux,usable-memory-range"
      in kexec/arch/arm64/kexec-arm64.c)
[2]  https://github.com/crash-utility/crash.git

Changes for v22 (July 12, 2016):

  o Export "crashkernel-base" and "crashkernel-size" via device-tree,
    and add some descriptions about them in chosen.txt
  o Rename "usable-memory" to "usable-memory-range" to avoid inconsistency
    with powerpc's "usable-memory"
  o Make cosmetic changes regarding "ifdef" usage
  o Correct some wordings in kdump.txt

Changes for v21 (July 6, 2016):

  o Remove kexec patches.
  o Rebase to arm64's for-next/core (Linux-4.7-rc4 based).
  o Clarify the description about kvm in kdump.txt.

See the following link [3] for older changes:
[3]  http://lists.infradead.org/pipermail/linux-arm-kernel/2016-June/438780.html

AKASHI Takahiro (7):
  arm64: kdump: reserve memory for crash dump kernel
  arm64: limit memory regions based on DT property, usable-memory-range
  arm64: kdump: implement machine_crash_shutdown()
  arm64: kdump: add kdump support
  arm64: kdump: add VMCOREINFO's for user-space coredump tools
  arm64: kdump: enable kdump in the arm64 defconfig
  arm64: kdump: update a kernel doc

James Morse (1):
  Documentation: dt: chosen properties for arm64 kdump

 Documentation/devicetree/bindings/chosen.txt |  45 ++++++
 Documentation/kdump/kdump.txt                |  16 ++-
 arch/arm64/Kconfig                           |  11 ++
 arch/arm64/configs/defconfig                 |   1 +
 arch/arm64/include/asm/hardirq.h             |   2 +-
 arch/arm64/include/asm/kexec.h               |  41 +++++-
 arch/arm64/include/asm/smp.h                 |   2 +
 arch/arm64/kernel/Makefile                   |   1 +
 arch/arm64/kernel/crash_dump.c               |  71 +++++++++
 arch/arm64/kernel/machine_kexec.c            |  67 ++++++++-
 arch/arm64/kernel/setup.c                    |   7 +-
 arch/arm64/kernel/smp.c                      |  64 +++++++++
 arch/arm64/mm/init.c                         | 207 +++++++++++++++++++++++++++
 13 files changed, 528 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm64/kernel/crash_dump.c

-- 
2.9.0

WARNING: multiple messages have this Message-ID (diff)
From: AKASHI Takahiro <takahiro.akashi@linaro.org>
To: catalin.marinas@arm.com, will.deacon@arm.com
Cc: mark.rutland@arm.com, geoff@infradead.org,
	kexec@lists.infradead.org,
	AKASHI Takahiro <takahiro.akashi@linaro.org>,
	robh+dt@kernel.org, james.morse@arm.com,
	bauerman@linux.vnet.ibm.com, dyoung@redhat.com,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH v22 0/8] arm64: add kdump support
Date: Tue, 12 Jul 2016 14:05:06 +0900	[thread overview]
Message-ID: <20160712050514.22307-1-takahiro.akashi@linaro.org> (raw)

This patch series adds kdump support on arm64.

To load a crash-dump kernel to the systems, a series of patches to
kexec-tools [1], which have not yet been merged upstream, are needed.
Please update to the latest if you have been using an older version.

To examine vmcore (/proc/vmcore) on a crash-dump kernel, you can use
  - crash utility (coming v7.1.6 or later) [2]
    (Necessary patches have already been queued in the master.)

[1]  https://git.kernel.org/cgit/linux/kernel/git/geoff/kexec-tools.git
     (Please rename "linux,usable-memory" to "linux,usable-memory-range"
      in kexec/arch/arm64/kexec-arm64.c)
[2]  https://github.com/crash-utility/crash.git

Changes for v22 (July 12, 2016):

  o Export "crashkernel-base" and "crashkernel-size" via device-tree,
    and add some descriptions about them in chosen.txt
  o Rename "usable-memory" to "usable-memory-range" to avoid inconsistency
    with powerpc's "usable-memory"
  o Make cosmetic changes regarding "ifdef" usage
  o Correct some wordings in kdump.txt

Changes for v21 (July 6, 2016):

  o Remove kexec patches.
  o Rebase to arm64's for-next/core (Linux-4.7-rc4 based).
  o Clarify the description about kvm in kdump.txt.

See the following link [3] for older changes:
[3]  http://lists.infradead.org/pipermail/linux-arm-kernel/2016-June/438780.html

AKASHI Takahiro (7):
  arm64: kdump: reserve memory for crash dump kernel
  arm64: limit memory regions based on DT property, usable-memory-range
  arm64: kdump: implement machine_crash_shutdown()
  arm64: kdump: add kdump support
  arm64: kdump: add VMCOREINFO's for user-space coredump tools
  arm64: kdump: enable kdump in the arm64 defconfig
  arm64: kdump: update a kernel doc

James Morse (1):
  Documentation: dt: chosen properties for arm64 kdump

 Documentation/devicetree/bindings/chosen.txt |  45 ++++++
 Documentation/kdump/kdump.txt                |  16 ++-
 arch/arm64/Kconfig                           |  11 ++
 arch/arm64/configs/defconfig                 |   1 +
 arch/arm64/include/asm/hardirq.h             |   2 +-
 arch/arm64/include/asm/kexec.h               |  41 +++++-
 arch/arm64/include/asm/smp.h                 |   2 +
 arch/arm64/kernel/Makefile                   |   1 +
 arch/arm64/kernel/crash_dump.c               |  71 +++++++++
 arch/arm64/kernel/machine_kexec.c            |  67 ++++++++-
 arch/arm64/kernel/setup.c                    |   7 +-
 arch/arm64/kernel/smp.c                      |  64 +++++++++
 arch/arm64/mm/init.c                         | 207 +++++++++++++++++++++++++++
 13 files changed, 528 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm64/kernel/crash_dump.c

-- 
2.9.0


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

             reply	other threads:[~2016-07-12  5:05 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-12  5:05 AKASHI Takahiro [this message]
2016-07-12  5:05 ` [PATCH v22 0/8] arm64: add kdump support AKASHI Takahiro
2016-07-12  5:05 ` [PATCH v22 1/8] arm64: kdump: reserve memory for crash dump kernel AKASHI Takahiro
2016-07-12  5:05   ` AKASHI Takahiro
2016-07-13  9:12   ` Suzuki K Poulose
2016-07-13  9:12     ` Suzuki K Poulose
2016-07-13 15:42     ` AKASHI Takahiro
2016-07-13 15:42       ` AKASHI Takahiro
2016-07-19  9:39   ` Dennis Chen
2016-07-19  9:39     ` Dennis Chen
2016-07-19 10:28     ` AKASHI Takahiro
2016-07-19 10:28       ` AKASHI Takahiro
2016-07-19 10:41       ` Dennis Chen
2016-07-19 10:41         ` Dennis Chen
2016-07-19 12:48         ` Mark Salter
2016-07-19 12:48           ` Mark Salter
2016-07-19 13:27           ` Mark Rutland
2016-07-19 13:27             ` Mark Rutland
2016-07-20  2:17             ` AKASHI Takahiro
2016-07-20  2:17               ` AKASHI Takahiro
2016-07-20  3:48             ` Dennis Chen
2016-07-20  3:48               ` Dennis Chen
2016-07-19 23:34           ` AKASHI Takahiro
2016-07-19 23:34             ` AKASHI Takahiro
2016-07-12  5:05 ` [PATCH v22 2/8] arm64: limit memory regions based on DT property, usable-memory-range AKASHI Takahiro
2016-07-12  5:05   ` AKASHI Takahiro
2016-07-18 18:04   ` James Morse
2016-07-18 18:04     ` James Morse
2016-07-19  8:35     ` AKASHI Takahiro
2016-07-19  8:35       ` AKASHI Takahiro
2016-07-19 10:06       ` Dennis Chen
2016-07-19 10:06         ` Dennis Chen
2016-07-19 11:01         ` AKASHI Takahiro
2016-07-19 11:01           ` AKASHI Takahiro
2016-07-20  3:39           ` Dennis Chen
2016-07-20  3:39             ` Dennis Chen
2016-07-20  4:22             ` AKASHI Takahiro
2016-07-20  4:22               ` AKASHI Takahiro
2016-07-20  4:36               ` Dennis Chen
2016-07-20  4:36                 ` Dennis Chen
2016-07-21  0:57     ` AKASHI Takahiro
2016-07-21  0:57       ` AKASHI Takahiro
2016-07-22 13:55       ` James Morse
2016-07-22 13:55         ` James Morse
2016-07-25  5:27         ` AKASHI Takahiro
2016-07-25  5:27           ` AKASHI Takahiro
2016-08-04  6:21           ` AKASHI Takahiro
2016-08-04  6:21             ` AKASHI Takahiro
2016-08-09 16:22             ` James Morse
2016-08-09 16:22               ` James Morse
2016-07-12  5:05 ` [PATCH v22 3/8] arm64: kdump: implement machine_crash_shutdown() AKASHI Takahiro
2016-07-12  5:05   ` AKASHI Takahiro
2016-07-13  9:32   ` Suzuki K Poulose
2016-07-13  9:32     ` Suzuki K Poulose
2016-07-13 16:00     ` AKASHI Takahiro
2016-07-13 16:00       ` AKASHI Takahiro
2016-07-12  5:05 ` [PATCH v22 4/8] arm64: kdump: add kdump support AKASHI Takahiro
2016-07-12  5:05   ` AKASHI Takahiro
2016-07-12  5:05 ` [PATCH v22 5/8] arm64: kdump: add VMCOREINFO's for user-space coredump tools AKASHI Takahiro
2016-07-12  5:05   ` AKASHI Takahiro
2016-07-12  5:05 ` [PATCH v22 6/8] arm64: kdump: enable kdump in the arm64 defconfig AKASHI Takahiro
2016-07-12  5:05   ` AKASHI Takahiro
2016-07-12  5:05 ` [PATCH v22 7/8] arm64: kdump: update a kernel doc AKASHI Takahiro
2016-07-12  5:05   ` AKASHI Takahiro
2016-07-12  5:05 ` [PATCH v22 8/8] Documentation: dt: chosen properties for arm64 kdump AKASHI Takahiro
2016-07-12  5:05   ` AKASHI Takahiro
2016-07-12 10:07   ` Mark Rutland
2016-07-12 10:07     ` Mark Rutland
2016-07-13 15:14     ` AKASHI Takahiro
2016-07-13 15:14       ` AKASHI Takahiro

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=20160712050514.22307-1-takahiro.akashi@linaro.org \
    --to=takahiro.akashi@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.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.