linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Helge Deller <deller@gmx.de>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	linux-kernel@vger.kernel.org, linux-parisc@vger.kernel.org,
	James Bottomley <James.Bottomley@hansenpartnership.com>,
	John David Anglin <dave.anglin@bell.net>
Subject: [GIT PULL] parisc architecture updates for kernel v5.10-rc1
Date: Thu, 15 Oct 2020 09:20:25 +0200	[thread overview]
Message-ID: <20201015072025.GA18655@ls3530.fritz.box> (raw)

Hi Linus,

please pull the fixes and updates for the parisc architecture for kernel 5.10-rc1 from:

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

This patchset includes:
* Added fw_cfg support for parisc on qemu
* Added font support in sti text console driver for byte- and word-mode ROMs
* Switch to more fine grained lws locks and improve spinlock handling
* Add ioread64_hi_lo() and iowrite64_hi_lo() to avoid 0-day linking errors
* Mark pointers volatile in __xchg8(), __xchg32() and __xchg64() to help compiler
* Header file cleanups, mostly removal of unused HP-UX compat defines
* Drop one bit from our O_NONBLOCK define to become now 000200000
* Add MAP_UNINITIALIZED define to avoid userspace compile errors
* Drop CONFIG_IDE from defconfigs
* Speed up synchronize_caches() on UP machines
* Rewrite tlb flush threshold calculation
* Comment fixes and cleanups

Thanks,
Helge

----------------------------------------------------------------
The following changes since commit 3e4fb4346c781068610d03c12b16c0cfb0fd24a3:

  Merge tag 'spdx-5.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx (2020-10-14 16:19:42 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 7ff3f14ddc355bfbc94c766f43b90606b1f79e83:

  parisc/sticon: Add user font support (2020-10-15 08:12:59 +0200)

----------------------------------------------------------------
Christoph Hellwig (1):
      parisc: disable CONFIG_IDE in defconfigs

Helge Deller (11):
      fw_cfg: Add support for parisc architecture
      parisc: Add qemu fw_cfg interface
      parisc: Avoid external interrupts when IPI finishes
      parisc: Drop HP-UX specific fcntl and signal flags
      parisc: Define O_NONBLOCK to become 000200000
      parisc: Drop useless comments in uapi/asm/signal.h
      parisc: Add ioread64_hi_lo() and iowrite64_hi_lo()
      parisc: Install vmlinuz instead of zImage file
      parisc: Add MAP_UNINITIALIZED define
      parisc/sticon: Always register sticon console driver
      parisc/sticon: Add user font support

John David Anglin (6):
      parisc: Add alternative patching to synchronize_caches define
      parisc: Fix comments and enable interrupts later
      parisc: Mark pointers volatile in __xchg8(), __xchg32() and __xchg64()
      parisc: Switch to more fine grained lws locks
      parisc: Rewrite tlb flush threshold calculation
      parisc: Improve spinlock handling

 arch/parisc/Kconfig                         |   1 +
 arch/parisc/configs/generic-32bit_defconfig |   6 +-
 arch/parisc/configs/generic-64bit_defconfig |   6 +-
 arch/parisc/include/asm/barrier.h           |   6 +-
 arch/parisc/include/asm/cmpxchg.h           |  14 +-
 arch/parisc/include/asm/futex.h             |   4 +-
 arch/parisc/include/asm/socket.h            |   4 +-
 arch/parisc/include/asm/spinlock.h          |  23 ++-
 arch/parisc/include/uapi/asm/fcntl.h        |   7 +-
 arch/parisc/include/uapi/asm/mman.h         |   1 +
 arch/parisc/include/uapi/asm/signal.h       |   5 +-
 arch/parisc/install.sh                      |   2 +-
 arch/parisc/kernel/cache.c                  |  18 +-
 arch/parisc/kernel/entry.S                  |  14 +-
 arch/parisc/kernel/inventory.c              |  30 +++
 arch/parisc/kernel/smp.c                    |   9 +-
 arch/parisc/kernel/syscall.S                |  10 +-
 arch/parisc/lib/bitops.c                    |   6 +-
 arch/parisc/lib/iomap.c                     |  18 ++
 drivers/firmware/Kconfig                    |   2 +-
 drivers/firmware/qemu_fw_cfg.c              |   3 +
 drivers/video/console/Kconfig               |   1 +
 drivers/video/console/sticon.c              | 297 ++++++++++++++++------------
 drivers/video/console/sticore.c             | 284 +++++++++++++-------------
 drivers/video/fbdev/sticore.h               |  27 ++-
 tools/arch/parisc/include/uapi/asm/mman.h   |   1 -
 26 files changed, 453 insertions(+), 346 deletions(-)

             reply	other threads:[~2020-10-15  7:20 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-15  7:20 Helge Deller [this message]
2020-10-15 23:08 ` [GIT PULL] parisc architecture updates for kernel v5.10-rc1 pr-tracker-bot
2020-10-25 12:07 Helge Deller
2020-10-25 18:35 ` 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=20201015072025.GA18655@ls3530.fritz.box \
    --to=deller@gmx.de \
    --cc=James.Bottomley@hansenpartnership.com \
    --cc=dave.anglin@bell.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-parisc@vger.kernel.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 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).