Skip to content

Commit

Permalink
imxfb: add support for i.MX25
Browse files Browse the repository at this point in the history
The commit also introduces the HAVE_FB_IMX config that is to be selected from
the MX25 platform config. Once this commit gets merged, the two other i.MX
archs, ARCH_MX1 and ARCH_MX2, should follow this one.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
  • Loading branch information
Baruch Siach authored and Sascha Hauer committed Feb 18, 2010
1 parent 94d32f9 commit f601441
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions arch/arm/plat-mxc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ config ARCH_MX25
bool "MX25-based"
select CPU_ARM926T
select COMMON_CLKDEV
select HAVE_FB_IMX
help
This enables support for systems based on the Freescale i.MX25 family

Expand Down
5 changes: 4 additions & 1 deletion drivers/video/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -400,9 +400,12 @@ config FB_SA1100
If you plan to use the LCD display with your SA-1100 system, say
Y here.

config HAVE_FB_IMX
bool

config FB_IMX
tristate "Motorola i.MX LCD support"
depends on FB && (ARCH_MX1 || ARCH_MX2)
depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2)
select FB_CFB_FILLRECT
select FB_CFB_COPYAREA
select FB_CFB_IMAGEBLIT
Expand Down

0 comments on commit f601441

Please sign in to comment.