2 * vgaarb.c: Implements the VGA arbitration. For details refer to
3 * Documentation/gpu/vgaarbiter.rst
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 #define pr_fmt(fmt) "vgaarb: " fmt
34 #define vgaarb_dbg(dev, fmt, arg...) dev_dbg(dev, "vgaarb: " fmt, ##arg)
35 #define vgaarb_info(dev, fmt, arg...) dev_info(dev, "vgaarb: " fmt, ##arg)
36 #define vgaarb_err(dev, fmt, arg...) dev_err(dev, "vgaarb: " fmt, ##arg)
38 #include <linux/module.h>
39 #include <linux/kernel.h>
40 #include <linux/pci.h>
41 #include <linux/errno.h>
42 #include <linux/init.h>
43 #include <linux/list.h>
44 #include <linux/sched/signal.h>
45 #include <linux/wait.h>
46 #include <linux/spinlock.h>
47 #include <linux/poll.h>
48 #include <linux/miscdevice.h>
49 #include <linux/slab.h>
50 #include <linux/screen_info.h>
52 #include <linux/console.h>
54 #include <linux/uaccess.h>
56 #include <linux/vgaarb.h>
58 static void vga_arbiter_notify_clients(void);
60 * We keep a list of all vga devices in the system to speed
61 * up the various operations of the arbiter
64 struct list_head list
;
66 unsigned int decodes
; /* what does it decodes */
67 unsigned int owns
; /* what does it owns */
68 unsigned int locks
; /* what does it locks */
69 unsigned int io_lock_cnt
; /* legacy IO lock count */
70 unsigned int mem_lock_cnt
; /* legacy MEM lock count */
71 unsigned int io_norm_cnt
; /* normal IO count */
72 unsigned int mem_norm_cnt
; /* normal MEM count */
73 bool bridge_has_one_vga
;
74 /* allow IRQ enable/disable hook */
76 void (*irq_set_state
)(void *cookie
, bool enable
);
77 unsigned int (*set_vga_decode
)(void *cookie
, bool decode
);
80 static LIST_HEAD(vga_list
);
81 static int vga_count
, vga_decode_count
;
82 static bool vga_arbiter_used
;
83 static DEFINE_SPINLOCK(vga_lock
);
84 static DECLARE_WAIT_QUEUE_HEAD(vga_wait_queue
);
87 static const char *vga_iostate_to_str(unsigned int iostate
)
89 /* Ignore VGA_RSRC_IO and VGA_RSRC_MEM */
90 iostate
&= VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
;
92 case VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
:
94 case VGA_RSRC_LEGACY_IO
:
96 case VGA_RSRC_LEGACY_MEM
:
102 static int vga_str_to_iostate(char *buf
, int str_size
, int *io_state
)
104 /* we could in theory hand out locks on IO and mem
105 * separately to userspace but it can cause deadlocks */
106 if (strncmp(buf
, "none", 4) == 0) {
107 *io_state
= VGA_RSRC_NONE
;
111 /* XXX We're not chekcing the str_size! */
112 if (strncmp(buf
, "io+mem", 6) == 0)
114 else if (strncmp(buf
, "io", 2) == 0)
116 else if (strncmp(buf
, "mem", 3) == 0)
120 *io_state
= VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
;
124 /* this is only used a cookie - it should not be dereferenced */
125 static struct pci_dev
*vga_default
;
127 static void vga_arb_device_card_gone(struct pci_dev
*pdev
);
129 /* Find somebody in our list */
130 static struct vga_device
*vgadev_find(struct pci_dev
*pdev
)
132 struct vga_device
*vgadev
;
134 list_for_each_entry(vgadev
, &vga_list
, list
)
135 if (pdev
== vgadev
->pdev
)
141 * vga_default_device - return the default VGA device, for vgacon
143 * This can be defined by the platform. The default implementation
144 * is rather dumb and will probably only work properly on single
145 * vga card setups and/or x86 platforms.
147 * If your VGA default device is not PCI, you'll have to return
148 * NULL here. In this case, I assume it will not conflict with
149 * any PCI card. If this is not true, I'll have to define two archs
150 * hooks for enabling/disabling the VGA default device if that is
151 * possible. This may be a problem with real _ISA_ VGA cards, in
152 * addition to a PCI one. I don't know at this point how to deal
153 * with that card. Can theirs IOs be disabled at all ? If not, then
154 * I suppose it's a matter of having the proper arch hook telling
155 * us about it, so we basically never allow anybody to succeed a
158 struct pci_dev
*vga_default_device(void)
162 EXPORT_SYMBOL_GPL(vga_default_device
);
164 void vga_set_default_device(struct pci_dev
*pdev
)
166 if (vga_default
== pdev
)
169 pci_dev_put(vga_default
);
170 vga_default
= pci_dev_get(pdev
);
174 * vga_remove_vgacon - deactivete vga console
176 * Unbind and unregister vgacon in case pdev is the default vga
177 * device. Can be called by gpu drivers on initialization to make
178 * sure vga register access done by vgacon will not disturb the
183 #if !defined(CONFIG_VGA_CONSOLE)
184 int vga_remove_vgacon(struct pci_dev
*pdev
)
188 #elif !defined(CONFIG_DUMMY_CONSOLE)
189 int vga_remove_vgacon(struct pci_dev
*pdev
)
194 int vga_remove_vgacon(struct pci_dev
*pdev
)
198 if (pdev
!= vga_default
)
200 vgaarb_info(&pdev
->dev
, "deactivate vga console\n");
203 if (con_is_bound(&vga_con
))
204 ret
= do_take_over_console(&dummy_con
, 0,
205 MAX_NR_CONSOLES
- 1, 1);
207 ret
= do_unregister_con_driver(&vga_con
);
209 /* Ignore "already unregistered". */
218 EXPORT_SYMBOL(vga_remove_vgacon
);
220 static inline void vga_irq_set_state(struct vga_device
*vgadev
, bool state
)
222 if (vgadev
->irq_set_state
)
223 vgadev
->irq_set_state(vgadev
->cookie
, state
);
227 /* If we don't ever use VGA arb we should avoid
228 turning off anything anywhere due to old X servers getting
229 confused about the boot device not being VGA */
230 static void vga_check_first_use(void)
232 /* we should inform all GPUs in the system that
233 * VGA arb has occurred and to try and disable resources
235 if (!vga_arbiter_used
) {
236 vga_arbiter_used
= true;
237 vga_arbiter_notify_clients();
241 static struct vga_device
*__vga_tryget(struct vga_device
*vgadev
,
244 struct device
*dev
= &vgadev
->pdev
->dev
;
245 unsigned int wants
, legacy_wants
, match
;
246 struct vga_device
*conflict
;
247 unsigned int pci_bits
;
250 /* Account for "normal" resources to lock. If we decode the legacy,
251 * counterpart, we need to request it as well
253 if ((rsrc
& VGA_RSRC_NORMAL_IO
) &&
254 (vgadev
->decodes
& VGA_RSRC_LEGACY_IO
))
255 rsrc
|= VGA_RSRC_LEGACY_IO
;
256 if ((rsrc
& VGA_RSRC_NORMAL_MEM
) &&
257 (vgadev
->decodes
& VGA_RSRC_LEGACY_MEM
))
258 rsrc
|= VGA_RSRC_LEGACY_MEM
;
260 vgaarb_dbg(dev
, "%s: %d\n", __func__
, rsrc
);
261 vgaarb_dbg(dev
, "%s: owns: %d\n", __func__
, vgadev
->owns
);
263 /* Check what resources we need to acquire */
264 wants
= rsrc
& ~vgadev
->owns
;
266 /* We already own everything, just mark locked & bye bye */
270 /* We don't need to request a legacy resource, we just enable
271 * appropriate decoding and go
273 legacy_wants
= wants
& VGA_RSRC_LEGACY_MASK
;
274 if (legacy_wants
== 0)
277 /* Ok, we don't, let's find out how we need to kick off */
278 list_for_each_entry(conflict
, &vga_list
, list
) {
279 unsigned int lwants
= legacy_wants
;
280 unsigned int change_bridge
= 0;
282 /* Don't conflict with myself */
283 if (vgadev
== conflict
)
286 /* Check if the architecture allows a conflict between those
287 * 2 devices or if they are on separate domains
289 if (!vga_conflicts(vgadev
->pdev
, conflict
->pdev
))
292 /* We have a possible conflict. before we go further, we must
293 * check if we sit on the same bus as the conflicting device.
294 * if we don't, then we must tie both IO and MEM resources
295 * together since there is only a single bit controlling
296 * VGA forwarding on P2P bridges
298 if (vgadev
->pdev
->bus
!= conflict
->pdev
->bus
) {
300 lwants
= VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
;
303 /* Check if the guy has a lock on the resource. If he does,
304 * return the conflicting entry
306 if (conflict
->locks
& lwants
)
309 /* Ok, now check if it owns the resource we want. We can
310 * lock resources that are not decoded, therefore a device
311 * can own resources it doesn't decode.
313 match
= lwants
& conflict
->owns
;
317 /* looks like he doesn't have a lock, we can steal
324 /* If we can't control legacy resources via the bridge, we
325 * also need to disable normal decoding.
327 if (!conflict
->bridge_has_one_vga
) {
328 if ((match
& conflict
->decodes
) & VGA_RSRC_LEGACY_MEM
)
329 pci_bits
|= PCI_COMMAND_MEMORY
;
330 if ((match
& conflict
->decodes
) & VGA_RSRC_LEGACY_IO
)
331 pci_bits
|= PCI_COMMAND_IO
;
334 vga_irq_set_state(conflict
, false);
335 flags
|= PCI_VGA_STATE_CHANGE_DECODES
;
340 flags
|= PCI_VGA_STATE_CHANGE_BRIDGE
;
342 pci_set_vga_state(conflict
->pdev
, false, pci_bits
, flags
);
343 conflict
->owns
&= ~match
;
345 /* If we disabled normal decoding, reflect it in owns */
346 if (pci_bits
& PCI_COMMAND_MEMORY
)
347 conflict
->owns
&= ~VGA_RSRC_NORMAL_MEM
;
348 if (pci_bits
& PCI_COMMAND_IO
)
349 conflict
->owns
&= ~VGA_RSRC_NORMAL_IO
;
353 /* ok dude, we got it, everybody conflicting has been disabled, let's
354 * enable us. Mark any bits in "owns" regardless of whether we
355 * decoded them. We can lock resources we don't decode, therefore
356 * we must track them via "owns".
361 if (!vgadev
->bridge_has_one_vga
) {
362 flags
|= PCI_VGA_STATE_CHANGE_DECODES
;
363 if (wants
& (VGA_RSRC_LEGACY_MEM
|VGA_RSRC_NORMAL_MEM
))
364 pci_bits
|= PCI_COMMAND_MEMORY
;
365 if (wants
& (VGA_RSRC_LEGACY_IO
|VGA_RSRC_NORMAL_IO
))
366 pci_bits
|= PCI_COMMAND_IO
;
368 if (wants
& VGA_RSRC_LEGACY_MASK
)
369 flags
|= PCI_VGA_STATE_CHANGE_BRIDGE
;
371 pci_set_vga_state(vgadev
->pdev
, true, pci_bits
, flags
);
373 if (!vgadev
->bridge_has_one_vga
)
374 vga_irq_set_state(vgadev
, true);
376 vgadev
->owns
|= wants
;
378 vgadev
->locks
|= (rsrc
& VGA_RSRC_LEGACY_MASK
);
379 if (rsrc
& VGA_RSRC_LEGACY_IO
)
380 vgadev
->io_lock_cnt
++;
381 if (rsrc
& VGA_RSRC_LEGACY_MEM
)
382 vgadev
->mem_lock_cnt
++;
383 if (rsrc
& VGA_RSRC_NORMAL_IO
)
384 vgadev
->io_norm_cnt
++;
385 if (rsrc
& VGA_RSRC_NORMAL_MEM
)
386 vgadev
->mem_norm_cnt
++;
391 static void __vga_put(struct vga_device
*vgadev
, unsigned int rsrc
)
393 struct device
*dev
= &vgadev
->pdev
->dev
;
394 unsigned int old_locks
= vgadev
->locks
;
396 vgaarb_dbg(dev
, "%s\n", __func__
);
398 /* Update our counters, and account for equivalent legacy resources
401 if ((rsrc
& VGA_RSRC_NORMAL_IO
) && vgadev
->io_norm_cnt
> 0) {
402 vgadev
->io_norm_cnt
--;
403 if (vgadev
->decodes
& VGA_RSRC_LEGACY_IO
)
404 rsrc
|= VGA_RSRC_LEGACY_IO
;
406 if ((rsrc
& VGA_RSRC_NORMAL_MEM
) && vgadev
->mem_norm_cnt
> 0) {
407 vgadev
->mem_norm_cnt
--;
408 if (vgadev
->decodes
& VGA_RSRC_LEGACY_MEM
)
409 rsrc
|= VGA_RSRC_LEGACY_MEM
;
411 if ((rsrc
& VGA_RSRC_LEGACY_IO
) && vgadev
->io_lock_cnt
> 0)
412 vgadev
->io_lock_cnt
--;
413 if ((rsrc
& VGA_RSRC_LEGACY_MEM
) && vgadev
->mem_lock_cnt
> 0)
414 vgadev
->mem_lock_cnt
--;
416 /* Just clear lock bits, we do lazy operations so we don't really
417 * have to bother about anything else at this point
419 if (vgadev
->io_lock_cnt
== 0)
420 vgadev
->locks
&= ~VGA_RSRC_LEGACY_IO
;
421 if (vgadev
->mem_lock_cnt
== 0)
422 vgadev
->locks
&= ~VGA_RSRC_LEGACY_MEM
;
424 /* Kick the wait queue in case somebody was waiting if we actually
427 if (old_locks
!= vgadev
->locks
)
428 wake_up_all(&vga_wait_queue
);
432 * vga_get - acquire & locks VGA resources
433 * @pdev: pci device of the VGA card or NULL for the system default
434 * @rsrc: bit mask of resources to acquire and lock
435 * @interruptible: blocking should be interruptible by signals ?
437 * This function acquires VGA resources for the given card and mark those
438 * resources locked. If the resource requested are "normal" (and not legacy)
439 * resources, the arbiter will first check whether the card is doing legacy
440 * decoding for that type of resource. If yes, the lock is "converted" into a
441 * legacy resource lock.
443 * The arbiter will first look for all VGA cards that might conflict and disable
444 * their IOs and/or Memory access, including VGA forwarding on P2P bridges if
445 * necessary, so that the requested resources can be used. Then, the card is
446 * marked as locking these resources and the IO and/or Memory accesses are
447 * enabled on the card (including VGA forwarding on parent P2P bridges if any).
449 * This function will block if some conflicting card is already locking one of
450 * the required resources (or any resource on a different bus segment, since P2P
451 * bridges don't differentiate VGA memory and IO afaik). You can indicate
452 * whether this blocking should be interruptible by a signal (for userland
455 * Must not be called at interrupt time or in atomic context. If the card
456 * already owns the resources, the function succeeds. Nested calls are
457 * supported (a per-resource counter is maintained)
459 * On success, release the VGA resource again with vga_put().
463 * 0 on success, negative error code on failure.
465 int vga_get(struct pci_dev
*pdev
, unsigned int rsrc
, int interruptible
)
467 struct vga_device
*vgadev
, *conflict
;
469 wait_queue_entry_t wait
;
472 vga_check_first_use();
473 /* The one who calls us should check for this, but lets be sure... */
475 pdev
= vga_default_device();
480 spin_lock_irqsave(&vga_lock
, flags
);
481 vgadev
= vgadev_find(pdev
);
482 if (vgadev
== NULL
) {
483 spin_unlock_irqrestore(&vga_lock
, flags
);
487 conflict
= __vga_tryget(vgadev
, rsrc
);
488 spin_unlock_irqrestore(&vga_lock
, flags
);
489 if (conflict
== NULL
)
493 /* We have a conflict, we wait until somebody kicks the
494 * work queue. Currently we have one work queue that we
495 * kick each time some resources are released, but it would
496 * be fairly easy to have a per device one so that we only
497 * need to attach to the conflicting device
499 init_waitqueue_entry(&wait
, current
);
500 add_wait_queue(&vga_wait_queue
, &wait
);
501 set_current_state(interruptible
?
503 TASK_UNINTERRUPTIBLE
);
504 if (interruptible
&& signal_pending(current
)) {
505 __set_current_state(TASK_RUNNING
);
506 remove_wait_queue(&vga_wait_queue
, &wait
);
511 remove_wait_queue(&vga_wait_queue
, &wait
);
515 EXPORT_SYMBOL(vga_get
);
518 * vga_tryget - try to acquire & lock legacy VGA resources
519 * @pdev: pci devivce of VGA card or NULL for system default
520 * @rsrc: bit mask of resources to acquire and lock
522 * This function performs the same operation as vga_get(), but will return an
523 * error (-EBUSY) instead of blocking if the resources are already locked by
524 * another card. It can be called in any context
526 * On success, release the VGA resource again with vga_put().
530 * 0 on success, negative error code on failure.
532 static int vga_tryget(struct pci_dev
*pdev
, unsigned int rsrc
)
534 struct vga_device
*vgadev
;
538 vga_check_first_use();
540 /* The one who calls us should check for this, but lets be sure... */
542 pdev
= vga_default_device();
545 spin_lock_irqsave(&vga_lock
, flags
);
546 vgadev
= vgadev_find(pdev
);
547 if (vgadev
== NULL
) {
551 if (__vga_tryget(vgadev
, rsrc
))
554 spin_unlock_irqrestore(&vga_lock
, flags
);
559 * vga_put - release lock on legacy VGA resources
560 * @pdev: pci device of VGA card or NULL for system default
561 * @rsrc: but mask of resource to release
563 * This fuction releases resources previously locked by vga_get() or
564 * vga_tryget(). The resources aren't disabled right away, so that a subsequence
565 * vga_get() on the same card will succeed immediately. Resources have a
566 * counter, so locks are only released if the counter reaches 0.
568 void vga_put(struct pci_dev
*pdev
, unsigned int rsrc
)
570 struct vga_device
*vgadev
;
573 /* The one who calls us should check for this, but lets be sure... */
575 pdev
= vga_default_device();
578 spin_lock_irqsave(&vga_lock
, flags
);
579 vgadev
= vgadev_find(pdev
);
582 __vga_put(vgadev
, rsrc
);
584 spin_unlock_irqrestore(&vga_lock
, flags
);
586 EXPORT_SYMBOL(vga_put
);
589 * Rules for using a bridge to control a VGA descendant decoding: if a bridge
590 * has only one VGA descendant then it can be used to control the VGA routing
591 * for that device. It should always use the bridge closest to the device to
592 * control it. If a bridge has a direct VGA descendant, but also have a sub-
593 * bridge VGA descendant then we cannot use that bridge to control the direct
594 * VGA descendant. So for every device we register, we need to iterate all
595 * its parent bridges so we can invalidate any devices using them properly.
597 static void vga_arbiter_check_bridge_sharing(struct vga_device
*vgadev
)
599 struct vga_device
*same_bridge_vgadev
;
600 struct pci_bus
*new_bus
, *bus
;
601 struct pci_dev
*new_bridge
, *bridge
;
603 vgadev
->bridge_has_one_vga
= true;
605 if (list_empty(&vga_list
))
608 /* okay iterate the new devices bridge hierarachy */
609 new_bus
= vgadev
->pdev
->bus
;
611 new_bridge
= new_bus
->self
;
613 /* go through list of devices already registered */
614 list_for_each_entry(same_bridge_vgadev
, &vga_list
, list
) {
615 bus
= same_bridge_vgadev
->pdev
->bus
;
618 /* see if the share a bridge with this device */
619 if (new_bridge
== bridge
) {
621 * If their direct parent bridge is the same
622 * as any bridge of this device then it can't
623 * be used for that device.
625 same_bridge_vgadev
->bridge_has_one_vga
= false;
629 * Now iterate the previous devices bridge hierarchy.
630 * If the new devices parent bridge is in the other
631 * devices hierarchy then we can't use it to control
637 if (bridge
&& bridge
== vgadev
->pdev
->bus
->self
)
638 vgadev
->bridge_has_one_vga
= false;
643 new_bus
= new_bus
->parent
;
648 * Currently, we assume that the "initial" setup of the system is
649 * not sane, that is we come up with conflicting devices and let
650 * the arbiter's client decides if devices decodes or not legacy
653 static bool vga_arbiter_add_pci_device(struct pci_dev
*pdev
)
655 struct vga_device
*vgadev
;
658 struct pci_dev
*bridge
;
661 /* Only deal with VGA class devices */
662 if ((pdev
->class >> 8) != PCI_CLASS_DISPLAY_VGA
)
665 /* Allocate structure */
666 vgadev
= kzalloc(sizeof(struct vga_device
), GFP_KERNEL
);
667 if (vgadev
== NULL
) {
668 vgaarb_err(&pdev
->dev
, "failed to allocate VGA arbiter data\n");
670 * What to do on allocation failure ? For now, let's just do
671 * nothing, I'm not sure there is anything saner to be done.
676 /* Take lock & check for duplicates */
677 spin_lock_irqsave(&vga_lock
, flags
);
678 if (vgadev_find(pdev
) != NULL
) {
684 /* By default, assume we decode everything */
685 vgadev
->decodes
= VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
|
686 VGA_RSRC_NORMAL_IO
| VGA_RSRC_NORMAL_MEM
;
688 /* by default mark it as decoding */
690 /* Mark that we "own" resources based on our enables, we will
691 * clear that below if the bridge isn't forwarding
693 pci_read_config_word(pdev
, PCI_COMMAND
, &cmd
);
694 if (cmd
& PCI_COMMAND_IO
)
695 vgadev
->owns
|= VGA_RSRC_LEGACY_IO
;
696 if (cmd
& PCI_COMMAND_MEMORY
)
697 vgadev
->owns
|= VGA_RSRC_LEGACY_MEM
;
699 /* Check if VGA cycles can get down to us */
706 pci_read_config_word(bridge
, PCI_BRIDGE_CONTROL
, &l
);
707 if (!(l
& PCI_BRIDGE_CTL_VGA
)) {
715 /* Deal with VGA default device. Use first enabled one
716 * by default if arch doesn't have it's own hook
718 if (vga_default
== NULL
&&
719 ((vgadev
->owns
& VGA_RSRC_LEGACY_MASK
) == VGA_RSRC_LEGACY_MASK
)) {
720 vgaarb_info(&pdev
->dev
, "setting as boot VGA device\n");
721 vga_set_default_device(pdev
);
724 vga_arbiter_check_bridge_sharing(vgadev
);
726 /* Add to the list */
727 list_add_tail(&vgadev
->list
, &vga_list
);
729 vgaarb_info(&pdev
->dev
, "VGA device added: decodes=%s,owns=%s,locks=%s\n",
730 vga_iostate_to_str(vgadev
->decodes
),
731 vga_iostate_to_str(vgadev
->owns
),
732 vga_iostate_to_str(vgadev
->locks
));
734 spin_unlock_irqrestore(&vga_lock
, flags
);
737 spin_unlock_irqrestore(&vga_lock
, flags
);
742 static bool vga_arbiter_del_pci_device(struct pci_dev
*pdev
)
744 struct vga_device
*vgadev
;
748 spin_lock_irqsave(&vga_lock
, flags
);
749 vgadev
= vgadev_find(pdev
);
750 if (vgadev
== NULL
) {
755 if (vga_default
== pdev
)
756 vga_set_default_device(NULL
);
758 if (vgadev
->decodes
& (VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
))
761 /* Remove entry from list */
762 list_del(&vgadev
->list
);
764 /* Notify userland driver that the device is gone so it discards
765 * it's copies of the pci_dev pointer
767 vga_arb_device_card_gone(pdev
);
769 /* Wake up all possible waiters */
770 wake_up_all(&vga_wait_queue
);
772 spin_unlock_irqrestore(&vga_lock
, flags
);
777 /* this is called with the lock */
778 static inline void vga_update_device_decodes(struct vga_device
*vgadev
,
781 struct device
*dev
= &vgadev
->pdev
->dev
;
782 int old_decodes
, decodes_removed
, decodes_unlocked
;
784 old_decodes
= vgadev
->decodes
;
785 decodes_removed
= ~new_decodes
& old_decodes
;
786 decodes_unlocked
= vgadev
->locks
& decodes_removed
;
787 vgadev
->decodes
= new_decodes
;
789 vgaarb_info(dev
, "changed VGA decodes: olddecodes=%s,decodes=%s:owns=%s\n",
790 vga_iostate_to_str(old_decodes
),
791 vga_iostate_to_str(vgadev
->decodes
),
792 vga_iostate_to_str(vgadev
->owns
));
794 /* if we removed locked decodes, lock count goes to zero, and release */
795 if (decodes_unlocked
) {
796 if (decodes_unlocked
& VGA_RSRC_LEGACY_IO
)
797 vgadev
->io_lock_cnt
= 0;
798 if (decodes_unlocked
& VGA_RSRC_LEGACY_MEM
)
799 vgadev
->mem_lock_cnt
= 0;
800 __vga_put(vgadev
, decodes_unlocked
);
803 /* change decodes counter */
804 if (old_decodes
& VGA_RSRC_LEGACY_MASK
&&
805 !(new_decodes
& VGA_RSRC_LEGACY_MASK
))
807 if (!(old_decodes
& VGA_RSRC_LEGACY_MASK
) &&
808 new_decodes
& VGA_RSRC_LEGACY_MASK
)
810 vgaarb_dbg(dev
, "decoding count now is: %d\n", vga_decode_count
);
813 static void __vga_set_legacy_decoding(struct pci_dev
*pdev
,
814 unsigned int decodes
,
817 struct vga_device
*vgadev
;
820 decodes
&= VGA_RSRC_LEGACY_MASK
;
822 spin_lock_irqsave(&vga_lock
, flags
);
823 vgadev
= vgadev_find(pdev
);
827 /* don't let userspace futz with kernel driver decodes */
828 if (userspace
&& vgadev
->set_vga_decode
)
831 /* update the device decodes + counter */
832 vga_update_device_decodes(vgadev
, decodes
);
834 /* XXX if somebody is going from "doesn't decode" to "decodes" state
835 * here, additional care must be taken as we may have pending owner
836 * ship of non-legacy region ...
839 spin_unlock_irqrestore(&vga_lock
, flags
);
842 void vga_set_legacy_decoding(struct pci_dev
*pdev
, unsigned int decodes
)
844 __vga_set_legacy_decoding(pdev
, decodes
, false);
846 EXPORT_SYMBOL(vga_set_legacy_decoding
);
849 * vga_client_register - register or unregister a VGA arbitration client
850 * @pdev: pci device of the VGA client
851 * @cookie: client cookie to be used in callbacks
852 * @irq_set_state: irq state change callback
853 * @set_vga_decode: vga decode change callback
855 * Clients have two callback mechanisms they can use.
857 * @irq_set_state callback: If a client can't disable its GPUs VGA
858 * resources, then we need to be able to ask it to turn off its irqs when we
859 * turn off its mem and io decoding.
861 * @set_vga_decode callback: If a client can disable its GPU VGA resource, it
862 * will get a callback from this to set the encode/decode state.
864 * Rationale: we cannot disable VGA decode resources unconditionally some single
865 * GPU laptops seem to require ACPI or BIOS access to the VGA registers to
866 * control things like backlights etc. Hopefully newer multi-GPU laptops do
867 * something saner, and desktops won't have any special ACPI for this. The
868 * driver will get a callback when VGA arbitration is first used by userspace
869 * since some older X servers have issues.
871 * This function does not check whether a client for @pdev has been registered
874 * To unregister just call this function with @irq_set_state and @set_vga_decode
875 * both set to NULL for the same @pdev as originally used to register them.
877 * Returns: 0 on success, -1 on failure
879 int vga_client_register(struct pci_dev
*pdev
, void *cookie
,
880 void (*irq_set_state
)(void *cookie
, bool state
),
881 unsigned int (*set_vga_decode
)(void *cookie
,
885 struct vga_device
*vgadev
;
888 spin_lock_irqsave(&vga_lock
, flags
);
889 vgadev
= vgadev_find(pdev
);
893 vgadev
->irq_set_state
= irq_set_state
;
894 vgadev
->set_vga_decode
= set_vga_decode
;
895 vgadev
->cookie
= cookie
;
899 spin_unlock_irqrestore(&vga_lock
, flags
);
903 EXPORT_SYMBOL(vga_client_register
);
906 * Char driver implementation
910 * open : open user instance of the arbitrer. by default, it's
911 * attached to the default VGA device of the system.
913 * close : close user instance, release locks
915 * read : return a string indicating the status of the target.
916 * an IO state string is of the form {io,mem,io+mem,none},
917 * mc and ic are respectively mem and io lock counts (for
918 * debugging/diagnostic only). "decodes" indicate what the
919 * card currently decodes, "owns" indicates what is currently
920 * enabled on it, and "locks" indicates what is locked by this
921 * card. If the card is unplugged, we get "invalid" then for
922 * card_ID and an -ENODEV error is returned for any command
923 * until a new card is targeted
925 * "<card_ID>,decodes=<io_state>,owns=<io_state>,locks=<io_state> (ic,mc)"
927 * write : write a command to the arbiter. List of commands is:
929 * target <card_ID> : switch target to card <card_ID> (see below)
930 * lock <io_state> : acquires locks on target ("none" is invalid io_state)
931 * trylock <io_state> : non-blocking acquire locks on target
932 * unlock <io_state> : release locks on target
933 * unlock all : release all locks on target held by this user
934 * decodes <io_state> : set the legacy decoding attributes for the card
936 * poll : event if something change on any card (not just the target)
938 * card_ID is of the form "PCI:domain:bus:dev.fn". It can be set to "default"
939 * to go back to the system default card (TODO: not implemented yet).
940 * Currently, only PCI is supported as a prefix, but the userland API may
941 * support other bus types in the future, even if the current kernel
942 * implementation doesn't.
946 * The driver keeps track of which user has what locks on which card. It
947 * supports stacking, like the kernel one. This complexifies the implementation
948 * a bit, but makes the arbiter more tolerant to userspace problems and able
949 * to properly cleanup in all cases when a process dies.
950 * Currently, a max of 16 cards simultaneously can have locks issued from
951 * userspace for a given user (file descriptor instance) of the arbiter.
953 * If the device is hot-unplugged, there is a hook inside the module to notify
954 * they being added/removed in the system and automatically added/removed in
958 #define MAX_USER_CARDS CONFIG_VGA_ARB_MAX_GPUS
959 #define PCI_INVALID_CARD ((struct pci_dev *)-1UL)
962 * Each user has an array of these, tracking which cards have locks
964 struct vga_arb_user_card
{
965 struct pci_dev
*pdev
;
966 unsigned int mem_cnt
;
970 struct vga_arb_private
{
971 struct list_head list
;
972 struct pci_dev
*target
;
973 struct vga_arb_user_card cards
[MAX_USER_CARDS
];
977 static LIST_HEAD(vga_user_list
);
978 static DEFINE_SPINLOCK(vga_user_lock
);
982 * This function gets a string in the format: "PCI:domain:bus:dev.fn" and
983 * returns the respective values. If the string is not in this format,
986 static int vga_pci_str_to_vars(char *buf
, int count
, unsigned int *domain
,
987 unsigned int *bus
, unsigned int *devfn
)
990 unsigned int slot
, func
;
993 n
= sscanf(buf
, "PCI:%x:%x:%x.%x", domain
, bus
, &slot
, &func
);
997 *devfn
= PCI_DEVFN(slot
, func
);
1002 static ssize_t
vga_arb_read(struct file
*file
, char __user
*buf
,
1003 size_t count
, loff_t
*ppos
)
1005 struct vga_arb_private
*priv
= file
->private_data
;
1006 struct vga_device
*vgadev
;
1007 struct pci_dev
*pdev
;
1008 unsigned long flags
;
1013 lbuf
= kmalloc(1024, GFP_KERNEL
);
1017 /* Shields against vga_arb_device_card_gone (pci_dev going
1018 * away), and allows access to vga list
1020 spin_lock_irqsave(&vga_lock
, flags
);
1022 /* If we are targeting the default, use it */
1023 pdev
= priv
->target
;
1024 if (pdev
== NULL
|| pdev
== PCI_INVALID_CARD
) {
1025 spin_unlock_irqrestore(&vga_lock
, flags
);
1026 len
= sprintf(lbuf
, "invalid");
1030 /* Find card vgadev structure */
1031 vgadev
= vgadev_find(pdev
);
1032 if (vgadev
== NULL
) {
1033 /* Wow, it's not in the list, that shouldn't happen,
1034 * let's fix us up and return invalid card
1036 if (pdev
== priv
->target
)
1037 vga_arb_device_card_gone(pdev
);
1038 spin_unlock_irqrestore(&vga_lock
, flags
);
1039 len
= sprintf(lbuf
, "invalid");
1043 /* Fill the buffer with infos */
1044 len
= snprintf(lbuf
, 1024,
1045 "count:%d,PCI:%s,decodes=%s,owns=%s,locks=%s(%d:%d)\n",
1046 vga_decode_count
, pci_name(pdev
),
1047 vga_iostate_to_str(vgadev
->decodes
),
1048 vga_iostate_to_str(vgadev
->owns
),
1049 vga_iostate_to_str(vgadev
->locks
),
1050 vgadev
->io_lock_cnt
, vgadev
->mem_lock_cnt
);
1052 spin_unlock_irqrestore(&vga_lock
, flags
);
1055 /* Copy that to user */
1058 rc
= copy_to_user(buf
, lbuf
, len
);
1066 * TODO: To avoid parsing inside kernel and to improve the speed we may
1067 * consider use ioctl here
1069 static ssize_t
vga_arb_write(struct file
*file
, const char __user
*buf
,
1070 size_t count
, loff_t
*ppos
)
1072 struct vga_arb_private
*priv
= file
->private_data
;
1073 struct vga_arb_user_card
*uc
= NULL
;
1074 struct pci_dev
*pdev
;
1076 unsigned int io_state
;
1078 char kbuf
[64], *curr_pos
;
1079 size_t remaining
= count
;
1084 if (count
>= sizeof(kbuf
))
1086 if (copy_from_user(kbuf
, buf
, count
))
1089 kbuf
[count
] = '\0'; /* Just to make sure... */
1091 if (strncmp(curr_pos
, "lock ", 5) == 0) {
1095 pr_debug("client 0x%p called 'lock'\n", priv
);
1097 if (!vga_str_to_iostate(curr_pos
, remaining
, &io_state
)) {
1101 if (io_state
== VGA_RSRC_NONE
) {
1106 pdev
= priv
->target
;
1107 if (priv
->target
== NULL
) {
1112 vga_get_uninterruptible(pdev
, io_state
);
1114 /* Update the client's locks lists... */
1115 for (i
= 0; i
< MAX_USER_CARDS
; i
++) {
1116 if (priv
->cards
[i
].pdev
== pdev
) {
1117 if (io_state
& VGA_RSRC_LEGACY_IO
)
1118 priv
->cards
[i
].io_cnt
++;
1119 if (io_state
& VGA_RSRC_LEGACY_MEM
)
1120 priv
->cards
[i
].mem_cnt
++;
1127 } else if (strncmp(curr_pos
, "unlock ", 7) == 0) {
1131 pr_debug("client 0x%p called 'unlock'\n", priv
);
1133 if (strncmp(curr_pos
, "all", 3) == 0)
1134 io_state
= VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
;
1136 if (!vga_str_to_iostate
1137 (curr_pos
, remaining
, &io_state
)) {
1142 if (io_state == VGA_RSRC_NONE) {
1149 pdev
= priv
->target
;
1150 if (priv
->target
== NULL
) {
1154 for (i
= 0; i
< MAX_USER_CARDS
; i
++) {
1155 if (priv
->cards
[i
].pdev
== pdev
)
1156 uc
= &priv
->cards
[i
];
1164 if (io_state
& VGA_RSRC_LEGACY_IO
&& uc
->io_cnt
== 0) {
1169 if (io_state
& VGA_RSRC_LEGACY_MEM
&& uc
->mem_cnt
== 0) {
1174 vga_put(pdev
, io_state
);
1176 if (io_state
& VGA_RSRC_LEGACY_IO
)
1178 if (io_state
& VGA_RSRC_LEGACY_MEM
)
1183 } else if (strncmp(curr_pos
, "trylock ", 8) == 0) {
1187 pr_debug("client 0x%p called 'trylock'\n", priv
);
1189 if (!vga_str_to_iostate(curr_pos
, remaining
, &io_state
)) {
1194 if (io_state == VGA_RSRC_NONE) {
1200 pdev
= priv
->target
;
1201 if (priv
->target
== NULL
) {
1206 if (vga_tryget(pdev
, io_state
)) {
1207 /* Update the client's locks lists... */
1208 for (i
= 0; i
< MAX_USER_CARDS
; i
++) {
1209 if (priv
->cards
[i
].pdev
== pdev
) {
1210 if (io_state
& VGA_RSRC_LEGACY_IO
)
1211 priv
->cards
[i
].io_cnt
++;
1212 if (io_state
& VGA_RSRC_LEGACY_MEM
)
1213 priv
->cards
[i
].mem_cnt
++;
1224 } else if (strncmp(curr_pos
, "target ", 7) == 0) {
1225 unsigned int domain
, bus
, devfn
;
1226 struct vga_device
*vgadev
;
1230 pr_debug("client 0x%p called 'target'\n", priv
);
1231 /* if target is default */
1232 if (!strncmp(curr_pos
, "default", 7))
1233 pdev
= pci_dev_get(vga_default_device());
1235 if (!vga_pci_str_to_vars(curr_pos
, remaining
,
1236 &domain
, &bus
, &devfn
)) {
1240 pdev
= pci_get_domain_bus_and_slot(domain
, bus
, devfn
);
1242 pr_debug("invalid PCI address %04x:%02x:%02x.%x\n",
1243 domain
, bus
, PCI_SLOT(devfn
),
1249 pr_debug("%s ==> %04x:%02x:%02x.%x pdev %p\n", curr_pos
,
1250 domain
, bus
, PCI_SLOT(devfn
), PCI_FUNC(devfn
),
1254 vgadev
= vgadev_find(pdev
);
1255 pr_debug("vgadev %p\n", vgadev
);
1256 if (vgadev
== NULL
) {
1258 vgaarb_dbg(&pdev
->dev
, "not a VGA device\n");
1266 priv
->target
= pdev
;
1267 for (i
= 0; i
< MAX_USER_CARDS
; i
++) {
1268 if (priv
->cards
[i
].pdev
== pdev
)
1270 if (priv
->cards
[i
].pdev
== NULL
) {
1271 priv
->cards
[i
].pdev
= pdev
;
1272 priv
->cards
[i
].io_cnt
= 0;
1273 priv
->cards
[i
].mem_cnt
= 0;
1277 if (i
== MAX_USER_CARDS
) {
1278 vgaarb_dbg(&pdev
->dev
, "maximum user cards (%d) number reached, ignoring this one!\n",
1281 /* XXX: which value to return? */
1291 } else if (strncmp(curr_pos
, "decodes ", 8) == 0) {
1294 pr_debug("client 0x%p called 'decodes'\n", priv
);
1296 if (!vga_str_to_iostate(curr_pos
, remaining
, &io_state
)) {
1300 pdev
= priv
->target
;
1301 if (priv
->target
== NULL
) {
1306 __vga_set_legacy_decoding(pdev
, io_state
, true);
1310 /* If we got here, the message written is not part of the protocol! */
1317 static __poll_t
vga_arb_fpoll(struct file
*file
, poll_table
*wait
)
1319 pr_debug("%s\n", __func__
);
1321 poll_wait(file
, &vga_wait_queue
, wait
);
1325 static int vga_arb_open(struct inode
*inode
, struct file
*file
)
1327 struct vga_arb_private
*priv
;
1328 unsigned long flags
;
1330 pr_debug("%s\n", __func__
);
1332 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
1335 spin_lock_init(&priv
->lock
);
1336 file
->private_data
= priv
;
1338 spin_lock_irqsave(&vga_user_lock
, flags
);
1339 list_add(&priv
->list
, &vga_user_list
);
1340 spin_unlock_irqrestore(&vga_user_lock
, flags
);
1342 /* Set the client' lists of locks */
1343 priv
->target
= vga_default_device(); /* Maybe this is still null! */
1344 priv
->cards
[0].pdev
= priv
->target
;
1345 priv
->cards
[0].io_cnt
= 0;
1346 priv
->cards
[0].mem_cnt
= 0;
1352 static int vga_arb_release(struct inode
*inode
, struct file
*file
)
1354 struct vga_arb_private
*priv
= file
->private_data
;
1355 struct vga_arb_user_card
*uc
;
1356 unsigned long flags
;
1359 pr_debug("%s\n", __func__
);
1361 spin_lock_irqsave(&vga_user_lock
, flags
);
1362 list_del(&priv
->list
);
1363 for (i
= 0; i
< MAX_USER_CARDS
; i
++) {
1364 uc
= &priv
->cards
[i
];
1365 if (uc
->pdev
== NULL
)
1367 vgaarb_dbg(&uc
->pdev
->dev
, "uc->io_cnt == %d, uc->mem_cnt == %d\n",
1368 uc
->io_cnt
, uc
->mem_cnt
);
1369 while (uc
->io_cnt
--)
1370 vga_put(uc
->pdev
, VGA_RSRC_LEGACY_IO
);
1371 while (uc
->mem_cnt
--)
1372 vga_put(uc
->pdev
, VGA_RSRC_LEGACY_MEM
);
1374 spin_unlock_irqrestore(&vga_user_lock
, flags
);
1381 static void vga_arb_device_card_gone(struct pci_dev
*pdev
)
1386 * callback any registered clients to let them know we have a
1387 * change in VGA cards
1389 static void vga_arbiter_notify_clients(void)
1391 struct vga_device
*vgadev
;
1392 unsigned long flags
;
1393 uint32_t new_decodes
;
1396 if (!vga_arbiter_used
)
1399 spin_lock_irqsave(&vga_lock
, flags
);
1400 list_for_each_entry(vgadev
, &vga_list
, list
) {
1405 if (vgadev
->set_vga_decode
) {
1406 new_decodes
= vgadev
->set_vga_decode(vgadev
->cookie
,
1408 vga_update_device_decodes(vgadev
, new_decodes
);
1411 spin_unlock_irqrestore(&vga_lock
, flags
);
1414 static int pci_notify(struct notifier_block
*nb
, unsigned long action
,
1417 struct device
*dev
= data
;
1418 struct pci_dev
*pdev
= to_pci_dev(dev
);
1419 bool notify
= false;
1421 vgaarb_dbg(dev
, "%s\n", __func__
);
1423 /* For now we're only intereted in devices added and removed. I didn't
1424 * test this thing here, so someone needs to double check for the
1425 * cases of hotplugable vga cards. */
1426 if (action
== BUS_NOTIFY_ADD_DEVICE
)
1427 notify
= vga_arbiter_add_pci_device(pdev
);
1428 else if (action
== BUS_NOTIFY_DEL_DEVICE
)
1429 notify
= vga_arbiter_del_pci_device(pdev
);
1432 vga_arbiter_notify_clients();
1436 static struct notifier_block pci_notifier
= {
1437 .notifier_call
= pci_notify
,
1440 static const struct file_operations vga_arb_device_fops
= {
1441 .read
= vga_arb_read
,
1442 .write
= vga_arb_write
,
1443 .poll
= vga_arb_fpoll
,
1444 .open
= vga_arb_open
,
1445 .release
= vga_arb_release
,
1446 .llseek
= noop_llseek
,
1449 static struct miscdevice vga_arb_device
= {
1450 MISC_DYNAMIC_MINOR
, "vga_arbiter", &vga_arb_device_fops
1453 static void __init
vga_arb_select_default_device(void)
1455 struct pci_dev
*pdev
;
1456 struct vga_device
*vgadev
;
1458 #if defined(CONFIG_X86) || defined(CONFIG_IA64)
1459 u64 base
= screen_info
.lfb_base
;
1460 u64 size
= screen_info
.lfb_size
;
1462 resource_size_t start
, end
;
1463 unsigned long flags
;
1466 if (screen_info
.capabilities
& VIDEO_CAPABILITY_64BIT_BASE
)
1467 base
|= (u64
)screen_info
.ext_lfb_base
<< 32;
1469 limit
= base
+ size
;
1471 list_for_each_entry(vgadev
, &vga_list
, list
) {
1472 struct device
*dev
= &vgadev
->pdev
->dev
;
1474 * Override vga_arbiter_add_pci_device()'s I/O based detection
1475 * as it may take the wrong device (e.g. on Apple system under
1478 * Select the device owning the boot framebuffer if there is
1482 /* Does firmware framebuffer belong to us? */
1483 for (i
= 0; i
< DEVICE_COUNT_RESOURCE
; i
++) {
1484 flags
= pci_resource_flags(vgadev
->pdev
, i
);
1486 if ((flags
& IORESOURCE_MEM
) == 0)
1489 start
= pci_resource_start(vgadev
->pdev
, i
);
1490 end
= pci_resource_end(vgadev
->pdev
, i
);
1495 if (base
< start
|| limit
>= end
)
1498 if (!vga_default_device())
1499 vgaarb_info(dev
, "setting as boot device\n");
1500 else if (vgadev
->pdev
!= vga_default_device())
1501 vgaarb_info(dev
, "overriding boot device\n");
1502 vga_set_default_device(vgadev
->pdev
);
1507 if (!vga_default_device()) {
1508 list_for_each_entry(vgadev
, &vga_list
, list
) {
1509 struct device
*dev
= &vgadev
->pdev
->dev
;
1512 pdev
= vgadev
->pdev
;
1513 pci_read_config_word(pdev
, PCI_COMMAND
, &cmd
);
1514 if (cmd
& (PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
)) {
1515 vgaarb_info(dev
, "setting as boot device (VGA legacy resources not available)\n");
1516 vga_set_default_device(pdev
);
1522 if (!vga_default_device()) {
1523 vgadev
= list_first_entry_or_null(&vga_list
,
1524 struct vga_device
, list
);
1526 struct device
*dev
= &vgadev
->pdev
->dev
;
1527 vgaarb_info(dev
, "setting as boot device (VGA legacy resources not available)\n");
1528 vga_set_default_device(vgadev
->pdev
);
1533 static int __init
vga_arb_device_init(void)
1536 struct pci_dev
*pdev
;
1537 struct vga_device
*vgadev
;
1539 rc
= misc_register(&vga_arb_device
);
1541 pr_err("error %d registering device\n", rc
);
1543 bus_register_notifier(&pci_bus_type
, &pci_notifier
);
1545 /* We add all PCI devices satisfying VGA class in the arbiter by
1549 pci_get_subsys(PCI_ANY_ID
, PCI_ANY_ID
, PCI_ANY_ID
,
1550 PCI_ANY_ID
, pdev
)) != NULL
)
1551 vga_arbiter_add_pci_device(pdev
);
1553 list_for_each_entry(vgadev
, &vga_list
, list
) {
1554 struct device
*dev
= &vgadev
->pdev
->dev
;
1556 if (vgadev
->bridge_has_one_vga
)
1557 vgaarb_info(dev
, "bridge control possible\n");
1559 vgaarb_info(dev
, "no bridge control possible\n");
1562 vga_arb_select_default_device();
1564 pr_info("loaded\n");
1567 subsys_initcall(vga_arb_device_init
);