qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 1/2] apb: add implementation of UltraSPARC IIi P


From: Artyom Tarasenko
Subject: Re: [Qemu-devel] [PATCH 1/2] apb: add implementation of UltraSPARC IIi PCI TAS register
Date: Thu, 28 Aug 2014 13:33:18 +0200

On Mon, Aug 25, 2014 at 7:58 PM, Mark Cave-Ayland
<address@hidden> wrote:
> FreeBSD SPARC64 checks the value of this register on boot in order to 
> calculate
> the DVMA base address.
>
> Signed-off-by: Mark Cave-Ayland <address@hidden>
> ---
>  hw/pci-host/apb.c |   11 +++++++++++
>  1 file changed, 11 insertions(+)
>
> diff --git a/hw/pci-host/apb.c b/hw/pci-host/apb.c
> index 60bd81e..3b7fb13 100644
> --- a/hw/pci-host/apb.c
> +++ b/hw/pci-host/apb.c
> @@ -68,6 +68,11 @@ do { printf("IOMMU: " fmt , ## __VA_ARGS__); } while (0)
>  #define PBM_PCI_IMR_MASK    0x7fffffff
>  #define PBM_PCI_IMR_ENABLED 0x80000000
>
> +/* PCI Target Address Space Register (see UltraSPARC IIi User's Manual
> +   section 19.3.0.4) */
> +#define PBM_PCI_TARGET_AS              0x2028
> +#define PBM_PCI_TARGET_AS_CD_ENABLE    0x40
> +
>  #define POR          (1U << 31)
>  #define SOFT_POR     (1U << 30)
>  #define SOFT_XIR     (1U << 29)
> @@ -731,6 +736,12 @@ static void pci_pbm_reset(DeviceState *d)
>      s->irq_request = NO_IRQ_REQUEST;
>      s->pci_irq_in = 0ULL;
>
> +    /* Set target address space register to base 0xc0000000, size 0x20000000
> +       to match OpenBIOS virtual-dma properties */
> +    s->pci_control[((PBM_PCI_TARGET_AS & 0x3f) >> 2)] = 0x0;
> +    s->pci_control[((PBM_PCI_TARGET_AS & 0x3f) >> 2) + 1] =
> +            PBM_PCI_TARGET_AS_CD_ENABLE;
> +

[nit-picking]
Shouldn't it be other way around: set the register to POR state (0)
here and set in OpenBIOS the desired values?
Currently OpenBIOS is the only firmware, so it doesn't matter, but who knows...
[/nit-picking]

Artyom

>      if (s->nr_resets++ == 0) {
>          /* Power on reset */
>          s->reset_control = POR;
> --
> 1.7.10.4
>
>



-- 
Regards,
Artyom Tarasenko

linux/sparc and solaris/sparc under qemu blog:
http://tyom.blogspot.com/search/label/qemu



reply via email to

[Prev in Thread] Current Thread [Next in Thread]