linux-parisc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Helge Deller <deller@gmx.de>
To: linux-parisc@vger.kernel.org,
	James Bottomley <James.Bottomley@hansenpartnership.com>,
	John David Anglin <dave.anglin@bell.net>
Cc: Sven Schnelle <svens@stackframe.org>,
	Jeroen Roovers <jer@gentoo.org>,
	Jisheng Zhang <Jisheng.Zhang@synaptics.com>
Subject: [GIT PULL] parisc architecture updates for kernel v5.4
Date: Mon, 16 Sep 2019 20:19:25 +0200	[thread overview]
Message-ID: <20190916181925.GA7698@ls3530.fritz.box> (raw)

Hi Linus,

please pull the parisc architecture updates for kernel 5.4 from:

  git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git parisc-5.4-1

Major changes:
* Make the powerpc implementation to read elf files available as a public
  kexec interface so it can be re-used on other architectures (Sven)
* Implement kexec on parisc (Sven)
* Add kprobes on ftrace on parisc (Sven)
* Fix kernel crash with HSC-PCI cards based on card-mode Dino
* Add assembly implementations for memset, strlen, strcpy, strncpy and strcat
* Some cleanups, documentation updates, warning fixes, ...

Thanks,
Helge

----------------------------------------------------------------
Helge Deller (8):
      parisc: Add assembly implementations for memset, strlen, strcpy, strncpy and strcat
      parisc: Add ALTERNATIVE_CODE() and ALT_COND_RUN_ON_QEMU
      parisc: speed up flush_tlb_all_local with qemu
      parisc: Avoid warning when loading hppb driver
      parisc: Convert eisa_enumerator to use pr_cont()
      parisc: Drop comments which are already in pci.h
      parisc: Save some bytes in dino driver
      parisc: Disable HP HSC-PCI Cards to prevent kernel crash

Jeroen Roovers (1):
      parisc: Have git ignore generated real2.S and firmware.c

Jisheng Zhang (1):
      kprobes/parisc: remove arch_kprobe_on_func_entry()

Sven Schnelle (15):
      parisc/ftrace: Add ARCH_SUPPORTS_FTRACE_OPS support
      parisc/ftrace: Add KPROBES_ON_FTRACE
      parisc: Update feature list
      parisc: trigger die notifier chain in parisc_terminate()
      kexec: add KEXEC_ELF
      kexec_elf: change order of elf_*_to_cpu() functions
      kexec_elf: remove parsing of section headers
      kexec_elf: remove PURGATORY_STACK_SIZE
      kexec_elf: remove Elf_Rel macro
      kexec_elf: remove unused variable in kexec_elf_load()
      kexec_elf: support 32 bit ELF files
      parisc: add __pdc_cpu_rendezvous()
      parisc: add kexec syscall support
      parisc: wire up kexec_file_load syscall
      parisc: add support for kexec_file_load() syscall

 .../features/core/jump-labels/arch-support.txt     |   2 +-
 .../debug/kprobes-on-ftrace/arch-support.txt       |   2 +-
 arch/Kconfig                                       |   3 +
 arch/parisc/Kconfig                                |  25 +
 arch/parisc/boot/compressed/.gitignore             |   2 +
 arch/parisc/include/asm/alternative.h              |  11 +-
 arch/parisc/include/asm/fixmap.h                   |   1 +
 arch/parisc/include/asm/ftrace.h                   |   1 +
 arch/parisc/include/asm/kexec.h                    |  37 ++
 arch/parisc/include/asm/pdc.h                      |   1 +
 arch/parisc/include/asm/string.h                   |  15 +
 arch/parisc/kernel/Makefile                        |   2 +
 arch/parisc/kernel/alternative.c                   |  23 +-
 arch/parisc/kernel/entry.S                         |  99 ++++
 arch/parisc/kernel/firmware.c                      |  13 +
 arch/parisc/kernel/ftrace.c                        |  64 ++-
 arch/parisc/kernel/kexec.c                         | 112 +++++
 arch/parisc/kernel/kexec_file.c                    |  86 ++++
 arch/parisc/kernel/kprobes.c                       |   4 -
 arch/parisc/kernel/pacache.S                       |   9 +
 arch/parisc/kernel/parisc_ksyms.c                  |   4 +
 arch/parisc/kernel/pci.c                           |  11 -
 arch/parisc/kernel/relocate_kernel.S               | 149 ++++++
 arch/parisc/kernel/smp.c                           |   1 +
 arch/parisc/kernel/syscalls/syscall.tbl            |   3 +-
 arch/parisc/kernel/traps.c                         |   2 +
 arch/parisc/lib/Makefile                           |   4 +-
 arch/parisc/lib/memset.c                           |  91 ----
 arch/parisc/lib/string.S                           | 136 +++++
 arch/powerpc/Kconfig                               |   1 +
 arch/powerpc/kernel/kexec_elf_64.c                 | 545 +--------------------
 drivers/parisc/dino.c                              |  30 +-
 drivers/parisc/eisa_enumerator.c                   |  10 +-
 drivers/parisc/hppb.c                              |  11 +-
 include/linux/kexec.h                              |  23 +
 include/uapi/linux/kexec.h                         |   1 +
 kernel/Makefile                                    |   1 +
 kernel/kexec_elf.c                                 | 430 ++++++++++++++++
 38 files changed, 1289 insertions(+), 676 deletions(-)
 create mode 100644 arch/parisc/include/asm/kexec.h
 create mode 100644 arch/parisc/kernel/kexec.c
 create mode 100644 arch/parisc/kernel/kexec_file.c
 create mode 100644 arch/parisc/kernel/relocate_kernel.S
 delete mode 100644 arch/parisc/lib/memset.c
 create mode 100644 arch/parisc/lib/string.S
 create mode 100644 kernel/kexec_elf.c

             reply	other threads:[~2019-09-16 18:20 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-16 18:19 Helge Deller [this message]
2019-09-16 18:29 [GIT PULL] parisc architecture updates for kernel v5.4 Helge Deller
2019-09-16 23:05 ` pr-tracker-bot

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=20190916181925.GA7698@ls3530.fritz.box \
    --to=deller@gmx.de \
    --cc=James.Bottomley@hansenpartnership.com \
    --cc=Jisheng.Zhang@synaptics.com \
    --cc=dave.anglin@bell.net \
    --cc=jer@gentoo.org \
    --cc=linux-parisc@vger.kernel.org \
    --cc=svens@stackframe.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).