blob: 93057fb65f44a67f2189137210a66e7d93a9ca0d [file] [log] [blame]
Tony Lindgren1dbae812005-11-10 14:26:51 +00001/*
2 * linux/arch/arm/mach-omap2/devices.c
3 *
4 * OMAP2 platform device setup/initialization
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
Russell King2f8163b2011-07-26 10:53:52 +010011#include <linux/gpio.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000012#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010015#include <linux/io.h>
Kevin Hilman917fa282008-12-10 17:37:17 -080016#include <linux/clk.h>
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +053017#include <linux/err.h>
Charulatha V1a5d8192011-02-02 17:52:14 +053018#include <linux/slab.h>
Benoit Coussonad8dfac2011-08-12 13:48:47 +020019#include <linux/of.h>
Matt Porter484202f2012-09-17 16:26:11 -070020#include <linux/pinctrl/machine.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000021
Tony Lindgren1dbae812005-11-10 14:26:51 +000022#include <asm/mach-types.h>
23#include <asm/mach/map.h>
24
Tony Lindgren45c3eb72012-11-30 08:41:50 -080025#include <linux/omap-dma.h>
Tony Lindgren2a296c82012-10-02 17:41:35 -070026
Tony Lindgrenee0839c2012-02-24 10:34:35 -080027#include "iomap.h"
Tony Lindgren2a296c82012-10-02 17:41:35 -070028#include "omap_hwmod.h"
Tony Lindgren25c7d492012-10-02 17:25:48 -070029#include "omap_device.h"
Tony Lindgren1dbae812005-11-10 14:26:51 +000030
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -070031#include "soc.h"
32#include "common.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060033#include "control.h"
Archit Taneja576e5bd2013-09-16 12:48:31 +053034#include "display.h"
Tony Lindgren4896e392009-12-11 16:16:32 -080035
sricharan0abcf612011-02-08 14:10:45 +053036#define L3_MODULES_MAX_LEN 12
sricharana4dc6162011-03-09 16:00:29 +053037#define L3_MODULES 3
sricharan0abcf612011-02-08 14:10:45 +053038
Tony Lindgrend8874662008-12-10 17:37:16 -080039/*-------------------------------------------------------------------------*/
40
Javier Martinez Canillas502ad2a2016-08-11 15:29:45 -040041#if IS_ENABLED(CONFIG_VIDEO_OMAP2_VOUT)
42#if IS_ENABLED(CONFIG_FB_OMAP2)
Vaibhav Hiremathb2273582010-05-10 14:29:14 -070043static struct resource omap_vout_resource[3 - CONFIG_FB_OMAP2_NUM_FBS] = {
44};
45#else
46static struct resource omap_vout_resource[2] = {
47};
48#endif
49
50static struct platform_device omap_vout_device = {
51 .name = "omap_vout",
52 .num_resources = ARRAY_SIZE(omap_vout_resource),
53 .resource = &omap_vout_resource[0],
54 .id = -1,
55};
Archit Taneja576e5bd2013-09-16 12:48:31 +053056
57int __init omap_init_vout(void)
Vaibhav Hiremathb2273582010-05-10 14:29:14 -070058{
Archit Taneja576e5bd2013-09-16 12:48:31 +053059 return platform_device_register(&omap_vout_device);
Vaibhav Hiremathb2273582010-05-10 14:29:14 -070060}
61#else
Archit Taneja576e5bd2013-09-16 12:48:31 +053062int __init omap_init_vout(void) { return 0; }
Vaibhav Hiremathb2273582010-05-10 14:29:14 -070063#endif