From: Michal Simek <michal.simek@xilinx.com> To: linux-kernel@vger.kernel.org, monstr@monstr.eu, michal.simek@xilinx.com, git@xilinx.com, arnd@arndb.de Cc: Andrew Morton <akpm@linux-foundation.org>, "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>, Arvind Sankar <nivedita@alum.mit.edu>, Borislav Petkov <bp@suse.de>, Cornelia Huck <cohuck@redhat.com>, Geert Uytterhoeven <geert@linux-m68k.org>, Greg Kroah-Hartman <gregkh@linuxfoundation.org>, Greg Ungerer <gerg@linux-m68k.org>, Heiko Carstens <heiko.carstens@de.ibm.com>, Kees Cook <keescook@chromium.org>, Masahiro Yamada <yamada.masahiro@socionext.com>, Mike Rapoport <rppt@linux.ibm.com>, Mubin Sayyed <mubinusm@xilinx.com>, Nicholas Piggin <npiggin@gmail.com>, Oleg Nesterov <oleg@redhat.com>, Palmer Dabbelt <palmer@dabbelt.com>, Paolo Bonzini <pbonzini@redhat.com>, Peter Zijlstra <peterz@infradead.org>, Randy Dunlap <rdunlap@infradead.org>, Rob Herring <robh@kernel.org>, Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>, Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>, Stefan Asserhall <stefan.asserhall@xilinx.com>, Vladimir Murzin <vladimir.murzin@arm.com>, Will Deacon <will@kernel.org>, linux-arch@vger.kernel.org, linux-mm@kvack.org Subject: [PATCH 00/10] Hi, Date: Wed, 12 Feb 2020 09:57:57 +0100 [thread overview] Message-ID: <cover.1581497860.git.michal.simek@xilinx.com> (raw) I am sending this series as before SMP support. Most of these patches are clean ups and should be easy to review them. I expect there will be more discussions about SMP support. There could be some optimization added based on https://lkml.org/lkml/2020/2/10/1528 Thanks, Michal Michal Simek (6): microblaze: Convert headers to SPDX license microblaze: Remove architecture tlb.h and use generic one microblaze: Remove early printk setup microblaze: Remove empty headers microblaze: Remove unused boot_cpuid variable microblaze: Use asm generic cmpxchg.h for !SMP case Stefan Asserhall (4): microblaze: Define microblaze barrier microblaze: Add sync to tlb operations microblaze: Add missing irqflags.h header microblaze: Define percpu sestion in linker file arch/microblaze/include/asm/Kbuild | 4 +- arch/microblaze/include/asm/barrier.h | 13 ++++++ arch/microblaze/include/asm/cache.h | 5 +-- arch/microblaze/include/asm/cacheflush.h | 6 +-- arch/microblaze/include/asm/checksum.h | 5 +-- arch/microblaze/include/asm/cmpxchg.h | 40 ++----------------- arch/microblaze/include/asm/cpuinfo.h | 5 +-- arch/microblaze/include/asm/cputable.h | 1 - arch/microblaze/include/asm/current.h | 5 +-- arch/microblaze/include/asm/delay.h | 7 +--- arch/microblaze/include/asm/dma.h | 5 +-- arch/microblaze/include/asm/elf.h | 5 +-- arch/microblaze/include/asm/entry.h | 5 +-- arch/microblaze/include/asm/exceptions.h | 5 +-- arch/microblaze/include/asm/fixmap.h | 5 +-- arch/microblaze/include/asm/flat.h | 5 +-- arch/microblaze/include/asm/hw_irq.h | 1 - arch/microblaze/include/asm/io.h | 5 +-- arch/microblaze/include/asm/irq.h | 5 +-- arch/microblaze/include/asm/irqflags.h | 5 +-- arch/microblaze/include/asm/mmu.h | 5 +-- arch/microblaze/include/asm/mmu_context_mm.h | 5 +-- arch/microblaze/include/asm/module.h | 5 +-- arch/microblaze/include/asm/page.h | 5 +-- arch/microblaze/include/asm/pgalloc.h | 5 +-- arch/microblaze/include/asm/pgtable.h | 5 +-- arch/microblaze/include/asm/processor.h | 5 +-- arch/microblaze/include/asm/ptrace.h | 5 +-- arch/microblaze/include/asm/pvr.h | 5 +-- arch/microblaze/include/asm/registers.h | 5 +-- arch/microblaze/include/asm/sections.h | 5 +-- arch/microblaze/include/asm/setup.h | 7 +--- arch/microblaze/include/asm/string.h | 5 +-- arch/microblaze/include/asm/switch_to.h | 5 +-- arch/microblaze/include/asm/thread_info.h | 5 +-- arch/microblaze/include/asm/timex.h | 5 +-- arch/microblaze/include/asm/tlb.h | 17 -------- arch/microblaze/include/asm/tlbflush.h | 5 +-- arch/microblaze/include/asm/uaccess.h | 5 +-- arch/microblaze/include/asm/unaligned.h | 5 +-- arch/microblaze/include/asm/unistd.h | 5 +-- arch/microblaze/include/asm/unwind.h | 5 +-- arch/microblaze/include/asm/user.h | 1 - arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c | 7 +--- arch/microblaze/kernel/cpu/pvr.c | 1 + arch/microblaze/kernel/misc.S | 3 +- arch/microblaze/kernel/setup.c | 1 - arch/microblaze/kernel/vmlinux.lds.S | 3 ++ 48 files changed, 62 insertions(+), 215 deletions(-) create mode 100644 arch/microblaze/include/asm/barrier.h delete mode 100644 arch/microblaze/include/asm/cputable.h delete mode 100644 arch/microblaze/include/asm/hw_irq.h delete mode 100644 arch/microblaze/include/asm/tlb.h delete mode 100644 arch/microblaze/include/asm/user.h -- 2.25.0
next reply other threads:[~2020-02-12 8:58 UTC|newest] Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-02-12 8:57 Michal Simek [this message] 2020-02-12 8:57 ` [PATCH 01/10] microblaze: Convert headers to SPDX license Michal Simek 2020-02-12 8:57 ` [PATCH 02/10] microblaze: Remove architecture tlb.h and use generic one Michal Simek 2020-02-12 8:58 ` [PATCH 03/10] microblaze: Remove early printk setup Michal Simek 2020-02-12 8:58 ` [PATCH 04/10] microblaze: Remove empty headers Michal Simek 2020-02-12 8:58 ` [PATCH 05/10] microblaze: Define microblaze barrier Michal Simek 2020-02-12 8:58 ` [PATCH 06/10] microblaze: Add sync to tlb operations Michal Simek 2020-02-12 13:00 ` Arnd Bergmann 2020-02-12 13:01 ` Michal Simek 2020-02-12 8:58 ` [PATCH 07/10] microblaze: Add missing irqflags.h header Michal Simek 2020-02-12 8:58 ` [PATCH 08/10] microblaze: Remove unused boot_cpuid variable Michal Simek 2020-02-12 8:58 ` [PATCH 09/10] microblaze: Define percpu sestion in linker file Michal Simek 2020-02-12 8:58 ` [PATCH 10/10] microblaze: Use asm generic cmpxchg.h for !SMP case Michal Simek 2020-02-12 13:02 ` [PATCH 00/10] Hi, Arnd Bergmann 2020-02-12 13:32 ` Michal Simek 2020-02-13 23:47 ` Rob Herring 2020-02-17 14:27 ` Michal Simek 2020-02-25 16:32 ` Rob Herring 2020-02-27 7:31 ` Michal Simek [not found] ` <BYAPR02MB5559708A5A584D05516D77EBA58A0@BYAPR02MB5559.namprd02.prod.outlook.com> 2020-06-01 14:05 ` Rob Herring 2020-02-25 11:34 ` Michal Simek
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=cover.1581497860.git.michal.simek@xilinx.com \ --to=michal.simek@xilinx.com \ --cc=akpm@linux-foundation.org \ --cc=aneesh.kumar@linux.ibm.com \ --cc=arnd@arndb.de \ --cc=bp@suse.de \ --cc=cohuck@redhat.com \ --cc=geert@linux-m68k.org \ --cc=gerg@linux-m68k.org \ --cc=git@xilinx.com \ --cc=gregkh@linuxfoundation.org \ --cc=heiko.carstens@de.ibm.com \ --cc=keescook@chromium.org \ --cc=linux-arch@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-mm@kvack.org \ --cc=monstr@monstr.eu \ --cc=mubinusm@xilinx.com \ --cc=nivedita@alum.mit.edu \ --cc=npiggin@gmail.com \ --cc=oleg@redhat.com \ --cc=palmer@dabbelt.com \ --cc=pbonzini@redhat.com \ --cc=peterz@infradead.org \ --cc=rdunlap@infradead.org \ --cc=robh@kernel.org \ --cc=rppt@linux.ibm.com \ --cc=shubhrajyoti.datta@xilinx.com \ --cc=siva.durga.paladugu@xilinx.com \ --cc=stefan.asserhall@xilinx.com \ --cc=vladimir.murzin@arm.com \ --cc=will@kernel.org \ --cc=yamada.masahiro@socionext.com \ --subject='Re: [PATCH 00/10] Hi,' \ /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
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).