[Qemu-devel] [PULL v2 0/5] OpenRISC SMP Support

Stafford Horne posted 5 patches 6 years, 6 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20171020220533.29186-1-shorne@gmail.com
Test checkpatch passed
Test docker passed
Test s390x passed
default-configs/or1k-softmmu.mak |   1 +
hw/intc/Makefile.objs            |   1 +
hw/intc/ompic.c                  | 179 +++++++++++++++++++++++++++++++++++++++
hw/openrisc/cputimer.c           |  64 ++++++++++----
hw/openrisc/openrisc_sim.c       |  88 ++++++++++++++-----
target/openrisc/cpu.c            |   1 -
target/openrisc/cpu.h            |   4 +-
target/openrisc/machine.c        |   1 -
target/openrisc/sys_helper.c     |   9 +-
9 files changed, 302 insertions(+), 46 deletions(-)
create mode 100644 hw/intc/ompic.c
[Qemu-devel] [PULL v2 0/5] OpenRISC SMP Support
Posted by Stafford Horne 6 years, 6 months ago
Hello Again,

Please consider for pull.

The following changes since commit e822e81e350825dd94f41ee2538ff1432b812eb9:

  Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2017-10-20 15:04:00 +0100)

are available in the git repository at:

  git://github.com/stffrdhrn/qemu.git tags/openrisc-20171021-smp-pr

for you to fetch changes up to 373b259b660a8ff0960a979481c19b78d51e023a:

  openrisc: Only kick cpu on timeout, not on update (2017-10-21 06:37:06 +0900)

----------------------------------------------------------------
OpenRISC SMP patchset 20171021

----------------------------------------------------------------
Stafford Horne (5):
      openrisc/ompic: Add OpenRISC Multicore PIC (OMPIC)
      target/openrisc: Make coreid and numcores variable
      openrisc/cputimer: Perparation for Multicore
      openrisc: Initial SMP support
      openrisc: Only kick cpu on timeout, not on update

 default-configs/or1k-softmmu.mak |   1 +
 hw/intc/Makefile.objs            |   1 +
 hw/intc/ompic.c                  | 179 +++++++++++++++++++++++++++++++++++++++
 hw/openrisc/cputimer.c           |  64 ++++++++++----
 hw/openrisc/openrisc_sim.c       |  88 ++++++++++++++-----
 target/openrisc/cpu.c            |   1 -
 target/openrisc/cpu.h            |   4 +-
 target/openrisc/machine.c        |   1 -
 target/openrisc/sys_helper.c     |   9 +-
 9 files changed, 302 insertions(+), 46 deletions(-)
 create mode 100644 hw/intc/ompic.c

-- 
2.13.6


Re: [Qemu-devel] [PULL v2 0/5] OpenRISC SMP Support
Posted by Peter Maydell 6 years, 6 months ago
On 20 October 2017 at 23:05, Stafford Horne <shorne@gmail.com> wrote:
> Hello Again,
>
> Please consider for pull.
>
> The following changes since commit e822e81e350825dd94f41ee2538ff1432b812eb9:
>
>   Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2017-10-20 15:04:00 +0100)
>
> are available in the git repository at:
>
>   git://github.com/stffrdhrn/qemu.git tags/openrisc-20171021-smp-pr
>
> for you to fetch changes up to 373b259b660a8ff0960a979481c19b78d51e023a:
>
>   openrisc: Only kick cpu on timeout, not on update (2017-10-21 06:37:06 +0900)
>
> ----------------------------------------------------------------
> OpenRISC SMP patchset 20171021
>
> ----------------------------------------------------------------
> Stafford Horne (5):
>       openrisc/ompic: Add OpenRISC Multicore PIC (OMPIC)
>       target/openrisc: Make coreid and numcores variable
>       openrisc/cputimer: Perparation for Multicore
>       openrisc: Initial SMP support
>       openrisc: Only kick cpu on timeout, not on update

Applied, thanks.

-- PMM