|  |  | 
  
    |  |  | 
 
  |   |  | 
  
    |  |  | 
  
    |  |  | 
  
    |   xen-devel
[Xen-devel] [PATCH v4 06/10] xen: Initialize xenbus for dom0. 
| From: Juan Quintela <quintela@xxxxxxxxxx>
Do initial xenbus/xenstore setup in dom0.  In dom0 we need to actually
allocate the xenstore resources, rather than being given them from
outside.
[ Impact: initialize Xenbus ]
Signed-off-by: Juan Quintela <quintela@xxxxxxxxxx>
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@xxxxxxxxxx>
Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx>
---
 drivers/xen/xenbus/xenbus_probe.c |   29 ++++++++++++++++++++++++++++-
 1 files changed, 28 insertions(+), 1 deletions(-)
diff --git a/drivers/xen/xenbus/xenbus_probe.c 
b/drivers/xen/xenbus/xenbus_probe.c
index d409495..d242610 100644
--- a/drivers/xen/xenbus/xenbus_probe.c
+++ b/drivers/xen/xenbus/xenbus_probe.c
@@ -801,6 +801,7 @@ device_initcall(xenbus_probe_initcall);
 static int __init xenbus_init(void)
 {
        int err = 0;
+       unsigned long page = 0;
 
        DPRINTK("");
 
@@ -821,7 +822,31 @@ static int __init xenbus_init(void)
         * Domain0 doesn't have a store_evtchn or store_mfn yet.
         */
        if (xen_initial_domain()) {
-               /* dom0 not yet supported */
+               struct evtchn_alloc_unbound alloc_unbound;
+
+               /* Allocate Xenstore page */
+               page = get_zeroed_page(GFP_KERNEL);
+               if (!page)
+                       goto out_error;
+
+               xen_store_mfn = xen_start_info->store_mfn =
+                       pfn_to_mfn(virt_to_phys((void *)page) >>
+                                  PAGE_SHIFT);
+
+               /* Next allocate a local port which xenstored can bind to */
+               alloc_unbound.dom        = DOMID_SELF;
+               alloc_unbound.remote_dom = 0;
+
+               err = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound,
+                                                 &alloc_unbound);
+               if (err == -ENOSYS)
+                       goto out_error;
+
+               BUG_ON(err);
+               xen_store_evtchn = xen_start_info->store_evtchn =
+                       alloc_unbound.port;
+
+               xen_store_interface = mfn_to_virt(xen_store_mfn);
        } else {
                if (xen_hvm_domain()) {
                        uint64_t v = 0;
@@ -867,6 +892,8 @@ static int __init xenbus_init(void)
        bus_unregister(&xenbus_frontend.bus);
 
   out_error:
+       if (page != 0)
+               free_page(page);
        return err;
 }
 
-- 
1.5.6.5
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
 | 
 
| <Prev in Thread] | Current Thread | [Next in Thread> |  | 
[Xen-devel] [PATCH v4 00/10] xen: initial domain support, Stefano Stabellini
[Xen-devel] [PATCH v4 01/10] xen: introduce XEN_DOM0 as a silent	option, stefano . stabellini
[Xen-devel] [PATCH v4 02/10] xen: remap GSIs as pirqs when running	as initial domain, stefano . stabellini
[Xen-devel] [PATCH v4 03/10] xen: remap MSIs into pirqs when	running as initial domain, stefano . stabellini
[Xen-devel] [PATCH v4 04/10] xen: map a dummy page for local apic	and ioapic in xen_set_fixmap, stefano . stabellini
[Xen-devel] [PATCH v4 05/10] xen: use vcpu_ops to setup cpu masks, stefano . stabellini
[Xen-devel] [PATCH v4 06/10] xen: Initialize xenbus for dom0.,
stefano . stabellini <=
[Xen-devel] [PATCH v4 07/10] xen: add the direct mapping area for	ISA bus access, stefano . stabellini
[Xen-devel] [PATCH v4 08/10] xen: use host E820 map for dom0, stefano . stabellini
[Xen-devel] [PATCH v4 09/10] xen: make hvc_xen console work for	dom0., stefano . stabellini
[Xen-devel] [PATCH v4 10/10] xen: mask the MTRR feature from the	cpuid, stefano . stabellini
[Xen-devel] Re: [PATCH v4 00/10] xen: initial domain support, Greg KH
 |  |  | 
  
    |  |  |