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_CFB_FILLRECT 33 select FB_CFB_COPYAREA 34 select FB_CFB_IMAGEBLIT 35 select VIDEO_NOMODESET 36 help 37 Framebuffer driver for the display controller integrated into the 38 AMD Geode GX processors. 39 40 To compile this driver as a module, choose M here: the module will be 41 called gxfb. 42 43 If unsure, say N. 44 45config FB_GEODE_GX1 46 tristate "AMD Geode GX1 framebuffer support" 47 depends on FB && FB_GEODE 48 select FB_CFB_FILLRECT 49 select FB_CFB_COPYAREA 50 select FB_CFB_IMAGEBLIT 51 select VIDEO_NOMODESET 52 help 53 Framebuffer driver for the display controller integrated into the 54 AMD Geode GX1 processor. 55 56 To compile this driver as a module, choose M here: the module will be 57 called gx1fb. 58 59 If unsure, say N. 60