Home
last modified time | relevance | path

Searched refs:bochs (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/gpu/drm/tiny/
H A Dbochs.c114 static __always_inline bool bochs_uses_mmio(struct bochs_device *bochs) in bochs_uses_mmio() argument
116 return !IS_ENABLED(CONFIG_HAS_IOPORT) || bochs->mmio; in bochs_uses_mmio()
119 static void bochs_vga_writeb(struct bochs_device *bochs, u16 ioport, u8 val) in bochs_vga_writeb() argument
124 if (bochs_uses_mmio(bochs)) { in bochs_vga_writeb()
127 writeb(val, bochs->mmio + offset); in bochs_vga_writeb()
133 static u8 bochs_vga_readb(struct bochs_device *bochs, u16 ioport) in bochs_vga_readb() argument
138 if (bochs_uses_mmio(bochs)) { in bochs_vga_readb()
141 return readb(bochs->mmio + offset); in bochs_vga_readb()
147 static u16 bochs_dispi_read(struct bochs_device *bochs, u16 reg) in bochs_dispi_read() argument
151 if (bochs_uses_mmio(bochs)) { in bochs_dispi_read()
[all …]
H A DMakefile5 obj-$(CONFIG_DRM_BOCHS) += bochs.o
H A DKconfig28 tristate "DRM Support for bochs dispi vga interface (qemu stdvga)"
37 If M is selected the module will be called bochs.
/linux/samples/
H A DKconfig239 Emulate enough of qemu stdvga to make bochs-drm.ko happy.
240 That is basically the vram memory bar and the bochs dispi
/linux/Documentation/virt/kvm/
H A Dapi.rst8544 expose a bochs graphics device (which is
/linux/
H A DMAINTAINERS7924 F: drivers/gpu/drm/tiny/bochs.c