mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

It turns out that there are no platforms that have PCI but don't have an MMU, so adding a Kconfig dependency on CONFIG_PCI simplifies build testing kernels for those platforms a lot, and avoids a lot of inadvertent build regressions. Add a dependency for CONFIG_PCI and remove all the ones for PCI specific device drivers that are currently marked not having it. There are a few platforms that have an optional MMU, but they usually cannot have PCI at all. The one exception is Coldfire MCF54xx, but this is mainly for historic reasons, and anyone using those chips should really use the MMU these days. Link: https://lore.kernel.org/lkml/a41f1b20-a76c-43d8-8c36-f12744327a54@app.fastmail.com/ Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> # SCSI Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de> Acked-by: Alex Deucher <alexander.deucher@amd.com> Link: https://patch.msgid.link/20250423202215.3315550-1-arnd@kernel.org
24 lines
886 B
Text
24 lines
886 B
Text
# SPDX-License-Identifier: GPL-2.0-only
|
|
config DRM_MGAG200
|
|
tristate "Matrox G200"
|
|
depends on DRM && PCI
|
|
select DRM_CLIENT_SELECTION
|
|
select DRM_GEM_SHMEM_HELPER
|
|
select DRM_KMS_HELPER
|
|
select I2C
|
|
select I2C_ALGOBIT
|
|
help
|
|
This is a KMS driver for Matrox G200 chips. It supports the original
|
|
MGA G200 desktop chips and the server variants. It requires 0.3.0
|
|
of the modesetting userspace driver, and a version of mga driver
|
|
that will fail on KMS enabled devices.
|
|
|
|
config DRM_MGAG200_DISABLE_WRITECOMBINE
|
|
bool "Disable Write Combine mapping of VRAM"
|
|
depends on DRM_MGAG200 && PREEMPT_RT
|
|
help
|
|
The VRAM of the G200 is mapped with Write-Combine to improve
|
|
performances. This can interfere with real-time tasks; even if they
|
|
are running on other CPU cores than the graphics output.
|
|
Enable this option only if you run realtime tasks on a server with a
|
|
Matrox G200.
|