qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL] PPC patch queue
@ 2011-05-11 22:28 Alexander Graf
  2011-05-14 21:02 ` Aurelien Jarno
  0 siblings, 1 reply; 4+ messages in thread
From: Alexander Graf @ 2011-05-11 22:28 UTC (permalink / raw)
  To: QEMU-devel Developers

Hi,

This is my current PPC patch queue containing all the collected PPC work for
Qemu so far. Please pull.

Alex

The following changes since commit 0225e254ae81c5638463cda8f5730f31619113b6:
  Stefan Weil (1):
        usb-linux: Add missing break statement

are available in the git repository at:

  git://repo.or.cz/qemu/agraf.git ppc-next

Alexander Graf (9):
      kvm: ppc: detect old headers
      kvm: ppc: warn user on PAGE_SIZE mismatch
      PPC: Make MPC8544DS obey -cpu switch
      PPC: Make MPC8544DS emulation work w/o KVM
      PPC: Add GS MSR definition
      PPC: Add another 64 bits to instruction feature mask
      PPC: Implement e500 (FSL) MMU
      PPC MPC7544DS: Use new TLB helper function
      PPC: Qdev'ify e500 pci

Andreas Färber (2):
      ppc64: Don't try to build sPAPR RTAS on Darwin
      ppc64: Fix out-of-tree builds

Anton Blanchard (1):
      pseries: Increase maximum CPUs to 256

David Gibson (3):
      Make pSeries 'model' property more closely resemble real hardware
      Place pseries vty devices at addresses more similar to existing machines
      Fix off-by-one error in sizing pSeries hcall table

Scott Wood (2):
      kvm: ppc: fixes for KVM_SET_SREGS on init
      monitor: add PPC BookE SPRs

 configure                   |   22 +++-
 hw/ppc.c                    |   12 ++
 hw/ppce500.h                |   22 ---
 hw/ppce500_mpc8544ds.c      |  113 ++++++++++++----
 hw/ppce500_pci.c            |  136 +++++++++++---------
 hw/spapr.c                  |    9 +-
 hw/spapr_hcall.c            |    4 +-
 hw/spapr_rtas.c             |    3 +-
 hw/spapr_vio.h              |    2 +
 kvm-all.c                   |    5 +
 monitor.c                   |   71 ++++++++++-
 target-ppc/cpu.h            |  308 ++++++++++++++++++++++++++++++++++++++++++-
 target-ppc/helper.c         |  269 ++++++++++++++++++++++++++++++--------
 target-ppc/helper.h         |    6 +
 target-ppc/kvm.c            |  180 ++++++++++++++++++++++++-
 target-ppc/op_helper.c      |  296 +++++++++++++++++++++++++++++++++++++++++
 target-ppc/translate.c      |  200 ++++++++++++++++++++++++++--
 target-ppc/translate_init.c |  282 ++++++++++++++++++++++++++++-----------
 18 files changed, 1664 insertions(+), 276 deletions(-)
 delete mode 100644 hw/ppce500.h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PULL] PPC patch queue
  2011-05-11 22:28 [Qemu-devel] [PULL] PPC patch queue Alexander Graf
@ 2011-05-14 21:02 ` Aurelien Jarno
  0 siblings, 0 replies; 4+ messages in thread
From: Aurelien Jarno @ 2011-05-14 21:02 UTC (permalink / raw)
  To: Alexander Graf; +Cc: QEMU-devel Developers

On Thu, May 12, 2011 at 12:28:10AM +0200, Alexander Graf wrote:
> Hi,
> 
> This is my current PPC patch queue containing all the collected PPC work for
> Qemu so far. Please pull.
> 

Thanks, pulled.


> The following changes since commit 0225e254ae81c5638463cda8f5730f31619113b6:
>   Stefan Weil (1):
>         usb-linux: Add missing break statement
> 
> are available in the git repository at:
> 
>   git://repo.or.cz/qemu/agraf.git ppc-next
> 
> Alexander Graf (9):
>       kvm: ppc: detect old headers
>       kvm: ppc: warn user on PAGE_SIZE mismatch
>       PPC: Make MPC8544DS obey -cpu switch
>       PPC: Make MPC8544DS emulation work w/o KVM
>       PPC: Add GS MSR definition
>       PPC: Add another 64 bits to instruction feature mask
>       PPC: Implement e500 (FSL) MMU
>       PPC MPC7544DS: Use new TLB helper function
>       PPC: Qdev'ify e500 pci
> 
> Andreas Färber (2):
>       ppc64: Don't try to build sPAPR RTAS on Darwin
>       ppc64: Fix out-of-tree builds
> 
> Anton Blanchard (1):
>       pseries: Increase maximum CPUs to 256
> 
> David Gibson (3):
>       Make pSeries 'model' property more closely resemble real hardware
>       Place pseries vty devices at addresses more similar to existing machines
>       Fix off-by-one error in sizing pSeries hcall table
> 
> Scott Wood (2):
>       kvm: ppc: fixes for KVM_SET_SREGS on init
>       monitor: add PPC BookE SPRs
> 
>  configure                   |   22 +++-
>  hw/ppc.c                    |   12 ++
>  hw/ppce500.h                |   22 ---
>  hw/ppce500_mpc8544ds.c      |  113 ++++++++++++----
>  hw/ppce500_pci.c            |  136 +++++++++++---------
>  hw/spapr.c                  |    9 +-
>  hw/spapr_hcall.c            |    4 +-
>  hw/spapr_rtas.c             |    3 +-
>  hw/spapr_vio.h              |    2 +
>  kvm-all.c                   |    5 +
>  monitor.c                   |   71 ++++++++++-
>  target-ppc/cpu.h            |  308 ++++++++++++++++++++++++++++++++++++++++++-
>  target-ppc/helper.c         |  269 ++++++++++++++++++++++++++++++--------
>  target-ppc/helper.h         |    6 +
>  target-ppc/kvm.c            |  180 ++++++++++++++++++++++++-
>  target-ppc/op_helper.c      |  296 +++++++++++++++++++++++++++++++++++++++++
>  target-ppc/translate.c      |  200 ++++++++++++++++++++++++++--
>  target-ppc/translate_init.c |  282 ++++++++++++++++++++++++++++-----------
>  18 files changed, 1664 insertions(+), 276 deletions(-)
>  delete mode 100644 hw/ppce500.h
> 
> 
> 

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
aurelien@aurel32.net                 http://www.aurel32.net

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Qemu-devel] [PULL] PPC patch queue
@ 2011-05-20 16:03 Alexander Graf
  2011-05-23 21:32 ` Aurelien Jarno
  0 siblings, 1 reply; 4+ messages in thread
From: Alexander Graf @ 2011-05-20 16:03 UTC (permalink / raw)
  To: qemu-devel@nongnu.org Developers; +Cc: Aurelien Jarno

Hi,

This is my current PPC patch queue containing all the collected PPC work for
Qemu so far. Please pull.

Alex

The following changes since commit 1fddfba129f5435c80eda14e8bc23fdb888c7187:
  Alexander Graf (1):
        ahci: Fix non-NCQ accesses for LBA > 16bits

are available in the git repository at:

  git://repo.or.cz/qemu/agraf.git ppc-next

David Gibson (2):
      pSeries: Clean up write-only variables
      Fix a bug in mtsr/mtsrin emulation on ppc64

Stefan Weil (1):
      w32: Fix compilation and replace non-portable usage of ulong

 hw/spapr_hcall.c    |    7 +------
 hw/spapr_llan.c     |    3 ---
 target-ppc/cpu.h    |    4 ++--
 target-ppc/helper.c |    9 ++++-----
 4 files changed, 7 insertions(+), 16 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PULL] PPC patch queue
  2011-05-20 16:03 Alexander Graf
@ 2011-05-23 21:32 ` Aurelien Jarno
  0 siblings, 0 replies; 4+ messages in thread
From: Aurelien Jarno @ 2011-05-23 21:32 UTC (permalink / raw)
  To: Alexander Graf; +Cc: qemu-devel@nongnu.org Developers

On Fri, May 20, 2011 at 06:03:50PM +0200, Alexander Graf wrote:
> Hi,
> 
> This is my current PPC patch queue containing all the collected PPC work for
> Qemu so far. Please pull.

Pulled. In the future, could you please also send the patch series to
the mailing list, so that people can have a look at the patches?

> Alex
> 
> The following changes since commit 1fddfba129f5435c80eda14e8bc23fdb888c7187:
>   Alexander Graf (1):
>         ahci: Fix non-NCQ accesses for LBA > 16bits
> 
> are available in the git repository at:
> 
>   git://repo.or.cz/qemu/agraf.git ppc-next
> 
> David Gibson (2):
>       pSeries: Clean up write-only variables
>       Fix a bug in mtsr/mtsrin emulation on ppc64
> 
> Stefan Weil (1):
>       w32: Fix compilation and replace non-portable usage of ulong
> 
>  hw/spapr_hcall.c    |    7 +------
>  hw/spapr_llan.c     |    3 ---
>  target-ppc/cpu.h    |    4 ++--
>  target-ppc/helper.c |    9 ++++-----
>  4 files changed, 7 insertions(+), 16 deletions(-)
> 
> 
> 

-- 
Aurelien Jarno	                        GPG: 1024D/F1BCDB73
aurelien@aurel32.net                 http://www.aurel32.net

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-05-23 21:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-11 22:28 [Qemu-devel] [PULL] PPC patch queue Alexander Graf
2011-05-14 21:02 ` Aurelien Jarno
  -- strict thread matches above, loose matches on Subject: below --
2011-05-20 16:03 Alexander Graf
2011-05-23 21:32 ` Aurelien Jarno

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).