There are two video adapters in my system:
The system uses the first (vgapci0) video adapter when it boots:
But I would like to make it use the second one (vgapci1).
How can I achieve this?
Code:
# pciconf -lvbce
...
vgapci0@pci0:0:2:0: class=0x030000 card=0x040a1849 chip=0x040a8086 rev=0x06 hdr=0x00
vendor = 'Intel Corporation'
device = 'Xeon E3-1200 v3 Processor Integrated Graphics Controller'
class = display
subclass = VGA
bar [10] = type Memory, range 64, base 0xf6400000, size 4194304, enabled
bar [18] = type Prefetchable Memory, range 64, base 0xe0000000, size 268435456, enabled
bar [20] = type I/O Port, range 32, base 0xf000, size 64, enabled
cap 05[90] = MSI supports 1 message
cap 01[d0] = powerspec 2 supports D0 D3 current D0
cap 13[a4] = PCI Advanced Features: FLR TP
...
vgapci1@pci0:12:0:0: class=0x030000 card=0x20001849 chip=0x20001a03 rev=0x21 hdr=0x00
vendor = 'ASPEED Technology, Inc.'
device = 'ASPEED Graphics Family'
class = display
subclass = VGA
bar [10] = type Memory, range 32, base 0xf5000000, size 16777216, enabled
bar [14] = type Memory, range 32, base 0xf6000000, size 131072, enabled
bar [18] = type I/O Port, range 32, base 0xb000, size 128, enabled
cap 01[40] = powerspec 3 supports D0 D1 D2 D3 current D0
The system uses the first (vgapci0) video adapter when it boots:
Code:
# dmesg | grep vgapci
vgapci0: <VGA-compatible display> port 0xf000-0xf03f mem 0xf6400000-0xf67fffff,0xe0000000-0xefffffff irq 16 at device 2.0 on pci0
vgapci0: Boot video device
vgapci1: <VGA-compatible display> port 0xb000-0xb07f mem 0xf5000000-0xf5ffffff,0xf6000000-0xf601ffff irq 19 at device 0.0 on pci11
But I would like to make it use the second one (vgapci1).
How can I achieve this?