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