[PULL 0/7] target/nios2: Rewrite interrupt handling

Richard Henderson posted 7 patches 2 years, 1 month ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220303204624.468786-1-richard.henderson@linaro.org
Maintainers: Chris Wulff <crwulff@gmail.com>, Marek Vasut <marex@denx.de>
meson.build               |   1 +
target/nios2/cpu.h        |   1 -
target/nios2/helper.h     |   6 +-
target/nios2/mmu.h        |   1 -
target/nios2/cpu.c        |  10 +-
target/nios2/mmu.c        | 265 +++++++++++++++++-----------------------------
target/nios2/op_helper.c  |  29 -----
target/nios2/translate.c  |  73 ++++++-------
target/nios2/meson.build  |   3 +-
target/nios2/trace-events |  10 ++
10 files changed, 152 insertions(+), 247 deletions(-)
create mode 100644 target/nios2/trace-events
[PULL 0/7] target/nios2: Rewrite interrupt handling
Posted by Richard Henderson 2 years, 1 month ago
The following changes since commit 36eae3a732a1f2aa81391e871ac0e9bb3233e7d7:

  Merge remote-tracking branch 'remotes/dgilbert-gitlab/tags/pull-migration-20220302b' into staging (2022-03-02 20:55:48 +0000)

are available in the Git repository at:

  https://gitlab.com/rth7680/qemu.git tags/pull-nios-20220303

for you to fetch changes up to b72c9d5951f1dfa047f545408dd9e35597e6b9d3:

  target/nios2: Rewrite interrupt handling (2022-03-03 09:51:59 -1000)

----------------------------------------------------------------
Rewrite nios2 interrupt handling

----------------------------------------------------------------
Richard Henderson (7):
      target/nios2: Remove mmu_read_debug
      target/nios2: Replace MMU_LOG with tracepoints
      target/nios2: Only build mmu.c for system mode
      target/nios2: Hoist R_ZERO check in rdctl
      target/nios2: Split mmu_write
      target/nios2: Special case ipending in rdctl and wrctl
      target/nios2: Rewrite interrupt handling

 meson.build               |   1 +
 target/nios2/cpu.h        |   1 -
 target/nios2/helper.h     |   6 +-
 target/nios2/mmu.h        |   1 -
 target/nios2/cpu.c        |  10 +-
 target/nios2/mmu.c        | 265 +++++++++++++++++-----------------------------
 target/nios2/op_helper.c  |  29 -----
 target/nios2/translate.c  |  73 ++++++-------
 target/nios2/meson.build  |   3 +-
 target/nios2/trace-events |  10 ++
 10 files changed, 152 insertions(+), 247 deletions(-)
 create mode 100644 target/nios2/trace-events
Re: [PULL 0/7] target/nios2: Rewrite interrupt handling
Posted by Peter Maydell 2 years, 1 month ago
On Thu, 3 Mar 2022 at 20:46, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> The following changes since commit 36eae3a732a1f2aa81391e871ac0e9bb3233e7d7:
>
>   Merge remote-tracking branch 'remotes/dgilbert-gitlab/tags/pull-migration-20220302b' into staging (2022-03-02 20:55:48 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/rth7680/qemu.git tags/pull-nios-20220303
>
> for you to fetch changes up to b72c9d5951f1dfa047f545408dd9e35597e6b9d3:
>
>   target/nios2: Rewrite interrupt handling (2022-03-03 09:51:59 -1000)
>
> ----------------------------------------------------------------
> Rewrite nios2 interrupt handling
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/7.0
for any user-visible changes.

-- PMM