hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * linux/arch/arm/mach-omap2/devices.c
 *
 * OMAP2 platform device setup/initialization
 */
 
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/io.h>
#include <linux/clk.h>
#include <linux/dma-mapping.h>
#include <linux/err.h>
#include <linux/slab.h>
#include <linux/of.h>
#include <linux/pinctrl/machine.h>
 
#include <asm/mach-types.h>
#include <asm/mach/map.h>
 
#include <linux/omap-dma.h>
 
#include "iomap.h"
#include "omap_hwmod.h"
#include "omap_device.h"
 
#include "soc.h"
#include "common.h"
#include "control.h"
#include "display.h"
 
#define L3_MODULES_MAX_LEN 12
#define L3_MODULES 3
 
/*-------------------------------------------------------------------------*/
 
#if IS_ENABLED(CONFIG_VIDEO_OMAP2_VOUT)
#if IS_ENABLED(CONFIG_FB_OMAP2)
static struct resource omap_vout_resource[3 - CONFIG_FB_OMAP2_NUM_FBS] = {
};
#else
static struct resource omap_vout_resource[2] = {
};
#endif
 
static u64 omap_vout_dma_mask = DMA_BIT_MASK(32);
 
static struct platform_device omap_vout_device = {
   .name        = "omap_vout",
   .num_resources    = ARRAY_SIZE(omap_vout_resource),
   .resource     = &omap_vout_resource[0],
   .id        = -1,
   .dev        = {
       .dma_mask        = &omap_vout_dma_mask,
       .coherent_dma_mask    = DMA_BIT_MASK(32),
   },
};
 
int __init omap_init_vout(void)
{
   return platform_device_register(&omap_vout_device);
}
#else
int __init omap_init_vout(void) { return 0; }
#endif