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 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 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_CFB_FILLRECT 47 select FB_CFB_COPYAREA 48 select FB_CFB_IMAGEBLIT 49 help 50 Framebuffer driver for the display controller integrated into the 51 AMD Geode GX1 processor. 52 53 To compile this driver as a module, choose M here: the module will be 54 called gx1fb. 55 56 If unsure, say N. 57