qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Gerd Hoffmann <kraxel@redhat.com>
To: Isaku Yamahata <yamahata@valinux.co.jp>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 00/25] pci: various pci clean up and pci express support. V2
Date: Fri, 02 Oct 2009 15:21:30 +0200	[thread overview]
Message-ID: <4AC5FE5A.8000901@redhat.com> (raw)
In-Reply-To: <1254479517-25845-1-git-send-email-yamahata@valinux.co.jp>

On 10/02/09 12:31, Isaku Yamahata wrote:
> This patch set is preliminary for q35 based chipset support.
> This patch sets does various pci related clean ups and
> 64bit bar, pciemmconfig and pci bridge support.

sparc64 segfaults with this series applied (it is the only system 
emulation using pci bridges right now).

(gdb) bt
#0  subpage_register (mmio=0x23ed600, start=<value optimized out>, 
end=<value optimized out>,
     memory=5242880, region_offset=41943040) at 
/home/kraxel/projects/qemu/exec.c:2862
#1  0x00000000004c4c69 in subpage_init (base=41943040, phys=0x1c2f000, 
orig_memory=41943040,
     region_offset=41943040) at /home/kraxel/projects/qemu/exec.c:2893
#2  0x00000000004c4e7b in cpu_register_physical_memory_offset 
(start_addr=<value optimized out>,
     size=256, phys_offset=104, region_offset=0) at 
/home/kraxel/projects/qemu/exec.c:2332
#3  0x0000000000415122 in pci_update_mappings (d=0x1c1f010)
     at /home/kraxel/projects/qemu/hw/pci.c:698
#4  0x00000000004164bd in pci_default_write_config (d=0x1c1f010, 
addr=20, val=41943040,
     l=<value optimized out>) at /home/kraxel/projects/qemu/hw/pci.c:763
#5  0x0000000041e552e3 in ?? ()
#6  0x00007fffa44f63cc in ?? ()
#7  0x0000000001bf3110 in ?? ()
#8  0x0000000000000200 in ?? ()
#9  0x00000000ffd18000 in ?? ()
#10 0x0000000001bf3110 in ?? ()
#11 0x00000000ffd18000 in ?? ()
#12 0x00007f168b678c90 in ?? ()
#13 0x0000000000000200 in ?? ()
#14 0x00000000ffd18000 in ?? ()
#15 0x00000000004c727d in tb_gen_code (env=0x1ff00000014, pc=<value 
optimized out>, cs_base=65280,
     flags=<value optimized out>, cflags=<value optimized out>)
     at /home/kraxel/projects/qemu/exec.c:908
#16 0x00000000004c8d53 in cpu_sparc_exec (env1=<value optimized out>)
     at /home/kraxel/projects/qemu/cpu-exec.c:620
#17 0x000000000040d8da in qemu_cpu_exec (env=<value optimized out>)
     at /home/kraxel/projects/qemu/vl.c:3946
#18 tcg_cpu_exec (env=<value optimized out>) at 
/home/kraxel/projects/qemu/vl.c:3977
#19 main_loop (env=<value optimized out>) at 
/home/kraxel/projects/qemu/vl.c:4092
#20 main (env=<value optimized out>) at /home/kraxel/projects/qemu/vl.c:5949

cheers,
   Gerd

  parent reply	other threads:[~2009-10-02 13:21 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-10-02 10:31 [Qemu-devel] [PATCH 00/25] pci: various pci clean up and pci express support. V2 Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 01/25] pci: fix PCI_DPRINTF() wrt variadic macro Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 02/25] pci: use appropriate PRIs in PCI_DPRINTF() for portability Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 03/25] pci: introduce constant PCI_NUM_PINS for the number of interrupt pins, 4 Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 04/25] pci: use the symbolic constant, PCI_ROM_ADDRESS_ENABLE instead of 1 Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 05/25] pci: use PCI_SLOT() and PCI_FUNC() Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 06/25] pci: define a constant to represent a unmapped bar and use it Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 07/25] pci: helper functions to access PCIDevice::config Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 08/25] pci: use helper functions to access pci config space Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 09/25] pci: introduce pcibus_t to represent pci bus address/size instead of uint32_t Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 10/25] pci: introduce FMT_pcibus for printf format for pcibus_t Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 11/25] pci: typedef pcibus_t as uint64_t instead of uint32_t Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 12/25] pci: 64bit bar support Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 13/25] pci: make pci configuration transaction more accurate Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 14/25] pci: factor out the logic to get pci device from address Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 15/25] pci_host.h: split non-inline static function in pci_host.h into pci_host.c Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 16/25] pci: pcie host and mmcfg support Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 17/25] pci: fix pci_default_write_config() Isaku Yamahata
2009-10-04  8:36   ` [Qemu-devel] " Michael S. Tsirkin
2009-10-02 10:31 ` [Qemu-devel] [PATCH 18/25] pci: add helper functions for pci config write function Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 19/25] pci: use helper function in pci_default_write_config() Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 20/25] pci: factor out config update logic Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 21/25] pci: make bar update function aware of pci bridge Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 22/25] pci/brdige: qdevfy and initialize secondary bus and subordinate bus Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 23/25] pci: add helper function to initialize wmask Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 24/25] pci: initialize wmask according to pci header type Isaku Yamahata
2009-10-02 10:31 ` [Qemu-devel] [PATCH 25/25] pci/monitor: print out bridge's filtering values and so on Isaku Yamahata
2009-10-02 13:21 ` Gerd Hoffmann [this message]
2009-10-02 13:42   ` [Qemu-devel] [PATCH 00/25] pci: various pci clean up and pci express support. V2 Gerd Hoffmann
2009-10-02 19:30     ` Isaku Yamahata
2009-10-05 13:21       ` Gerd Hoffmann

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=4AC5FE5A.8000901@redhat.com \
    --to=kraxel@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=yamahata@valinux.co.jp \
    /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).