[Qemu-devel] [PULL v2 0/7] MMIO Exec pull request

Edgar E. Iglesias posted 7 patches 6 years, 10 months ago
Failed in applying to current master (apply log)
accel/tcg/cputlb.c               |  82 ++++++++++++++-----------
hw/misc/Makefile.objs            |   1 +
hw/misc/mmio_interface.c         | 128 +++++++++++++++++++++++++++++++++++++++
hw/ssi/xilinx_spips.c            |  74 ++++++++++++++++------
include/exec/memory.h            |  35 +++++++++++
include/hw/misc/mmio_interface.h |  49 +++++++++++++++
include/hw/qdev-properties.h     |   2 +
memory.c                         | 111 +++++++++++++++++++++++++++++++++
8 files changed, 428 insertions(+), 54 deletions(-)
create mode 100644 hw/misc/mmio_interface.c
create mode 100644 include/hw/misc/mmio_interface.h
[Qemu-devel] [PULL v2 0/7] MMIO Exec pull request
Posted by Edgar E. Iglesias 6 years, 10 months ago
From: "Edgar E. Iglesias" <edgar.iglesias@xilinx.com>

Hi,

Paolo suggested offline that we send a pull request for this series.
Here it is, I've run it through my testsuite + tested the LQSPI testcase
on Zynq.

Cheers,
Edgar

ChangeLog:

v1 -> v2:
* Add EI RB line to patch #6
* Remove changelogs from commit messages
* Add EI SoB lines to all patches


The following changes since commit 054914f6461ce9d3427af6527ef3e5b07311c86b:

  Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2017-06-26 15:38:29 +0100)

are available in the git repository at:

  git@github.com:edgarigl/qemu.git tags/edgar/mmio-exec-v2.for-upstream

for you to fetch changes up to 252b99baeb9e7e86cc0ece8efcaddebf11d284f5:

  xilinx_spips: allow mmio execution (2017-06-27 15:09:15 +0200)

----------------------------------------------------------------
edgar/mmio-exec-v2.for-upstream

----------------------------------------------------------------
KONRAD Frederic (7):
      cputlb: cleanup get_page_addr_code to use VICTIM_TLB_HIT
      cputlb: move get_page_addr_code
      cputlb: fix the way get_page_addr_code fills the tlb
      qdev: add MemoryRegion property
      introduce mmio_interface
      exec: allow to get a pointer for some mmio memory region
      xilinx_spips: allow mmio execution

 accel/tcg/cputlb.c               |  82 ++++++++++++++-----------
 hw/misc/Makefile.objs            |   1 +
 hw/misc/mmio_interface.c         | 128 +++++++++++++++++++++++++++++++++++++++
 hw/ssi/xilinx_spips.c            |  74 ++++++++++++++++------
 include/exec/memory.h            |  35 +++++++++++
 include/hw/misc/mmio_interface.h |  49 +++++++++++++++
 include/hw/qdev-properties.h     |   2 +
 memory.c                         | 111 +++++++++++++++++++++++++++++++++
 8 files changed, 428 insertions(+), 54 deletions(-)
 create mode 100644 hw/misc/mmio_interface.c
 create mode 100644 include/hw/misc/mmio_interface.h

Re: [Qemu-devel] [PULL v2 0/7] MMIO Exec pull request
Posted by Peter Maydell 6 years, 10 months ago
On 27 June 2017 at 16:37, Edgar E. Iglesias <edgar.iglesias@gmail.com> wrote:
> From: "Edgar E. Iglesias" <edgar.iglesias@xilinx.com>
>
> Hi,
>
> Paolo suggested offline that we send a pull request for this series.
> Here it is, I've run it through my testsuite + tested the LQSPI testcase
> on Zynq.
>
> Cheers,
> Edgar
>
> ChangeLog:
>
> v1 -> v2:
> * Add EI RB line to patch #6
> * Remove changelogs from commit messages
> * Add EI SoB lines to all patches
>
>
> The following changes since commit 054914f6461ce9d3427af6527ef3e5b07311c86b:
>
>   Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2017-06-26 15:38:29 +0100)
>
> are available in the git repository at:
>
>   git@github.com:edgarigl/qemu.git tags/edgar/mmio-exec-v2.for-upstream
>
> for you to fetch changes up to 252b99baeb9e7e86cc0ece8efcaddebf11d284f5:
>
>   xilinx_spips: allow mmio execution (2017-06-27 15:09:15 +0200)
>
> ----------------------------------------------------------------
> edgar/mmio-exec-v2.for-upstream
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM