1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Geode family framebuffer configuration 4# 5config FB_GEODE 6 bool "AMD Geode family framebuffer support" 7 depends on FB && PCI && (X86_32 || (X86 && COMPILE_TEST)) 8 depends on !UML 9 help 10 Say 'Y' here to allow you to select framebuffer drivers for 11 the AMD Geode family of processors. 12 13config FB_GEODE_LX 14 tristate "AMD Geode LX framebuffer support" 15 depends on FB && FB_GEODE 16 select FB_IOMEM_HELPERS 17 select VIDEO_NOMODESET 18 help 19 Framebuffer driver for the display controller integrated into the 20 AMD Geode LX processors. 21 22 To compile this driver as a module, choose M here: the module will 23 be called lxfb. 24 25 If unsure, say N. 26 27config FB_GEODE_GX 28 tristate "AMD Geode GX framebuffer support" 29 depends on FB && FB_GEODE 30 select FB_IOMEM_HELPERS 31 select VIDEO_NOMODESET 32 help 33 Framebuffer driver for the display controller integrated into the 34 AMD Geode GX processors. 35 36 To compile this driver as a module, choose M here: the module will be 37 called gxfb. 38 39 If unsure, say N. 40 41config FB_GEODE_GX1 42 tristate "AMD Geode GX1 framebuffer support" 43 depends on FB && FB_GEODE 44 select FB_IOMEM_HELPERS 45 select VIDEO_NOMODESET 46 help 47 Framebuffer driver for the display controller integrated into the 48 AMD Geode GX1 processor. 49 50 To compile this driver as a module, choose M here: the module will be 51 called gx1fb. 52 53 If unsure, say N. 54