WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

Re: [Xen-devel] [PATCH 2 of 3] Enable UEFI BIOS(OVMF) support in Xen-uns

To: Keir Fraser <keir@xxxxxxx>
Subject: Re: [Xen-devel] [PATCH 2 of 3] Enable UEFI BIOS(OVMF) support in Xen-unstable HVM
From: Ian Campbell <Ian.Campbell@xxxxxxxxxxxxx>
Date: Tue, 9 Aug 2011 12:13:39 +0100
Cc: Devel <xen-devel@xxxxxxxxxxxxxxxxxxx>, Keir Fraser <keir.xen@xxxxxxxxx>, Tim Deegan <Tim.Deegan@xxxxxxxxxxxxx>, Xen, "edk2-devel@xxxxxxxxxxxxxxxxxxxxx" <edk2-devel@xxxxxxxxxxxxxxxxxxxxx>, Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx>, Warkentin <andreiw@xxxxxxxxxxxx>, Andrei, Jordan, Justen <jljusten@xxxxxxxxx>, Bei Guan <gbtju85@xxxxxxxxx>
Delivery-date: Tue, 09 Aug 2011 04:20:44 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
In-reply-to: <CA66CBC4.300EA%keir@xxxxxxx>
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Organization: Citrix Systems, Inc.
References: <CA66CBC4.300EA%keir@xxxxxxx>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
On Tue, 2011-08-09 at 11:34 +0100, Keir Fraser wrote:
> On 09/08/2011 11:24, "Ian Campbell" <Ian.Campbell@xxxxxxxxxx> wrote:
> 
> >> +static void ovmf_init_vm86_tss(void)
> >> +{
> >> +    void *tss;
> >> +    struct xen_hvm_param p;
> >> +
> >> +    tss = mem_alloc(128, 128);
> >> +    memset(tss, 0, 128);
> >> +    p.domid = DOMID_SELF;
> >> +    p.index = HVM_PARAM_VM86_TSS;
> >> +    p.value = virt_to_phys(tss);
> >> +    hypercall_hvm_op(HVMOP_set_param, &p);
> >> +    printf("vm86 TSS at %08lx\n", virt_to_phys(tss));
> >> +}
> > 
> > I think this can be pulled out of here and rombios.c and made common
> > again, it seems like it is needed for all BIOSes and is not ROMBIOS
> > specific as I first thought. Can you write up that patch or shall I?
> 
> I've done it.

Ta!

> 
>  -- Keir
> 
> 



_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>