Message ID | mhng-5924ada7-ba61-4f8b-a7c8-6ad4a36882ed@palmer-si-x1c4 (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [GIT,PULL] RISC-V Updates for the 4.21 Merge Window, Part 1 | expand |
On Fri, Dec 21, 2018 at 10:00 PM Palmer Dabbelt <palmer@sifive.com> wrote: > > The following changes since commit 7566ec393f4161572ba6f11ad5171fd5d59b0fbd: > > Linux 4.20-rc7 (2018-12-16 15:46:55 -0800) > > are available in the Git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git tags/riscv-for-linus-4.21-mw1 > > for you to fetch changes up to 9b9afe4a0ef149db2472f13d6fa3c705d2867c9c: > > RISC-V: Select GENERIC_SCHED_CLOCK for clocksource drivers (2018-12-21 08:17:19 -0800) > > ---------------------------------------------------------------- > RISC-V Updates for the 4.21 Merge Window, Part 1 > > We don't have many patches for this merge window, probably because > everything has been a bit busy with the holidays and conferences. The > only big user-visible change is to move over to an SBI-based earlycon > instead of our arch-specific early printk support. > > The only outstanding patch set I know of is the audit patch set, which > I've managed to make a mess of and will attempt to clean up. > > ---------------------------------------------------------------- > Andrea Parri (1): > riscv, atomic: Add #define's for the atomic_{cmp,}xchg_*() variants > > Anup Patel (3): > RISC-V: defconfig: Enable RISC-V SBI earlycon support > RISC-V: Remove EARLY_PRINTK support > RISC-V: Select GENERIC_SCHED_CLOCK for clocksource drivers > > Atish Patra (1): > RISC-V: Fix of_node_* refcount > > David Abdurachmanov (1): > riscv: remove unused variable in ftrace > > Nick Kossifidis (1): > RISC-V: Update Kconfig to better handle CMDLINE > > Olof Johansson (1): > RISC-V: lib: minor asm cleanup > > Palmer Dabbelt (1): > RISC-V: Move from EARLY_PRINTK to SBI earlycon > > Yangtao Li (1): > RISC-V: add of_node_put() > > arch/riscv/Kconfig | 58 +++++++++++++++++++++++----------------- > arch/riscv/Kconfig.debug | 2 -- > arch/riscv/configs/defconfig | 1 + > arch/riscv/include/asm/atomic.h | 9 +++++++ > arch/riscv/kernel/cacheinfo.c | 11 ++++++++ > arch/riscv/kernel/cpu.c | 1 + > arch/riscv/kernel/cpufeature.c | 2 ++ > arch/riscv/kernel/ftrace.c | 1 - > arch/riscv/kernel/perf_event.c | 1 + > arch/riscv/kernel/setup.c | 28 ------------------- > arch/riscv/kernel/smpboot.c | 6 ++++- > arch/riscv/kernel/time.c | 1 + > arch/riscv/lib/tishift.S | 59 ++++++++++++++++++++++------------------- > arch/riscv/lib/udivdi3.S | 42 +++++++++++++++-------------- > 14 files changed, 118 insertions(+), 104 deletions(-) > > _______________________________________________ > linux-riscv mailing list > linux-riscv@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-riscv Hi Palmar, Greg wanted SBI earlycon driver patch to go through RISC-V tree so it should have been part of this PULL request. Refer, https://patchwork.kernel.org/patch/10711809/ Can you include it your next PULL request? Regards, Anup
On Mon, 07 Jan 2019 17:34:02 PST (-0800), anup@brainfault.org wrote: > On Fri, Dec 21, 2018 at 10:00 PM Palmer Dabbelt <palmer@sifive.com> wrote: >> >> The following changes since commit 7566ec393f4161572ba6f11ad5171fd5d59b0fbd: >> >> Linux 4.20-rc7 (2018-12-16 15:46:55 -0800) >> >> are available in the Git repository at: >> >> git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git tags/riscv-for-linus-4.21-mw1 >> >> for you to fetch changes up to 9b9afe4a0ef149db2472f13d6fa3c705d2867c9c: >> >> RISC-V: Select GENERIC_SCHED_CLOCK for clocksource drivers (2018-12-21 08:17:19 -0800) >> >> ---------------------------------------------------------------- >> RISC-V Updates for the 4.21 Merge Window, Part 1 >> >> We don't have many patches for this merge window, probably because >> everything has been a bit busy with the holidays and conferences. The >> only big user-visible change is to move over to an SBI-based earlycon >> instead of our arch-specific early printk support. >> >> The only outstanding patch set I know of is the audit patch set, which >> I've managed to make a mess of and will attempt to clean up. >> >> ---------------------------------------------------------------- >> Andrea Parri (1): >> riscv, atomic: Add #define's for the atomic_{cmp,}xchg_*() variants >> >> Anup Patel (3): >> RISC-V: defconfig: Enable RISC-V SBI earlycon support >> RISC-V: Remove EARLY_PRINTK support >> RISC-V: Select GENERIC_SCHED_CLOCK for clocksource drivers >> >> Atish Patra (1): >> RISC-V: Fix of_node_* refcount >> >> David Abdurachmanov (1): >> riscv: remove unused variable in ftrace >> >> Nick Kossifidis (1): >> RISC-V: Update Kconfig to better handle CMDLINE >> >> Olof Johansson (1): >> RISC-V: lib: minor asm cleanup >> >> Palmer Dabbelt (1): >> RISC-V: Move from EARLY_PRINTK to SBI earlycon >> >> Yangtao Li (1): >> RISC-V: add of_node_put() >> >> arch/riscv/Kconfig | 58 +++++++++++++++++++++++----------------- >> arch/riscv/Kconfig.debug | 2 -- >> arch/riscv/configs/defconfig | 1 + >> arch/riscv/include/asm/atomic.h | 9 +++++++ >> arch/riscv/kernel/cacheinfo.c | 11 ++++++++ >> arch/riscv/kernel/cpu.c | 1 + >> arch/riscv/kernel/cpufeature.c | 2 ++ >> arch/riscv/kernel/ftrace.c | 1 - >> arch/riscv/kernel/perf_event.c | 1 + >> arch/riscv/kernel/setup.c | 28 ------------------- >> arch/riscv/kernel/smpboot.c | 6 ++++- >> arch/riscv/kernel/time.c | 1 + >> arch/riscv/lib/tishift.S | 59 ++++++++++++++++++++++------------------- >> arch/riscv/lib/udivdi3.S | 42 +++++++++++++++-------------- >> 14 files changed, 118 insertions(+), 104 deletions(-) >> >> _______________________________________________ >> linux-riscv mailing list >> linux-riscv@lists.infradead.org >> http://lists.infradead.org/mailman/listinfo/linux-riscv > > Hi Palmar, > > Greg wanted SBI earlycon driver patch to go through RISC-V tree > so it should have been part of this PULL request. > > Refer, https://patchwork.kernel.org/patch/10711809/ > > Can you include it your next PULL request? Sorry about that, I must have gotten confused.