Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2006, 2007, 2009 Rusty Russell, IBM Corporation |
Amit Shah | 5084f89 | 2011-01-31 13:06:37 +0530 | [diff] [blame] | 3 | * Copyright (C) 2009, 2010, 2011 Red Hat, Inc. |
| 4 | * Copyright (C) 2009, 2010, 2011 Amit Shah <amit.shah@redhat.com> |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | */ |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 20 | #include <linux/cdev.h> |
Amit Shah | d99393e | 2009-12-21 22:36:21 +0530 | [diff] [blame] | 21 | #include <linux/debugfs.h> |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 22 | #include <linux/device.h> |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 23 | #include <linux/err.h> |
Amit Shah | a08fa92 | 2011-09-14 13:06:41 +0530 | [diff] [blame] | 24 | #include <linux/freezer.h> |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 25 | #include <linux/fs.h> |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 26 | #include <linux/init.h> |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 27 | #include <linux/list.h> |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 28 | #include <linux/poll.h> |
| 29 | #include <linux/sched.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 31 | #include <linux/spinlock.h> |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 32 | #include <linux/virtio.h> |
| 33 | #include <linux/virtio_console.h> |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 34 | #include <linux/wait.h> |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 35 | #include <linux/workqueue.h> |
Amit Shah | 51df0ac | 2011-02-01 09:31:25 +0530 | [diff] [blame] | 36 | #include "../tty/hvc/hvc_console.h" |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 37 | |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 38 | /* |
| 39 | * This is a global struct for storing common data for all the devices |
| 40 | * this driver handles. |
| 41 | * |
| 42 | * Mainly, it has a linked list for all the consoles in one place so |
| 43 | * that callbacks from hvc for get_chars(), put_chars() work properly |
| 44 | * across multiple devices and multiple ports per device. |
| 45 | */ |
| 46 | struct ports_driver_data { |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 47 | /* Used for registering chardevs */ |
| 48 | struct class *class; |
| 49 | |
Amit Shah | d99393e | 2009-12-21 22:36:21 +0530 | [diff] [blame] | 50 | /* Used for exporting per-port information to debugfs */ |
| 51 | struct dentry *debugfs_dir; |
| 52 | |
Amit Shah | 6bdf2af | 2010-09-02 18:11:49 +0530 | [diff] [blame] | 53 | /* List of all the devices we're handling */ |
| 54 | struct list_head portdevs; |
| 55 | |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 56 | /* Number of devices this driver is handling */ |
| 57 | unsigned int index; |
| 58 | |
Rusty Russell | d8a02bd | 2010-01-18 19:15:06 +0530 | [diff] [blame] | 59 | /* |
| 60 | * This is used to keep track of the number of hvc consoles |
| 61 | * spawned by this driver. This number is given as the first |
| 62 | * argument to hvc_alloc(). To correctly map an initial |
| 63 | * console spawned via hvc_instantiate to the console being |
| 64 | * hooked up via hvc_alloc, we need to pass the same vtermno. |
| 65 | * |
| 66 | * We also just assume the first console being initialised was |
| 67 | * the first one that got used as the initial console. |
| 68 | */ |
| 69 | unsigned int next_vtermno; |
| 70 | |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 71 | /* All the console devices handled by this driver */ |
| 72 | struct list_head consoles; |
| 73 | }; |
| 74 | static struct ports_driver_data pdrvdata; |
| 75 | |
| 76 | DEFINE_SPINLOCK(pdrvdata_lock); |
| 77 | |
Amit Shah | 4f23c57 | 2010-01-18 19:15:09 +0530 | [diff] [blame] | 78 | /* This struct holds information that's relevant only for console ports */ |
| 79 | struct console { |
| 80 | /* We'll place all consoles in a list in the pdrvdata struct */ |
| 81 | struct list_head list; |
| 82 | |
| 83 | /* The hvc device associated with this console port */ |
| 84 | struct hvc_struct *hvc; |
| 85 | |
Amit Shah | 9778829 | 2010-05-06 02:05:08 +0530 | [diff] [blame] | 86 | /* The size of the console */ |
| 87 | struct winsize ws; |
| 88 | |
Amit Shah | 4f23c57 | 2010-01-18 19:15:09 +0530 | [diff] [blame] | 89 | /* |
| 90 | * This number identifies the number that we used to register |
| 91 | * with hvc in hvc_instantiate() and hvc_alloc(); this is the |
| 92 | * number passed on by the hvc callbacks to us to |
| 93 | * differentiate between the other console ports handled by |
| 94 | * this driver |
| 95 | */ |
| 96 | u32 vtermno; |
| 97 | }; |
| 98 | |
Amit Shah | fdb9a05 | 2010-01-18 19:15:01 +0530 | [diff] [blame] | 99 | struct port_buffer { |
| 100 | char *buf; |
| 101 | |
| 102 | /* size of the buffer in *buf above */ |
| 103 | size_t size; |
| 104 | |
| 105 | /* used length of the buffer */ |
| 106 | size_t len; |
| 107 | /* offset in the buf from which to consume data */ |
| 108 | size_t offset; |
| 109 | }; |
| 110 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 111 | /* |
| 112 | * This is a per-device struct that stores data common to all the |
| 113 | * ports for that device (vdev->priv). |
| 114 | */ |
| 115 | struct ports_device { |
Amit Shah | 6bdf2af | 2010-09-02 18:11:49 +0530 | [diff] [blame] | 116 | /* Next portdev in the list, head is in the pdrvdata struct */ |
| 117 | struct list_head list; |
| 118 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 119 | /* |
| 120 | * Workqueue handlers where we process deferred work after |
| 121 | * notification |
| 122 | */ |
| 123 | struct work_struct control_work; |
| 124 | |
| 125 | struct list_head ports; |
| 126 | |
| 127 | /* To protect the list of ports */ |
| 128 | spinlock_t ports_lock; |
| 129 | |
| 130 | /* To protect the vq operations for the control channel */ |
| 131 | spinlock_t cvq_lock; |
| 132 | |
| 133 | /* The current config space is stored here */ |
Amit Shah | b99fa81 | 2010-05-19 22:15:46 -0600 | [diff] [blame] | 134 | struct virtio_console_config config; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 135 | |
| 136 | /* The virtio device we're associated with */ |
| 137 | struct virtio_device *vdev; |
| 138 | |
| 139 | /* |
| 140 | * A couple of virtqueues for the control channel: one for |
| 141 | * guest->host transfers, one for host->guest transfers |
| 142 | */ |
| 143 | struct virtqueue *c_ivq, *c_ovq; |
| 144 | |
| 145 | /* Array of per-port IO virtqueues */ |
| 146 | struct virtqueue **in_vqs, **out_vqs; |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 147 | |
| 148 | /* Used for numbering devices for sysfs and debugfs */ |
| 149 | unsigned int drv_index; |
| 150 | |
| 151 | /* Major number for this device. Ports will be created as minors. */ |
| 152 | int chr_major; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 153 | }; |
| 154 | |
Amit Shah | 1c85bf3 | 2010-01-18 19:15:07 +0530 | [diff] [blame] | 155 | /* This struct holds the per-port data */ |
Rusty Russell | 21206ed | 2010-01-18 19:15:00 +0530 | [diff] [blame] | 156 | struct port { |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 157 | /* Next port in the list, head is in the ports_device */ |
| 158 | struct list_head list; |
| 159 | |
Amit Shah | 1c85bf3 | 2010-01-18 19:15:07 +0530 | [diff] [blame] | 160 | /* Pointer to the parent virtio_console device */ |
| 161 | struct ports_device *portdev; |
Amit Shah | fdb9a05 | 2010-01-18 19:15:01 +0530 | [diff] [blame] | 162 | |
| 163 | /* The current buffer from which data has to be fed to readers */ |
| 164 | struct port_buffer *inbuf; |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 165 | |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 166 | /* |
| 167 | * To protect the operations on the in_vq associated with this |
| 168 | * port. Has to be a spinlock because it can be called from |
| 169 | * interrupt context (get_char()). |
| 170 | */ |
| 171 | spinlock_t inbuf_lock; |
| 172 | |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 173 | /* Protect the operations on the out_vq. */ |
| 174 | spinlock_t outvq_lock; |
| 175 | |
Amit Shah | 1c85bf3 | 2010-01-18 19:15:07 +0530 | [diff] [blame] | 176 | /* The IO vqs for this port */ |
| 177 | struct virtqueue *in_vq, *out_vq; |
| 178 | |
Amit Shah | d99393e | 2009-12-21 22:36:21 +0530 | [diff] [blame] | 179 | /* File in the debugfs directory that exposes this port's information */ |
| 180 | struct dentry *debugfs_file; |
| 181 | |
Amit Shah | 4f23c57 | 2010-01-18 19:15:09 +0530 | [diff] [blame] | 182 | /* |
| 183 | * The entries in this struct will be valid if this port is |
| 184 | * hooked up to an hvc console |
| 185 | */ |
| 186 | struct console cons; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 187 | |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 188 | /* Each port associates with a separate char device */ |
Amit Shah | d22a698 | 2010-09-02 18:20:59 +0530 | [diff] [blame] | 189 | struct cdev *cdev; |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 190 | struct device *dev; |
| 191 | |
Amit Shah | b353a6b | 2010-09-02 18:38:29 +0530 | [diff] [blame] | 192 | /* Reference-counting to handle port hot-unplugs and file operations */ |
| 193 | struct kref kref; |
| 194 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 195 | /* A waitqueue for poll() or blocking read operations */ |
| 196 | wait_queue_head_t waitqueue; |
| 197 | |
Amit Shah | 431edb8 | 2009-12-21 21:57:40 +0530 | [diff] [blame] | 198 | /* The 'name' of the port that we expose via sysfs properties */ |
| 199 | char *name; |
| 200 | |
Amit Shah | 3eae0ad | 2010-09-02 18:47:52 +0530 | [diff] [blame] | 201 | /* We can notify apps of host connect / disconnect events via SIGIO */ |
| 202 | struct fasync_struct *async_queue; |
| 203 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 204 | /* The 'id' to identify the port with the Host */ |
| 205 | u32 id; |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 206 | |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 207 | bool outvq_full; |
| 208 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 209 | /* Is the host device open */ |
| 210 | bool host_connected; |
Amit Shah | 3c7969c | 2009-11-26 11:25:38 +0530 | [diff] [blame] | 211 | |
| 212 | /* We should allow only one process to open a port */ |
| 213 | bool guest_connected; |
Rusty Russell | 21206ed | 2010-01-18 19:15:00 +0530 | [diff] [blame] | 214 | }; |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 215 | |
Rusty Russell | 971f339 | 2010-01-18 19:14:56 +0530 | [diff] [blame] | 216 | /* This is the very early arch-specified put chars function. */ |
| 217 | static int (*early_put_chars)(u32, const char *, int); |
| 218 | |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 219 | static struct port *find_port_by_vtermno(u32 vtermno) |
| 220 | { |
| 221 | struct port *port; |
Amit Shah | 4f23c57 | 2010-01-18 19:15:09 +0530 | [diff] [blame] | 222 | struct console *cons; |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 223 | unsigned long flags; |
| 224 | |
| 225 | spin_lock_irqsave(&pdrvdata_lock, flags); |
Amit Shah | 4f23c57 | 2010-01-18 19:15:09 +0530 | [diff] [blame] | 226 | list_for_each_entry(cons, &pdrvdata.consoles, list) { |
| 227 | if (cons->vtermno == vtermno) { |
| 228 | port = container_of(cons, struct port, cons); |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 229 | goto out; |
Amit Shah | 4f23c57 | 2010-01-18 19:15:09 +0530 | [diff] [blame] | 230 | } |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 231 | } |
| 232 | port = NULL; |
| 233 | out: |
| 234 | spin_unlock_irqrestore(&pdrvdata_lock, flags); |
| 235 | return port; |
| 236 | } |
| 237 | |
Amit Shah | 04950cd | 2010-09-02 18:20:58 +0530 | [diff] [blame] | 238 | static struct port *find_port_by_devt_in_portdev(struct ports_device *portdev, |
| 239 | dev_t dev) |
| 240 | { |
| 241 | struct port *port; |
| 242 | unsigned long flags; |
| 243 | |
| 244 | spin_lock_irqsave(&portdev->ports_lock, flags); |
| 245 | list_for_each_entry(port, &portdev->ports, list) |
Amit Shah | d22a698 | 2010-09-02 18:20:59 +0530 | [diff] [blame] | 246 | if (port->cdev->dev == dev) |
Amit Shah | 04950cd | 2010-09-02 18:20:58 +0530 | [diff] [blame] | 247 | goto out; |
| 248 | port = NULL; |
| 249 | out: |
| 250 | spin_unlock_irqrestore(&portdev->ports_lock, flags); |
| 251 | |
| 252 | return port; |
| 253 | } |
| 254 | |
| 255 | static struct port *find_port_by_devt(dev_t dev) |
| 256 | { |
| 257 | struct ports_device *portdev; |
| 258 | struct port *port; |
| 259 | unsigned long flags; |
| 260 | |
| 261 | spin_lock_irqsave(&pdrvdata_lock, flags); |
| 262 | list_for_each_entry(portdev, &pdrvdata.portdevs, list) { |
| 263 | port = find_port_by_devt_in_portdev(portdev, dev); |
| 264 | if (port) |
| 265 | goto out; |
| 266 | } |
| 267 | port = NULL; |
| 268 | out: |
| 269 | spin_unlock_irqrestore(&pdrvdata_lock, flags); |
| 270 | return port; |
| 271 | } |
| 272 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 273 | static struct port *find_port_by_id(struct ports_device *portdev, u32 id) |
| 274 | { |
| 275 | struct port *port; |
| 276 | unsigned long flags; |
| 277 | |
| 278 | spin_lock_irqsave(&portdev->ports_lock, flags); |
| 279 | list_for_each_entry(port, &portdev->ports, list) |
| 280 | if (port->id == id) |
| 281 | goto out; |
| 282 | port = NULL; |
| 283 | out: |
| 284 | spin_unlock_irqrestore(&portdev->ports_lock, flags); |
| 285 | |
| 286 | return port; |
| 287 | } |
| 288 | |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 289 | static struct port *find_port_by_vq(struct ports_device *portdev, |
| 290 | struct virtqueue *vq) |
| 291 | { |
| 292 | struct port *port; |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 293 | unsigned long flags; |
| 294 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 295 | spin_lock_irqsave(&portdev->ports_lock, flags); |
| 296 | list_for_each_entry(port, &portdev->ports, list) |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 297 | if (port->in_vq == vq || port->out_vq == vq) |
| 298 | goto out; |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 299 | port = NULL; |
| 300 | out: |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 301 | spin_unlock_irqrestore(&portdev->ports_lock, flags); |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 302 | return port; |
| 303 | } |
| 304 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 305 | static bool is_console_port(struct port *port) |
| 306 | { |
| 307 | if (port->cons.hvc) |
| 308 | return true; |
| 309 | return false; |
| 310 | } |
| 311 | |
| 312 | static inline bool use_multiport(struct ports_device *portdev) |
| 313 | { |
| 314 | /* |
| 315 | * This condition can be true when put_chars is called from |
| 316 | * early_init |
| 317 | */ |
| 318 | if (!portdev->vdev) |
| 319 | return 0; |
| 320 | return portdev->vdev->features[0] & (1 << VIRTIO_CONSOLE_F_MULTIPORT); |
| 321 | } |
| 322 | |
Amit Shah | fdb9a05 | 2010-01-18 19:15:01 +0530 | [diff] [blame] | 323 | static void free_buf(struct port_buffer *buf) |
| 324 | { |
| 325 | kfree(buf->buf); |
| 326 | kfree(buf); |
| 327 | } |
| 328 | |
| 329 | static struct port_buffer *alloc_buf(size_t buf_size) |
| 330 | { |
| 331 | struct port_buffer *buf; |
| 332 | |
| 333 | buf = kmalloc(sizeof(*buf), GFP_KERNEL); |
| 334 | if (!buf) |
| 335 | goto fail; |
| 336 | buf->buf = kzalloc(buf_size, GFP_KERNEL); |
| 337 | if (!buf->buf) |
| 338 | goto free_buf; |
| 339 | buf->len = 0; |
| 340 | buf->offset = 0; |
| 341 | buf->size = buf_size; |
| 342 | return buf; |
| 343 | |
| 344 | free_buf: |
| 345 | kfree(buf); |
| 346 | fail: |
| 347 | return NULL; |
| 348 | } |
| 349 | |
Amit Shah | a3cde44 | 2010-01-18 19:15:03 +0530 | [diff] [blame] | 350 | /* Callers should take appropriate locks */ |
Amit Shah | defde66 | 2011-09-14 13:06:42 +0530 | [diff] [blame] | 351 | static struct port_buffer *get_inbuf(struct port *port) |
Amit Shah | a3cde44 | 2010-01-18 19:15:03 +0530 | [diff] [blame] | 352 | { |
| 353 | struct port_buffer *buf; |
Amit Shah | a3cde44 | 2010-01-18 19:15:03 +0530 | [diff] [blame] | 354 | unsigned int len; |
| 355 | |
Amit Shah | d25a9dd | 2011-09-14 13:06:43 +0530 | [diff] [blame] | 356 | if (port->inbuf) |
| 357 | return port->inbuf; |
| 358 | |
| 359 | buf = virtqueue_get_buf(port->in_vq, &len); |
Amit Shah | a3cde44 | 2010-01-18 19:15:03 +0530 | [diff] [blame] | 360 | if (buf) { |
| 361 | buf->len = len; |
| 362 | buf->offset = 0; |
| 363 | } |
| 364 | return buf; |
| 365 | } |
| 366 | |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 367 | /* |
Amit Shah | e27b519 | 2010-01-18 19:15:02 +0530 | [diff] [blame] | 368 | * Create a scatter-gather list representing our input buffer and put |
| 369 | * it in the queue. |
| 370 | * |
| 371 | * Callers should take appropriate locks. |
| 372 | */ |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 373 | static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf) |
Amit Shah | e27b519 | 2010-01-18 19:15:02 +0530 | [diff] [blame] | 374 | { |
| 375 | struct scatterlist sg[1]; |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 376 | int ret; |
Amit Shah | 1c85bf3 | 2010-01-18 19:15:07 +0530 | [diff] [blame] | 377 | |
Amit Shah | e27b519 | 2010-01-18 19:15:02 +0530 | [diff] [blame] | 378 | sg_init_one(sg, buf->buf, buf->size); |
| 379 | |
Michael S. Tsirkin | 505b045 | 2010-04-12 16:18:32 +0300 | [diff] [blame] | 380 | ret = virtqueue_add_buf(vq, sg, 0, 1, buf); |
| 381 | virtqueue_kick(vq); |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 382 | return ret; |
| 383 | } |
| 384 | |
Amit Shah | 88f251a | 2009-12-21 22:15:30 +0530 | [diff] [blame] | 385 | /* Discard any unread data this port has. Callers lockers. */ |
| 386 | static void discard_port_data(struct port *port) |
| 387 | { |
| 388 | struct port_buffer *buf; |
| 389 | struct virtqueue *vq; |
Amit Shah | ce072a0 | 2011-09-14 13:06:44 +0530 | [diff] [blame^] | 390 | unsigned int len, err; |
Amit Shah | 88f251a | 2009-12-21 22:15:30 +0530 | [diff] [blame] | 391 | |
Amit Shah | d7a62cd | 2011-03-04 14:04:33 +1030 | [diff] [blame] | 392 | if (!port->portdev) { |
| 393 | /* Device has been unplugged. vqs are already gone. */ |
| 394 | return; |
| 395 | } |
Amit Shah | 88f251a | 2009-12-21 22:15:30 +0530 | [diff] [blame] | 396 | vq = port->in_vq; |
| 397 | if (port->inbuf) |
| 398 | buf = port->inbuf; |
| 399 | else |
Michael S. Tsirkin | 505b045 | 2010-04-12 16:18:32 +0300 | [diff] [blame] | 400 | buf = virtqueue_get_buf(vq, &len); |
Amit Shah | 88f251a | 2009-12-21 22:15:30 +0530 | [diff] [blame] | 401 | |
Amit Shah | ce072a0 | 2011-09-14 13:06:44 +0530 | [diff] [blame^] | 402 | err = 0; |
Amit Shah | d693356 | 2010-02-12 10:32:18 +0530 | [diff] [blame] | 403 | while (buf) { |
| 404 | if (add_inbuf(vq, buf) < 0) { |
Amit Shah | ce072a0 | 2011-09-14 13:06:44 +0530 | [diff] [blame^] | 405 | err++; |
Amit Shah | d693356 | 2010-02-12 10:32:18 +0530 | [diff] [blame] | 406 | free_buf(buf); |
| 407 | } |
Michael S. Tsirkin | 505b045 | 2010-04-12 16:18:32 +0300 | [diff] [blame] | 408 | buf = virtqueue_get_buf(vq, &len); |
Amit Shah | 88f251a | 2009-12-21 22:15:30 +0530 | [diff] [blame] | 409 | } |
Amit Shah | 88f251a | 2009-12-21 22:15:30 +0530 | [diff] [blame] | 410 | port->inbuf = NULL; |
Amit Shah | ce072a0 | 2011-09-14 13:06:44 +0530 | [diff] [blame^] | 411 | if (err) |
Amit Shah | d693356 | 2010-02-12 10:32:18 +0530 | [diff] [blame] | 412 | dev_warn(port->dev, "Errors adding %d buffers back to vq\n", |
Amit Shah | ce072a0 | 2011-09-14 13:06:44 +0530 | [diff] [blame^] | 413 | err); |
Amit Shah | 88f251a | 2009-12-21 22:15:30 +0530 | [diff] [blame] | 414 | } |
| 415 | |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 416 | static bool port_has_data(struct port *port) |
| 417 | { |
| 418 | unsigned long flags; |
| 419 | bool ret; |
| 420 | |
Amit Shah | d693356 | 2010-02-12 10:32:18 +0530 | [diff] [blame] | 421 | ret = false; |
Amit Shah | d25a9dd | 2011-09-14 13:06:43 +0530 | [diff] [blame] | 422 | spin_lock_irqsave(&port->inbuf_lock, flags); |
| 423 | port->inbuf = get_inbuf(port); |
| 424 | if (port->inbuf) |
| 425 | ret = true; |
| 426 | |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 427 | spin_unlock_irqrestore(&port->inbuf_lock, flags); |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 428 | return ret; |
| 429 | } |
| 430 | |
Amit Shah | 3425e70 | 2010-05-19 22:15:46 -0600 | [diff] [blame] | 431 | static ssize_t __send_control_msg(struct ports_device *portdev, u32 port_id, |
| 432 | unsigned int event, unsigned int value) |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 433 | { |
| 434 | struct scatterlist sg[1]; |
| 435 | struct virtio_console_control cpkt; |
| 436 | struct virtqueue *vq; |
Amit Shah | 604b2ad | 2010-02-24 10:36:51 +0530 | [diff] [blame] | 437 | unsigned int len; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 438 | |
Amit Shah | 3425e70 | 2010-05-19 22:15:46 -0600 | [diff] [blame] | 439 | if (!use_multiport(portdev)) |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 440 | return 0; |
| 441 | |
Amit Shah | 3425e70 | 2010-05-19 22:15:46 -0600 | [diff] [blame] | 442 | cpkt.id = port_id; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 443 | cpkt.event = event; |
| 444 | cpkt.value = value; |
| 445 | |
Amit Shah | 3425e70 | 2010-05-19 22:15:46 -0600 | [diff] [blame] | 446 | vq = portdev->c_ovq; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 447 | |
| 448 | sg_init_one(sg, &cpkt, sizeof(cpkt)); |
Michael S. Tsirkin | 505b045 | 2010-04-12 16:18:32 +0300 | [diff] [blame] | 449 | if (virtqueue_add_buf(vq, sg, 1, 0, &cpkt) >= 0) { |
| 450 | virtqueue_kick(vq); |
| 451 | while (!virtqueue_get_buf(vq, &len)) |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 452 | cpu_relax(); |
| 453 | } |
| 454 | return 0; |
| 455 | } |
| 456 | |
Amit Shah | 3425e70 | 2010-05-19 22:15:46 -0600 | [diff] [blame] | 457 | static ssize_t send_control_msg(struct port *port, unsigned int event, |
| 458 | unsigned int value) |
| 459 | { |
Amit Shah | 84ec06c | 2010-09-02 18:11:42 +0530 | [diff] [blame] | 460 | /* Did the port get unplugged before userspace closed it? */ |
| 461 | if (port->portdev) |
| 462 | return __send_control_msg(port->portdev, port->id, event, value); |
| 463 | return 0; |
Amit Shah | 3425e70 | 2010-05-19 22:15:46 -0600 | [diff] [blame] | 464 | } |
| 465 | |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 466 | /* Callers must take the port->outvq_lock */ |
| 467 | static void reclaim_consumed_buffers(struct port *port) |
| 468 | { |
| 469 | void *buf; |
| 470 | unsigned int len; |
| 471 | |
Amit Shah | d7a62cd | 2011-03-04 14:04:33 +1030 | [diff] [blame] | 472 | if (!port->portdev) { |
| 473 | /* Device has been unplugged. vqs are already gone. */ |
| 474 | return; |
| 475 | } |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 476 | while ((buf = virtqueue_get_buf(port->out_vq, &len))) { |
| 477 | kfree(buf); |
| 478 | port->outvq_full = false; |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count, |
| 483 | bool nonblock) |
Amit Shah | f997f00b | 2009-12-21 17:28:51 +0530 | [diff] [blame] | 484 | { |
| 485 | struct scatterlist sg[1]; |
| 486 | struct virtqueue *out_vq; |
| 487 | ssize_t ret; |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 488 | unsigned long flags; |
Amit Shah | f997f00b | 2009-12-21 17:28:51 +0530 | [diff] [blame] | 489 | unsigned int len; |
| 490 | |
| 491 | out_vq = port->out_vq; |
| 492 | |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 493 | spin_lock_irqsave(&port->outvq_lock, flags); |
| 494 | |
| 495 | reclaim_consumed_buffers(port); |
| 496 | |
Amit Shah | f997f00b | 2009-12-21 17:28:51 +0530 | [diff] [blame] | 497 | sg_init_one(sg, in_buf, in_count); |
Michael S. Tsirkin | 505b045 | 2010-04-12 16:18:32 +0300 | [diff] [blame] | 498 | ret = virtqueue_add_buf(out_vq, sg, 1, 0, in_buf); |
Amit Shah | f997f00b | 2009-12-21 17:28:51 +0530 | [diff] [blame] | 499 | |
| 500 | /* Tell Host to go! */ |
Michael S. Tsirkin | 505b045 | 2010-04-12 16:18:32 +0300 | [diff] [blame] | 501 | virtqueue_kick(out_vq); |
Amit Shah | f997f00b | 2009-12-21 17:28:51 +0530 | [diff] [blame] | 502 | |
| 503 | if (ret < 0) { |
Rusty Russell | 9ff4cfa | 2010-04-08 09:46:16 -0600 | [diff] [blame] | 504 | in_count = 0; |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 505 | goto done; |
Amit Shah | f997f00b | 2009-12-21 17:28:51 +0530 | [diff] [blame] | 506 | } |
| 507 | |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 508 | if (ret == 0) |
| 509 | port->outvq_full = true; |
| 510 | |
| 511 | if (nonblock) |
| 512 | goto done; |
| 513 | |
| 514 | /* |
| 515 | * Wait till the host acknowledges it pushed out the data we |
Amit Shah | 531295e | 2010-10-20 13:45:43 +1030 | [diff] [blame] | 516 | * sent. This is done for data from the hvc_console; the tty |
| 517 | * operations are performed with spinlocks held so we can't |
| 518 | * sleep here. An alternative would be to copy the data to a |
| 519 | * buffer and relax the spinning requirement. The downside is |
| 520 | * we need to kmalloc a GFP_ATOMIC buffer each time the |
| 521 | * console driver writes something out. |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 522 | */ |
Michael S. Tsirkin | 505b045 | 2010-04-12 16:18:32 +0300 | [diff] [blame] | 523 | while (!virtqueue_get_buf(out_vq, &len)) |
Amit Shah | f997f00b | 2009-12-21 17:28:51 +0530 | [diff] [blame] | 524 | cpu_relax(); |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 525 | done: |
| 526 | spin_unlock_irqrestore(&port->outvq_lock, flags); |
| 527 | /* |
| 528 | * We're expected to return the amount of data we wrote -- all |
| 529 | * of it |
| 530 | */ |
Rusty Russell | 9ff4cfa | 2010-04-08 09:46:16 -0600 | [diff] [blame] | 531 | return in_count; |
Amit Shah | f997f00b | 2009-12-21 17:28:51 +0530 | [diff] [blame] | 532 | } |
| 533 | |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 534 | /* |
| 535 | * Give out the data that's requested from the buffer that we have |
| 536 | * queued up. |
| 537 | */ |
Amit Shah | b766cee | 2009-12-21 21:26:45 +0530 | [diff] [blame] | 538 | static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count, |
| 539 | bool to_user) |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 540 | { |
| 541 | struct port_buffer *buf; |
| 542 | unsigned long flags; |
| 543 | |
| 544 | if (!out_count || !port_has_data(port)) |
| 545 | return 0; |
| 546 | |
| 547 | buf = port->inbuf; |
Amit Shah | b766cee | 2009-12-21 21:26:45 +0530 | [diff] [blame] | 548 | out_count = min(out_count, buf->len - buf->offset); |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 549 | |
Amit Shah | b766cee | 2009-12-21 21:26:45 +0530 | [diff] [blame] | 550 | if (to_user) { |
| 551 | ssize_t ret; |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 552 | |
Amit Shah | b766cee | 2009-12-21 21:26:45 +0530 | [diff] [blame] | 553 | ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count); |
| 554 | if (ret) |
| 555 | return -EFAULT; |
| 556 | } else { |
| 557 | memcpy(out_buf, buf->buf + buf->offset, out_count); |
| 558 | } |
| 559 | |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 560 | buf->offset += out_count; |
| 561 | |
| 562 | if (buf->offset == buf->len) { |
| 563 | /* |
| 564 | * We're done using all the data in this buffer. |
| 565 | * Re-queue so that the Host can send us more data. |
| 566 | */ |
| 567 | spin_lock_irqsave(&port->inbuf_lock, flags); |
| 568 | port->inbuf = NULL; |
| 569 | |
| 570 | if (add_inbuf(port->in_vq, buf) < 0) |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 571 | dev_warn(port->dev, "failed add_buf\n"); |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 572 | |
| 573 | spin_unlock_irqrestore(&port->inbuf_lock, flags); |
| 574 | } |
Amit Shah | b766cee | 2009-12-21 21:26:45 +0530 | [diff] [blame] | 575 | /* Return the number of bytes actually copied */ |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 576 | return out_count; |
Amit Shah | e27b519 | 2010-01-18 19:15:02 +0530 | [diff] [blame] | 577 | } |
| 578 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 579 | /* The condition that must be true for polling to end */ |
Amit Shah | 60caacd | 2010-05-19 22:15:49 -0600 | [diff] [blame] | 580 | static bool will_read_block(struct port *port) |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 581 | { |
Amit Shah | 3709ea7 | 2010-09-02 18:11:43 +0530 | [diff] [blame] | 582 | if (!port->guest_connected) { |
| 583 | /* Port got hot-unplugged. Let's exit. */ |
| 584 | return false; |
| 585 | } |
Amit Shah | 60caacd | 2010-05-19 22:15:49 -0600 | [diff] [blame] | 586 | return !port_has_data(port) && port->host_connected; |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 587 | } |
| 588 | |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 589 | static bool will_write_block(struct port *port) |
| 590 | { |
| 591 | bool ret; |
| 592 | |
Amit Shah | 60e5e0b | 2010-05-27 13:24:40 +0530 | [diff] [blame] | 593 | if (!port->guest_connected) { |
| 594 | /* Port got hot-unplugged. Let's exit. */ |
| 595 | return false; |
| 596 | } |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 597 | if (!port->host_connected) |
| 598 | return true; |
| 599 | |
| 600 | spin_lock_irq(&port->outvq_lock); |
| 601 | /* |
| 602 | * Check if the Host has consumed any buffers since we last |
| 603 | * sent data (this is only applicable for nonblocking ports). |
| 604 | */ |
| 605 | reclaim_consumed_buffers(port); |
| 606 | ret = port->outvq_full; |
| 607 | spin_unlock_irq(&port->outvq_lock); |
| 608 | |
| 609 | return ret; |
| 610 | } |
| 611 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 612 | static ssize_t port_fops_read(struct file *filp, char __user *ubuf, |
| 613 | size_t count, loff_t *offp) |
| 614 | { |
| 615 | struct port *port; |
| 616 | ssize_t ret; |
| 617 | |
| 618 | port = filp->private_data; |
| 619 | |
| 620 | if (!port_has_data(port)) { |
| 621 | /* |
| 622 | * If nothing's connected on the host just return 0 in |
| 623 | * case of list_empty; this tells the userspace app |
| 624 | * that there's no connection |
| 625 | */ |
| 626 | if (!port->host_connected) |
| 627 | return 0; |
| 628 | if (filp->f_flags & O_NONBLOCK) |
| 629 | return -EAGAIN; |
| 630 | |
Amit Shah | a08fa92 | 2011-09-14 13:06:41 +0530 | [diff] [blame] | 631 | ret = wait_event_freezable(port->waitqueue, |
| 632 | !will_read_block(port)); |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 633 | if (ret < 0) |
| 634 | return ret; |
| 635 | } |
Amit Shah | b3dddb9 | 2010-09-02 18:11:45 +0530 | [diff] [blame] | 636 | /* Port got hot-unplugged. */ |
| 637 | if (!port->guest_connected) |
| 638 | return -ENODEV; |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 639 | /* |
| 640 | * We could've received a disconnection message while we were |
| 641 | * waiting for more data. |
| 642 | * |
| 643 | * This check is not clubbed in the if() statement above as we |
| 644 | * might receive some data as well as the host could get |
| 645 | * disconnected after we got woken up from our wait. So we |
| 646 | * really want to give off whatever data we have and only then |
| 647 | * check for host_connected. |
| 648 | */ |
| 649 | if (!port_has_data(port) && !port->host_connected) |
| 650 | return 0; |
| 651 | |
| 652 | return fill_readbuf(port, ubuf, count, true); |
| 653 | } |
| 654 | |
| 655 | static ssize_t port_fops_write(struct file *filp, const char __user *ubuf, |
| 656 | size_t count, loff_t *offp) |
| 657 | { |
| 658 | struct port *port; |
| 659 | char *buf; |
| 660 | ssize_t ret; |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 661 | bool nonblock; |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 662 | |
Amit Shah | 6574542 | 2010-09-14 13:26:16 +0530 | [diff] [blame] | 663 | /* Userspace could be out to fool us */ |
| 664 | if (!count) |
| 665 | return 0; |
| 666 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 667 | port = filp->private_data; |
| 668 | |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 669 | nonblock = filp->f_flags & O_NONBLOCK; |
| 670 | |
| 671 | if (will_write_block(port)) { |
| 672 | if (nonblock) |
| 673 | return -EAGAIN; |
| 674 | |
Amit Shah | a08fa92 | 2011-09-14 13:06:41 +0530 | [diff] [blame] | 675 | ret = wait_event_freezable(port->waitqueue, |
| 676 | !will_write_block(port)); |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 677 | if (ret < 0) |
| 678 | return ret; |
| 679 | } |
Amit Shah | f402811 | 2010-09-02 18:11:46 +0530 | [diff] [blame] | 680 | /* Port got hot-unplugged. */ |
| 681 | if (!port->guest_connected) |
| 682 | return -ENODEV; |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 683 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 684 | count = min((size_t)(32 * 1024), count); |
| 685 | |
| 686 | buf = kmalloc(count, GFP_KERNEL); |
| 687 | if (!buf) |
| 688 | return -ENOMEM; |
| 689 | |
| 690 | ret = copy_from_user(buf, ubuf, count); |
| 691 | if (ret) { |
| 692 | ret = -EFAULT; |
| 693 | goto free_buf; |
| 694 | } |
| 695 | |
Amit Shah | 531295e | 2010-10-20 13:45:43 +1030 | [diff] [blame] | 696 | /* |
| 697 | * We now ask send_buf() to not spin for generic ports -- we |
| 698 | * can re-use the same code path that non-blocking file |
| 699 | * descriptors take for blocking file descriptors since the |
| 700 | * wait is already done and we're certain the write will go |
| 701 | * through to the host. |
| 702 | */ |
| 703 | nonblock = true; |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 704 | ret = send_buf(port, buf, count, nonblock); |
| 705 | |
| 706 | if (nonblock && ret > 0) |
| 707 | goto out; |
| 708 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 709 | free_buf: |
| 710 | kfree(buf); |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 711 | out: |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 712 | return ret; |
| 713 | } |
| 714 | |
| 715 | static unsigned int port_fops_poll(struct file *filp, poll_table *wait) |
| 716 | { |
| 717 | struct port *port; |
| 718 | unsigned int ret; |
| 719 | |
| 720 | port = filp->private_data; |
| 721 | poll_wait(filp, &port->waitqueue, wait); |
| 722 | |
Amit Shah | 8529a50 | 2010-09-02 18:11:44 +0530 | [diff] [blame] | 723 | if (!port->guest_connected) { |
| 724 | /* Port got unplugged */ |
| 725 | return POLLHUP; |
| 726 | } |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 727 | ret = 0; |
Hans de Goede | 6df7aad | 2010-09-16 14:43:08 +0530 | [diff] [blame] | 728 | if (!will_read_block(port)) |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 729 | ret |= POLLIN | POLLRDNORM; |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 730 | if (!will_write_block(port)) |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 731 | ret |= POLLOUT; |
| 732 | if (!port->host_connected) |
| 733 | ret |= POLLHUP; |
| 734 | |
| 735 | return ret; |
| 736 | } |
| 737 | |
Amit Shah | b353a6b | 2010-09-02 18:38:29 +0530 | [diff] [blame] | 738 | static void remove_port(struct kref *kref); |
| 739 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 740 | static int port_fops_release(struct inode *inode, struct file *filp) |
| 741 | { |
| 742 | struct port *port; |
| 743 | |
| 744 | port = filp->private_data; |
| 745 | |
| 746 | /* Notify host of port being closed */ |
| 747 | send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0); |
| 748 | |
Amit Shah | 88f251a | 2009-12-21 22:15:30 +0530 | [diff] [blame] | 749 | spin_lock_irq(&port->inbuf_lock); |
Amit Shah | 3c7969c | 2009-11-26 11:25:38 +0530 | [diff] [blame] | 750 | port->guest_connected = false; |
| 751 | |
Amit Shah | 88f251a | 2009-12-21 22:15:30 +0530 | [diff] [blame] | 752 | discard_port_data(port); |
| 753 | |
| 754 | spin_unlock_irq(&port->inbuf_lock); |
| 755 | |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 756 | spin_lock_irq(&port->outvq_lock); |
| 757 | reclaim_consumed_buffers(port); |
| 758 | spin_unlock_irq(&port->outvq_lock); |
| 759 | |
Amit Shah | b353a6b | 2010-09-02 18:38:29 +0530 | [diff] [blame] | 760 | /* |
| 761 | * Locks aren't necessary here as a port can't be opened after |
| 762 | * unplug, and if a port isn't unplugged, a kref would already |
| 763 | * exist for the port. Plus, taking ports_lock here would |
| 764 | * create a dependency on other locks taken by functions |
| 765 | * inside remove_port if we're the last holder of the port, |
| 766 | * creating many problems. |
| 767 | */ |
| 768 | kref_put(&port->kref, remove_port); |
| 769 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 770 | return 0; |
| 771 | } |
| 772 | |
| 773 | static int port_fops_open(struct inode *inode, struct file *filp) |
| 774 | { |
| 775 | struct cdev *cdev = inode->i_cdev; |
| 776 | struct port *port; |
Amit Shah | 8ad37e8 | 2010-09-02 18:11:48 +0530 | [diff] [blame] | 777 | int ret; |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 778 | |
Amit Shah | 04950cd | 2010-09-02 18:20:58 +0530 | [diff] [blame] | 779 | port = find_port_by_devt(cdev->dev); |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 780 | filp->private_data = port; |
| 781 | |
Amit Shah | b353a6b | 2010-09-02 18:38:29 +0530 | [diff] [blame] | 782 | /* Prevent against a port getting hot-unplugged at the same time */ |
| 783 | spin_lock_irq(&port->portdev->ports_lock); |
| 784 | kref_get(&port->kref); |
| 785 | spin_unlock_irq(&port->portdev->ports_lock); |
| 786 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 787 | /* |
| 788 | * Don't allow opening of console port devices -- that's done |
| 789 | * via /dev/hvc |
| 790 | */ |
Amit Shah | 8ad37e8 | 2010-09-02 18:11:48 +0530 | [diff] [blame] | 791 | if (is_console_port(port)) { |
| 792 | ret = -ENXIO; |
| 793 | goto out; |
| 794 | } |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 795 | |
Amit Shah | 3c7969c | 2009-11-26 11:25:38 +0530 | [diff] [blame] | 796 | /* Allow only one process to open a particular port at a time */ |
| 797 | spin_lock_irq(&port->inbuf_lock); |
| 798 | if (port->guest_connected) { |
| 799 | spin_unlock_irq(&port->inbuf_lock); |
Amit Shah | 8ad37e8 | 2010-09-02 18:11:48 +0530 | [diff] [blame] | 800 | ret = -EMFILE; |
| 801 | goto out; |
Amit Shah | 3c7969c | 2009-11-26 11:25:38 +0530 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | port->guest_connected = true; |
| 805 | spin_unlock_irq(&port->inbuf_lock); |
| 806 | |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 807 | spin_lock_irq(&port->outvq_lock); |
| 808 | /* |
| 809 | * There might be a chance that we missed reclaiming a few |
| 810 | * buffers in the window of the port getting previously closed |
| 811 | * and opening now. |
| 812 | */ |
| 813 | reclaim_consumed_buffers(port); |
| 814 | spin_unlock_irq(&port->outvq_lock); |
| 815 | |
Amit Shah | 299fb61 | 2010-09-16 14:43:09 +0530 | [diff] [blame] | 816 | nonseekable_open(inode, filp); |
| 817 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 818 | /* Notify host of port being opened */ |
| 819 | send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1); |
| 820 | |
| 821 | return 0; |
Amit Shah | 8ad37e8 | 2010-09-02 18:11:48 +0530 | [diff] [blame] | 822 | out: |
Amit Shah | b353a6b | 2010-09-02 18:38:29 +0530 | [diff] [blame] | 823 | kref_put(&port->kref, remove_port); |
Amit Shah | 8ad37e8 | 2010-09-02 18:11:48 +0530 | [diff] [blame] | 824 | return ret; |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 825 | } |
| 826 | |
Amit Shah | 3eae0ad | 2010-09-02 18:47:52 +0530 | [diff] [blame] | 827 | static int port_fops_fasync(int fd, struct file *filp, int mode) |
| 828 | { |
| 829 | struct port *port; |
| 830 | |
| 831 | port = filp->private_data; |
| 832 | return fasync_helper(fd, filp, mode, &port->async_queue); |
| 833 | } |
| 834 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 835 | /* |
| 836 | * The file operations that we support: programs in the guest can open |
| 837 | * a console device, read from it, write to it, poll for data and |
| 838 | * close it. The devices are at |
| 839 | * /dev/vport<device number>p<port number> |
| 840 | */ |
| 841 | static const struct file_operations port_fops = { |
| 842 | .owner = THIS_MODULE, |
| 843 | .open = port_fops_open, |
| 844 | .read = port_fops_read, |
| 845 | .write = port_fops_write, |
| 846 | .poll = port_fops_poll, |
| 847 | .release = port_fops_release, |
Amit Shah | 3eae0ad | 2010-09-02 18:47:52 +0530 | [diff] [blame] | 848 | .fasync = port_fops_fasync, |
Amit Shah | 299fb61 | 2010-09-16 14:43:09 +0530 | [diff] [blame] | 849 | .llseek = no_llseek, |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 850 | }; |
| 851 | |
Amit Shah | e27b519 | 2010-01-18 19:15:02 +0530 | [diff] [blame] | 852 | /* |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 853 | * The put_chars() callback is pretty straightforward. |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 854 | * |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 855 | * We turn the characters into a scatter-gather list, add it to the |
| 856 | * output queue and then kick the Host. Then we sit here waiting for |
| 857 | * it to finish: inefficient in theory, but in practice |
| 858 | * implementations will do it immediately (lguest's Launcher does). |
| 859 | */ |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 860 | static int put_chars(u32 vtermno, const char *buf, int count) |
| 861 | { |
Rusty Russell | 21206ed | 2010-01-18 19:15:00 +0530 | [diff] [blame] | 862 | struct port *port; |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 863 | |
François Diakhaté | 162a689 | 2010-03-23 18:23:15 +0530 | [diff] [blame] | 864 | if (unlikely(early_put_chars)) |
| 865 | return early_put_chars(vtermno, buf, count); |
| 866 | |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 867 | port = find_port_by_vtermno(vtermno); |
| 868 | if (!port) |
Amit Shah | 6dc69f97 | 2010-05-19 22:15:47 -0600 | [diff] [blame] | 869 | return -EPIPE; |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 870 | |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 871 | return send_buf(port, (void *)buf, count, false); |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 872 | } |
| 873 | |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 874 | /* |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 875 | * get_chars() is the callback from the hvc_console infrastructure |
| 876 | * when an interrupt is received. |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 877 | * |
Amit Shah | 203baab | 2010-01-18 19:15:12 +0530 | [diff] [blame] | 878 | * We call out to fill_readbuf that gets us the required data from the |
| 879 | * buffers that are queued up. |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 880 | */ |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 881 | static int get_chars(u32 vtermno, char *buf, int count) |
| 882 | { |
Rusty Russell | 21206ed | 2010-01-18 19:15:00 +0530 | [diff] [blame] | 883 | struct port *port; |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 884 | |
Amit Shah | 6dc69f97 | 2010-05-19 22:15:47 -0600 | [diff] [blame] | 885 | /* If we've not set up the port yet, we have no input to give. */ |
| 886 | if (unlikely(early_put_chars)) |
| 887 | return 0; |
| 888 | |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 889 | port = find_port_by_vtermno(vtermno); |
| 890 | if (!port) |
Amit Shah | 6dc69f97 | 2010-05-19 22:15:47 -0600 | [diff] [blame] | 891 | return -EPIPE; |
Rusty Russell | 21206ed | 2010-01-18 19:15:00 +0530 | [diff] [blame] | 892 | |
| 893 | /* If we don't have an input queue yet, we can't get input. */ |
| 894 | BUG_ON(!port->in_vq); |
| 895 | |
Amit Shah | b766cee | 2009-12-21 21:26:45 +0530 | [diff] [blame] | 896 | return fill_readbuf(port, buf, count, false); |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 897 | } |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 898 | |
Amit Shah | cb06e36 | 2010-01-18 19:15:08 +0530 | [diff] [blame] | 899 | static void resize_console(struct port *port) |
Christian Borntraeger | c298345 | 2008-11-25 13:36:26 +0100 | [diff] [blame] | 900 | { |
Amit Shah | cb06e36 | 2010-01-18 19:15:08 +0530 | [diff] [blame] | 901 | struct virtio_device *vdev; |
Christian Borntraeger | c298345 | 2008-11-25 13:36:26 +0100 | [diff] [blame] | 902 | |
Amit Shah | 2de16a4 | 2010-03-19 17:36:44 +0530 | [diff] [blame] | 903 | /* The port could have been hot-unplugged */ |
Amit Shah | 9778829 | 2010-05-06 02:05:08 +0530 | [diff] [blame] | 904 | if (!port || !is_console_port(port)) |
Amit Shah | 2de16a4 | 2010-03-19 17:36:44 +0530 | [diff] [blame] | 905 | return; |
| 906 | |
Amit Shah | cb06e36 | 2010-01-18 19:15:08 +0530 | [diff] [blame] | 907 | vdev = port->portdev->vdev; |
Amit Shah | 9778829 | 2010-05-06 02:05:08 +0530 | [diff] [blame] | 908 | if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE)) |
| 909 | hvc_resize(port->cons.hvc, port->cons.ws); |
Christian Borntraeger | c298345 | 2008-11-25 13:36:26 +0100 | [diff] [blame] | 910 | } |
| 911 | |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 912 | /* We set the configuration at this point, since we now have a tty */ |
Christian Borntraeger | 91fcad1 | 2008-06-20 15:24:15 +0200 | [diff] [blame] | 913 | static int notifier_add_vio(struct hvc_struct *hp, int data) |
| 914 | { |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 915 | struct port *port; |
| 916 | |
| 917 | port = find_port_by_vtermno(hp->vtermno); |
| 918 | if (!port) |
| 919 | return -EINVAL; |
| 920 | |
Christian Borntraeger | 91fcad1 | 2008-06-20 15:24:15 +0200 | [diff] [blame] | 921 | hp->irq_requested = 1; |
Amit Shah | cb06e36 | 2010-01-18 19:15:08 +0530 | [diff] [blame] | 922 | resize_console(port); |
Christian Borntraeger | c298345 | 2008-11-25 13:36:26 +0100 | [diff] [blame] | 923 | |
Christian Borntraeger | 91fcad1 | 2008-06-20 15:24:15 +0200 | [diff] [blame] | 924 | return 0; |
| 925 | } |
| 926 | |
| 927 | static void notifier_del_vio(struct hvc_struct *hp, int data) |
| 928 | { |
| 929 | hp->irq_requested = 0; |
| 930 | } |
| 931 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 932 | /* The operations for console ports. */ |
Rusty Russell | 1dff399 | 2009-11-28 12:20:26 +0530 | [diff] [blame] | 933 | static const struct hv_ops hv_ops = { |
Rusty Russell | 971f339 | 2010-01-18 19:14:56 +0530 | [diff] [blame] | 934 | .get_chars = get_chars, |
| 935 | .put_chars = put_chars, |
| 936 | .notifier_add = notifier_add_vio, |
| 937 | .notifier_del = notifier_del_vio, |
| 938 | .notifier_hangup = notifier_del_vio, |
| 939 | }; |
| 940 | |
| 941 | /* |
| 942 | * Console drivers are initialized very early so boot messages can go |
| 943 | * out, so we do things slightly differently from the generic virtio |
| 944 | * initialization of the net and block drivers. |
| 945 | * |
| 946 | * At this stage, the console is output-only. It's too early to set |
| 947 | * up a virtqueue, so we let the drivers do some boutique early-output |
| 948 | * thing. |
| 949 | */ |
| 950 | int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int)) |
| 951 | { |
| 952 | early_put_chars = put_chars; |
| 953 | return hvc_instantiate(0, 0, &hv_ops); |
| 954 | } |
| 955 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 956 | int init_port_console(struct port *port) |
Amit Shah | cfa6d37 | 2010-01-18 19:15:10 +0530 | [diff] [blame] | 957 | { |
| 958 | int ret; |
| 959 | |
| 960 | /* |
| 961 | * The Host's telling us this port is a console port. Hook it |
| 962 | * up with an hvc console. |
| 963 | * |
| 964 | * To set up and manage our virtual console, we call |
| 965 | * hvc_alloc(). |
| 966 | * |
| 967 | * The first argument of hvc_alloc() is the virtual console |
| 968 | * number. The second argument is the parameter for the |
| 969 | * notification mechanism (like irq number). We currently |
| 970 | * leave this as zero, virtqueues have implicit notifications. |
| 971 | * |
| 972 | * The third argument is a "struct hv_ops" containing the |
| 973 | * put_chars() get_chars(), notifier_add() and notifier_del() |
| 974 | * pointers. The final argument is the output buffer size: we |
| 975 | * can do any size, so we put PAGE_SIZE here. |
| 976 | */ |
| 977 | port->cons.vtermno = pdrvdata.next_vtermno; |
| 978 | |
| 979 | port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE); |
| 980 | if (IS_ERR(port->cons.hvc)) { |
| 981 | ret = PTR_ERR(port->cons.hvc); |
Amit Shah | 298add7 | 2010-01-18 16:35:23 +0530 | [diff] [blame] | 982 | dev_err(port->dev, |
| 983 | "error %d allocating hvc for port\n", ret); |
Amit Shah | cfa6d37 | 2010-01-18 19:15:10 +0530 | [diff] [blame] | 984 | port->cons.hvc = NULL; |
| 985 | return ret; |
| 986 | } |
| 987 | spin_lock_irq(&pdrvdata_lock); |
| 988 | pdrvdata.next_vtermno++; |
| 989 | list_add_tail(&port->cons.list, &pdrvdata.consoles); |
| 990 | spin_unlock_irq(&pdrvdata_lock); |
Amit Shah | 3c7969c | 2009-11-26 11:25:38 +0530 | [diff] [blame] | 991 | port->guest_connected = true; |
Amit Shah | cfa6d37 | 2010-01-18 19:15:10 +0530 | [diff] [blame] | 992 | |
Amit Shah | 1d05160 | 2010-05-19 22:15:49 -0600 | [diff] [blame] | 993 | /* |
| 994 | * Start using the new console output if this is the first |
| 995 | * console to come up. |
| 996 | */ |
| 997 | if (early_put_chars) |
| 998 | early_put_chars = NULL; |
| 999 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 1000 | /* Notify host of port being opened */ |
| 1001 | send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1); |
| 1002 | |
Amit Shah | cfa6d37 | 2010-01-18 19:15:10 +0530 | [diff] [blame] | 1003 | return 0; |
| 1004 | } |
| 1005 | |
Amit Shah | 431edb8 | 2009-12-21 21:57:40 +0530 | [diff] [blame] | 1006 | static ssize_t show_port_name(struct device *dev, |
| 1007 | struct device_attribute *attr, char *buffer) |
| 1008 | { |
| 1009 | struct port *port; |
| 1010 | |
| 1011 | port = dev_get_drvdata(dev); |
| 1012 | |
| 1013 | return sprintf(buffer, "%s\n", port->name); |
| 1014 | } |
| 1015 | |
| 1016 | static DEVICE_ATTR(name, S_IRUGO, show_port_name, NULL); |
| 1017 | |
| 1018 | static struct attribute *port_sysfs_entries[] = { |
| 1019 | &dev_attr_name.attr, |
| 1020 | NULL |
| 1021 | }; |
| 1022 | |
| 1023 | static struct attribute_group port_attribute_group = { |
| 1024 | .name = NULL, /* put in device directory */ |
| 1025 | .attrs = port_sysfs_entries, |
| 1026 | }; |
| 1027 | |
Amit Shah | d99393e | 2009-12-21 22:36:21 +0530 | [diff] [blame] | 1028 | static int debugfs_open(struct inode *inode, struct file *filp) |
| 1029 | { |
| 1030 | filp->private_data = inode->i_private; |
| 1031 | return 0; |
| 1032 | } |
| 1033 | |
| 1034 | static ssize_t debugfs_read(struct file *filp, char __user *ubuf, |
| 1035 | size_t count, loff_t *offp) |
| 1036 | { |
| 1037 | struct port *port; |
| 1038 | char *buf; |
| 1039 | ssize_t ret, out_offset, out_count; |
| 1040 | |
| 1041 | out_count = 1024; |
| 1042 | buf = kmalloc(out_count, GFP_KERNEL); |
| 1043 | if (!buf) |
| 1044 | return -ENOMEM; |
| 1045 | |
| 1046 | port = filp->private_data; |
| 1047 | out_offset = 0; |
| 1048 | out_offset += snprintf(buf + out_offset, out_count, |
| 1049 | "name: %s\n", port->name ? port->name : ""); |
| 1050 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 1051 | "guest_connected: %d\n", port->guest_connected); |
| 1052 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 1053 | "host_connected: %d\n", port->host_connected); |
| 1054 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 1055 | "outvq_full: %d\n", port->outvq_full); |
| 1056 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Amit Shah | d99393e | 2009-12-21 22:36:21 +0530 | [diff] [blame] | 1057 | "is_console: %s\n", |
| 1058 | is_console_port(port) ? "yes" : "no"); |
| 1059 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 1060 | "console_vtermno: %u\n", port->cons.vtermno); |
| 1061 | |
| 1062 | ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset); |
| 1063 | kfree(buf); |
| 1064 | return ret; |
| 1065 | } |
| 1066 | |
| 1067 | static const struct file_operations port_debugfs_ops = { |
| 1068 | .owner = THIS_MODULE, |
| 1069 | .open = debugfs_open, |
| 1070 | .read = debugfs_read, |
| 1071 | }; |
| 1072 | |
Amit Shah | 9778829 | 2010-05-06 02:05:08 +0530 | [diff] [blame] | 1073 | static void set_console_size(struct port *port, u16 rows, u16 cols) |
| 1074 | { |
| 1075 | if (!port || !is_console_port(port)) |
| 1076 | return; |
| 1077 | |
| 1078 | port->cons.ws.ws_row = rows; |
| 1079 | port->cons.ws.ws_col = cols; |
| 1080 | } |
| 1081 | |
Amit Shah | c446f8f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1082 | static unsigned int fill_queue(struct virtqueue *vq, spinlock_t *lock) |
| 1083 | { |
| 1084 | struct port_buffer *buf; |
| 1085 | unsigned int nr_added_bufs; |
| 1086 | int ret; |
| 1087 | |
| 1088 | nr_added_bufs = 0; |
| 1089 | do { |
| 1090 | buf = alloc_buf(PAGE_SIZE); |
| 1091 | if (!buf) |
| 1092 | break; |
| 1093 | |
| 1094 | spin_lock_irq(lock); |
| 1095 | ret = add_inbuf(vq, buf); |
| 1096 | if (ret < 0) { |
| 1097 | spin_unlock_irq(lock); |
| 1098 | free_buf(buf); |
| 1099 | break; |
| 1100 | } |
| 1101 | nr_added_bufs++; |
| 1102 | spin_unlock_irq(lock); |
| 1103 | } while (ret > 0); |
| 1104 | |
| 1105 | return nr_added_bufs; |
| 1106 | } |
| 1107 | |
Amit Shah | 3eae0ad | 2010-09-02 18:47:52 +0530 | [diff] [blame] | 1108 | static void send_sigio_to_port(struct port *port) |
| 1109 | { |
| 1110 | if (port->async_queue && port->guest_connected) |
| 1111 | kill_fasync(&port->async_queue, SIGIO, POLL_OUT); |
| 1112 | } |
| 1113 | |
Amit Shah | c446f8f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1114 | static int add_port(struct ports_device *portdev, u32 id) |
| 1115 | { |
| 1116 | char debugfs_name[16]; |
| 1117 | struct port *port; |
| 1118 | struct port_buffer *buf; |
| 1119 | dev_t devt; |
| 1120 | unsigned int nr_added_bufs; |
| 1121 | int err; |
| 1122 | |
| 1123 | port = kmalloc(sizeof(*port), GFP_KERNEL); |
| 1124 | if (!port) { |
| 1125 | err = -ENOMEM; |
| 1126 | goto fail; |
| 1127 | } |
Amit Shah | b353a6b | 2010-09-02 18:38:29 +0530 | [diff] [blame] | 1128 | kref_init(&port->kref); |
Amit Shah | c446f8f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1129 | |
| 1130 | port->portdev = portdev; |
| 1131 | port->id = id; |
| 1132 | |
| 1133 | port->name = NULL; |
| 1134 | port->inbuf = NULL; |
| 1135 | port->cons.hvc = NULL; |
Amit Shah | 3eae0ad | 2010-09-02 18:47:52 +0530 | [diff] [blame] | 1136 | port->async_queue = NULL; |
Amit Shah | c446f8f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1137 | |
Amit Shah | 9778829 | 2010-05-06 02:05:08 +0530 | [diff] [blame] | 1138 | port->cons.ws.ws_row = port->cons.ws.ws_col = 0; |
| 1139 | |
Amit Shah | c446f8f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1140 | port->host_connected = port->guest_connected = false; |
| 1141 | |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 1142 | port->outvq_full = false; |
| 1143 | |
Amit Shah | c446f8f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1144 | port->in_vq = portdev->in_vqs[port->id]; |
| 1145 | port->out_vq = portdev->out_vqs[port->id]; |
| 1146 | |
Amit Shah | d22a698 | 2010-09-02 18:20:59 +0530 | [diff] [blame] | 1147 | port->cdev = cdev_alloc(); |
| 1148 | if (!port->cdev) { |
| 1149 | dev_err(&port->portdev->vdev->dev, "Error allocating cdev\n"); |
| 1150 | err = -ENOMEM; |
| 1151 | goto free_port; |
| 1152 | } |
| 1153 | port->cdev->ops = &port_fops; |
Amit Shah | c446f8f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1154 | |
| 1155 | devt = MKDEV(portdev->chr_major, id); |
Amit Shah | d22a698 | 2010-09-02 18:20:59 +0530 | [diff] [blame] | 1156 | err = cdev_add(port->cdev, devt, 1); |
Amit Shah | c446f8f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1157 | if (err < 0) { |
| 1158 | dev_err(&port->portdev->vdev->dev, |
| 1159 | "Error %d adding cdev for port %u\n", err, id); |
Amit Shah | d22a698 | 2010-09-02 18:20:59 +0530 | [diff] [blame] | 1160 | goto free_cdev; |
Amit Shah | c446f8f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1161 | } |
| 1162 | port->dev = device_create(pdrvdata.class, &port->portdev->vdev->dev, |
| 1163 | devt, port, "vport%up%u", |
| 1164 | port->portdev->drv_index, id); |
| 1165 | if (IS_ERR(port->dev)) { |
| 1166 | err = PTR_ERR(port->dev); |
| 1167 | dev_err(&port->portdev->vdev->dev, |
| 1168 | "Error %d creating device for port %u\n", |
| 1169 | err, id); |
| 1170 | goto free_cdev; |
| 1171 | } |
| 1172 | |
| 1173 | spin_lock_init(&port->inbuf_lock); |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 1174 | spin_lock_init(&port->outvq_lock); |
Amit Shah | c446f8f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1175 | init_waitqueue_head(&port->waitqueue); |
| 1176 | |
| 1177 | /* Fill the in_vq with buffers so the host can send us data. */ |
| 1178 | nr_added_bufs = fill_queue(port->in_vq, &port->inbuf_lock); |
| 1179 | if (!nr_added_bufs) { |
| 1180 | dev_err(port->dev, "Error allocating inbufs\n"); |
| 1181 | err = -ENOMEM; |
| 1182 | goto free_device; |
| 1183 | } |
| 1184 | |
| 1185 | /* |
| 1186 | * If we're not using multiport support, this has to be a console port |
| 1187 | */ |
| 1188 | if (!use_multiport(port->portdev)) { |
| 1189 | err = init_port_console(port); |
| 1190 | if (err) |
| 1191 | goto free_inbufs; |
| 1192 | } |
| 1193 | |
| 1194 | spin_lock_irq(&portdev->ports_lock); |
| 1195 | list_add_tail(&port->list, &port->portdev->ports); |
| 1196 | spin_unlock_irq(&portdev->ports_lock); |
| 1197 | |
| 1198 | /* |
| 1199 | * Tell the Host we're set so that it can send us various |
| 1200 | * configuration parameters for this port (eg, port name, |
| 1201 | * caching, whether this is a console port, etc.) |
| 1202 | */ |
| 1203 | send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1); |
| 1204 | |
| 1205 | if (pdrvdata.debugfs_dir) { |
| 1206 | /* |
| 1207 | * Finally, create the debugfs file that we can use to |
| 1208 | * inspect a port's state at any time |
| 1209 | */ |
| 1210 | sprintf(debugfs_name, "vport%up%u", |
| 1211 | port->portdev->drv_index, id); |
| 1212 | port->debugfs_file = debugfs_create_file(debugfs_name, 0444, |
| 1213 | pdrvdata.debugfs_dir, |
| 1214 | port, |
| 1215 | &port_debugfs_ops); |
| 1216 | } |
| 1217 | return 0; |
| 1218 | |
| 1219 | free_inbufs: |
| 1220 | while ((buf = virtqueue_detach_unused_buf(port->in_vq))) |
| 1221 | free_buf(buf); |
| 1222 | free_device: |
| 1223 | device_destroy(pdrvdata.class, port->dev->devt); |
| 1224 | free_cdev: |
Amit Shah | d22a698 | 2010-09-02 18:20:59 +0530 | [diff] [blame] | 1225 | cdev_del(port->cdev); |
Amit Shah | c446f8f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1226 | free_port: |
| 1227 | kfree(port); |
| 1228 | fail: |
| 1229 | /* The host might want to notify management sw about port add failure */ |
Julia Lawall | 0643e4c | 2010-05-15 11:45:53 +0200 | [diff] [blame] | 1230 | __send_control_msg(portdev, id, VIRTIO_CONSOLE_PORT_READY, 0); |
Amit Shah | c446f8f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1231 | return err; |
| 1232 | } |
| 1233 | |
Amit Shah | b353a6b | 2010-09-02 18:38:29 +0530 | [diff] [blame] | 1234 | /* No users remain, remove all port-specific data. */ |
| 1235 | static void remove_port(struct kref *kref) |
| 1236 | { |
| 1237 | struct port *port; |
| 1238 | |
| 1239 | port = container_of(kref, struct port, kref); |
| 1240 | |
| 1241 | sysfs_remove_group(&port->dev->kobj, &port_attribute_group); |
| 1242 | device_destroy(pdrvdata.class, port->dev->devt); |
| 1243 | cdev_del(port->cdev); |
| 1244 | |
| 1245 | kfree(port->name); |
| 1246 | |
| 1247 | debugfs_remove(port->debugfs_file); |
| 1248 | |
| 1249 | kfree(port); |
| 1250 | } |
| 1251 | |
| 1252 | /* |
| 1253 | * Port got unplugged. Remove port from portdev's list and drop the |
| 1254 | * kref reference. If no userspace has this port opened, it will |
| 1255 | * result in immediate removal the port. |
| 1256 | */ |
| 1257 | static void unplug_port(struct port *port) |
Amit Shah | 1f7aa42 | 2009-12-21 22:27:31 +0530 | [diff] [blame] | 1258 | { |
Amit Shah | a9cdd48 | 2010-02-12 10:32:15 +0530 | [diff] [blame] | 1259 | struct port_buffer *buf; |
| 1260 | |
Amit Shah | b353a6b | 2010-09-02 18:38:29 +0530 | [diff] [blame] | 1261 | spin_lock_irq(&port->portdev->ports_lock); |
| 1262 | list_del(&port->list); |
| 1263 | spin_unlock_irq(&port->portdev->ports_lock); |
| 1264 | |
Amit Shah | 0047634 | 2010-05-27 13:24:39 +0530 | [diff] [blame] | 1265 | if (port->guest_connected) { |
| 1266 | port->guest_connected = false; |
| 1267 | port->host_connected = false; |
| 1268 | wake_up_interruptible(&port->waitqueue); |
Amit Shah | a461e11 | 2010-09-02 18:47:54 +0530 | [diff] [blame] | 1269 | |
| 1270 | /* Let the app know the port is going down. */ |
| 1271 | send_sigio_to_port(port); |
Amit Shah | 0047634 | 2010-05-27 13:24:39 +0530 | [diff] [blame] | 1272 | } |
| 1273 | |
Amit Shah | 1f7aa42 | 2009-12-21 22:27:31 +0530 | [diff] [blame] | 1274 | if (is_console_port(port)) { |
| 1275 | spin_lock_irq(&pdrvdata_lock); |
| 1276 | list_del(&port->cons.list); |
| 1277 | spin_unlock_irq(&pdrvdata_lock); |
| 1278 | hvc_remove(port->cons.hvc); |
| 1279 | } |
Amit Shah | 1f7aa42 | 2009-12-21 22:27:31 +0530 | [diff] [blame] | 1280 | |
Amit Shah | a9cdd48 | 2010-02-12 10:32:15 +0530 | [diff] [blame] | 1281 | /* Remove unused data this port might have received. */ |
Amit Shah | 1f7aa42 | 2009-12-21 22:27:31 +0530 | [diff] [blame] | 1282 | discard_port_data(port); |
Amit Shah | a9cdd48 | 2010-02-12 10:32:15 +0530 | [diff] [blame] | 1283 | |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 1284 | reclaim_consumed_buffers(port); |
| 1285 | |
Amit Shah | a9cdd48 | 2010-02-12 10:32:15 +0530 | [diff] [blame] | 1286 | /* Remove buffers we queued up for the Host to send us data in. */ |
Michael S. Tsirkin | 505b045 | 2010-04-12 16:18:32 +0300 | [diff] [blame] | 1287 | while ((buf = virtqueue_detach_unused_buf(port->in_vq))) |
Amit Shah | a9cdd48 | 2010-02-12 10:32:15 +0530 | [diff] [blame] | 1288 | free_buf(buf); |
| 1289 | |
Amit Shah | b353a6b | 2010-09-02 18:38:29 +0530 | [diff] [blame] | 1290 | /* |
| 1291 | * We should just assume the device itself has gone off -- |
| 1292 | * else a close on an open port later will try to send out a |
| 1293 | * control message. |
| 1294 | */ |
| 1295 | port->portdev = NULL; |
Amit Shah | 1f7aa42 | 2009-12-21 22:27:31 +0530 | [diff] [blame] | 1296 | |
Amit Shah | b353a6b | 2010-09-02 18:38:29 +0530 | [diff] [blame] | 1297 | /* |
| 1298 | * Locks around here are not necessary - a port can't be |
| 1299 | * opened after we removed the port struct from ports_list |
| 1300 | * above. |
| 1301 | */ |
| 1302 | kref_put(&port->kref, remove_port); |
Amit Shah | 1f7aa42 | 2009-12-21 22:27:31 +0530 | [diff] [blame] | 1303 | } |
| 1304 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1305 | /* Any private messages that the Host and Guest want to share */ |
| 1306 | static void handle_control_message(struct ports_device *portdev, |
| 1307 | struct port_buffer *buf) |
| 1308 | { |
| 1309 | struct virtio_console_control *cpkt; |
| 1310 | struct port *port; |
Amit Shah | 431edb8 | 2009-12-21 21:57:40 +0530 | [diff] [blame] | 1311 | size_t name_size; |
| 1312 | int err; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1313 | |
| 1314 | cpkt = (struct virtio_console_control *)(buf->buf + buf->offset); |
| 1315 | |
| 1316 | port = find_port_by_id(portdev, cpkt->id); |
Amit Shah | f909f85 | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1317 | if (!port && cpkt->event != VIRTIO_CONSOLE_PORT_ADD) { |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1318 | /* No valid header at start of buffer. Drop it. */ |
| 1319 | dev_dbg(&portdev->vdev->dev, |
| 1320 | "Invalid index %u in control packet\n", cpkt->id); |
| 1321 | return; |
| 1322 | } |
| 1323 | |
| 1324 | switch (cpkt->event) { |
Amit Shah | f909f85 | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1325 | case VIRTIO_CONSOLE_PORT_ADD: |
| 1326 | if (port) { |
Amit Shah | 1d05160 | 2010-05-19 22:15:49 -0600 | [diff] [blame] | 1327 | dev_dbg(&portdev->vdev->dev, |
| 1328 | "Port %u already added\n", port->id); |
Amit Shah | f909f85 | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1329 | send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1); |
| 1330 | break; |
| 1331 | } |
| 1332 | if (cpkt->id >= portdev->config.max_nr_ports) { |
| 1333 | dev_warn(&portdev->vdev->dev, |
| 1334 | "Request for adding port with out-of-bound id %u, max. supported id: %u\n", |
| 1335 | cpkt->id, portdev->config.max_nr_ports - 1); |
| 1336 | break; |
| 1337 | } |
| 1338 | add_port(portdev, cpkt->id); |
| 1339 | break; |
| 1340 | case VIRTIO_CONSOLE_PORT_REMOVE: |
Amit Shah | b353a6b | 2010-09-02 18:38:29 +0530 | [diff] [blame] | 1341 | unplug_port(port); |
Amit Shah | f909f85 | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1342 | break; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1343 | case VIRTIO_CONSOLE_CONSOLE_PORT: |
| 1344 | if (!cpkt->value) |
| 1345 | break; |
| 1346 | if (is_console_port(port)) |
| 1347 | break; |
| 1348 | |
| 1349 | init_port_console(port); |
| 1350 | /* |
| 1351 | * Could remove the port here in case init fails - but |
| 1352 | * have to notify the host first. |
| 1353 | */ |
| 1354 | break; |
Amit Shah | 8345adb | 2010-05-06 02:05:09 +0530 | [diff] [blame] | 1355 | case VIRTIO_CONSOLE_RESIZE: { |
| 1356 | struct { |
| 1357 | __u16 rows; |
| 1358 | __u16 cols; |
| 1359 | } size; |
| 1360 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1361 | if (!is_console_port(port)) |
| 1362 | break; |
Amit Shah | 8345adb | 2010-05-06 02:05:09 +0530 | [diff] [blame] | 1363 | |
| 1364 | memcpy(&size, buf->buf + buf->offset + sizeof(*cpkt), |
| 1365 | sizeof(size)); |
| 1366 | set_console_size(port, size.rows, size.cols); |
| 1367 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1368 | port->cons.hvc->irq_requested = 1; |
| 1369 | resize_console(port); |
| 1370 | break; |
Amit Shah | 8345adb | 2010-05-06 02:05:09 +0530 | [diff] [blame] | 1371 | } |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 1372 | case VIRTIO_CONSOLE_PORT_OPEN: |
| 1373 | port->host_connected = cpkt->value; |
| 1374 | wake_up_interruptible(&port->waitqueue); |
Amit Shah | cdfadfc | 2010-05-19 22:15:50 -0600 | [diff] [blame] | 1375 | /* |
| 1376 | * If the host port got closed and the host had any |
| 1377 | * unconsumed buffers, we'll be able to reclaim them |
| 1378 | * now. |
| 1379 | */ |
| 1380 | spin_lock_irq(&port->outvq_lock); |
| 1381 | reclaim_consumed_buffers(port); |
| 1382 | spin_unlock_irq(&port->outvq_lock); |
Amit Shah | 3eae0ad | 2010-09-02 18:47:52 +0530 | [diff] [blame] | 1383 | |
| 1384 | /* |
| 1385 | * If the guest is connected, it'll be interested in |
| 1386 | * knowing the host connection state changed. |
| 1387 | */ |
| 1388 | send_sigio_to_port(port); |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 1389 | break; |
Amit Shah | 431edb8 | 2009-12-21 21:57:40 +0530 | [diff] [blame] | 1390 | case VIRTIO_CONSOLE_PORT_NAME: |
| 1391 | /* |
Amit Shah | 291024e | 2011-09-14 13:06:40 +0530 | [diff] [blame] | 1392 | * If we woke up after hibernation, we can get this |
| 1393 | * again. Skip it in that case. |
| 1394 | */ |
| 1395 | if (port->name) |
| 1396 | break; |
| 1397 | |
| 1398 | /* |
Amit Shah | 431edb8 | 2009-12-21 21:57:40 +0530 | [diff] [blame] | 1399 | * Skip the size of the header and the cpkt to get the size |
| 1400 | * of the name that was sent |
| 1401 | */ |
| 1402 | name_size = buf->len - buf->offset - sizeof(*cpkt) + 1; |
| 1403 | |
| 1404 | port->name = kmalloc(name_size, GFP_KERNEL); |
| 1405 | if (!port->name) { |
| 1406 | dev_err(port->dev, |
| 1407 | "Not enough space to store port name\n"); |
| 1408 | break; |
| 1409 | } |
| 1410 | strncpy(port->name, buf->buf + buf->offset + sizeof(*cpkt), |
| 1411 | name_size - 1); |
| 1412 | port->name[name_size - 1] = 0; |
| 1413 | |
| 1414 | /* |
| 1415 | * Since we only have one sysfs attribute, 'name', |
| 1416 | * create it only if we have a name for the port. |
| 1417 | */ |
| 1418 | err = sysfs_create_group(&port->dev->kobj, |
| 1419 | &port_attribute_group); |
Amit Shah | ec64213 | 2010-03-19 17:36:43 +0530 | [diff] [blame] | 1420 | if (err) { |
Amit Shah | 431edb8 | 2009-12-21 21:57:40 +0530 | [diff] [blame] | 1421 | dev_err(port->dev, |
| 1422 | "Error %d creating sysfs device attributes\n", |
| 1423 | err); |
Amit Shah | ec64213 | 2010-03-19 17:36:43 +0530 | [diff] [blame] | 1424 | } else { |
| 1425 | /* |
| 1426 | * Generate a udev event so that appropriate |
| 1427 | * symlinks can be created based on udev |
| 1428 | * rules. |
| 1429 | */ |
| 1430 | kobject_uevent(&port->dev->kobj, KOBJ_CHANGE); |
| 1431 | } |
Amit Shah | 431edb8 | 2009-12-21 21:57:40 +0530 | [diff] [blame] | 1432 | break; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1433 | } |
| 1434 | } |
| 1435 | |
| 1436 | static void control_work_handler(struct work_struct *work) |
| 1437 | { |
| 1438 | struct ports_device *portdev; |
| 1439 | struct virtqueue *vq; |
| 1440 | struct port_buffer *buf; |
| 1441 | unsigned int len; |
| 1442 | |
| 1443 | portdev = container_of(work, struct ports_device, control_work); |
| 1444 | vq = portdev->c_ivq; |
| 1445 | |
| 1446 | spin_lock(&portdev->cvq_lock); |
Michael S. Tsirkin | 505b045 | 2010-04-12 16:18:32 +0300 | [diff] [blame] | 1447 | while ((buf = virtqueue_get_buf(vq, &len))) { |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1448 | spin_unlock(&portdev->cvq_lock); |
| 1449 | |
| 1450 | buf->len = len; |
| 1451 | buf->offset = 0; |
| 1452 | |
| 1453 | handle_control_message(portdev, buf); |
| 1454 | |
| 1455 | spin_lock(&portdev->cvq_lock); |
| 1456 | if (add_inbuf(portdev->c_ivq, buf) < 0) { |
| 1457 | dev_warn(&portdev->vdev->dev, |
| 1458 | "Error adding buffer to queue\n"); |
| 1459 | free_buf(buf); |
| 1460 | } |
| 1461 | } |
| 1462 | spin_unlock(&portdev->cvq_lock); |
| 1463 | } |
| 1464 | |
Amit Shah | 2770c5e | 2011-01-31 13:06:36 +0530 | [diff] [blame] | 1465 | static void out_intr(struct virtqueue *vq) |
| 1466 | { |
| 1467 | struct port *port; |
| 1468 | |
| 1469 | port = find_port_by_vq(vq->vdev->priv, vq); |
| 1470 | if (!port) |
| 1471 | return; |
| 1472 | |
| 1473 | wake_up_interruptible(&port->waitqueue); |
| 1474 | } |
| 1475 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1476 | static void in_intr(struct virtqueue *vq) |
| 1477 | { |
| 1478 | struct port *port; |
| 1479 | unsigned long flags; |
| 1480 | |
| 1481 | port = find_port_by_vq(vq->vdev->priv, vq); |
| 1482 | if (!port) |
| 1483 | return; |
| 1484 | |
| 1485 | spin_lock_irqsave(&port->inbuf_lock, flags); |
Amit Shah | d25a9dd | 2011-09-14 13:06:43 +0530 | [diff] [blame] | 1486 | port->inbuf = get_inbuf(port); |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1487 | |
Amit Shah | 88f251a | 2009-12-21 22:15:30 +0530 | [diff] [blame] | 1488 | /* |
| 1489 | * Don't queue up data when port is closed. This condition |
| 1490 | * can be reached when a console port is not yet connected (no |
| 1491 | * tty is spawned) and the host sends out data to console |
| 1492 | * ports. For generic serial ports, the host won't |
| 1493 | * (shouldn't) send data till the guest is connected. |
| 1494 | */ |
| 1495 | if (!port->guest_connected) |
| 1496 | discard_port_data(port); |
| 1497 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1498 | spin_unlock_irqrestore(&port->inbuf_lock, flags); |
| 1499 | |
Amit Shah | 2030fa4 | 2009-12-21 21:49:30 +0530 | [diff] [blame] | 1500 | wake_up_interruptible(&port->waitqueue); |
| 1501 | |
Amit Shah | 55f6bcc | 2010-09-02 18:47:53 +0530 | [diff] [blame] | 1502 | /* Send a SIGIO indicating new data in case the process asked for it */ |
| 1503 | send_sigio_to_port(port); |
| 1504 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1505 | if (is_console_port(port) && hvc_poll(port->cons.hvc)) |
| 1506 | hvc_kick(); |
| 1507 | } |
| 1508 | |
| 1509 | static void control_intr(struct virtqueue *vq) |
| 1510 | { |
| 1511 | struct ports_device *portdev; |
| 1512 | |
| 1513 | portdev = vq->vdev->priv; |
| 1514 | schedule_work(&portdev->control_work); |
| 1515 | } |
| 1516 | |
Amit Shah | 7f5d810 | 2009-12-21 22:22:08 +0530 | [diff] [blame] | 1517 | static void config_intr(struct virtio_device *vdev) |
| 1518 | { |
| 1519 | struct ports_device *portdev; |
| 1520 | |
| 1521 | portdev = vdev->priv; |
Amit Shah | 99f905f | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1522 | |
Amit Shah | 4038f5b7 | 2010-05-06 02:05:07 +0530 | [diff] [blame] | 1523 | if (!use_multiport(portdev)) { |
Amit Shah | 9778829 | 2010-05-06 02:05:08 +0530 | [diff] [blame] | 1524 | struct port *port; |
| 1525 | u16 rows, cols; |
| 1526 | |
| 1527 | vdev->config->get(vdev, |
| 1528 | offsetof(struct virtio_console_config, cols), |
| 1529 | &cols, sizeof(u16)); |
| 1530 | vdev->config->get(vdev, |
| 1531 | offsetof(struct virtio_console_config, rows), |
| 1532 | &rows, sizeof(u16)); |
| 1533 | |
| 1534 | port = find_port_by_id(portdev, 0); |
| 1535 | set_console_size(port, rows, cols); |
| 1536 | |
Amit Shah | 4038f5b7 | 2010-05-06 02:05:07 +0530 | [diff] [blame] | 1537 | /* |
| 1538 | * We'll use this way of resizing only for legacy |
| 1539 | * support. For newer userspace |
| 1540 | * (VIRTIO_CONSOLE_F_MULTPORT+), use control messages |
| 1541 | * to indicate console size changes so that it can be |
| 1542 | * done per-port. |
| 1543 | */ |
Amit Shah | 9778829 | 2010-05-06 02:05:08 +0530 | [diff] [blame] | 1544 | resize_console(port); |
Amit Shah | 4038f5b7 | 2010-05-06 02:05:07 +0530 | [diff] [blame] | 1545 | } |
Amit Shah | 7f5d810 | 2009-12-21 22:22:08 +0530 | [diff] [blame] | 1546 | } |
| 1547 | |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1548 | static int init_vqs(struct ports_device *portdev) |
| 1549 | { |
| 1550 | vq_callback_t **io_callbacks; |
| 1551 | char **io_names; |
| 1552 | struct virtqueue **vqs; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1553 | u32 i, j, nr_ports, nr_queues; |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1554 | int err; |
| 1555 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1556 | nr_ports = portdev->config.max_nr_ports; |
| 1557 | nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2; |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1558 | |
| 1559 | vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL); |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1560 | io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL); |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1561 | io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL); |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1562 | portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *), |
| 1563 | GFP_KERNEL); |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1564 | portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *), |
| 1565 | GFP_KERNEL); |
Jiri Slaby | 22e132f | 2010-11-06 10:06:50 +0100 | [diff] [blame] | 1566 | if (!vqs || !io_callbacks || !io_names || !portdev->in_vqs || |
Amit Shah | 286f9a2 | 2011-09-14 13:06:39 +0530 | [diff] [blame] | 1567 | !portdev->out_vqs) { |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1568 | err = -ENOMEM; |
Jiri Slaby | 22e132f | 2010-11-06 10:06:50 +0100 | [diff] [blame] | 1569 | goto free; |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1570 | } |
| 1571 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1572 | /* |
| 1573 | * For backward compat (newer host but older guest), the host |
| 1574 | * spawns a console port first and also inits the vqs for port |
| 1575 | * 0 before others. |
| 1576 | */ |
| 1577 | j = 0; |
| 1578 | io_callbacks[j] = in_intr; |
Amit Shah | 2770c5e | 2011-01-31 13:06:36 +0530 | [diff] [blame] | 1579 | io_callbacks[j + 1] = out_intr; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1580 | io_names[j] = "input"; |
| 1581 | io_names[j + 1] = "output"; |
| 1582 | j += 2; |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1583 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1584 | if (use_multiport(portdev)) { |
| 1585 | io_callbacks[j] = control_intr; |
| 1586 | io_callbacks[j + 1] = NULL; |
| 1587 | io_names[j] = "control-i"; |
| 1588 | io_names[j + 1] = "control-o"; |
| 1589 | |
| 1590 | for (i = 1; i < nr_ports; i++) { |
| 1591 | j += 2; |
| 1592 | io_callbacks[j] = in_intr; |
Amit Shah | 2770c5e | 2011-01-31 13:06:36 +0530 | [diff] [blame] | 1593 | io_callbacks[j + 1] = out_intr; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1594 | io_names[j] = "input"; |
| 1595 | io_names[j + 1] = "output"; |
| 1596 | } |
| 1597 | } |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1598 | /* Find the queues. */ |
| 1599 | err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs, |
| 1600 | io_callbacks, |
| 1601 | (const char **)io_names); |
| 1602 | if (err) |
Jiri Slaby | 22e132f | 2010-11-06 10:06:50 +0100 | [diff] [blame] | 1603 | goto free; |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1604 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1605 | j = 0; |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1606 | portdev->in_vqs[0] = vqs[0]; |
| 1607 | portdev->out_vqs[0] = vqs[1]; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1608 | j += 2; |
| 1609 | if (use_multiport(portdev)) { |
| 1610 | portdev->c_ivq = vqs[j]; |
| 1611 | portdev->c_ovq = vqs[j + 1]; |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1612 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1613 | for (i = 1; i < nr_ports; i++) { |
| 1614 | j += 2; |
| 1615 | portdev->in_vqs[i] = vqs[j]; |
| 1616 | portdev->out_vqs[i] = vqs[j + 1]; |
| 1617 | } |
| 1618 | } |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1619 | kfree(io_names); |
Jiri Slaby | 22e132f | 2010-11-06 10:06:50 +0100 | [diff] [blame] | 1620 | kfree(io_callbacks); |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1621 | kfree(vqs); |
| 1622 | |
| 1623 | return 0; |
| 1624 | |
Jiri Slaby | 22e132f | 2010-11-06 10:06:50 +0100 | [diff] [blame] | 1625 | free: |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1626 | kfree(portdev->out_vqs); |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1627 | kfree(portdev->in_vqs); |
Jiri Slaby | 22e132f | 2010-11-06 10:06:50 +0100 | [diff] [blame] | 1628 | kfree(io_names); |
| 1629 | kfree(io_callbacks); |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1630 | kfree(vqs); |
Jiri Slaby | 22e132f | 2010-11-06 10:06:50 +0100 | [diff] [blame] | 1631 | |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1632 | return err; |
| 1633 | } |
| 1634 | |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 1635 | static const struct file_operations portdev_fops = { |
| 1636 | .owner = THIS_MODULE, |
| 1637 | }; |
| 1638 | |
Amit Shah | 1c85bf3 | 2010-01-18 19:15:07 +0530 | [diff] [blame] | 1639 | /* |
| 1640 | * Once we're further in boot, we get probed like any other virtio |
| 1641 | * device. |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1642 | * |
| 1643 | * If the host also supports multiple console ports, we check the |
| 1644 | * config space to see how many ports the host has spawned. We |
| 1645 | * initialize each port found. |
Amit Shah | 1c85bf3 | 2010-01-18 19:15:07 +0530 | [diff] [blame] | 1646 | */ |
| 1647 | static int __devinit virtcons_probe(struct virtio_device *vdev) |
| 1648 | { |
Amit Shah | 1c85bf3 | 2010-01-18 19:15:07 +0530 | [diff] [blame] | 1649 | struct ports_device *portdev; |
| 1650 | int err; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1651 | bool multiport; |
Amit Shah | 1c85bf3 | 2010-01-18 19:15:07 +0530 | [diff] [blame] | 1652 | |
| 1653 | portdev = kmalloc(sizeof(*portdev), GFP_KERNEL); |
| 1654 | if (!portdev) { |
| 1655 | err = -ENOMEM; |
| 1656 | goto fail; |
| 1657 | } |
| 1658 | |
| 1659 | /* Attach this portdev to this virtio_device, and vice-versa. */ |
| 1660 | portdev->vdev = vdev; |
| 1661 | vdev->priv = portdev; |
| 1662 | |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 1663 | spin_lock_irq(&pdrvdata_lock); |
| 1664 | portdev->drv_index = pdrvdata.index++; |
| 1665 | spin_unlock_irq(&pdrvdata_lock); |
| 1666 | |
| 1667 | portdev->chr_major = register_chrdev(0, "virtio-portsdev", |
| 1668 | &portdev_fops); |
| 1669 | if (portdev->chr_major < 0) { |
| 1670 | dev_err(&vdev->dev, |
| 1671 | "Error %d registering chrdev for device %u\n", |
| 1672 | portdev->chr_major, portdev->drv_index); |
| 1673 | err = portdev->chr_major; |
| 1674 | goto free; |
| 1675 | } |
| 1676 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1677 | multiport = false; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1678 | portdev->config.max_nr_ports = 1; |
Sasha Levin | 51c6d61 | 2011-08-14 17:52:31 +0300 | [diff] [blame] | 1679 | if (virtio_config_val(vdev, VIRTIO_CONSOLE_F_MULTIPORT, |
| 1680 | offsetof(struct virtio_console_config, |
| 1681 | max_nr_ports), |
| 1682 | &portdev->config.max_nr_ports) == 0) |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1683 | multiport = true; |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1684 | |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1685 | err = init_vqs(portdev); |
| 1686 | if (err < 0) { |
| 1687 | dev_err(&vdev->dev, "Error %d initializing vqs\n", err); |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 1688 | goto free_chrdev; |
Amit Shah | 2658a79 | 2010-01-18 19:15:11 +0530 | [diff] [blame] | 1689 | } |
Amit Shah | 1c85bf3 | 2010-01-18 19:15:07 +0530 | [diff] [blame] | 1690 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1691 | spin_lock_init(&portdev->ports_lock); |
| 1692 | INIT_LIST_HEAD(&portdev->ports); |
| 1693 | |
| 1694 | if (multiport) { |
Amit Shah | 335a64a5c | 2010-02-24 10:37:44 +0530 | [diff] [blame] | 1695 | unsigned int nr_added_bufs; |
| 1696 | |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1697 | spin_lock_init(&portdev->cvq_lock); |
| 1698 | INIT_WORK(&portdev->control_work, &control_work_handler); |
| 1699 | |
Amit Shah | 335a64a5c | 2010-02-24 10:37:44 +0530 | [diff] [blame] | 1700 | nr_added_bufs = fill_queue(portdev->c_ivq, &portdev->cvq_lock); |
| 1701 | if (!nr_added_bufs) { |
Amit Shah | 22a29ea | 2010-02-12 10:32:17 +0530 | [diff] [blame] | 1702 | dev_err(&vdev->dev, |
| 1703 | "Error allocating buffers for control queue\n"); |
| 1704 | err = -ENOMEM; |
| 1705 | goto free_vqs; |
| 1706 | } |
Amit Shah | 1d05160 | 2010-05-19 22:15:49 -0600 | [diff] [blame] | 1707 | } else { |
| 1708 | /* |
| 1709 | * For backward compatibility: Create a console port |
| 1710 | * if we're running on older host. |
| 1711 | */ |
| 1712 | add_port(portdev, 0); |
Amit Shah | 17634ba | 2009-12-21 21:03:25 +0530 | [diff] [blame] | 1713 | } |
| 1714 | |
Amit Shah | 6bdf2af | 2010-09-02 18:11:49 +0530 | [diff] [blame] | 1715 | spin_lock_irq(&pdrvdata_lock); |
| 1716 | list_add_tail(&portdev->list, &pdrvdata.portdevs); |
| 1717 | spin_unlock_irq(&pdrvdata_lock); |
| 1718 | |
Amit Shah | f909f85 | 2010-05-19 22:15:48 -0600 | [diff] [blame] | 1719 | __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID, |
| 1720 | VIRTIO_CONSOLE_DEVICE_READY, 1); |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 1721 | return 0; |
| 1722 | |
Amit Shah | 22a29ea | 2010-02-12 10:32:17 +0530 | [diff] [blame] | 1723 | free_vqs: |
Julia Lawall | 0643e4c | 2010-05-15 11:45:53 +0200 | [diff] [blame] | 1724 | /* The host might want to notify mgmt sw about device add failure */ |
| 1725 | __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID, |
| 1726 | VIRTIO_CONSOLE_DEVICE_READY, 0); |
Amit Shah | 22a29ea | 2010-02-12 10:32:17 +0530 | [diff] [blame] | 1727 | vdev->config->del_vqs(vdev); |
| 1728 | kfree(portdev->in_vqs); |
| 1729 | kfree(portdev->out_vqs); |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 1730 | free_chrdev: |
| 1731 | unregister_chrdev(portdev->chr_major, "virtio-portsdev"); |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 1732 | free: |
Amit Shah | 1c85bf3 | 2010-01-18 19:15:07 +0530 | [diff] [blame] | 1733 | kfree(portdev); |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 1734 | fail: |
| 1735 | return err; |
| 1736 | } |
| 1737 | |
Amit Shah | 7177876 | 2010-02-12 10:32:16 +0530 | [diff] [blame] | 1738 | static void virtcons_remove(struct virtio_device *vdev) |
| 1739 | { |
| 1740 | struct ports_device *portdev; |
| 1741 | struct port *port, *port2; |
Amit Shah | 7177876 | 2010-02-12 10:32:16 +0530 | [diff] [blame] | 1742 | |
| 1743 | portdev = vdev->priv; |
| 1744 | |
Amit Shah | 6bdf2af | 2010-09-02 18:11:49 +0530 | [diff] [blame] | 1745 | spin_lock_irq(&pdrvdata_lock); |
| 1746 | list_del(&portdev->list); |
| 1747 | spin_unlock_irq(&pdrvdata_lock); |
| 1748 | |
Amit Shah | 0223895 | 2010-09-02 18:11:40 +0530 | [diff] [blame] | 1749 | /* Disable interrupts for vqs */ |
| 1750 | vdev->config->reset(vdev); |
| 1751 | /* Finish up work that's lined up */ |
Amit Shah | 7177876 | 2010-02-12 10:32:16 +0530 | [diff] [blame] | 1752 | cancel_work_sync(&portdev->control_work); |
Amit Shah | 7177876 | 2010-02-12 10:32:16 +0530 | [diff] [blame] | 1753 | |
| 1754 | list_for_each_entry_safe(port, port2, &portdev->ports, list) |
Amit Shah | b353a6b | 2010-09-02 18:38:29 +0530 | [diff] [blame] | 1755 | unplug_port(port); |
Amit Shah | 7177876 | 2010-02-12 10:32:16 +0530 | [diff] [blame] | 1756 | |
| 1757 | unregister_chrdev(portdev->chr_major, "virtio-portsdev"); |
| 1758 | |
Amit Shah | e062013 | 2010-09-02 18:38:30 +0530 | [diff] [blame] | 1759 | /* |
| 1760 | * When yanking out a device, we immediately lose the |
| 1761 | * (device-side) queues. So there's no point in keeping the |
| 1762 | * guest side around till we drop our final reference. This |
| 1763 | * also means that any ports which are in an open state will |
| 1764 | * have to just stop using the port, as the vqs are going |
| 1765 | * away. |
| 1766 | */ |
Amit Shah | 96eb872 | 2010-09-02 18:11:41 +0530 | [diff] [blame] | 1767 | if (use_multiport(portdev)) { |
| 1768 | struct port_buffer *buf; |
| 1769 | unsigned int len; |
Amit Shah | 7177876 | 2010-02-12 10:32:16 +0530 | [diff] [blame] | 1770 | |
Amit Shah | 96eb872 | 2010-09-02 18:11:41 +0530 | [diff] [blame] | 1771 | while ((buf = virtqueue_get_buf(portdev->c_ivq, &len))) |
| 1772 | free_buf(buf); |
| 1773 | |
| 1774 | while ((buf = virtqueue_detach_unused_buf(portdev->c_ivq))) |
| 1775 | free_buf(buf); |
| 1776 | } |
Amit Shah | 7177876 | 2010-02-12 10:32:16 +0530 | [diff] [blame] | 1777 | |
| 1778 | vdev->config->del_vqs(vdev); |
| 1779 | kfree(portdev->in_vqs); |
| 1780 | kfree(portdev->out_vqs); |
| 1781 | |
| 1782 | kfree(portdev); |
| 1783 | } |
| 1784 | |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 1785 | static struct virtio_device_id id_table[] = { |
| 1786 | { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID }, |
| 1787 | { 0 }, |
| 1788 | }; |
| 1789 | |
Christian Borntraeger | c298345 | 2008-11-25 13:36:26 +0100 | [diff] [blame] | 1790 | static unsigned int features[] = { |
| 1791 | VIRTIO_CONSOLE_F_SIZE, |
Amit Shah | b99fa81 | 2010-05-19 22:15:46 -0600 | [diff] [blame] | 1792 | VIRTIO_CONSOLE_F_MULTIPORT, |
Christian Borntraeger | c298345 | 2008-11-25 13:36:26 +0100 | [diff] [blame] | 1793 | }; |
| 1794 | |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 1795 | static struct virtio_driver virtio_console = { |
Christian Borntraeger | c298345 | 2008-11-25 13:36:26 +0100 | [diff] [blame] | 1796 | .feature_table = features, |
| 1797 | .feature_table_size = ARRAY_SIZE(features), |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 1798 | .driver.name = KBUILD_MODNAME, |
| 1799 | .driver.owner = THIS_MODULE, |
| 1800 | .id_table = id_table, |
| 1801 | .probe = virtcons_probe, |
Amit Shah | 7177876 | 2010-02-12 10:32:16 +0530 | [diff] [blame] | 1802 | .remove = virtcons_remove, |
Amit Shah | 7f5d810 | 2009-12-21 22:22:08 +0530 | [diff] [blame] | 1803 | .config_changed = config_intr, |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 1804 | }; |
| 1805 | |
| 1806 | static int __init init(void) |
| 1807 | { |
Amit Shah | fb08bd2 | 2009-12-21 21:36:04 +0530 | [diff] [blame] | 1808 | int err; |
| 1809 | |
| 1810 | pdrvdata.class = class_create(THIS_MODULE, "virtio-ports"); |
| 1811 | if (IS_ERR(pdrvdata.class)) { |
| 1812 | err = PTR_ERR(pdrvdata.class); |
| 1813 | pr_err("Error %d creating virtio-ports class\n", err); |
| 1814 | return err; |
| 1815 | } |
Amit Shah | d99393e | 2009-12-21 22:36:21 +0530 | [diff] [blame] | 1816 | |
| 1817 | pdrvdata.debugfs_dir = debugfs_create_dir("virtio-ports", NULL); |
| 1818 | if (!pdrvdata.debugfs_dir) { |
| 1819 | pr_warning("Error %ld creating debugfs dir for virtio-ports\n", |
| 1820 | PTR_ERR(pdrvdata.debugfs_dir)); |
| 1821 | } |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 1822 | INIT_LIST_HEAD(&pdrvdata.consoles); |
Amit Shah | 6bdf2af | 2010-09-02 18:11:49 +0530 | [diff] [blame] | 1823 | INIT_LIST_HEAD(&pdrvdata.portdevs); |
Amit Shah | 38edf58 | 2010-01-18 19:15:05 +0530 | [diff] [blame] | 1824 | |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 1825 | return register_virtio_driver(&virtio_console); |
| 1826 | } |
Amit Shah | 7177876 | 2010-02-12 10:32:16 +0530 | [diff] [blame] | 1827 | |
| 1828 | static void __exit fini(void) |
| 1829 | { |
| 1830 | unregister_virtio_driver(&virtio_console); |
| 1831 | |
| 1832 | class_destroy(pdrvdata.class); |
| 1833 | if (pdrvdata.debugfs_dir) |
| 1834 | debugfs_remove_recursive(pdrvdata.debugfs_dir); |
| 1835 | } |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 1836 | module_init(init); |
Amit Shah | 7177876 | 2010-02-12 10:32:16 +0530 | [diff] [blame] | 1837 | module_exit(fini); |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 1838 | |
| 1839 | MODULE_DEVICE_TABLE(virtio, id_table); |
| 1840 | MODULE_DESCRIPTION("Virtio console driver"); |
| 1841 | MODULE_LICENSE("GPL"); |