- Update Xen patches to 3.3-rc5 and c/s 1157.
[linux-flexiantxendom0-3.2.10.git] / drivers / xen / blkback / interface.c
1 /******************************************************************************
2  * arch/xen/drivers/blkif/backend/interface.c
3  * 
4  * Block-device interface management.
5  * 
6  * Copyright (c) 2004, Keir Fraser
7  * 
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License version 2
10  * as published by the Free Software Foundation; or, when distributed
11  * separately from the Linux kernel or incorporated into other
12  * software packages, subject to the following license:
13  * 
14  * Permission is hereby granted, free of charge, to any person obtaining a copy
15  * of this source file (the "Software"), to deal in the Software without
16  * restriction, including without limitation the rights to use, copy, modify,
17  * merge, publish, distribute, sublicense, and/or sell copies of the Software,
18  * and to permit persons to whom the Software is furnished to do so, subject to
19  * the following conditions:
20  * 
21  * The above copyright notice and this permission notice shall be included in
22  * all copies or substantial portions of the Software.
23  * 
24  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
30  * IN THE SOFTWARE.
31  */
32
33 #include "common.h"
34 #include <xen/evtchn.h>
35 #include <linux/kthread.h>
36 #include <linux/vmalloc.h>
37
38 static struct kmem_cache *blkif_cachep;
39
40 blkif_t *blkif_alloc(domid_t domid)
41 {
42         blkif_t *blkif;
43
44         blkif = kmem_cache_zalloc(blkif_cachep, GFP_KERNEL);
45         if (!blkif)
46                 return ERR_PTR(-ENOMEM);
47
48         blkif->domid = domid;
49         spin_lock_init(&blkif->blk_ring_lock);
50         atomic_set(&blkif->refcnt, 1);
51         init_waitqueue_head(&blkif->wq);
52         init_completion(&blkif->drain_complete);
53         atomic_set(&blkif->drain, 0);
54         blkif->st_print = jiffies;
55         init_waitqueue_head(&blkif->waiting_to_free);
56
57         return blkif;
58 }
59
60 int blkif_map(blkif_t *blkif, grant_ref_t ring_ref, evtchn_port_t evtchn)
61 {
62         struct vm_struct *area;
63         int err;
64
65         /* Already connected through? */
66         if (blkif->irq)
67                 return 0;
68
69         area = xenbus_map_ring_valloc(blkif->be->dev, ring_ref);
70         if (IS_ERR(area))
71                 return PTR_ERR(area);
72         blkif->blk_ring_area = area;
73
74         switch (blkif->blk_protocol) {
75         case BLKIF_PROTOCOL_NATIVE:
76         {
77                 blkif_sring_t *sring;
78                 sring = (blkif_sring_t *)area->addr;
79                 BACK_RING_INIT(&blkif->blk_rings.native, sring, PAGE_SIZE);
80                 break;
81         }
82         case BLKIF_PROTOCOL_X86_32:
83         {
84                 blkif_x86_32_sring_t *sring_x86_32;
85                 sring_x86_32 = (blkif_x86_32_sring_t *)area->addr;
86                 BACK_RING_INIT(&blkif->blk_rings.x86_32, sring_x86_32, PAGE_SIZE);
87                 break;
88         }
89         case BLKIF_PROTOCOL_X86_64:
90         {
91                 blkif_x86_64_sring_t *sring_x86_64;
92                 sring_x86_64 = (blkif_x86_64_sring_t *)area->addr;
93                 BACK_RING_INIT(&blkif->blk_rings.x86_64, sring_x86_64, PAGE_SIZE);
94                 break;
95         }
96         default:
97                 BUG();
98         }
99
100         err = bind_interdomain_evtchn_to_irqhandler(
101                 blkif->domid, evtchn, blkif_be_int, 0, "blkif-backend", blkif);
102         if (err < 0)
103         {
104                 xenbus_unmap_ring_vfree(blkif->be->dev, area);
105                 blkif->blk_rings.common.sring = NULL;
106                 return err;
107         }
108         blkif->irq = err;
109
110         return 0;
111 }
112
113 void blkif_disconnect(blkif_t *blkif)
114 {
115         if (blkif->xenblkd) {
116                 kthread_stop(blkif->xenblkd);
117                 blkif->xenblkd = NULL;
118         }
119
120         atomic_dec(&blkif->refcnt);
121         wait_event(blkif->waiting_to_free, atomic_read(&blkif->refcnt) == 0);
122         atomic_inc(&blkif->refcnt);
123
124         if (blkif->irq) {
125                 unbind_from_irqhandler(blkif->irq, blkif);
126                 blkif->irq = 0;
127         }
128
129         if (blkif->blk_rings.common.sring) {
130                 xenbus_unmap_ring_vfree(blkif->be->dev, blkif->blk_ring_area);
131                 blkif->blk_rings.common.sring = NULL;
132         }
133 }
134
135 void blkif_free(blkif_t *blkif)
136 {
137         if (!atomic_dec_and_test(&blkif->refcnt))
138                 BUG();
139         kmem_cache_free(blkif_cachep, blkif);
140 }
141
142 void __init blkif_interface_init(void)
143 {
144         blkif_cachep = kmem_cache_create("blkif_cache", sizeof(blkif_t), 
145                                          0, 0, NULL);
146 }