arm64: dts: Revert "specify console via command line"
[linux/fpc-iii.git] / arch / arm / mach-omap1 / fb.c
blob0e32a959f254e1932ba6f2f75f98c9c5055c7c35
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
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>
9 */
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/mm.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/memblock.h>
17 #include <linux/io.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 = {
31 .name = "omapfb",
32 .id = -1,
33 .dev = {
34 .dma_mask = &omap_fb_dma_mask,
35 .coherent_dma_mask = DMA_BIT_MASK(32),
36 .platform_data = &omapfb_config,
38 .num_resources = 0,
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)
54 return 0;
56 return platform_device_register(&omap_fb_device);
59 arch_initcall(omap_init_fb);
61 #else
63 void __init omapfb_set_lcd_config(const struct omap_lcd_config *config)
67 #endif