[GIT PULL] csky changes for v6.0-rc1

From: guoren
Date: Wed Aug 03 2022 - 23:35:03 EST


Hi Linus,

Please pull the latest csky changes from:

The following changes since commit ff6992735ade75aae3e35d16b17da1008d753d28:

Linux 5.19-rc7 (2022-07-17 13:30:22 -0700)

are available in the Git repository at:

https://github.com/c-sky/csky-linux.git tags/csky-for-linus-6.0-rc1

for you to fetch changes up to 45fef4c4b9c94e86d9c13f0b2e7e71bb32254509:

csky: abiv1: Fixup compile error (2022-07-31 22:39:23 -0400)

----------------------------------------------------------------
arch/csky patches for 6.0-rc1

The pull request we've done:
- Add jump-label
- Add qspinlock
- Enable ARCH_INLINE_READ*/WRITE*/SPIN*
- Some fixups and a coding convention

----------------------------------------------------------------
Christophe JAILLET (1):
csky: Use the bitmap API to allocate bitmaps

Guo Ren (7):
csky: Correct position of _stext
csky: Move HEAD_TEXT_SECTION out of __init_begin-end
csky: Add jump-label implementation
csky: Add qspinlock support
csky: Enable ARCH_INLINE_READ*/WRITE*/SPIN*
csky: cmpxchg: Coding convention for BUILD_BUG()
csky: abiv1: Fixup compile error

Liao Chang (1):
csky/kprobe: reclaim insn_slot on kprobe unregistration

arch/csky/Kconfig | 29 ++++++++++++++++++
arch/csky/abiv1/inc/abi/string.h | 6 ++++
arch/csky/include/asm/Kbuild | 4 +--
arch/csky/include/asm/cmpxchg.h | 31 +++++++++++++++----
arch/csky/include/asm/jump_label.h | 47 +++++++++++++++++++++++++++++
arch/csky/include/asm/sections.h | 10 +++++++
arch/csky/include/asm/spinlock.h | 12 ++++++++
arch/csky/include/asm/spinlock_types.h | 9 ++++++
arch/csky/kernel/Makefile | 1 +
arch/csky/kernel/jump_label.c | 54 ++++++++++++++++++++++++++++++++++
arch/csky/kernel/probes/kprobes.c | 4 +++
arch/csky/kernel/setup.c | 4 +--
arch/csky/kernel/vmlinux.lds.S | 15 +++++-----
arch/csky/mm/asid.c | 5 ++--
14 files changed, 211 insertions(+), 20 deletions(-)
create mode 100644 arch/csky/include/asm/jump_label.h
create mode 100644 arch/csky/include/asm/sections.h
create mode 100644 arch/csky/include/asm/spinlock.h
create mode 100644 arch/csky/include/asm/spinlock_types.h
create mode 100644 arch/csky/kernel/jump_label.c