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_CFB_FILLRECT 17 select FB_CFB_COPYAREA 18 select FB_CFB_IMAGEBLIT 19 select VIDEO_NOMODESET 20 help 21 Framebuffer driver for the display controller integrated into the 22 AMD Geode LX processors. 23 24 To compile this driver as a module, choose M here: the module will 25 be called lxfb. 26 27 If unsure, say N. 28 29config FB_GEODE_GX 30 tristate "AMD Geode GX framebuffer support" 31 depends on FB && FB_GEODE 32 select FB_IOMEM_HELPERS 33 select VIDEO_NOMODESET 34 help 35 Framebuffer driver for the display controller integrated into the 36 AMD Geode GX processors. 37 38 To compile this driver as a module, choose M here: the module will be 39 called gxfb. 40 41 If unsure, say N. 42 43config FB_GEODE_GX1 44 tristate "AMD Geode GX1 framebuffer support" 45 depends on FB && FB_GEODE 46 select FB_IOMEM_HELPERS 47 select VIDEO_NOMODESET 48 help 49 Framebuffer driver for the display controller integrated into the 50 AMD Geode GX1 processor. 51 52 To compile this driver as a module, choose M here: the module will be 53 called gx1fb. 54 55 If unsure, say N. 56