2005-11-10 15:26:51 +01:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/mach-omap2/devices.c
|
|
|
|
*
|
|
|
|
* OMAP2 platform device setup/initialization
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
2011-07-26 11:53:52 +02:00
|
|
|
#include <linux/gpio.h>
|
2005-11-10 15:26:51 +01:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/platform_device.h>
|
2008-09-06 13:10:45 +02:00
|
|
|
#include <linux/io.h>
|
2008-12-11 02:37:17 +01:00
|
|
|
#include <linux/clk.h>
|
2010-09-23 16:32:42 +02:00
|
|
|
#include <linux/err.h>
|
2011-02-02 13:22:14 +01:00
|
|
|
#include <linux/slab.h>
|
2011-08-12 13:48:47 +02:00
|
|
|
#include <linux/of.h>
|
2012-09-18 01:26:11 +02:00
|
|
|
#include <linux/pinctrl/machine.h>
|
2013-01-29 00:21:58 +01:00
|
|
|
#include <linux/platform_data/mailbox-omap.h>
|
2005-11-10 15:26:51 +01:00
|
|
|
|
|
|
|
#include <asm/mach-types.h>
|
|
|
|
#include <asm/mach/map.h>
|
|
|
|
|
2012-11-30 17:41:50 +01:00
|
|
|
#include <linux/omap-dma.h>
|
2012-10-03 02:41:35 +02:00
|
|
|
|
2012-02-24 19:34:35 +01:00
|
|
|
#include "iomap.h"
|
2012-10-03 02:41:35 +02:00
|
|
|
#include "omap_hwmod.h"
|
2012-10-03 02:25:48 +02:00
|
|
|
#include "omap_device.h"
|
2005-11-10 15:26:51 +01:00
|
|
|
|
2012-08-28 02:43:01 +02:00
|
|
|
#include "soc.h"
|
|
|
|
#include "common.h"
|
2009-12-12 01:16:32 +01:00
|
|
|
#include "mux.h"
|
2010-10-08 19:40:20 +02:00
|
|
|
#include "control.h"
|
2009-12-14 12:09:07 +01:00
|
|
|
#include "devices.h"
|
2013-09-16 09:18:31 +02:00
|
|
|
#include "display.h"
|
2009-12-12 01:16:32 +01:00
|
|
|
|
2011-02-08 09:40:45 +01:00
|
|
|
#define L3_MODULES_MAX_LEN 12
|
2011-03-09 11:30:29 +01:00
|
|
|
#define L3_MODULES 3
|
2011-02-08 09:40:45 +01:00
|
|
|
|
|
|
|
static int __init omap3_l3_init(void)
|
|
|
|
{
|
|
|
|
struct omap_hwmod *oh;
|
2011-07-21 22:48:45 +02:00
|
|
|
struct platform_device *pdev;
|
2011-02-08 09:40:45 +01:00
|
|
|
char oh_name[L3_MODULES_MAX_LEN];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* To avoid code running on other OMAPs in
|
|
|
|
* multi-omap builds
|
|
|
|
*/
|
2014-11-05 18:21:23 +01:00
|
|
|
if (!(cpu_is_omap34xx()) || of_have_populated_dt())
|
2011-02-08 09:40:45 +01:00
|
|
|
return -ENODEV;
|
|
|
|
|
2012-04-13 14:34:32 +02:00
|
|
|
snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main");
|
2011-02-08 09:40:45 +01:00
|
|
|
|
|
|
|
oh = omap_hwmod_lookup(oh_name);
|
|
|
|
|
|
|
|
if (!oh)
|
|
|
|
pr_err("could not look up %s\n", oh_name);
|
|
|
|
|
2013-01-26 08:48:53 +01:00
|
|
|
pdev = omap_device_build("omap_l3_smx", 0, oh, NULL, 0);
|
2011-02-08 09:40:45 +01:00
|
|
|
|
2011-07-21 22:48:45 +02:00
|
|
|
WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
|
2011-02-08 09:40:45 +01:00
|
|
|
|
2013-06-01 11:44:44 +02:00
|
|
|
return PTR_RET(pdev);
|
2011-02-08 09:40:45 +01:00
|
|
|
}
|
2013-01-11 20:24:18 +01:00
|
|
|
omap_postcore_initcall(omap3_l3_init);
|
2011-02-08 09:40:45 +01:00
|
|
|
|
2012-01-11 14:28:11 +01:00
|
|
|
#if defined(CONFIG_IOMMU_API)
|
|
|
|
|
2012-11-02 20:24:14 +01:00
|
|
|
#include <linux/platform_data/iommu-omap.h>
|
2012-01-11 14:28:11 +01:00
|
|
|
|
2009-03-24 02:23:49 +01:00
|
|
|
static struct resource omap3isp_resources[] = {
|
|
|
|
{
|
|
|
|
.start = OMAP3430_ISP_BASE,
|
|
|
|
.end = OMAP3430_ISP_END,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.start = OMAP3430_ISP_CCP2_BASE,
|
|
|
|
.end = OMAP3430_ISP_CCP2_END,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.start = OMAP3430_ISP_CCDC_BASE,
|
|
|
|
.end = OMAP3430_ISP_CCDC_END,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.start = OMAP3430_ISP_HIST_BASE,
|
|
|
|
.end = OMAP3430_ISP_HIST_END,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.start = OMAP3430_ISP_H3A_BASE,
|
|
|
|
.end = OMAP3430_ISP_H3A_END,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.start = OMAP3430_ISP_PREV_BASE,
|
|
|
|
.end = OMAP3430_ISP_PREV_END,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.start = OMAP3430_ISP_RESZ_BASE,
|
|
|
|
.end = OMAP3430_ISP_RESZ_END,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.start = OMAP3430_ISP_SBL_BASE,
|
|
|
|
.end = OMAP3430_ISP_SBL_END,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
2010-02-02 15:17:33 +01:00
|
|
|
.start = OMAP3430_ISP_CSI2A_REGS1_BASE,
|
|
|
|
.end = OMAP3430_ISP_CSI2A_REGS1_END,
|
2009-03-24 02:23:49 +01:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
2010-02-02 15:17:33 +01:00
|
|
|
.start = OMAP3430_ISP_CSIPHY2_BASE,
|
|
|
|
.end = OMAP3430_ISP_CSIPHY2_END,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.start = OMAP3630_ISP_CSI2A_REGS2_BASE,
|
|
|
|
.end = OMAP3630_ISP_CSI2A_REGS2_END,
|
2009-03-24 02:23:49 +01:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
2010-02-02 15:17:33 +01:00
|
|
|
.start = OMAP3630_ISP_CSI2C_REGS1_BASE,
|
|
|
|
.end = OMAP3630_ISP_CSI2C_REGS1_END,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.start = OMAP3630_ISP_CSIPHY1_BASE,
|
|
|
|
.end = OMAP3630_ISP_CSIPHY1_END,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.start = OMAP3630_ISP_CSI2C_REGS2_BASE,
|
|
|
|
.end = OMAP3630_ISP_CSI2C_REGS2_END,
|
2009-03-24 02:23:49 +01:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
2012-10-14 12:31:48 +02:00
|
|
|
{
|
|
|
|
.start = OMAP343X_CTRL_BASE + OMAP343X_CONTROL_CSIRXFE,
|
|
|
|
.end = OMAP343X_CTRL_BASE + OMAP343X_CONTROL_CSIRXFE + 3,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.start = OMAP343X_CTRL_BASE + OMAP3630_CONTROL_CAMERA_PHY_CTRL,
|
|
|
|
.end = OMAP343X_CTRL_BASE + OMAP3630_CONTROL_CAMERA_PHY_CTRL + 3,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
2009-03-24 02:23:49 +01:00
|
|
|
{
|
2012-08-28 02:43:01 +02:00
|
|
|
.start = 24 + OMAP_INTC_START,
|
2009-03-24 02:23:49 +01:00
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct platform_device omap3isp_device = {
|
|
|
|
.name = "omap3isp",
|
|
|
|
.id = -1,
|
|
|
|
.num_resources = ARRAY_SIZE(omap3isp_resources),
|
|
|
|
.resource = omap3isp_resources,
|
|
|
|
};
|
|
|
|
|
2011-09-23 15:44:57 +02:00
|
|
|
static struct omap_iommu_arch_data omap3_isp_iommu = {
|
2012-11-20 02:05:50 +01:00
|
|
|
.name = "mmu_isp",
|
2011-09-23 15:44:57 +02:00
|
|
|
};
|
|
|
|
|
2009-12-14 12:09:07 +01:00
|
|
|
int omap3_init_camera(struct isp_platform_data *pdata)
|
2009-03-24 02:23:49 +01:00
|
|
|
{
|
2014-03-06 01:24:12 +01:00
|
|
|
if (of_have_populated_dt())
|
|
|
|
omap3_isp_iommu.name = "480bd400.mmu";
|
|
|
|
|
2009-12-14 12:09:07 +01:00
|
|
|
omap3isp_device.dev.platform_data = pdata;
|
2011-09-23 15:44:57 +02:00
|
|
|
omap3isp_device.dev.archdata.iommu = &omap3_isp_iommu;
|
|
|
|
|
2009-12-14 12:09:07 +01:00
|
|
|
return platform_device_register(&omap3isp_device);
|
2009-03-24 02:23:49 +01:00
|
|
|
}
|
|
|
|
|
2012-01-11 14:28:11 +01:00
|
|
|
#else /* !CONFIG_IOMMU_API */
|
|
|
|
|
|
|
|
int omap3_init_camera(struct isp_platform_data *pdata)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2013-03-12 23:55:29 +01:00
|
|
|
#if defined(CONFIG_OMAP2PLUS_MBOX) || defined(CONFIG_OMAP2PLUS_MBOX_MODULE)
|
2012-02-20 18:43:30 +01:00
|
|
|
static inline void __init omap_init_mbox(void)
|
2006-12-07 22:58:10 +01:00
|
|
|
{
|
2011-02-24 21:51:33 +01:00
|
|
|
struct omap_hwmod *oh;
|
2011-07-21 22:48:45 +02:00
|
|
|
struct platform_device *pdev;
|
2013-01-29 00:21:58 +01:00
|
|
|
struct omap_mbox_pdata *pdata;
|
2011-02-24 21:51:33 +01:00
|
|
|
|
|
|
|
oh = omap_hwmod_lookup("mailbox");
|
|
|
|
if (!oh) {
|
|
|
|
pr_err("%s: unable to find hwmod\n", __func__);
|
2009-03-24 02:07:23 +01:00
|
|
|
return;
|
|
|
|
}
|
2013-01-29 00:21:58 +01:00
|
|
|
if (!oh->dev_attr) {
|
|
|
|
pr_err("%s: hwmod doesn't have valid attrs\n", __func__);
|
|
|
|
return;
|
|
|
|
}
|
2011-02-24 21:51:33 +01:00
|
|
|
|
2013-01-29 00:21:58 +01:00
|
|
|
pdata = (struct omap_mbox_pdata *)oh->dev_attr;
|
|
|
|
pdev = omap_device_build("omap-mailbox", -1, oh, pdata, sizeof(*pdata));
|
2011-07-21 22:48:45 +02:00
|
|
|
WARN(IS_ERR(pdev), "%s: could not build device, err %ld\n",
|
|
|
|
__func__, PTR_ERR(pdev));
|
2006-12-07 22:58:10 +01:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline void omap_init_mbox(void) { }
|
2013-03-12 23:55:29 +01:00
|
|
|
#endif /* CONFIG_OMAP2PLUS_MBOX */
|
2006-12-07 22:58:10 +01:00
|
|
|
|
2006-04-02 18:46:30 +02:00
|
|
|
static inline void omap_init_sti(void) {}
|
|
|
|
|
2010-03-17 21:15:21 +01:00
|
|
|
#if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
|
|
|
|
|
|
|
|
static struct platform_device omap_pcm = {
|
|
|
|
.name = "omap-pcm-audio",
|
|
|
|
.id = -1,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void omap_init_audio(void)
|
|
|
|
{
|
|
|
|
platform_device_register(&omap_pcm);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
static inline void omap_init_audio(void) {}
|
|
|
|
#endif
|
|
|
|
|
2008-10-06 14:49:36 +02:00
|
|
|
#if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
|
2006-06-27 01:16:10 +02:00
|
|
|
|
2012-08-24 15:21:06 +02:00
|
|
|
#include <linux/platform_data/spi-omap2-mcspi.h>
|
2006-06-27 01:16:10 +02:00
|
|
|
|
2012-02-20 18:43:30 +01:00
|
|
|
static int __init omap_mcspi_init(struct omap_hwmod *oh, void *unused)
|
2009-09-25 01:23:05 +02:00
|
|
|
{
|
2011-07-21 22:48:45 +02:00
|
|
|
struct platform_device *pdev;
|
2011-02-02 13:22:14 +01:00
|
|
|
char *name = "omap2_mcspi";
|
|
|
|
struct omap2_mcspi_platform_config *pdata;
|
|
|
|
static int spi_num;
|
|
|
|
struct omap2_mcspi_dev_attr *mcspi_attrib = oh->dev_attr;
|
|
|
|
|
|
|
|
pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
|
|
|
|
if (!pdata) {
|
|
|
|
pr_err("Memory allocation for McSPI device failed\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2009-09-25 01:23:05 +02:00
|
|
|
|
2011-02-02 13:22:14 +01:00
|
|
|
pdata->num_cs = mcspi_attrib->num_chipselect;
|
|
|
|
switch (oh->class->rev) {
|
|
|
|
case OMAP2_MCSPI_REV:
|
|
|
|
case OMAP3_MCSPI_REV:
|
|
|
|
pdata->regs_offset = 0;
|
|
|
|
break;
|
|
|
|
case OMAP4_MCSPI_REV:
|
|
|
|
pdata->regs_offset = OMAP4_MCSPI_REG_OFFSET;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pr_err("Invalid McSPI Revision value\n");
|
2011-12-23 18:39:31 +01:00
|
|
|
kfree(pdata);
|
2011-02-02 13:22:14 +01:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
2009-09-25 01:23:05 +02:00
|
|
|
|
2011-02-02 13:22:14 +01:00
|
|
|
spi_num++;
|
2013-01-26 08:48:53 +01:00
|
|
|
pdev = omap_device_build(name, spi_num, oh, pdata, sizeof(*pdata));
|
2011-07-21 22:48:45 +02:00
|
|
|
WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s\n",
|
2011-02-02 13:22:14 +01:00
|
|
|
name, oh->name);
|
|
|
|
kfree(pdata);
|
|
|
|
return 0;
|
2009-09-25 01:23:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void omap_init_mcspi(void)
|
|
|
|
{
|
2011-02-02 13:22:14 +01:00
|
|
|
omap_hwmod_for_each_by_class("mcspi", omap_mcspi_init, NULL);
|
2006-06-27 01:16:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
static inline void omap_init_mcspi(void) {}
|
|
|
|
#endif
|
|
|
|
|
2012-09-24 01:28:27 +02:00
|
|
|
/**
|
|
|
|
* omap_init_rng - bind the RNG hwmod to the RNG omap_device
|
|
|
|
*
|
|
|
|
* Bind the RNG hwmod to the RNG omap_device. No return value.
|
|
|
|
*/
|
|
|
|
static void omap_init_rng(void)
|
|
|
|
{
|
|
|
|
struct omap_hwmod *oh;
|
|
|
|
struct platform_device *pdev;
|
|
|
|
|
|
|
|
oh = omap_hwmod_lookup("rng");
|
|
|
|
if (!oh)
|
|
|
|
return;
|
|
|
|
|
2013-01-26 08:48:53 +01:00
|
|
|
pdev = omap_device_build("omap_rng", -1, oh, NULL, 0);
|
2012-09-24 01:28:27 +02:00
|
|
|
WARN(IS_ERR(pdev), "Can't build omap_device for omap_rng\n");
|
|
|
|
}
|
2010-04-09 14:54:43 +02:00
|
|
|
|
2013-03-18 17:06:32 +01:00
|
|
|
static void __init omap_init_sham(void)
|
2008-10-06 14:49:36 +02:00
|
|
|
{
|
2013-03-18 17:06:33 +01:00
|
|
|
struct omap_hwmod *oh;
|
|
|
|
struct platform_device *pdev;
|
|
|
|
|
|
|
|
oh = omap_hwmod_lookup("sham");
|
|
|
|
if (!oh)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pdev = omap_device_build("omap-sham", -1, oh, NULL, 0);
|
|
|
|
WARN(IS_ERR(pdev), "Can't build omap_device for omap-sham\n");
|
2008-10-06 14:49:36 +02:00
|
|
|
}
|
|
|
|
|
2012-12-21 17:28:10 +01:00
|
|
|
static void __init omap_init_aes(void)
|
2010-09-03 13:13:55 +02:00
|
|
|
{
|
2012-12-21 17:28:11 +01:00
|
|
|
struct omap_hwmod *oh;
|
|
|
|
struct platform_device *pdev;
|
|
|
|
|
|
|
|
oh = omap_hwmod_lookup("aes");
|
|
|
|
if (!oh)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pdev = omap_device_build("omap-aes", -1, oh, NULL, 0);
|
|
|
|
WARN(IS_ERR(pdev), "Can't build omap_device for omap-aes\n");
|
2010-09-03 13:13:55 +02:00
|
|
|
}
|
|
|
|
|
2008-12-11 02:37:16 +01:00
|
|
|
/*-------------------------------------------------------------------------*/
|
|
|
|
|
2010-05-10 23:29:14 +02:00
|
|
|
#if defined(CONFIG_VIDEO_OMAP2_VOUT) || \
|
|
|
|
defined(CONFIG_VIDEO_OMAP2_VOUT_MODULE)
|
|
|
|
#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
|
|
|
|
static struct resource omap_vout_resource[3 - CONFIG_FB_OMAP2_NUM_FBS] = {
|
|
|
|
};
|
|
|
|
#else
|
|
|
|
static struct resource omap_vout_resource[2] = {
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static struct platform_device omap_vout_device = {
|
|
|
|
.name = "omap_vout",
|
|
|
|
.num_resources = ARRAY_SIZE(omap_vout_resource),
|
|
|
|
.resource = &omap_vout_resource[0],
|
|
|
|
.id = -1,
|
|
|
|
};
|
2013-09-16 09:18:31 +02:00
|
|
|
|
|
|
|
int __init omap_init_vout(void)
|
2010-05-10 23:29:14 +02:00
|
|
|
{
|
2013-09-16 09:18:31 +02:00
|
|
|
return platform_device_register(&omap_vout_device);
|
2010-05-10 23:29:14 +02:00
|
|
|
}
|
|
|
|
#else
|
2013-09-16 09:18:31 +02:00
|
|
|
int __init omap_init_vout(void) { return 0; }
|
2010-05-10 23:29:14 +02:00
|
|
|
#endif
|
|
|
|
|
2005-11-10 15:26:51 +01:00
|
|
|
/*-------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
static int __init omap2_init_devices(void)
|
|
|
|
{
|
2012-09-18 01:26:11 +02:00
|
|
|
/* Enable dummy states for those platforms without pinctrl support */
|
|
|
|
if (!of_have_populated_dt())
|
|
|
|
pinctrl_provide_dummies();
|
|
|
|
|
2010-12-22 03:56:17 +01:00
|
|
|
/*
|
|
|
|
* please keep these calls, and their implementations above,
|
2005-11-10 15:26:51 +01:00
|
|
|
* in alphabetical order so they're easier to sort through.
|
|
|
|
*/
|
2010-03-17 21:15:21 +01:00
|
|
|
omap_init_audio();
|
2012-01-20 14:15:58 +01:00
|
|
|
/* If dtb is there, the devices will be created dynamically */
|
2012-05-02 14:23:18 +02:00
|
|
|
if (!of_have_populated_dt()) {
|
2014-07-11 23:44:40 +02:00
|
|
|
omap_init_mbox();
|
2012-01-20 14:15:58 +01:00
|
|
|
omap_init_mcspi();
|
2013-03-18 17:06:33 +01:00
|
|
|
omap_init_sham();
|
2012-12-21 17:28:12 +01:00
|
|
|
omap_init_aes();
|
2013-08-05 16:47:22 +02:00
|
|
|
omap_init_rng();
|
2012-05-02 14:23:18 +02:00
|
|
|
}
|
2006-04-02 18:46:30 +02:00
|
|
|
omap_init_sti();
|
2005-11-10 15:26:51 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2013-01-11 20:24:18 +01:00
|
|
|
omap_arch_initcall(omap2_init_devices);
|
2014-11-20 21:45:43 +01:00
|
|
|
|
|
|
|
static int __init omap_gpmc_init(void)
|
|
|
|
{
|
|
|
|
struct omap_hwmod *oh;
|
|
|
|
struct platform_device *pdev;
|
|
|
|
char *oh_name = "gpmc";
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if the board boots up with a populated DT, do not
|
|
|
|
* manually add the device from this initcall
|
|
|
|
*/
|
|
|
|
if (of_have_populated_dt())
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
oh = omap_hwmod_lookup(oh_name);
|
|
|
|
if (!oh) {
|
|
|
|
pr_err("Could not look up %s\n", oh_name);
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
pdev = omap_device_build("omap-gpmc", -1, oh, NULL, 0);
|
|
|
|
WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
|
|
|
|
|
|
|
|
return PTR_RET(pdev);
|
|
|
|
}
|
|
|
|
omap_postcore_initcall(omap_gpmc_init);
|