From: Alexander Graf <agraf@suse.de>
To: qemu-ppc@nongnu.org
Cc: Blue Swirl <blauwirbel@gmail.com>,
qemu-devel Developers <qemu-devel@nongnu.org>,
Aurelien Jarno <aurelien@aurel32.net>
Subject: [Qemu-devel] [PULL 00/26] ppc patch queue 2012-01-21
Date: Sat, 21 Jan 2012 05:18:45 +0100 [thread overview]
Message-ID: <1327119551-29674-1-git-send-email-agraf@suse.de> (raw)
Hi Anthony / Aurelien / Blue,
This is my current patch queue for ppc. Please pull.
Alex
The following changes since commit 515689235c4c3d9c3f0406ddcdd21ed8da77062b:
Anthony Liguori (1):
Merge remote-tracking branch 'spice/spice.v47' into staging
are available in the git repository at:
git://repo.or.cz/qemu/agraf.git for-upstream
Alexander Graf (14):
PPC: 440EP: Initialize timer
PPC: Bamboo: Register CPU reset
PPC: Bamboo: Set initial TLB entry
PPC: 440: Ignore invalid PCI IRQs
PPC: Bamboo: recompile device tree
PPC: 440: Default to 440EP CPU
PPC: Enable 440EP CPU target
PPC: bamboo: remove old machine descriptions
PPC: bamboo: fix whitespace
PPC: 4xx: Qdevify the 440 PCI host controller
PPC: Bamboo: fold ppc440.c and ppc440_bamboo.c into a single file
PPC: Bamboo: Integrate SoC instatiation, use qdev for PCI
virtio: change memcpy to guest reads
PPC: Pseries: Check for PCI boundaries
Andreas Färber (4):
MAINTAINERS: Add qemu-ppc to all ppc target stuff
MAINTAINERS: Add PCI host bridge files to CHRP machines
MAINTAINERS: Add PCI-PCI bridge to New World Mac machine
grackle_pci: Clean up qdev names
Benjamin Herrenschmidt (5):
virtio-pci: Fix endianness of virtio config
load_image_targphys() should enforce the max size
Fix dirty logging with 32-bit qemu & 64-bit guests
pseries: Support PCI extended config space in RTAS calls
pseries: SLOF PCI flag day
David Gibson (3):
Update gitignore file
Correct types in bmdma_addr_{read,write}
pseries: Use correct dispatcher for PCI config space accesses
.gitignore | 4 +
MAINTAINERS | 8 ++
Makefile.target | 2 +-
exec.c | 14 ++++
hw/grackle_pci.c | 17 +++-
hw/ide/pci.c | 4 +-
hw/loader.c | 6 +-
hw/ppc440.c | 106 --------------------------
hw/ppc440.h | 21 -----
hw/ppc440_bamboo.c | 154 ++++++++++++++++++++++++++++++---------
hw/ppc4xx_pci.c | 129 +++++++++++++++++---------------
hw/spapr.c | 135 ++++++++++++++++++++++-----------
hw/spapr_pci.c | 173 +++++++++++--------------------------------
hw/virtex_ml507.c | 1 -
hw/virtio-pci.c | 28 +++++++-
hw/virtio.c | 12 ++--
kvm-all.c | 3 +-
pc-bios/README | 2 +-
pc-bios/bamboo.dtb | Bin 3179 -> 3211 bytes
pc-bios/bamboo.dts | 128 ++++++++++++--------------------
pc-bios/slof.bin | Bin 738744 -> 869584 bytes
roms/SLOF | 2 +-
target-ppc/translate_init.c | 16 +---
23 files changed, 458 insertions(+), 507 deletions(-)
delete mode 100644 hw/ppc440.c
delete mode 100644 hw/ppc440.h
next reply other threads:[~2012-01-21 4:19 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-21 4:18 Alexander Graf [this message]
2012-01-21 4:18 ` [Qemu-devel] [PATCH 01/26] PPC: 440EP: Initialize timer Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 02/26] PPC: Bamboo: Register CPU reset Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 03/26] PPC: Bamboo: Set initial TLB entry Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 04/26] PPC: 440: Ignore invalid PCI IRQs Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 05/26] PPC: Bamboo: recompile device tree Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 06/26] PPC: 440: Default to 440EP CPU Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 07/26] PPC: Enable 440EP CPU target Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 08/26] PPC: bamboo: remove old machine descriptions Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 09/26] PPC: bamboo: fix whitespace Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 10/26] PPC: 4xx: Qdevify the 440 PCI host controller Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 11/26] PPC: Bamboo: fold ppc440.c and ppc440_bamboo.c into a single file Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 12/26] PPC: Bamboo: Integrate SoC instatiation, use qdev for PCI Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 13/26] virtio-pci: Fix endianness of virtio config Alexander Graf
2012-01-21 4:18 ` [Qemu-devel] [PATCH 14/26] virtio: change memcpy to guest reads Alexander Graf
2012-01-21 4:19 ` [Qemu-devel] [PATCH 15/26] load_image_targphys() should enforce the max size Alexander Graf
2012-01-21 4:19 ` [Qemu-devel] [PATCH 16/26] Fix dirty logging with 32-bit qemu & 64-bit guests Alexander Graf
2012-01-21 4:19 ` [Qemu-devel] [PATCH 17/26] Update gitignore file Alexander Graf
2012-01-21 4:19 ` [Qemu-devel] [PATCH 18/26] Correct types in bmdma_addr_{read, write} Alexander Graf
2012-01-21 4:19 ` [Qemu-devel] [PATCH 19/26] pseries: Support PCI extended config space in RTAS calls Alexander Graf
2012-01-21 4:19 ` [Qemu-devel] [PATCH 20/26] pseries: Use correct dispatcher for PCI config space accesses Alexander Graf
2012-01-21 4:19 ` [Qemu-devel] [PATCH 21/26] pseries: SLOF PCI flag day Alexander Graf
2012-01-21 4:19 ` [Qemu-devel] [PATCH 22/26] MAINTAINERS: Add qemu-ppc to all ppc target stuff Alexander Graf
2012-01-21 7:22 ` Andreas Färber
2012-01-21 4:19 ` [Qemu-devel] [PATCH 23/26] MAINTAINERS: Add PCI host bridge files to CHRP machines Alexander Graf
2012-01-21 4:19 ` [Qemu-devel] [PATCH 24/26] PPC: Pseries: Check for PCI boundaries Alexander Graf
2012-01-21 4:19 ` [Qemu-devel] [PATCH 25/26] MAINTAINERS: Add PCI-PCI bridge to New World Mac machine Alexander Graf
2012-01-21 4:19 ` [Qemu-devel] [PATCH 26/26] grackle_pci: Clean up qdev names Alexander Graf
2012-01-21 20:02 ` [Qemu-devel] [PULL 00/26] ppc patch queue 2012-01-21 Blue Swirl
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1327119551-29674-1-git-send-email-agraf@suse.de \
--to=agraf@suse.de \
--cc=aurelien@aurel32.net \
--cc=blauwirbel@gmail.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).