2 * vgaarb.c: Implements the VGA arbitration. For details refer to
3 * Documentation/vgaarbiter.txt
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>
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:
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
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
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>
43 #include <linux/slab.h>
45 #include <linux/uaccess.h>
47 #include <linux/vgaarb.h>
49 static void vga_arbiter_notify_clients(void);
51 * We keep a list of all vga devices in the system to speed
52 * up the various operations of the arbiter
55 struct list_head list
;
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 */
64 bool bridge_has_one_vga
;
65 /* allow IRQ enable/disable hook */
67 void (*irq_set_state
)(void *cookie
, bool enable
);
68 unsigned int (*set_vga_decode
)(void *cookie
, bool decode
);
71 static LIST_HEAD(vga_list
);
72 static int vga_count
, vga_decode_count
;
73 static bool vga_arbiter_used
;
74 static DEFINE_SPINLOCK(vga_lock
);
75 static DECLARE_WAIT_QUEUE_HEAD(vga_wait_queue
);
78 static const char *vga_iostate_to_str(unsigned int iostate
)
80 /* Ignore VGA_RSRC_IO and VGA_RSRC_MEM */
81 iostate
&= VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
;
83 case VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
:
85 case VGA_RSRC_LEGACY_IO
:
87 case VGA_RSRC_LEGACY_MEM
:
93 static int vga_str_to_iostate(char *buf
, int str_size
, int *io_state
)
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
;
102 /* XXX We're not chekcing the str_size! */
103 if (strncmp(buf
, "io+mem", 6) == 0)
105 else if (strncmp(buf
, "io", 2) == 0)
107 else if (strncmp(buf
, "mem", 3) == 0)
111 *io_state
= VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
;
115 #ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE
116 /* this is only used a cookie - it should not be dereferenced */
117 static struct pci_dev
*vga_default
;
120 static void vga_arb_device_card_gone(struct pci_dev
*pdev
);
122 /* Find somebody in our list */
123 static struct vga_device
*vgadev_find(struct pci_dev
*pdev
)
125 struct vga_device
*vgadev
;
127 list_for_each_entry(vgadev
, &vga_list
, list
)
128 if (pdev
== vgadev
->pdev
)
133 /* Returns the default VGA device (vgacon's babe) */
134 #ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE
135 struct pci_dev
*vga_default_device(void)
140 EXPORT_SYMBOL_GPL(vga_default_device
);
142 void vga_set_default_device(struct pci_dev
*pdev
)
148 static inline void vga_irq_set_state(struct vga_device
*vgadev
, bool state
)
150 if (vgadev
->irq_set_state
)
151 vgadev
->irq_set_state(vgadev
->cookie
, state
);
155 /* If we don't ever use VGA arb we should avoid
156 turning off anything anywhere due to old X servers getting
157 confused about the boot device not being VGA */
158 static void vga_check_first_use(void)
160 /* we should inform all GPUs in the system that
161 * VGA arb has occurred and to try and disable resources
163 if (!vga_arbiter_used
) {
164 vga_arbiter_used
= true;
165 vga_arbiter_notify_clients();
169 static struct vga_device
*__vga_tryget(struct vga_device
*vgadev
,
172 unsigned int wants
, legacy_wants
, match
;
173 struct vga_device
*conflict
;
174 unsigned int pci_bits
;
177 /* Account for "normal" resources to lock. If we decode the legacy,
178 * counterpart, we need to request it as well
180 if ((rsrc
& VGA_RSRC_NORMAL_IO
) &&
181 (vgadev
->decodes
& VGA_RSRC_LEGACY_IO
))
182 rsrc
|= VGA_RSRC_LEGACY_IO
;
183 if ((rsrc
& VGA_RSRC_NORMAL_MEM
) &&
184 (vgadev
->decodes
& VGA_RSRC_LEGACY_MEM
))
185 rsrc
|= VGA_RSRC_LEGACY_MEM
;
187 pr_debug("%s: %d\n", __func__
, rsrc
);
188 pr_debug("%s: owns: %d\n", __func__
, vgadev
->owns
);
190 /* Check what resources we need to acquire */
191 wants
= rsrc
& ~vgadev
->owns
;
193 /* We already own everything, just mark locked & bye bye */
197 /* We don't need to request a legacy resource, we just enable
198 * appropriate decoding and go
200 legacy_wants
= wants
& VGA_RSRC_LEGACY_MASK
;
201 if (legacy_wants
== 0)
204 /* Ok, we don't, let's find out how we need to kick off */
205 list_for_each_entry(conflict
, &vga_list
, list
) {
206 unsigned int lwants
= legacy_wants
;
207 unsigned int change_bridge
= 0;
209 /* Don't conflict with myself */
210 if (vgadev
== conflict
)
213 /* Check if the architecture allows a conflict between those
214 * 2 devices or if they are on separate domains
216 if (!vga_conflicts(vgadev
->pdev
, conflict
->pdev
))
219 /* We have a possible conflict. before we go further, we must
220 * check if we sit on the same bus as the conflicting device.
221 * if we don't, then we must tie both IO and MEM resources
222 * together since there is only a single bit controlling
223 * VGA forwarding on P2P bridges
225 if (vgadev
->pdev
->bus
!= conflict
->pdev
->bus
) {
227 lwants
= VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
;
230 /* Check if the guy has a lock on the resource. If he does,
231 * return the conflicting entry
233 if (conflict
->locks
& lwants
)
236 /* Ok, now check if he owns the resource we want. We don't need
237 * to check "decodes" since it should be impossible to own
238 * own legacy resources you don't decode unless I have a bug
241 WARN_ON(conflict
->owns
& ~conflict
->decodes
);
242 match
= lwants
& conflict
->owns
;
246 /* looks like he doesn't have a lock, we can steal
253 if (!conflict
->bridge_has_one_vga
) {
254 vga_irq_set_state(conflict
, false);
255 flags
|= PCI_VGA_STATE_CHANGE_DECODES
;
256 if (lwants
& (VGA_RSRC_LEGACY_MEM
|VGA_RSRC_NORMAL_MEM
))
257 pci_bits
|= PCI_COMMAND_MEMORY
;
258 if (lwants
& (VGA_RSRC_LEGACY_IO
|VGA_RSRC_NORMAL_IO
))
259 pci_bits
|= PCI_COMMAND_IO
;
263 flags
|= PCI_VGA_STATE_CHANGE_BRIDGE
;
265 pci_set_vga_state(conflict
->pdev
, false, pci_bits
, flags
);
266 conflict
->owns
&= ~lwants
;
267 /* If he also owned non-legacy, that is no longer the case */
268 if (lwants
& VGA_RSRC_LEGACY_MEM
)
269 conflict
->owns
&= ~VGA_RSRC_NORMAL_MEM
;
270 if (lwants
& VGA_RSRC_LEGACY_IO
)
271 conflict
->owns
&= ~VGA_RSRC_NORMAL_IO
;
275 /* ok dude, we got it, everybody conflicting has been disabled, let's
276 * enable us. Make sure we don't mark a bit in "owns" that we don't
277 * also have in "decodes". We can lock resources we don't decode but
283 if (!vgadev
->bridge_has_one_vga
) {
284 flags
|= PCI_VGA_STATE_CHANGE_DECODES
;
285 if (wants
& (VGA_RSRC_LEGACY_MEM
|VGA_RSRC_NORMAL_MEM
))
286 pci_bits
|= PCI_COMMAND_MEMORY
;
287 if (wants
& (VGA_RSRC_LEGACY_IO
|VGA_RSRC_NORMAL_IO
))
288 pci_bits
|= PCI_COMMAND_IO
;
290 if (!!(wants
& VGA_RSRC_LEGACY_MASK
))
291 flags
|= PCI_VGA_STATE_CHANGE_BRIDGE
;
293 pci_set_vga_state(vgadev
->pdev
, true, pci_bits
, flags
);
295 if (!vgadev
->bridge_has_one_vga
) {
296 vga_irq_set_state(vgadev
, true);
298 vgadev
->owns
|= (wants
& vgadev
->decodes
);
300 vgadev
->locks
|= (rsrc
& VGA_RSRC_LEGACY_MASK
);
301 if (rsrc
& VGA_RSRC_LEGACY_IO
)
302 vgadev
->io_lock_cnt
++;
303 if (rsrc
& VGA_RSRC_LEGACY_MEM
)
304 vgadev
->mem_lock_cnt
++;
305 if (rsrc
& VGA_RSRC_NORMAL_IO
)
306 vgadev
->io_norm_cnt
++;
307 if (rsrc
& VGA_RSRC_NORMAL_MEM
)
308 vgadev
->mem_norm_cnt
++;
313 static void __vga_put(struct vga_device
*vgadev
, unsigned int rsrc
)
315 unsigned int old_locks
= vgadev
->locks
;
317 pr_debug("%s\n", __func__
);
319 /* Update our counters, and account for equivalent legacy resources
322 if ((rsrc
& VGA_RSRC_NORMAL_IO
) && vgadev
->io_norm_cnt
> 0) {
323 vgadev
->io_norm_cnt
--;
324 if (vgadev
->decodes
& VGA_RSRC_LEGACY_IO
)
325 rsrc
|= VGA_RSRC_LEGACY_IO
;
327 if ((rsrc
& VGA_RSRC_NORMAL_MEM
) && vgadev
->mem_norm_cnt
> 0) {
328 vgadev
->mem_norm_cnt
--;
329 if (vgadev
->decodes
& VGA_RSRC_LEGACY_MEM
)
330 rsrc
|= VGA_RSRC_LEGACY_MEM
;
332 if ((rsrc
& VGA_RSRC_LEGACY_IO
) && vgadev
->io_lock_cnt
> 0)
333 vgadev
->io_lock_cnt
--;
334 if ((rsrc
& VGA_RSRC_LEGACY_MEM
) && vgadev
->mem_lock_cnt
> 0)
335 vgadev
->mem_lock_cnt
--;
337 /* Just clear lock bits, we do lazy operations so we don't really
338 * have to bother about anything else at this point
340 if (vgadev
->io_lock_cnt
== 0)
341 vgadev
->locks
&= ~VGA_RSRC_LEGACY_IO
;
342 if (vgadev
->mem_lock_cnt
== 0)
343 vgadev
->locks
&= ~VGA_RSRC_LEGACY_MEM
;
345 /* Kick the wait queue in case somebody was waiting if we actually
348 if (old_locks
!= vgadev
->locks
)
349 wake_up_all(&vga_wait_queue
);
352 int vga_get(struct pci_dev
*pdev
, unsigned int rsrc
, int interruptible
)
354 struct vga_device
*vgadev
, *conflict
;
359 vga_check_first_use();
360 /* The one who calls us should check for this, but lets be sure... */
362 pdev
= vga_default_device();
367 spin_lock_irqsave(&vga_lock
, flags
);
368 vgadev
= vgadev_find(pdev
);
369 if (vgadev
== NULL
) {
370 spin_unlock_irqrestore(&vga_lock
, flags
);
374 conflict
= __vga_tryget(vgadev
, rsrc
);
375 spin_unlock_irqrestore(&vga_lock
, flags
);
376 if (conflict
== NULL
)
380 /* We have a conflict, we wait until somebody kicks the
381 * work queue. Currently we have one work queue that we
382 * kick each time some resources are released, but it would
383 * be fairly easy to have a per device one so that we only
384 * need to attach to the conflicting device
386 init_waitqueue_entry(&wait
, current
);
387 add_wait_queue(&vga_wait_queue
, &wait
);
388 set_current_state(interruptible
?
390 TASK_UNINTERRUPTIBLE
);
391 if (signal_pending(current
)) {
396 remove_wait_queue(&vga_wait_queue
, &wait
);
397 set_current_state(TASK_RUNNING
);
401 EXPORT_SYMBOL(vga_get
);
403 int vga_tryget(struct pci_dev
*pdev
, unsigned int rsrc
)
405 struct vga_device
*vgadev
;
409 vga_check_first_use();
411 /* The one who calls us should check for this, but lets be sure... */
413 pdev
= vga_default_device();
416 spin_lock_irqsave(&vga_lock
, flags
);
417 vgadev
= vgadev_find(pdev
);
418 if (vgadev
== NULL
) {
422 if (__vga_tryget(vgadev
, rsrc
))
425 spin_unlock_irqrestore(&vga_lock
, flags
);
428 EXPORT_SYMBOL(vga_tryget
);
430 void vga_put(struct pci_dev
*pdev
, unsigned int rsrc
)
432 struct vga_device
*vgadev
;
435 /* The one who calls us should check for this, but lets be sure... */
437 pdev
= vga_default_device();
440 spin_lock_irqsave(&vga_lock
, flags
);
441 vgadev
= vgadev_find(pdev
);
444 __vga_put(vgadev
, rsrc
);
446 spin_unlock_irqrestore(&vga_lock
, flags
);
448 EXPORT_SYMBOL(vga_put
);
450 /* Rules for using a bridge to control a VGA descendant decoding:
451 if a bridge has only one VGA descendant then it can be used
452 to control the VGA routing for that device.
453 It should always use the bridge closest to the device to control it.
454 If a bridge has a direct VGA descendant, but also have a sub-bridge
455 VGA descendant then we cannot use that bridge to control the direct VGA descendant.
456 So for every device we register, we need to iterate all its parent bridges
457 so we can invalidate any devices using them properly.
459 static void vga_arbiter_check_bridge_sharing(struct vga_device
*vgadev
)
461 struct vga_device
*same_bridge_vgadev
;
462 struct pci_bus
*new_bus
, *bus
;
463 struct pci_dev
*new_bridge
, *bridge
;
465 vgadev
->bridge_has_one_vga
= true;
467 if (list_empty(&vga_list
))
470 /* okay iterate the new devices bridge hierarachy */
471 new_bus
= vgadev
->pdev
->bus
;
473 new_bridge
= new_bus
->self
;
475 /* go through list of devices already registered */
476 list_for_each_entry(same_bridge_vgadev
, &vga_list
, list
) {
477 bus
= same_bridge_vgadev
->pdev
->bus
;
480 /* see if the share a bridge with this device */
481 if (new_bridge
== bridge
) {
482 /* if their direct parent bridge is the same
483 as any bridge of this device then it can't be used
485 same_bridge_vgadev
->bridge_has_one_vga
= false;
488 /* now iterate the previous devices bridge hierarchy */
489 /* if the new devices parent bridge is in the other devices
490 hierarchy then we can't use it to control this device */
494 if (bridge
== vgadev
->pdev
->bus
->self
)
495 vgadev
->bridge_has_one_vga
= false;
500 new_bus
= new_bus
->parent
;
505 * Currently, we assume that the "initial" setup of the system is
506 * not sane, that is we come up with conflicting devices and let
507 * the arbiter's client decides if devices decodes or not legacy
510 static bool vga_arbiter_add_pci_device(struct pci_dev
*pdev
)
512 struct vga_device
*vgadev
;
515 struct pci_dev
*bridge
;
518 /* Only deal with VGA class devices */
519 if ((pdev
->class >> 8) != PCI_CLASS_DISPLAY_VGA
)
522 /* Allocate structure */
523 vgadev
= kmalloc(sizeof(struct vga_device
), GFP_KERNEL
);
524 if (vgadev
== NULL
) {
525 pr_err("vgaarb: failed to allocate pci device\n");
526 /* What to do on allocation failure ? For now, let's
527 * just do nothing, I'm not sure there is anything saner
533 memset(vgadev
, 0, sizeof(*vgadev
));
535 /* Take lock & check for duplicates */
536 spin_lock_irqsave(&vga_lock
, flags
);
537 if (vgadev_find(pdev
) != NULL
) {
543 /* By default, assume we decode everything */
544 vgadev
->decodes
= VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
|
545 VGA_RSRC_NORMAL_IO
| VGA_RSRC_NORMAL_MEM
;
547 /* by default mark it as decoding */
549 /* Mark that we "own" resources based on our enables, we will
550 * clear that below if the bridge isn't forwarding
552 pci_read_config_word(pdev
, PCI_COMMAND
, &cmd
);
553 if (cmd
& PCI_COMMAND_IO
)
554 vgadev
->owns
|= VGA_RSRC_LEGACY_IO
;
555 if (cmd
& PCI_COMMAND_MEMORY
)
556 vgadev
->owns
|= VGA_RSRC_LEGACY_MEM
;
558 /* Check if VGA cycles can get down to us */
564 pci_read_config_word(bridge
, PCI_BRIDGE_CONTROL
,
566 if (!(l
& PCI_BRIDGE_CTL_VGA
)) {
574 /* Deal with VGA default device. Use first enabled one
575 * by default if arch doesn't have it's own hook
577 #ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE
578 if (vga_default
== NULL
&&
579 ((vgadev
->owns
& VGA_RSRC_LEGACY_MASK
) == VGA_RSRC_LEGACY_MASK
))
580 vga_default
= pci_dev_get(pdev
);
583 vga_arbiter_check_bridge_sharing(vgadev
);
585 /* Add to the list */
586 list_add(&vgadev
->list
, &vga_list
);
588 pr_info("vgaarb: device added: PCI:%s,decodes=%s,owns=%s,locks=%s\n",
590 vga_iostate_to_str(vgadev
->decodes
),
591 vga_iostate_to_str(vgadev
->owns
),
592 vga_iostate_to_str(vgadev
->locks
));
594 spin_unlock_irqrestore(&vga_lock
, flags
);
597 spin_unlock_irqrestore(&vga_lock
, flags
);
602 static bool vga_arbiter_del_pci_device(struct pci_dev
*pdev
)
604 struct vga_device
*vgadev
;
608 spin_lock_irqsave(&vga_lock
, flags
);
609 vgadev
= vgadev_find(pdev
);
610 if (vgadev
== NULL
) {
615 #ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE
616 if (vga_default
== pdev
) {
617 pci_dev_put(vga_default
);
622 if (vgadev
->decodes
& (VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
))
625 /* Remove entry from list */
626 list_del(&vgadev
->list
);
628 /* Notify userland driver that the device is gone so it discards
629 * it's copies of the pci_dev pointer
631 vga_arb_device_card_gone(pdev
);
633 /* Wake up all possible waiters */
634 wake_up_all(&vga_wait_queue
);
636 spin_unlock_irqrestore(&vga_lock
, flags
);
641 /* this is called with the lock */
642 static inline void vga_update_device_decodes(struct vga_device
*vgadev
,
646 struct vga_device
*new_vgadev
, *conflict
;
648 old_decodes
= vgadev
->decodes
;
649 vgadev
->decodes
= new_decodes
;
651 pr_info("vgaarb: device changed decodes: PCI:%s,olddecodes=%s,decodes=%s:owns=%s\n",
652 pci_name(vgadev
->pdev
),
653 vga_iostate_to_str(old_decodes
),
654 vga_iostate_to_str(vgadev
->decodes
),
655 vga_iostate_to_str(vgadev
->owns
));
658 /* if we own the decodes we should move them along to
660 if ((vgadev
->owns
& old_decodes
) && (vga_count
> 1)) {
661 /* set us to own nothing */
662 vgadev
->owns
&= ~old_decodes
;
663 list_for_each_entry(new_vgadev
, &vga_list
, list
) {
664 if ((new_vgadev
!= vgadev
) &&
665 (new_vgadev
->decodes
& VGA_RSRC_LEGACY_MASK
)) {
666 pr_info("vgaarb: transferring owner from PCI:%s to PCI:%s\n", pci_name(vgadev
->pdev
), pci_name(new_vgadev
->pdev
));
667 conflict
= __vga_tryget(new_vgadev
, VGA_RSRC_LEGACY_MASK
);
669 __vga_put(new_vgadev
, VGA_RSRC_LEGACY_MASK
);
675 /* change decodes counter */
676 if (old_decodes
!= new_decodes
) {
677 if (new_decodes
& (VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
))
682 pr_debug("vgaarb: decoding count now is: %d\n", vga_decode_count
);
685 static void __vga_set_legacy_decoding(struct pci_dev
*pdev
, unsigned int decodes
, bool userspace
)
687 struct vga_device
*vgadev
;
690 decodes
&= VGA_RSRC_LEGACY_MASK
;
692 spin_lock_irqsave(&vga_lock
, flags
);
693 vgadev
= vgadev_find(pdev
);
697 /* don't let userspace futz with kernel driver decodes */
698 if (userspace
&& vgadev
->set_vga_decode
)
701 /* update the device decodes + counter */
702 vga_update_device_decodes(vgadev
, decodes
);
704 /* XXX if somebody is going from "doesn't decode" to "decodes" state
705 * here, additional care must be taken as we may have pending owner
706 * ship of non-legacy region ...
709 spin_unlock_irqrestore(&vga_lock
, flags
);
712 void vga_set_legacy_decoding(struct pci_dev
*pdev
, unsigned int decodes
)
714 __vga_set_legacy_decoding(pdev
, decodes
, false);
716 EXPORT_SYMBOL(vga_set_legacy_decoding
);
718 /* call with NULL to unregister */
719 int vga_client_register(struct pci_dev
*pdev
, void *cookie
,
720 void (*irq_set_state
)(void *cookie
, bool state
),
721 unsigned int (*set_vga_decode
)(void *cookie
, bool decode
))
724 struct vga_device
*vgadev
;
727 spin_lock_irqsave(&vga_lock
, flags
);
728 vgadev
= vgadev_find(pdev
);
732 vgadev
->irq_set_state
= irq_set_state
;
733 vgadev
->set_vga_decode
= set_vga_decode
;
734 vgadev
->cookie
= cookie
;
738 spin_unlock_irqrestore(&vga_lock
, flags
);
742 EXPORT_SYMBOL(vga_client_register
);
745 * Char driver implementation
749 * open : open user instance of the arbitrer. by default, it's
750 * attached to the default VGA device of the system.
752 * close : close user instance, release locks
754 * read : return a string indicating the status of the target.
755 * an IO state string is of the form {io,mem,io+mem,none},
756 * mc and ic are respectively mem and io lock counts (for
757 * debugging/diagnostic only). "decodes" indicate what the
758 * card currently decodes, "owns" indicates what is currently
759 * enabled on it, and "locks" indicates what is locked by this
760 * card. If the card is unplugged, we get "invalid" then for
761 * card_ID and an -ENODEV error is returned for any command
762 * until a new card is targeted
764 * "<card_ID>,decodes=<io_state>,owns=<io_state>,locks=<io_state> (ic,mc)"
766 * write : write a command to the arbiter. List of commands is:
768 * target <card_ID> : switch target to card <card_ID> (see below)
769 * lock <io_state> : acquires locks on target ("none" is invalid io_state)
770 * trylock <io_state> : non-blocking acquire locks on target
771 * unlock <io_state> : release locks on target
772 * unlock all : release all locks on target held by this user
773 * decodes <io_state> : set the legacy decoding attributes for the card
775 * poll : event if something change on any card (not just the target)
777 * card_ID is of the form "PCI:domain:bus:dev.fn". It can be set to "default"
778 * to go back to the system default card (TODO: not implemented yet).
779 * Currently, only PCI is supported as a prefix, but the userland API may
780 * support other bus types in the future, even if the current kernel
781 * implementation doesn't.
785 * The driver keeps track of which user has what locks on which card. It
786 * supports stacking, like the kernel one. This complexifies the implementation
787 * a bit, but makes the arbiter more tolerant to userspace problems and able
788 * to properly cleanup in all cases when a process dies.
789 * Currently, a max of 16 cards simultaneously can have locks issued from
790 * userspace for a given user (file descriptor instance) of the arbiter.
792 * If the device is hot-unplugged, there is a hook inside the module to notify
793 * they being added/removed in the system and automatically added/removed in
797 #define MAX_USER_CARDS CONFIG_VGA_ARB_MAX_GPUS
798 #define PCI_INVALID_CARD ((struct pci_dev *)-1UL)
801 * Each user has an array of these, tracking which cards have locks
803 struct vga_arb_user_card
{
804 struct pci_dev
*pdev
;
805 unsigned int mem_cnt
;
809 struct vga_arb_private
{
810 struct list_head list
;
811 struct pci_dev
*target
;
812 struct vga_arb_user_card cards
[MAX_USER_CARDS
];
816 static LIST_HEAD(vga_user_list
);
817 static DEFINE_SPINLOCK(vga_user_lock
);
821 * This function gets a string in the format: "PCI:domain:bus:dev.fn" and
822 * returns the respective values. If the string is not in this format,
825 static int vga_pci_str_to_vars(char *buf
, int count
, unsigned int *domain
,
826 unsigned int *bus
, unsigned int *devfn
)
829 unsigned int slot
, func
;
832 n
= sscanf(buf
, "PCI:%x:%x:%x.%x", domain
, bus
, &slot
, &func
);
836 *devfn
= PCI_DEVFN(slot
, func
);
841 static ssize_t
vga_arb_read(struct file
*file
, char __user
* buf
,
842 size_t count
, loff_t
*ppos
)
844 struct vga_arb_private
*priv
= file
->private_data
;
845 struct vga_device
*vgadev
;
846 struct pci_dev
*pdev
;
852 lbuf
= kmalloc(1024, GFP_KERNEL
);
856 /* Shields against vga_arb_device_card_gone (pci_dev going
857 * away), and allows access to vga list
859 spin_lock_irqsave(&vga_lock
, flags
);
861 /* If we are targeting the default, use it */
863 if (pdev
== NULL
|| pdev
== PCI_INVALID_CARD
) {
864 spin_unlock_irqrestore(&vga_lock
, flags
);
865 len
= sprintf(lbuf
, "invalid");
869 /* Find card vgadev structure */
870 vgadev
= vgadev_find(pdev
);
871 if (vgadev
== NULL
) {
872 /* Wow, it's not in the list, that shouldn't happen,
873 * let's fix us up and return invalid card
875 if (pdev
== priv
->target
)
876 vga_arb_device_card_gone(pdev
);
877 spin_unlock_irqrestore(&vga_lock
, flags
);
878 len
= sprintf(lbuf
, "invalid");
882 /* Fill the buffer with infos */
883 len
= snprintf(lbuf
, 1024,
884 "count:%d,PCI:%s,decodes=%s,owns=%s,locks=%s(%d:%d)\n",
885 vga_decode_count
, pci_name(pdev
),
886 vga_iostate_to_str(vgadev
->decodes
),
887 vga_iostate_to_str(vgadev
->owns
),
888 vga_iostate_to_str(vgadev
->locks
),
889 vgadev
->io_lock_cnt
, vgadev
->mem_lock_cnt
);
891 spin_unlock_irqrestore(&vga_lock
, flags
);
894 /* Copy that to user */
897 rc
= copy_to_user(buf
, lbuf
, len
);
905 * TODO: To avoid parsing inside kernel and to improve the speed we may
906 * consider use ioctl here
908 static ssize_t
vga_arb_write(struct file
*file
, const char __user
* buf
,
909 size_t count
, loff_t
*ppos
)
911 struct vga_arb_private
*priv
= file
->private_data
;
912 struct vga_arb_user_card
*uc
= NULL
;
913 struct pci_dev
*pdev
;
915 unsigned int io_state
;
917 char *kbuf
, *curr_pos
;
918 size_t remaining
= count
;
924 kbuf
= kmalloc(count
+ 1, GFP_KERNEL
);
928 if (copy_from_user(kbuf
, buf
, count
)) {
933 kbuf
[count
] = '\0'; /* Just to make sure... */
935 if (strncmp(curr_pos
, "lock ", 5) == 0) {
939 pr_debug("client 0x%p called 'lock'\n", priv
);
941 if (!vga_str_to_iostate(curr_pos
, remaining
, &io_state
)) {
945 if (io_state
== VGA_RSRC_NONE
) {
951 if (priv
->target
== NULL
) {
956 vga_get_uninterruptible(pdev
, io_state
);
958 /* Update the client's locks lists... */
959 for (i
= 0; i
< MAX_USER_CARDS
; i
++) {
960 if (priv
->cards
[i
].pdev
== pdev
) {
961 if (io_state
& VGA_RSRC_LEGACY_IO
)
962 priv
->cards
[i
].io_cnt
++;
963 if (io_state
& VGA_RSRC_LEGACY_MEM
)
964 priv
->cards
[i
].mem_cnt
++;
971 } else if (strncmp(curr_pos
, "unlock ", 7) == 0) {
975 pr_debug("client 0x%p called 'unlock'\n", priv
);
977 if (strncmp(curr_pos
, "all", 3) == 0)
978 io_state
= VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
;
980 if (!vga_str_to_iostate
981 (curr_pos
, remaining
, &io_state
)) {
986 if (io_state == VGA_RSRC_NONE) {
994 if (priv
->target
== NULL
) {
998 for (i
= 0; i
< MAX_USER_CARDS
; i
++) {
999 if (priv
->cards
[i
].pdev
== pdev
)
1000 uc
= &priv
->cards
[i
];
1008 if (io_state
& VGA_RSRC_LEGACY_IO
&& uc
->io_cnt
== 0) {
1013 if (io_state
& VGA_RSRC_LEGACY_MEM
&& uc
->mem_cnt
== 0) {
1018 vga_put(pdev
, io_state
);
1020 if (io_state
& VGA_RSRC_LEGACY_IO
)
1022 if (io_state
& VGA_RSRC_LEGACY_MEM
)
1027 } else if (strncmp(curr_pos
, "trylock ", 8) == 0) {
1031 pr_debug("client 0x%p called 'trylock'\n", priv
);
1033 if (!vga_str_to_iostate(curr_pos
, remaining
, &io_state
)) {
1038 if (io_state == VGA_RSRC_NONE) {
1044 pdev
= priv
->target
;
1045 if (priv
->target
== NULL
) {
1050 if (vga_tryget(pdev
, io_state
)) {
1051 /* Update the client's locks lists... */
1052 for (i
= 0; i
< MAX_USER_CARDS
; i
++) {
1053 if (priv
->cards
[i
].pdev
== pdev
) {
1054 if (io_state
& VGA_RSRC_LEGACY_IO
)
1055 priv
->cards
[i
].io_cnt
++;
1056 if (io_state
& VGA_RSRC_LEGACY_MEM
)
1057 priv
->cards
[i
].mem_cnt
++;
1068 } else if (strncmp(curr_pos
, "target ", 7) == 0) {
1069 struct pci_bus
*pbus
;
1070 unsigned int domain
, bus
, devfn
;
1071 struct vga_device
*vgadev
;
1075 pr_debug("client 0x%p called 'target'\n", priv
);
1076 /* if target is default */
1077 if (!strncmp(curr_pos
, "default", 7))
1078 pdev
= pci_dev_get(vga_default_device());
1080 if (!vga_pci_str_to_vars(curr_pos
, remaining
,
1081 &domain
, &bus
, &devfn
)) {
1085 pr_debug("vgaarb: %s ==> %x:%x:%x.%x\n", curr_pos
,
1086 domain
, bus
, PCI_SLOT(devfn
), PCI_FUNC(devfn
));
1088 pbus
= pci_find_bus(domain
, bus
);
1089 pr_debug("vgaarb: pbus %p\n", pbus
);
1091 pr_err("vgaarb: invalid PCI domain and/or bus address %x:%x\n",
1096 pdev
= pci_get_slot(pbus
, devfn
);
1097 pr_debug("vgaarb: pdev %p\n", pdev
);
1099 pr_err("vgaarb: invalid PCI address %x:%x\n",
1106 vgadev
= vgadev_find(pdev
);
1107 pr_debug("vgaarb: vgadev %p\n", vgadev
);
1108 if (vgadev
== NULL
) {
1109 pr_err("vgaarb: this pci device is not a vga device\n");
1115 priv
->target
= pdev
;
1116 for (i
= 0; i
< MAX_USER_CARDS
; i
++) {
1117 if (priv
->cards
[i
].pdev
== pdev
)
1119 if (priv
->cards
[i
].pdev
== NULL
) {
1120 priv
->cards
[i
].pdev
= pdev
;
1121 priv
->cards
[i
].io_cnt
= 0;
1122 priv
->cards
[i
].mem_cnt
= 0;
1126 if (i
== MAX_USER_CARDS
) {
1127 pr_err("vgaarb: maximum user cards (%d) number reached!\n",
1130 /* XXX: which value to return? */
1140 } else if (strncmp(curr_pos
, "decodes ", 8) == 0) {
1143 pr_debug("vgaarb: client 0x%p called 'decodes'\n", priv
);
1145 if (!vga_str_to_iostate(curr_pos
, remaining
, &io_state
)) {
1149 pdev
= priv
->target
;
1150 if (priv
->target
== NULL
) {
1155 __vga_set_legacy_decoding(pdev
, io_state
, true);
1159 /* If we got here, the message written is not part of the protocol! */
1168 static unsigned int vga_arb_fpoll(struct file
*file
, poll_table
* wait
)
1170 struct vga_arb_private
*priv
= file
->private_data
;
1172 pr_debug("%s\n", __func__
);
1176 poll_wait(file
, &vga_wait_queue
, wait
);
1180 static int vga_arb_open(struct inode
*inode
, struct file
*file
)
1182 struct vga_arb_private
*priv
;
1183 unsigned long flags
;
1185 pr_debug("%s\n", __func__
);
1187 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
1190 spin_lock_init(&priv
->lock
);
1191 file
->private_data
= priv
;
1193 spin_lock_irqsave(&vga_user_lock
, flags
);
1194 list_add(&priv
->list
, &vga_user_list
);
1195 spin_unlock_irqrestore(&vga_user_lock
, flags
);
1197 /* Set the client' lists of locks */
1198 priv
->target
= vga_default_device(); /* Maybe this is still null! */
1199 priv
->cards
[0].pdev
= priv
->target
;
1200 priv
->cards
[0].io_cnt
= 0;
1201 priv
->cards
[0].mem_cnt
= 0;
1207 static int vga_arb_release(struct inode
*inode
, struct file
*file
)
1209 struct vga_arb_private
*priv
= file
->private_data
;
1210 struct vga_arb_user_card
*uc
;
1211 unsigned long flags
;
1214 pr_debug("%s\n", __func__
);
1219 spin_lock_irqsave(&vga_user_lock
, flags
);
1220 list_del(&priv
->list
);
1221 for (i
= 0; i
< MAX_USER_CARDS
; i
++) {
1222 uc
= &priv
->cards
[i
];
1223 if (uc
->pdev
== NULL
)
1225 pr_debug("uc->io_cnt == %d, uc->mem_cnt == %d\n",
1226 uc
->io_cnt
, uc
->mem_cnt
);
1227 while (uc
->io_cnt
--)
1228 vga_put(uc
->pdev
, VGA_RSRC_LEGACY_IO
);
1229 while (uc
->mem_cnt
--)
1230 vga_put(uc
->pdev
, VGA_RSRC_LEGACY_MEM
);
1232 spin_unlock_irqrestore(&vga_user_lock
, flags
);
1239 static void vga_arb_device_card_gone(struct pci_dev
*pdev
)
1244 * callback any registered clients to let them know we have a
1245 * change in VGA cards
1247 static void vga_arbiter_notify_clients(void)
1249 struct vga_device
*vgadev
;
1250 unsigned long flags
;
1251 uint32_t new_decodes
;
1254 if (!vga_arbiter_used
)
1257 spin_lock_irqsave(&vga_lock
, flags
);
1258 list_for_each_entry(vgadev
, &vga_list
, list
) {
1263 if (vgadev
->set_vga_decode
) {
1264 new_decodes
= vgadev
->set_vga_decode(vgadev
->cookie
, new_state
);
1265 vga_update_device_decodes(vgadev
, new_decodes
);
1268 spin_unlock_irqrestore(&vga_lock
, flags
);
1271 static int pci_notify(struct notifier_block
*nb
, unsigned long action
,
1274 struct device
*dev
= data
;
1275 struct pci_dev
*pdev
= to_pci_dev(dev
);
1276 bool notify
= false;
1278 pr_debug("%s\n", __func__
);
1280 /* For now we're only intereted in devices added and removed. I didn't
1281 * test this thing here, so someone needs to double check for the
1282 * cases of hotplugable vga cards. */
1283 if (action
== BUS_NOTIFY_ADD_DEVICE
)
1284 notify
= vga_arbiter_add_pci_device(pdev
);
1285 else if (action
== BUS_NOTIFY_DEL_DEVICE
)
1286 notify
= vga_arbiter_del_pci_device(pdev
);
1289 vga_arbiter_notify_clients();
1293 static struct notifier_block pci_notifier
= {
1294 .notifier_call
= pci_notify
,
1297 static const struct file_operations vga_arb_device_fops
= {
1298 .read
= vga_arb_read
,
1299 .write
= vga_arb_write
,
1300 .poll
= vga_arb_fpoll
,
1301 .open
= vga_arb_open
,
1302 .release
= vga_arb_release
,
1303 .llseek
= noop_llseek
,
1306 static struct miscdevice vga_arb_device
= {
1307 MISC_DYNAMIC_MINOR
, "vga_arbiter", &vga_arb_device_fops
1310 static int __init
vga_arb_device_init(void)
1313 struct pci_dev
*pdev
;
1314 struct vga_device
*vgadev
;
1316 rc
= misc_register(&vga_arb_device
);
1318 pr_err("vgaarb: error %d registering device\n", rc
);
1320 bus_register_notifier(&pci_bus_type
, &pci_notifier
);
1322 /* We add all pci devices satisfying vga class in the arbiter by
1326 pci_get_subsys(PCI_ANY_ID
, PCI_ANY_ID
, PCI_ANY_ID
,
1327 PCI_ANY_ID
, pdev
)) != NULL
)
1328 vga_arbiter_add_pci_device(pdev
);
1330 pr_info("vgaarb: loaded\n");
1332 list_for_each_entry(vgadev
, &vga_list
, list
) {
1333 if (vgadev
->bridge_has_one_vga
)
1334 pr_info("vgaarb: bridge control possible %s\n", pci_name(vgadev
->pdev
));
1336 pr_info("vgaarb: no bridge control possible %s\n", pci_name(vgadev
->pdev
));
1340 subsys_initcall(vga_arb_device_init
);