1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * File: arch/arm/plat-omap/fb.c
5 * Framebuffer device registration for TI OMAP platforms
7 * Copyright (C) 2006 Nokia Corporation
8 * Author: Imre Deak <imre.deak@nokia.com>
11 #include <linux/module.h>
12 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/memblock.h>
18 #include <linux/omapfb.h>
19 #include <linux/dma-mapping.h>
21 #include <asm/mach/map.h>
23 #if IS_ENABLED(CONFIG_FB_OMAP)
25 static bool omapfb_lcd_configured
;
26 static struct omapfb_platform_data omapfb_config
;
28 static u64 omap_fb_dma_mask
= ~(u32
)0;
30 static struct platform_device omap_fb_device
= {
34 .dma_mask
= &omap_fb_dma_mask
,
35 .coherent_dma_mask
= DMA_BIT_MASK(32),
36 .platform_data
= &omapfb_config
,
41 void __init
omapfb_set_lcd_config(const struct omap_lcd_config
*config
)
43 omapfb_config
.lcd
= *config
;
44 omapfb_lcd_configured
= true;
47 static int __init
omap_init_fb(void)
50 * If the board file has not set the lcd config with
51 * omapfb_set_lcd_config(), don't bother registering the omapfb device
53 if (!omapfb_lcd_configured
)
56 return platform_device_register(&omap_fb_device
);
59 arch_initcall(omap_init_fb
);
63 void __init
omapfb_set_lcd_config(const struct omap_lcd_config
*config
)