drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / gpu / vga / vgaarb.c
CommitLineData
deb2d2ec 1/*
c0db9cbc
TV
2 * vgaarb.c: Implements the VGA arbitration. For details refer to
3 * Documentation/vgaarbiter.txt
4 *
deb2d2ec
BH
5 *
6 * (C) Copyright 2005 Benjamin Herrenschmidt <benh@kernel.crashing.org>
7 * (C) Copyright 2007 Paulo R. Zanoni <przanoni@gmail.com>
8 * (C) Copyright 2007, 2009 Tiago Vignatti <vignatti@freedesktop.org>
9 *
c0db9cbc
TV
10 * Permission is hereby granted, free of charge, to any person obtaining a
11 * copy of this software and associated documentation files (the "Software"),
12 * to deal in the Software without restriction, including without limitation
13 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
14 * and/or sell copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice (including the next
18 * paragraph) shall be included in all copies or substantial portions of the
19 * Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27 * DEALINGS
28 * IN THE SOFTWARE.
29 *
deb2d2ec
BH
30 */
31
32#include <linux/module.h>
33#include <linux/kernel.h>
34#include <linux/pci.h>
35#include <linux/errno.h>
36#include <linux/init.h>
37#include <linux/list.h>
38#include <linux/sched.h>
39#include <linux/wait.h>
40#include <linux/spinlock.h>
41#include <linux/poll.h>
42#include <linux/miscdevice.h>
5a0e3ad6 43#include <linux/slab.h>
deb2d2ec
BH
44
45#include <linux/uaccess.h>
46
47#include <linux/vgaarb.h>
48
49static void vga_arbiter_notify_clients(void);
50/*
51 * We keep a list of all vga devices in the system to speed
52 * up the various operations of the arbiter
53 */
54struct vga_device {
55 struct list_head list;
56 struct pci_dev *pdev;
57 unsigned int decodes; /* what does it decodes */
58 unsigned int owns; /* what does it owns */
59 unsigned int locks; /* what does it locks */
60 unsigned int io_lock_cnt; /* legacy IO lock count */
61 unsigned int mem_lock_cnt; /* legacy MEM lock count */
62 unsigned int io_norm_cnt; /* normal IO count */
63 unsigned int mem_norm_cnt; /* normal MEM count */
3448a19d 64 bool bridge_has_one_vga;
deb2d2ec
BH
65 /* allow IRQ enable/disable hook */
66 void *cookie;
67 void (*irq_set_state)(void *cookie, bool enable);
68 unsigned int (*set_vga_decode)(void *cookie, bool decode);
69};
70
71static LIST_HEAD(vga_list);
72static int vga_count, vga_decode_count;
73static bool vga_arbiter_used;
74static DEFINE_SPINLOCK(vga_lock);
75static DECLARE_WAIT_QUEUE_HEAD(vga_wait_queue);
76
77
78static const char *vga_iostate_to_str(unsigned int iostate)
79{
80 /* Ignore VGA_RSRC_IO and VGA_RSRC_MEM */
81 iostate &= VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM;
82 switch (iostate) {
83 case VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM:
84 return "io+mem";
85 case VGA_RSRC_LEGACY_IO:
86 return "io";
87 case VGA_RSRC_LEGACY_MEM:
88 return "mem";
89 }
90 return "none";
91}
92
93static int vga_str_to_iostate(char *buf, int str_size, int *io_state)
94{
95 /* we could in theory hand out locks on IO and mem
96 * separately to userspace but it can cause deadlocks */
97 if (strncmp(buf, "none", 4) == 0) {
98 *io_state = VGA_RSRC_NONE;
99 return 1;
100 }
101
102 /* XXX We're not chekcing the str_size! */
103 if (strncmp(buf, "io+mem", 6) == 0)
104 goto both;
105 else if (strncmp(buf, "io", 2) == 0)
106 goto both;
107 else if (strncmp(buf, "mem", 3) == 0)
108 goto both;
109 return 0;
110both:
111 *io_state = VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM;
112 return 1;
113}
114
115#ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE
116/* this is only used a cookie - it should not be dereferenced */
117static struct pci_dev *vga_default;
118#endif
119
120static void vga_arb_device_card_gone(struct pci_dev *pdev);
121
122/* Find somebody in our list */
123static struct vga_device *vgadev_find(struct pci_dev *pdev)
124{
125 struct vga_device *vgadev;
126
127 list_for_each_entry(vgadev, &vga_list, list)
128 if (pdev == vgadev->pdev)
129 return vgadev;
130 return NULL;
131}
132
133/* Returns the default VGA device (vgacon's babe) */
134#ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE
135struct pci_dev *vga_default_device(void)
136{
137 return vga_default;
138}
1a39b310 139
1b23170a
MG
140EXPORT_SYMBOL_GPL(vga_default_device);
141
1a39b310
MG
142void vga_set_default_device(struct pci_dev *pdev)
143{
84544a1d
YL
144 if (vga_default == pdev)
145 return;
146
147 pci_dev_put(vga_default);
148 vga_default = pci_dev_get(pdev);
1a39b310 149}
deb2d2ec
BH
150#endif
151
152static inline void vga_irq_set_state(struct vga_device *vgadev, bool state)
153{
154 if (vgadev->irq_set_state)
155 vgadev->irq_set_state(vgadev->cookie, state);
156}
157
158
159/* If we don't ever use VGA arb we should avoid
160 turning off anything anywhere due to old X servers getting
161 confused about the boot device not being VGA */
162static void vga_check_first_use(void)
163{
164 /* we should inform all GPUs in the system that
25985edc 165 * VGA arb has occurred and to try and disable resources
deb2d2ec
BH
166 * if they can */
167 if (!vga_arbiter_used) {
168 vga_arbiter_used = true;
169 vga_arbiter_notify_clients();
170 }
171}
172
173static struct vga_device *__vga_tryget(struct vga_device *vgadev,
174 unsigned int rsrc)
175{
176 unsigned int wants, legacy_wants, match;
177 struct vga_device *conflict;
178 unsigned int pci_bits;
3448a19d
DA
179 u32 flags = 0;
180
deb2d2ec
BH
181 /* Account for "normal" resources to lock. If we decode the legacy,
182 * counterpart, we need to request it as well
183 */
184 if ((rsrc & VGA_RSRC_NORMAL_IO) &&
185 (vgadev->decodes & VGA_RSRC_LEGACY_IO))
186 rsrc |= VGA_RSRC_LEGACY_IO;
187 if ((rsrc & VGA_RSRC_NORMAL_MEM) &&
188 (vgadev->decodes & VGA_RSRC_LEGACY_MEM))
189 rsrc |= VGA_RSRC_LEGACY_MEM;
190
2d6e9b91
TV
191 pr_debug("%s: %d\n", __func__, rsrc);
192 pr_debug("%s: owns: %d\n", __func__, vgadev->owns);
deb2d2ec
BH
193
194 /* Check what resources we need to acquire */
195 wants = rsrc & ~vgadev->owns;
196
197 /* We already own everything, just mark locked & bye bye */
198 if (wants == 0)
199 goto lock_them;
200
201 /* We don't need to request a legacy resource, we just enable
202 * appropriate decoding and go
203 */
204 legacy_wants = wants & VGA_RSRC_LEGACY_MASK;
205 if (legacy_wants == 0)
206 goto enable_them;
207
208 /* Ok, we don't, let's find out how we need to kick off */
209 list_for_each_entry(conflict, &vga_list, list) {
210 unsigned int lwants = legacy_wants;
211 unsigned int change_bridge = 0;
212
213 /* Don't conflict with myself */
214 if (vgadev == conflict)
215 continue;
216
217 /* Check if the architecture allows a conflict between those
218 * 2 devices or if they are on separate domains
219 */
220 if (!vga_conflicts(vgadev->pdev, conflict->pdev))
221 continue;
222
223 /* We have a possible conflict. before we go further, we must
224 * check if we sit on the same bus as the conflicting device.
225 * if we don't, then we must tie both IO and MEM resources
226 * together since there is only a single bit controlling
227 * VGA forwarding on P2P bridges
228 */
229 if (vgadev->pdev->bus != conflict->pdev->bus) {
230 change_bridge = 1;
231 lwants = VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM;
232 }
233
234 /* Check if the guy has a lock on the resource. If he does,
235 * return the conflicting entry
236 */
237 if (conflict->locks & lwants)
238 return conflict;
239
240 /* Ok, now check if he owns the resource we want. We don't need
241 * to check "decodes" since it should be impossible to own
242 * own legacy resources you don't decode unless I have a bug
243 * in this code...
244 */
245 WARN_ON(conflict->owns & ~conflict->decodes);
246 match = lwants & conflict->owns;
247 if (!match)
248 continue;
249
250 /* looks like he doesn't have a lock, we can steal
251 * them from him
252 */
deb2d2ec 253
3448a19d 254 flags = 0;
deb2d2ec 255 pci_bits = 0;
deb2d2ec 256
3448a19d
DA
257 if (!conflict->bridge_has_one_vga) {
258 vga_irq_set_state(conflict, false);
259 flags |= PCI_VGA_STATE_CHANGE_DECODES;
260 if (lwants & (VGA_RSRC_LEGACY_MEM|VGA_RSRC_NORMAL_MEM))
261 pci_bits |= PCI_COMMAND_MEMORY;
262 if (lwants & (VGA_RSRC_LEGACY_IO|VGA_RSRC_NORMAL_IO))
263 pci_bits |= PCI_COMMAND_IO;
264 }
265
266 if (change_bridge)
267 flags |= PCI_VGA_STATE_CHANGE_BRIDGE;
268
269 pci_set_vga_state(conflict->pdev, false, pci_bits, flags);
deb2d2ec
BH
270 conflict->owns &= ~lwants;
271 /* If he also owned non-legacy, that is no longer the case */
272 if (lwants & VGA_RSRC_LEGACY_MEM)
273 conflict->owns &= ~VGA_RSRC_NORMAL_MEM;
274 if (lwants & VGA_RSRC_LEGACY_IO)
275 conflict->owns &= ~VGA_RSRC_NORMAL_IO;
276 }
277
278enable_them:
279 /* ok dude, we got it, everybody conflicting has been disabled, let's
280 * enable us. Make sure we don't mark a bit in "owns" that we don't
281 * also have in "decodes". We can lock resources we don't decode but
282 * not own them.
283 */
3448a19d 284 flags = 0;
deb2d2ec 285 pci_bits = 0;
deb2d2ec 286
3448a19d
DA
287 if (!vgadev->bridge_has_one_vga) {
288 flags |= PCI_VGA_STATE_CHANGE_DECODES;
289 if (wants & (VGA_RSRC_LEGACY_MEM|VGA_RSRC_NORMAL_MEM))
290 pci_bits |= PCI_COMMAND_MEMORY;
291 if (wants & (VGA_RSRC_LEGACY_IO|VGA_RSRC_NORMAL_IO))
292 pci_bits |= PCI_COMMAND_IO;
293 }
294 if (!!(wants & VGA_RSRC_LEGACY_MASK))
295 flags |= PCI_VGA_STATE_CHANGE_BRIDGE;
296
297 pci_set_vga_state(vgadev->pdev, true, pci_bits, flags);
298
299 if (!vgadev->bridge_has_one_vga) {
300 vga_irq_set_state(vgadev, true);
301 }
deb2d2ec
BH
302 vgadev->owns |= (wants & vgadev->decodes);
303lock_them:
304 vgadev->locks |= (rsrc & VGA_RSRC_LEGACY_MASK);
305 if (rsrc & VGA_RSRC_LEGACY_IO)
306 vgadev->io_lock_cnt++;
307 if (rsrc & VGA_RSRC_LEGACY_MEM)
308 vgadev->mem_lock_cnt++;
309 if (rsrc & VGA_RSRC_NORMAL_IO)
310 vgadev->io_norm_cnt++;
311 if (rsrc & VGA_RSRC_NORMAL_MEM)
312 vgadev->mem_norm_cnt++;
313
314 return NULL;
315}
316
317static void __vga_put(struct vga_device *vgadev, unsigned int rsrc)
318{
319 unsigned int old_locks = vgadev->locks;
320
2d6e9b91 321 pr_debug("%s\n", __func__);
deb2d2ec
BH
322
323 /* Update our counters, and account for equivalent legacy resources
324 * if we decode them
325 */
326 if ((rsrc & VGA_RSRC_NORMAL_IO) && vgadev->io_norm_cnt > 0) {
327 vgadev->io_norm_cnt--;
328 if (vgadev->decodes & VGA_RSRC_LEGACY_IO)
329 rsrc |= VGA_RSRC_LEGACY_IO;
330 }
331 if ((rsrc & VGA_RSRC_NORMAL_MEM) && vgadev->mem_norm_cnt > 0) {
332 vgadev->mem_norm_cnt--;
333 if (vgadev->decodes & VGA_RSRC_LEGACY_MEM)
334 rsrc |= VGA_RSRC_LEGACY_MEM;
335 }
336 if ((rsrc & VGA_RSRC_LEGACY_IO) && vgadev->io_lock_cnt > 0)
337 vgadev->io_lock_cnt--;
338 if ((rsrc & VGA_RSRC_LEGACY_MEM) && vgadev->mem_lock_cnt > 0)
339 vgadev->mem_lock_cnt--;
340
341 /* Just clear lock bits, we do lazy operations so we don't really
342 * have to bother about anything else at this point
343 */
344 if (vgadev->io_lock_cnt == 0)
345 vgadev->locks &= ~VGA_RSRC_LEGACY_IO;
346 if (vgadev->mem_lock_cnt == 0)
347 vgadev->locks &= ~VGA_RSRC_LEGACY_MEM;
348
349 /* Kick the wait queue in case somebody was waiting if we actually
350 * released something
351 */
352 if (old_locks != vgadev->locks)
353 wake_up_all(&vga_wait_queue);
354}
355
356int vga_get(struct pci_dev *pdev, unsigned int rsrc, int interruptible)
357{
358 struct vga_device *vgadev, *conflict;
359 unsigned long flags;
360 wait_queue_t wait;
361 int rc = 0;
362
363 vga_check_first_use();
364 /* The one who calls us should check for this, but lets be sure... */
365 if (pdev == NULL)
366 pdev = vga_default_device();
367 if (pdev == NULL)
368 return 0;
369
370 for (;;) {
371 spin_lock_irqsave(&vga_lock, flags);
372 vgadev = vgadev_find(pdev);
373 if (vgadev == NULL) {
374 spin_unlock_irqrestore(&vga_lock, flags);
375 rc = -ENODEV;
376 break;
377 }
378 conflict = __vga_tryget(vgadev, rsrc);
379 spin_unlock_irqrestore(&vga_lock, flags);
380 if (conflict == NULL)
381 break;
382
383
384 /* We have a conflict, we wait until somebody kicks the
385 * work queue. Currently we have one work queue that we
386 * kick each time some resources are released, but it would
387 * be fairly easy to have a per device one so that we only
388 * need to attach to the conflicting device
389 */
390 init_waitqueue_entry(&wait, current);
391 add_wait_queue(&vga_wait_queue, &wait);
392 set_current_state(interruptible ?
393 TASK_INTERRUPTIBLE :
394 TASK_UNINTERRUPTIBLE);
9cec7883
KS
395 if (interruptible && signal_pending(current)) {
396 __set_current_state(TASK_RUNNING);
397 remove_wait_queue(&vga_wait_queue, &wait);
398 rc = -ERESTARTSYS;
deb2d2ec
BH
399 break;
400 }
401 schedule();
402 remove_wait_queue(&vga_wait_queue, &wait);
403 set_current_state(TASK_RUNNING);
404 }
405 return rc;
406}
407EXPORT_SYMBOL(vga_get);
408
409int vga_tryget(struct pci_dev *pdev, unsigned int rsrc)
410{
411 struct vga_device *vgadev;
412 unsigned long flags;
413 int rc = 0;
414
415 vga_check_first_use();
416
417 /* The one who calls us should check for this, but lets be sure... */
418 if (pdev == NULL)
419 pdev = vga_default_device();
420 if (pdev == NULL)
421 return 0;
422 spin_lock_irqsave(&vga_lock, flags);
423 vgadev = vgadev_find(pdev);
424 if (vgadev == NULL) {
425 rc = -ENODEV;
426 goto bail;
427 }
428 if (__vga_tryget(vgadev, rsrc))
429 rc = -EBUSY;
430bail:
431 spin_unlock_irqrestore(&vga_lock, flags);
432 return rc;
433}
434EXPORT_SYMBOL(vga_tryget);
435
436void vga_put(struct pci_dev *pdev, unsigned int rsrc)
437{
438 struct vga_device *vgadev;
439 unsigned long flags;
440
441 /* The one who calls us should check for this, but lets be sure... */
442 if (pdev == NULL)
443 pdev = vga_default_device();
444 if (pdev == NULL)
445 return;
446 spin_lock_irqsave(&vga_lock, flags);
447 vgadev = vgadev_find(pdev);
448 if (vgadev == NULL)
449 goto bail;
450 __vga_put(vgadev, rsrc);
451bail:
452 spin_unlock_irqrestore(&vga_lock, flags);
453}
454EXPORT_SYMBOL(vga_put);
455
3448a19d
DA
456/* Rules for using a bridge to control a VGA descendant decoding:
457 if a bridge has only one VGA descendant then it can be used
458 to control the VGA routing for that device.
459 It should always use the bridge closest to the device to control it.
460 If a bridge has a direct VGA descendant, but also have a sub-bridge
461 VGA descendant then we cannot use that bridge to control the direct VGA descendant.
462 So for every device we register, we need to iterate all its parent bridges
463 so we can invalidate any devices using them properly.
464*/
465static void vga_arbiter_check_bridge_sharing(struct vga_device *vgadev)
466{
467 struct vga_device *same_bridge_vgadev;
468 struct pci_bus *new_bus, *bus;
469 struct pci_dev *new_bridge, *bridge;
470
471 vgadev->bridge_has_one_vga = true;
472
473 if (list_empty(&vga_list))
474 return;
475
476 /* okay iterate the new devices bridge hierarachy */
477 new_bus = vgadev->pdev->bus;
478 while (new_bus) {
479 new_bridge = new_bus->self;
480
f6252114
DA
481 /* go through list of devices already registered */
482 list_for_each_entry(same_bridge_vgadev, &vga_list, list) {
483 bus = same_bridge_vgadev->pdev->bus;
484 bridge = bus->self;
485
486 /* see if the share a bridge with this device */
487 if (new_bridge == bridge) {
488 /* if their direct parent bridge is the same
489 as any bridge of this device then it can't be used
490 for that device */
491 same_bridge_vgadev->bridge_has_one_vga = false;
492 }
3448a19d 493
f6252114
DA
494 /* now iterate the previous devices bridge hierarchy */
495 /* if the new devices parent bridge is in the other devices
496 hierarchy then we can't use it to control this device */
497 while (bus) {
498 bridge = bus->self;
499 if (bridge) {
500 if (bridge == vgadev->pdev->bus->self)
501 vgadev->bridge_has_one_vga = false;
3448a19d 502 }
f6252114 503 bus = bus->parent;
3448a19d
DA
504 }
505 }
506 new_bus = new_bus->parent;
507 }
508}
509
deb2d2ec
BH
510/*
511 * Currently, we assume that the "initial" setup of the system is
512 * not sane, that is we come up with conflicting devices and let
513 * the arbiter's client decides if devices decodes or not legacy
514 * things.
515 */
516static bool vga_arbiter_add_pci_device(struct pci_dev *pdev)
517{
518 struct vga_device *vgadev;
519 unsigned long flags;
520 struct pci_bus *bus;
521 struct pci_dev *bridge;
522 u16 cmd;
523
524 /* Only deal with VGA class devices */
525 if ((pdev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
526 return false;
527
528 /* Allocate structure */
529 vgadev = kmalloc(sizeof(struct vga_device), GFP_KERNEL);
530 if (vgadev == NULL) {
531 pr_err("vgaarb: failed to allocate pci device\n");
532 /* What to do on allocation failure ? For now, let's
533 * just do nothing, I'm not sure there is anything saner
534 * to be done
535 */
536 return false;
537 }
538
539 memset(vgadev, 0, sizeof(*vgadev));
540
541 /* Take lock & check for duplicates */
542 spin_lock_irqsave(&vga_lock, flags);
543 if (vgadev_find(pdev) != NULL) {
544 BUG_ON(1);
545 goto fail;
546 }
547 vgadev->pdev = pdev;
548
549 /* By default, assume we decode everything */
550 vgadev->decodes = VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
551 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
552
553 /* by default mark it as decoding */
554 vga_decode_count++;
555 /* Mark that we "own" resources based on our enables, we will
556 * clear that below if the bridge isn't forwarding
557 */
558 pci_read_config_word(pdev, PCI_COMMAND, &cmd);
559 if (cmd & PCI_COMMAND_IO)
560 vgadev->owns |= VGA_RSRC_LEGACY_IO;
561 if (cmd & PCI_COMMAND_MEMORY)
562 vgadev->owns |= VGA_RSRC_LEGACY_MEM;
563
564 /* Check if VGA cycles can get down to us */
565 bus = pdev->bus;
566 while (bus) {
567 bridge = bus->self;
568 if (bridge) {
569 u16 l;
570 pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
571 &l);
572 if (!(l & PCI_BRIDGE_CTL_VGA)) {
573 vgadev->owns = 0;
574 break;
575 }
576 }
577 bus = bus->parent;
578 }
579
580 /* Deal with VGA default device. Use first enabled one
581 * by default if arch doesn't have it's own hook
582 */
583#ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE
584 if (vga_default == NULL &&
585 ((vgadev->owns & VGA_RSRC_LEGACY_MASK) == VGA_RSRC_LEGACY_MASK))
84544a1d 586 vga_set_default_device(pdev);
deb2d2ec
BH
587#endif
588
3448a19d
DA
589 vga_arbiter_check_bridge_sharing(vgadev);
590
deb2d2ec
BH
591 /* Add to the list */
592 list_add(&vgadev->list, &vga_list);
593 vga_count++;
594 pr_info("vgaarb: device added: PCI:%s,decodes=%s,owns=%s,locks=%s\n",
595 pci_name(pdev),
596 vga_iostate_to_str(vgadev->decodes),
597 vga_iostate_to_str(vgadev->owns),
598 vga_iostate_to_str(vgadev->locks));
599
600 spin_unlock_irqrestore(&vga_lock, flags);
601 return true;
602fail:
603 spin_unlock_irqrestore(&vga_lock, flags);
604 kfree(vgadev);
605 return false;
606}
607
608static bool vga_arbiter_del_pci_device(struct pci_dev *pdev)
609{
610 struct vga_device *vgadev;
611 unsigned long flags;
612 bool ret = true;
613
614 spin_lock_irqsave(&vga_lock, flags);
615 vgadev = vgadev_find(pdev);
616 if (vgadev == NULL) {
617 ret = false;
618 goto bail;
619 }
620
1a39b310 621#ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE
84544a1d
YL
622 if (vga_default == pdev)
623 vga_set_default_device(NULL);
1a39b310 624#endif
deb2d2ec
BH
625
626 if (vgadev->decodes & (VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM))
627 vga_decode_count--;
628
629 /* Remove entry from list */
630 list_del(&vgadev->list);
631 vga_count--;
632 /* Notify userland driver that the device is gone so it discards
633 * it's copies of the pci_dev pointer
634 */
635 vga_arb_device_card_gone(pdev);
636
637 /* Wake up all possible waiters */
638 wake_up_all(&vga_wait_queue);
639bail:
640 spin_unlock_irqrestore(&vga_lock, flags);
641 kfree(vgadev);
642 return ret;
643}
644
645/* this is called with the lock */
646static inline void vga_update_device_decodes(struct vga_device *vgadev,
647 int new_decodes)
648{
649 int old_decodes;
650 struct vga_device *new_vgadev, *conflict;
651
652 old_decodes = vgadev->decodes;
653 vgadev->decodes = new_decodes;
654
655 pr_info("vgaarb: device changed decodes: PCI:%s,olddecodes=%s,decodes=%s:owns=%s\n",
656 pci_name(vgadev->pdev),
657 vga_iostate_to_str(old_decodes),
658 vga_iostate_to_str(vgadev->decodes),
659 vga_iostate_to_str(vgadev->owns));
660
661
662 /* if we own the decodes we should move them along to
663 another card */
664 if ((vgadev->owns & old_decodes) && (vga_count > 1)) {
665 /* set us to own nothing */
666 vgadev->owns &= ~old_decodes;
667 list_for_each_entry(new_vgadev, &vga_list, list) {
668 if ((new_vgadev != vgadev) &&
669 (new_vgadev->decodes & VGA_RSRC_LEGACY_MASK)) {
670 pr_info("vgaarb: transferring owner from PCI:%s to PCI:%s\n", pci_name(vgadev->pdev), pci_name(new_vgadev->pdev));
671 conflict = __vga_tryget(new_vgadev, VGA_RSRC_LEGACY_MASK);
672 if (!conflict)
673 __vga_put(new_vgadev, VGA_RSRC_LEGACY_MASK);
674 break;
675 }
676 }
677 }
678
679 /* change decodes counter */
680 if (old_decodes != new_decodes) {
681 if (new_decodes & (VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM))
682 vga_decode_count++;
683 else
684 vga_decode_count--;
685 }
2d6e9b91 686 pr_debug("vgaarb: decoding count now is: %d\n", vga_decode_count);
deb2d2ec
BH
687}
688
201ba4c4 689static void __vga_set_legacy_decoding(struct pci_dev *pdev, unsigned int decodes, bool userspace)
deb2d2ec
BH
690{
691 struct vga_device *vgadev;
692 unsigned long flags;
693
694 decodes &= VGA_RSRC_LEGACY_MASK;
695
696 spin_lock_irqsave(&vga_lock, flags);
697 vgadev = vgadev_find(pdev);
698 if (vgadev == NULL)
699 goto bail;
700
701 /* don't let userspace futz with kernel driver decodes */
702 if (userspace && vgadev->set_vga_decode)
703 goto bail;
704
705 /* update the device decodes + counter */
706 vga_update_device_decodes(vgadev, decodes);
707
708 /* XXX if somebody is going from "doesn't decode" to "decodes" state
709 * here, additional care must be taken as we may have pending owner
710 * ship of non-legacy region ...
711 */
712bail:
713 spin_unlock_irqrestore(&vga_lock, flags);
714}
715
716void vga_set_legacy_decoding(struct pci_dev *pdev, unsigned int decodes)
717{
718 __vga_set_legacy_decoding(pdev, decodes, false);
719}
720EXPORT_SYMBOL(vga_set_legacy_decoding);
721
deb2d2ec
BH
722/* call with NULL to unregister */
723int vga_client_register(struct pci_dev *pdev, void *cookie,
724 void (*irq_set_state)(void *cookie, bool state),
725 unsigned int (*set_vga_decode)(void *cookie, bool decode))
726{
934f992c 727 int ret = -ENODEV;
deb2d2ec
BH
728 struct vga_device *vgadev;
729 unsigned long flags;
730
731 spin_lock_irqsave(&vga_lock, flags);
732 vgadev = vgadev_find(pdev);
733 if (!vgadev)
734 goto bail;
735
736 vgadev->irq_set_state = irq_set_state;
737 vgadev->set_vga_decode = set_vga_decode;
738 vgadev->cookie = cookie;
739 ret = 0;
740
741bail:
742 spin_unlock_irqrestore(&vga_lock, flags);
743 return ret;
744
745}
746EXPORT_SYMBOL(vga_client_register);
747
748/*
749 * Char driver implementation
750 *
751 * Semantics is:
752 *
753 * open : open user instance of the arbitrer. by default, it's
754 * attached to the default VGA device of the system.
755 *
756 * close : close user instance, release locks
757 *
758 * read : return a string indicating the status of the target.
759 * an IO state string is of the form {io,mem,io+mem,none},
760 * mc and ic are respectively mem and io lock counts (for
761 * debugging/diagnostic only). "decodes" indicate what the
762 * card currently decodes, "owns" indicates what is currently
763 * enabled on it, and "locks" indicates what is locked by this
764 * card. If the card is unplugged, we get "invalid" then for
765 * card_ID and an -ENODEV error is returned for any command
766 * until a new card is targeted
767 *
768 * "<card_ID>,decodes=<io_state>,owns=<io_state>,locks=<io_state> (ic,mc)"
769 *
770 * write : write a command to the arbiter. List of commands is:
771 *
772 * target <card_ID> : switch target to card <card_ID> (see below)
773 * lock <io_state> : acquires locks on target ("none" is invalid io_state)
774 * trylock <io_state> : non-blocking acquire locks on target
775 * unlock <io_state> : release locks on target
776 * unlock all : release all locks on target held by this user
777 * decodes <io_state> : set the legacy decoding attributes for the card
778 *
779 * poll : event if something change on any card (not just the target)
780 *
781 * card_ID is of the form "PCI:domain:bus:dev.fn". It can be set to "default"
782 * to go back to the system default card (TODO: not implemented yet).
783 * Currently, only PCI is supported as a prefix, but the userland API may
784 * support other bus types in the future, even if the current kernel
785 * implementation doesn't.
786 *
787 * Note about locks:
788 *
789 * The driver keeps track of which user has what locks on which card. It
790 * supports stacking, like the kernel one. This complexifies the implementation
791 * a bit, but makes the arbiter more tolerant to userspace problems and able
792 * to properly cleanup in all cases when a process dies.
793 * Currently, a max of 16 cards simultaneously can have locks issued from
794 * userspace for a given user (file descriptor instance) of the arbiter.
795 *
796 * If the device is hot-unplugged, there is a hook inside the module to notify
797 * they being added/removed in the system and automatically added/removed in
798 * the arbiter.
799 */
800
36028f33 801#define MAX_USER_CARDS CONFIG_VGA_ARB_MAX_GPUS
deb2d2ec
BH
802#define PCI_INVALID_CARD ((struct pci_dev *)-1UL)
803
804/*
805 * Each user has an array of these, tracking which cards have locks
806 */
807struct vga_arb_user_card {
808 struct pci_dev *pdev;
809 unsigned int mem_cnt;
810 unsigned int io_cnt;
811};
812
813struct vga_arb_private {
814 struct list_head list;
815 struct pci_dev *target;
816 struct vga_arb_user_card cards[MAX_USER_CARDS];
817 spinlock_t lock;
818};
819
820static LIST_HEAD(vga_user_list);
821static DEFINE_SPINLOCK(vga_user_lock);
822
823
824/*
825 * This function gets a string in the format: "PCI:domain:bus:dev.fn" and
826 * returns the respective values. If the string is not in this format,
827 * it returns 0.
828 */
829static int vga_pci_str_to_vars(char *buf, int count, unsigned int *domain,
830 unsigned int *bus, unsigned int *devfn)
831{
832 int n;
833 unsigned int slot, func;
834
835
836 n = sscanf(buf, "PCI:%x:%x:%x.%x", domain, bus, &slot, &func);
837 if (n != 4)
838 return 0;
839
840 *devfn = PCI_DEVFN(slot, func);
841
842 return 1;
843}
844
845static ssize_t vga_arb_read(struct file *file, char __user * buf,
846 size_t count, loff_t *ppos)
847{
848 struct vga_arb_private *priv = file->private_data;
849 struct vga_device *vgadev;
850 struct pci_dev *pdev;
851 unsigned long flags;
852 size_t len;
853 int rc;
854 char *lbuf;
855
856 lbuf = kmalloc(1024, GFP_KERNEL);
857 if (lbuf == NULL)
858 return -ENOMEM;
859
860 /* Shields against vga_arb_device_card_gone (pci_dev going
861 * away), and allows access to vga list
862 */
863 spin_lock_irqsave(&vga_lock, flags);
864
25985edc 865 /* If we are targeting the default, use it */
deb2d2ec
BH
866 pdev = priv->target;
867 if (pdev == NULL || pdev == PCI_INVALID_CARD) {
868 spin_unlock_irqrestore(&vga_lock, flags);
869 len = sprintf(lbuf, "invalid");
870 goto done;
871 }
872
873 /* Find card vgadev structure */
874 vgadev = vgadev_find(pdev);
875 if (vgadev == NULL) {
876 /* Wow, it's not in the list, that shouldn't happen,
877 * let's fix us up and return invalid card
878 */
879 if (pdev == priv->target)
880 vga_arb_device_card_gone(pdev);
881 spin_unlock_irqrestore(&vga_lock, flags);
882 len = sprintf(lbuf, "invalid");
883 goto done;
884 }
885
886 /* Fill the buffer with infos */
887 len = snprintf(lbuf, 1024,
888 "count:%d,PCI:%s,decodes=%s,owns=%s,locks=%s(%d:%d)\n",
889 vga_decode_count, pci_name(pdev),
890 vga_iostate_to_str(vgadev->decodes),
891 vga_iostate_to_str(vgadev->owns),
892 vga_iostate_to_str(vgadev->locks),
893 vgadev->io_lock_cnt, vgadev->mem_lock_cnt);
894
895 spin_unlock_irqrestore(&vga_lock, flags);
896done:
897
898 /* Copy that to user */
899 if (len > count)
900 len = count;
901 rc = copy_to_user(buf, lbuf, len);
902 kfree(lbuf);
903 if (rc)
904 return -EFAULT;
905 return len;
906}
907
908/*
909 * TODO: To avoid parsing inside kernel and to improve the speed we may
910 * consider use ioctl here
911 */
912static ssize_t vga_arb_write(struct file *file, const char __user * buf,
913 size_t count, loff_t *ppos)
914{
915 struct vga_arb_private *priv = file->private_data;
916 struct vga_arb_user_card *uc = NULL;
917 struct pci_dev *pdev;
918
919 unsigned int io_state;
920
921 char *kbuf, *curr_pos;
922 size_t remaining = count;
923
924 int ret_val;
925 int i;
926
927
928 kbuf = kmalloc(count + 1, GFP_KERNEL);
929 if (!kbuf)
930 return -ENOMEM;
931
932 if (copy_from_user(kbuf, buf, count)) {
933 kfree(kbuf);
934 return -EFAULT;
935 }
936 curr_pos = kbuf;
937 kbuf[count] = '\0'; /* Just to make sure... */
938
939 if (strncmp(curr_pos, "lock ", 5) == 0) {
940 curr_pos += 5;
941 remaining -= 5;
942
2d6e9b91 943 pr_debug("client 0x%p called 'lock'\n", priv);
deb2d2ec
BH
944
945 if (!vga_str_to_iostate(curr_pos, remaining, &io_state)) {
946 ret_val = -EPROTO;
947 goto done;
948 }
949 if (io_state == VGA_RSRC_NONE) {
950 ret_val = -EPROTO;
951 goto done;
952 }
953
954 pdev = priv->target;
955 if (priv->target == NULL) {
956 ret_val = -ENODEV;
957 goto done;
958 }
959
960 vga_get_uninterruptible(pdev, io_state);
961
962 /* Update the client's locks lists... */
963 for (i = 0; i < MAX_USER_CARDS; i++) {
964 if (priv->cards[i].pdev == pdev) {
965 if (io_state & VGA_RSRC_LEGACY_IO)
966 priv->cards[i].io_cnt++;
967 if (io_state & VGA_RSRC_LEGACY_MEM)
968 priv->cards[i].mem_cnt++;
969 break;
970 }
971 }
972
973 ret_val = count;
974 goto done;
975 } else if (strncmp(curr_pos, "unlock ", 7) == 0) {
976 curr_pos += 7;
977 remaining -= 7;
978
2d6e9b91 979 pr_debug("client 0x%p called 'unlock'\n", priv);
deb2d2ec
BH
980
981 if (strncmp(curr_pos, "all", 3) == 0)
982 io_state = VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM;
983 else {
984 if (!vga_str_to_iostate
985 (curr_pos, remaining, &io_state)) {
986 ret_val = -EPROTO;
987 goto done;
988 }
989 /* TODO: Add this?
990 if (io_state == VGA_RSRC_NONE) {
991 ret_val = -EPROTO;
992 goto done;
993 }
994 */
995 }
996
997 pdev = priv->target;
998 if (priv->target == NULL) {
999 ret_val = -ENODEV;
1000 goto done;
1001 }
1002 for (i = 0; i < MAX_USER_CARDS; i++) {
1003 if (priv->cards[i].pdev == pdev)
1004 uc = &priv->cards[i];
1005 }
1006
c916874d
JL
1007 if (!uc) {
1008 ret_val = -EINVAL;
1009 goto done;
1010 }
deb2d2ec 1011
c916874d
JL
1012 if (io_state & VGA_RSRC_LEGACY_IO && uc->io_cnt == 0) {
1013 ret_val = -EINVAL;
1014 goto done;
1015 }
deb2d2ec 1016
c916874d
JL
1017 if (io_state & VGA_RSRC_LEGACY_MEM && uc->mem_cnt == 0) {
1018 ret_val = -EINVAL;
1019 goto done;
1020 }
deb2d2ec
BH
1021
1022 vga_put(pdev, io_state);
1023
1024 if (io_state & VGA_RSRC_LEGACY_IO)
1025 uc->io_cnt--;
1026 if (io_state & VGA_RSRC_LEGACY_MEM)
1027 uc->mem_cnt--;
1028
1029 ret_val = count;
1030 goto done;
1031 } else if (strncmp(curr_pos, "trylock ", 8) == 0) {
1032 curr_pos += 8;
1033 remaining -= 8;
1034
2d6e9b91 1035 pr_debug("client 0x%p called 'trylock'\n", priv);
deb2d2ec
BH
1036
1037 if (!vga_str_to_iostate(curr_pos, remaining, &io_state)) {
1038 ret_val = -EPROTO;
1039 goto done;
1040 }
1041 /* TODO: Add this?
1042 if (io_state == VGA_RSRC_NONE) {
1043 ret_val = -EPROTO;
1044 goto done;
1045 }
1046 */
1047
1048 pdev = priv->target;
1049 if (priv->target == NULL) {
1050 ret_val = -ENODEV;
1051 goto done;
1052 }
1053
1054 if (vga_tryget(pdev, io_state)) {
1055 /* Update the client's locks lists... */
1056 for (i = 0; i < MAX_USER_CARDS; i++) {
1057 if (priv->cards[i].pdev == pdev) {
1058 if (io_state & VGA_RSRC_LEGACY_IO)
1059 priv->cards[i].io_cnt++;
1060 if (io_state & VGA_RSRC_LEGACY_MEM)
1061 priv->cards[i].mem_cnt++;
1062 break;
1063 }
1064 }
1065 ret_val = count;
1066 goto done;
1067 } else {
1068 ret_val = -EBUSY;
1069 goto done;
1070 }
1071
1072 } else if (strncmp(curr_pos, "target ", 7) == 0) {
1073 unsigned int domain, bus, devfn;
1074 struct vga_device *vgadev;
1075
1076 curr_pos += 7;
1077 remaining -= 7;
2d6e9b91 1078 pr_debug("client 0x%p called 'target'\n", priv);
deb2d2ec 1079 /* if target is default */
2cc9116c 1080 if (!strncmp(curr_pos, "default", 7))
deb2d2ec
BH
1081 pdev = pci_dev_get(vga_default_device());
1082 else {
1083 if (!vga_pci_str_to_vars(curr_pos, remaining,
1084 &domain, &bus, &devfn)) {
1085 ret_val = -EPROTO;
1086 goto done;
1087 }
2d6e9b91 1088 pr_debug("vgaarb: %s ==> %x:%x:%x.%x\n", curr_pos,
773a38db
MT
1089 domain, bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
1090
f85567c8 1091 pdev = pci_get_domain_bus_and_slot(domain, bus, devfn);
2d6e9b91 1092 pr_debug("vgaarb: pdev %p\n", pdev);
deb2d2ec 1093 if (!pdev) {
f85567c8
JL
1094 pr_err("vgaarb: invalid PCI address %x:%x:%x\n",
1095 domain, bus, devfn);
deb2d2ec
BH
1096 ret_val = -ENODEV;
1097 goto done;
1098 }
1099 }
1100
1101 vgadev = vgadev_find(pdev);
2d6e9b91 1102 pr_debug("vgaarb: vgadev %p\n", vgadev);
deb2d2ec 1103 if (vgadev == NULL) {
773a38db 1104 pr_err("vgaarb: this pci device is not a vga device\n");
deb2d2ec
BH
1105 pci_dev_put(pdev);
1106 ret_val = -ENODEV;
1107 goto done;
1108 }
1109
1110 priv->target = pdev;
1111 for (i = 0; i < MAX_USER_CARDS; i++) {
1112 if (priv->cards[i].pdev == pdev)
1113 break;
1114 if (priv->cards[i].pdev == NULL) {
1115 priv->cards[i].pdev = pdev;
1116 priv->cards[i].io_cnt = 0;
1117 priv->cards[i].mem_cnt = 0;
1118 break;
1119 }
1120 }
1121 if (i == MAX_USER_CARDS) {
773a38db
MT
1122 pr_err("vgaarb: maximum user cards (%d) number reached!\n",
1123 MAX_USER_CARDS);
deb2d2ec
BH
1124 pci_dev_put(pdev);
1125 /* XXX: which value to return? */
1126 ret_val = -ENOMEM;
1127 goto done;
1128 }
1129
1130 ret_val = count;
1131 pci_dev_put(pdev);
1132 goto done;
1133
1134
1135 } else if (strncmp(curr_pos, "decodes ", 8) == 0) {
1136 curr_pos += 8;
1137 remaining -= 8;
2d6e9b91 1138 pr_debug("vgaarb: client 0x%p called 'decodes'\n", priv);
deb2d2ec
BH
1139
1140 if (!vga_str_to_iostate(curr_pos, remaining, &io_state)) {
1141 ret_val = -EPROTO;
1142 goto done;
1143 }
1144 pdev = priv->target;
1145 if (priv->target == NULL) {
1146 ret_val = -ENODEV;
1147 goto done;
1148 }
1149
1150 __vga_set_legacy_decoding(pdev, io_state, true);
1151 ret_val = count;
1152 goto done;
1153 }
1154 /* If we got here, the message written is not part of the protocol! */
1155 kfree(kbuf);
1156 return -EPROTO;
1157
1158done:
1159 kfree(kbuf);
1160 return ret_val;
1161}
1162
1163static unsigned int vga_arb_fpoll(struct file *file, poll_table * wait)
1164{
1165 struct vga_arb_private *priv = file->private_data;
1166
2d6e9b91 1167 pr_debug("%s\n", __func__);
deb2d2ec
BH
1168
1169 if (priv == NULL)
1170 return -ENODEV;
1171 poll_wait(file, &vga_wait_queue, wait);
1172 return POLLIN;
1173}
1174
1175static int vga_arb_open(struct inode *inode, struct file *file)
1176{
1177 struct vga_arb_private *priv;
1178 unsigned long flags;
1179
2d6e9b91 1180 pr_debug("%s\n", __func__);
deb2d2ec 1181
f35119d6 1182 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
deb2d2ec
BH
1183 if (priv == NULL)
1184 return -ENOMEM;
deb2d2ec
BH
1185 spin_lock_init(&priv->lock);
1186 file->private_data = priv;
1187
1188 spin_lock_irqsave(&vga_user_lock, flags);
1189 list_add(&priv->list, &vga_user_list);
1190 spin_unlock_irqrestore(&vga_user_lock, flags);
1191
1192 /* Set the client' lists of locks */
1193 priv->target = vga_default_device(); /* Maybe this is still null! */
1194 priv->cards[0].pdev = priv->target;
1195 priv->cards[0].io_cnt = 0;
1196 priv->cards[0].mem_cnt = 0;
1197
1198
1199 return 0;
1200}
1201
1202static int vga_arb_release(struct inode *inode, struct file *file)
1203{
1204 struct vga_arb_private *priv = file->private_data;
1205 struct vga_arb_user_card *uc;
1206 unsigned long flags;
1207 int i;
1208
2d6e9b91 1209 pr_debug("%s\n", __func__);
deb2d2ec
BH
1210
1211 if (priv == NULL)
1212 return -ENODEV;
1213
1214 spin_lock_irqsave(&vga_user_lock, flags);
1215 list_del(&priv->list);
1216 for (i = 0; i < MAX_USER_CARDS; i++) {
1217 uc = &priv->cards[i];
1218 if (uc->pdev == NULL)
1219 continue;
2d6e9b91 1220 pr_debug("uc->io_cnt == %d, uc->mem_cnt == %d\n",
deb2d2ec
BH
1221 uc->io_cnt, uc->mem_cnt);
1222 while (uc->io_cnt--)
1223 vga_put(uc->pdev, VGA_RSRC_LEGACY_IO);
1224 while (uc->mem_cnt--)
1225 vga_put(uc->pdev, VGA_RSRC_LEGACY_MEM);
1226 }
1227 spin_unlock_irqrestore(&vga_user_lock, flags);
1228
1229 kfree(priv);
1230
1231 return 0;
1232}
1233
1234static void vga_arb_device_card_gone(struct pci_dev *pdev)
1235{
1236}
1237
1238/*
1239 * callback any registered clients to let them know we have a
1240 * change in VGA cards
1241 */
1242static void vga_arbiter_notify_clients(void)
1243{
1244 struct vga_device *vgadev;
1245 unsigned long flags;
1246 uint32_t new_decodes;
1247 bool new_state;
1248
1249 if (!vga_arbiter_used)
1250 return;
1251
1252 spin_lock_irqsave(&vga_lock, flags);
1253 list_for_each_entry(vgadev, &vga_list, list) {
1254 if (vga_count > 1)
1255 new_state = false;
1256 else
1257 new_state = true;
1258 if (vgadev->set_vga_decode) {
1259 new_decodes = vgadev->set_vga_decode(vgadev->cookie, new_state);
1260 vga_update_device_decodes(vgadev, new_decodes);
1261 }
1262 }
1263 spin_unlock_irqrestore(&vga_lock, flags);
1264}
1265
1266static int pci_notify(struct notifier_block *nb, unsigned long action,
1267 void *data)
1268{
1269 struct device *dev = data;
1270 struct pci_dev *pdev = to_pci_dev(dev);
1271 bool notify = false;
1272
2d6e9b91 1273 pr_debug("%s\n", __func__);
deb2d2ec
BH
1274
1275 /* For now we're only intereted in devices added and removed. I didn't
1276 * test this thing here, so someone needs to double check for the
1277 * cases of hotplugable vga cards. */
1278 if (action == BUS_NOTIFY_ADD_DEVICE)
1279 notify = vga_arbiter_add_pci_device(pdev);
1280 else if (action == BUS_NOTIFY_DEL_DEVICE)
1281 notify = vga_arbiter_del_pci_device(pdev);
1282
1283 if (notify)
1284 vga_arbiter_notify_clients();
1285 return 0;
1286}
1287
1288static struct notifier_block pci_notifier = {
1289 .notifier_call = pci_notify,
1290};
1291
1292static const struct file_operations vga_arb_device_fops = {
1293 .read = vga_arb_read,
1294 .write = vga_arb_write,
1295 .poll = vga_arb_fpoll,
1296 .open = vga_arb_open,
1297 .release = vga_arb_release,
6038f373 1298 .llseek = noop_llseek,
deb2d2ec
BH
1299};
1300
1301static struct miscdevice vga_arb_device = {
1302 MISC_DYNAMIC_MINOR, "vga_arbiter", &vga_arb_device_fops
1303};
1304
1305static int __init vga_arb_device_init(void)
1306{
1307 int rc;
1308 struct pci_dev *pdev;
3448a19d 1309 struct vga_device *vgadev;
deb2d2ec
BH
1310
1311 rc = misc_register(&vga_arb_device);
1312 if (rc < 0)
1313 pr_err("vgaarb: error %d registering device\n", rc);
1314
1315 bus_register_notifier(&pci_bus_type, &pci_notifier);
1316
1317 /* We add all pci devices satisfying vga class in the arbiter by
1318 * default */
1319 pdev = NULL;
1320 while ((pdev =
1321 pci_get_subsys(PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
1322 PCI_ANY_ID, pdev)) != NULL)
1323 vga_arbiter_add_pci_device(pdev);
1324
1325 pr_info("vgaarb: loaded\n");
3448a19d
DA
1326
1327 list_for_each_entry(vgadev, &vga_list, list) {
1328 if (vgadev->bridge_has_one_vga)
1329 pr_info("vgaarb: bridge control possible %s\n", pci_name(vgadev->pdev));
1330 else
1331 pr_info("vgaarb: no bridge control possible %s\n", pci_name(vgadev->pdev));
1332 }
deb2d2ec
BH
1333 return rc;
1334}
1335subsys_initcall(vga_arb_device_init);