linux-mips.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Paul Burton <paul.burton@mips.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: "linux-mips@vger.kernel.org" <linux-mips@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: [GIT PULL] MIPS changes for 5.2
Date: Wed, 8 May 2019 21:04:46 +0000	[thread overview]
Message-ID: <20190508210444.vxnmbd2sdluubjdy@pburton-laptop> (raw)

[-- Attachment #1: Type: text/plain, Size: 5597 bytes --]

Hi Linus,

Here are the main MIPS changes for the 5.2 cycle.

I wound up merging in the mips_fixes_5.1_1 tag that you already merged
earlier in order to gain a fix for a jump label bug that would otherwise
have prevented me testing some work included here. I hope that's OK - it
does mean the shortlog below shows some changes that you already merged.

There are a few last minute changes which I hope to submit to you next
week if things seem calm enough, but that potential second pull request
will be even smaller than this one.

Please pull.

Thanks,
    Paul


The following changes since commit 9e98c678c2d6ae3a17cb2de55d17f69dddaa231b:

  Linux 5.1-rc1 (2019-03-17 14:22:26 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git tags/mips_5.2

for you to fetch changes up to 3751cbda8f223549d7ea28803cbec8ac87e43ed2:

  mips: Manually call fdt_init_reserved_mem() method (2019-05-05 20:12:20 -0700)

----------------------------------------------------------------
Main MIPS changes for v5.2:

- A set of memblock initialization improvements thanks to Serge Semin,
  tidying up after our conversion from bootmem to memblock back in
  v4.20.

- Our eBPF JIT the previously supported only MIPS64r2 through MIPS64r5
  is improved to also support MIPS64r6. Support for MIPS32 systems is
  introduced, with the caveat that it only works for programs that don't
  use 64 bit registers or operations - those will bail out & need to be
  interpreted.

- Improvements to the allocation & configuration of our exception vector
  that should fix issues seen on some platforms using recent versions of
  U-Boot.

- Some minor improvements to code generated for jump labels, along with
  enabling them by default for generic kernels.

----------------------------------------------------------------
Archer Yan (1):
      MIPS: Fix kernel crash for R6 in jump label branch function

Chuanhong Guo (1):
      MIPS: ralink: fix cpu clock of mt7621 and add dt clk devices

Enrico Weigelt, metux IT consult (1):
      arch: mips: Kconfig: pedantic formatting

Hassan Naveed (3):
      MIPS: uasm: Add div, mul and sel instructions for mipsr6
      MIPS: eBPF: Provide eBPF support for MIPS64R6
      MIPS: eBPF: Initial eBPF support for MIPS32 architecture.

Nick Desaulniers (1):
      mips: vdso: drop unnecessary cc-ldoption

Paul Burton (11):
      MIPS: Remove custom MIPS32 __kernel_fsid_t type
      MIPS: KVM: Use prandom_u32_max() to generate tlbwr index
      Merge tag 'mips_fixes_5.1_1' into mips-next
      MIPS: jump_label: Remove redundant nops
      MIPS: jump_label: Use compact branches for >= r6
      MIPS: generic: Enable CONFIG_JUMP_LABEL
      Revert "MIPS: ralink: fix cpu clock of mt7621 and add dt clk devices"
      MIPS: Use memblock_phys_alloc() for exception vector
      MIPS: Always allocate exception vector for MIPSr2+
      MIPS: Sync icache for whole exception vector
      MIPS: Remove duplicate EBase configuration

Petr Štetiar (1):
      mips: bcm47xx: Enable USB power on Netgear WNDR3400v2

Serge Semin (11):
      mips: Make sure kernel .bss exists in boot mem pool
      mips: Discard rudiments from bootmem_init
      mips: Combine memblock init and memory reservation loops
      mips: Reserve memory for the kernel image resources
      mips: Discard post-CMA-init foreach loop
      mips: Use memblock to reserve the __nosave memory range
      mips: Add reserve-nomap memory type support
      mips: Dump memblock regions for debugging
      mips: Perform early low memory test
      mips: Make sure dt memory regions are valid
      mips: Manually call fdt_init_reserved_mem() method

Valentin Schneider (1):
      MIPS: entry: Remove unneeded need_resched() loop

Yasha Cherikovsky (1):
      MIPS: Ensure ELF appended dtb is relocated

Yifeng Li (1):
      mips: loongson64: lemote-2f: Add IRQF_NO_SUSPEND to "cascade" irqaction.

 arch/mips/Kconfig                        |   64 +-
 arch/mips/bcm47xx/Kconfig                |    8 +-
 arch/mips/bcm47xx/workarounds.c          |    1 +
 arch/mips/bcm63xx/boards/Kconfig         |    2 +-
 arch/mips/configs/generic_defconfig      |    1 +
 arch/mips/include/asm/bootinfo.h         |    1 +
 arch/mips/include/asm/jump_label.h       |   17 +-
 arch/mips/include/asm/uasm.h             |    8 +
 arch/mips/include/uapi/asm/inst.h        |    6 +-
 arch/mips/include/uapi/asm/posix_types.h |    7 -
 arch/mips/kernel/entry.S                 |    5 +-
 arch/mips/kernel/jump_label.c            |   30 +-
 arch/mips/kernel/prom.c                  |   18 +-
 arch/mips/kernel/setup.c                 |  129 +--
 arch/mips/kernel/traps.c                 |   63 +-
 arch/mips/kernel/vmlinux.lds.S           |   12 +-
 arch/mips/kvm/emulate.c                  |    4 +-
 arch/mips/loongson64/lemote-2f/irq.c     |    2 +-
 arch/mips/mm/uasm-mips.c                 |   14 +
 arch/mips/mm/uasm.c                      |   39 +-
 arch/mips/net/Makefile                   |    1 -
 arch/mips/net/bpf_jit.c                  | 1270 ------------------------------
 arch/mips/net/bpf_jit_asm.S              |  285 -------
 arch/mips/net/ebpf_jit.c                 |  191 +++--
 arch/mips/pic32/Kconfig                  |    8 +-
 arch/mips/vdso/Makefile                  |    4 +-
 26 files changed, 351 insertions(+), 1839 deletions(-)
 delete mode 100644 arch/mips/net/bpf_jit.c
 delete mode 100644 arch/mips/net/bpf_jit_asm.S

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

             reply	other threads:[~2019-05-08 21:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-08 21:04 Paul Burton [this message]
2019-05-08 23:50 ` [GIT PULL] MIPS changes for 5.2 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=20190508210444.vxnmbd2sdluubjdy@pburton-laptop \
    --to=paul.burton@mips.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@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).