| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446 | /* * OMAP2plus display device setup / initialization. * * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ *	Senthilvadivu Guruswamy *	Sumit Semwal * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed "as is" WITHOUT ANY WARRANTY of any * kind, whether express or implied; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. */#include <linux/string.h>#include <linux/kernel.h>#include <linux/init.h>#include <linux/platform_device.h>#include <linux/io.h>#include <linux/clk.h>#include <linux/err.h>#include <linux/delay.h>#include <video/omapdss.h>#include "omap_hwmod.h"#include "omap_device.h"#include "omap-pm.h"#include "common.h"#include "soc.h"#include "iomap.h"#include "mux.h"#include "control.h"#include "display.h"#include "prm.h"#define DISPC_CONTROL		0x0040#define DISPC_CONTROL2		0x0238#define DISPC_CONTROL3		0x0848#define DISPC_IRQSTATUS		0x0018#define DSS_SYSCONFIG		0x10#define DSS_SYSSTATUS		0x14#define DSS_CONTROL		0x40#define DSS_SDI_CONTROL		0x44#define DSS_PLL_CONTROL		0x48#define LCD_EN_MASK		(0x1 << 0)#define DIGIT_EN_MASK		(0x1 << 1)#define FRAMEDONE_IRQ_SHIFT	0#define EVSYNC_EVEN_IRQ_SHIFT	2#define EVSYNC_ODD_IRQ_SHIFT	3#define FRAMEDONE2_IRQ_SHIFT	22#define FRAMEDONE3_IRQ_SHIFT	30#define FRAMEDONETV_IRQ_SHIFT	24/* * FRAMEDONE_IRQ_TIMEOUT: how long (in milliseconds) to wait during DISPC *     reset before deciding that something has gone wrong */#define FRAMEDONE_IRQ_TIMEOUT		100static struct platform_device omap_display_device = {	.name          = "omapdss",	.id            = -1,	.dev            = {		.platform_data = NULL,	},};struct omap_dss_hwmod_data {	const char *oh_name;	const char *dev_name;	const int id;};static const struct omap_dss_hwmod_data omap2_dss_hwmod_data[] __initconst = {	{ "dss_core", "omapdss_dss", -1 },	{ "dss_dispc", "omapdss_dispc", -1 },	{ "dss_rfbi", "omapdss_rfbi", -1 },	{ "dss_venc", "omapdss_venc", -1 },};static const struct omap_dss_hwmod_data omap3_dss_hwmod_data[] __initconst = {	{ "dss_core", "omapdss_dss", -1 },	{ "dss_dispc", "omapdss_dispc", -1 },	{ "dss_rfbi", "omapdss_rfbi", -1 },	{ "dss_venc", "omapdss_venc", -1 },	{ "dss_dsi1", "omapdss_dsi", 0 },};static const struct omap_dss_hwmod_data omap4_dss_hwmod_data[] __initconst = {	{ "dss_core", "omapdss_dss", -1 },	{ "dss_dispc", "omapdss_dispc", -1 },	{ "dss_rfbi", "omapdss_rfbi", -1 },	{ "dss_dsi1", "omapdss_dsi", 0 },	{ "dss_dsi2", "omapdss_dsi", 1 },	{ "dss_hdmi", "omapdss_hdmi", -1 },};static void __init omap4_tpd12s015_mux_pads(void){	omap_mux_init_signal("hdmi_cec",			OMAP_PIN_INPUT_PULLUP);	omap_mux_init_signal("hdmi_ddc_scl",			OMAP_PIN_INPUT_PULLUP);	omap_mux_init_signal("hdmi_ddc_sda",			OMAP_PIN_INPUT_PULLUP);}static void __init omap4_hdmi_mux_pads(enum omap_hdmi_flags flags){	u32 reg;	u16 control_i2c_1;	/*	 * CONTROL_I2C_1: HDMI_DDC_SDA_PULLUPRESX (bit 28) and	 * HDMI_DDC_SCL_PULLUPRESX (bit 24) are set to disable	 * internal pull up resistor.	 */	if (flags & OMAP_HDMI_SDA_SCL_EXTERNAL_PULLUP) {		control_i2c_1 = OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_I2C_1;		reg = omap4_ctrl_pad_readl(control_i2c_1);		reg |= (OMAP4_HDMI_DDC_SDA_PULLUPRESX_MASK |			OMAP4_HDMI_DDC_SCL_PULLUPRESX_MASK);			omap4_ctrl_pad_writel(reg, control_i2c_1);	}}static int omap4_dsi_mux_pads(int dsi_id, unsigned lanes){	u32 enable_mask, enable_shift;	u32 pipd_mask, pipd_shift;	u32 reg;	if (dsi_id == 0) {		enable_mask = OMAP4_DSI1_LANEENABLE_MASK;		enable_shift = OMAP4_DSI1_LANEENABLE_SHIFT;		pipd_mask = OMAP4_DSI1_PIPD_MASK;		pipd_shift = OMAP4_DSI1_PIPD_SHIFT;	} else if (dsi_id == 1) {		enable_mask = OMAP4_DSI2_LANEENABLE_MASK;		enable_shift = OMAP4_DSI2_LANEENABLE_SHIFT;		pipd_mask = OMAP4_DSI2_PIPD_MASK;		pipd_shift = OMAP4_DSI2_PIPD_SHIFT;	} else {		return -ENODEV;	}	reg = omap4_ctrl_pad_readl(OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_DSIPHY);	reg &= ~enable_mask;	reg &= ~pipd_mask;	reg |= (lanes << enable_shift) & enable_mask;	reg |= (lanes << pipd_shift) & pipd_mask;	omap4_ctrl_pad_writel(reg, OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_DSIPHY);	return 0;}int __init omap_hdmi_init(enum omap_hdmi_flags flags){	if (cpu_is_omap44xx()) {		omap4_hdmi_mux_pads(flags);		omap4_tpd12s015_mux_pads();	}	return 0;}static int omap_dsi_enable_pads(int dsi_id, unsigned lane_mask){	if (cpu_is_omap44xx())		return omap4_dsi_mux_pads(dsi_id, lane_mask);	return 0;}static void omap_dsi_disable_pads(int dsi_id, unsigned lane_mask){	if (cpu_is_omap44xx())		omap4_dsi_mux_pads(dsi_id, 0);}static int omap_dss_set_min_bus_tput(struct device *dev, unsigned long tput){	return omap_pm_set_min_bus_tput(dev, OCP_INITIATOR_AGENT, tput);}static struct platform_device *create_dss_pdev(const char *pdev_name,		int pdev_id, const char *oh_name, void *pdata, int pdata_len,		struct platform_device *parent){	struct platform_device *pdev;	struct omap_device *od;	struct omap_hwmod *ohs[1];	struct omap_hwmod *oh;	int r;	oh = omap_hwmod_lookup(oh_name);	if (!oh) {		pr_err("Could not look up %s\n", oh_name);		r = -ENODEV;		goto err;	}	pdev = platform_device_alloc(pdev_name, pdev_id);	if (!pdev) {		pr_err("Could not create pdev for %s\n", pdev_name);		r = -ENOMEM;		goto err;	}	if (parent != NULL)		pdev->dev.parent = &parent->dev;	if (pdev->id != -1)		dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id);	else		dev_set_name(&pdev->dev, "%s", pdev->name);	ohs[0] = oh;	od = omap_device_alloc(pdev, ohs, 1, NULL, 0);	if (IS_ERR(od)) {		pr_err("Could not alloc omap_device for %s\n", pdev_name);		r = -ENOMEM;		goto err;	}	r = platform_device_add_data(pdev, pdata, pdata_len);	if (r) {		pr_err("Could not set pdata for %s\n", pdev_name);		goto err;	}	r = omap_device_register(pdev);	if (r) {		pr_err("Could not register omap_device for %s\n", pdev_name);		goto err;	}	return pdev;err:	return ERR_PTR(r);}static struct platform_device *create_simple_dss_pdev(const char *pdev_name,		int pdev_id, void *pdata, int pdata_len,		struct platform_device *parent){	struct platform_device *pdev;	int r;	pdev = platform_device_alloc(pdev_name, pdev_id);	if (!pdev) {		pr_err("Could not create pdev for %s\n", pdev_name);		r = -ENOMEM;		goto err;	}	if (parent != NULL)		pdev->dev.parent = &parent->dev;	if (pdev->id != -1)		dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id);	else		dev_set_name(&pdev->dev, "%s", pdev->name);	r = platform_device_add_data(pdev, pdata, pdata_len);	if (r) {		pr_err("Could not set pdata for %s\n", pdev_name);		goto err;	}	r = platform_device_add(pdev);	if (r) {		pr_err("Could not register platform_device for %s\n", pdev_name);		goto err;	}	return pdev;err:	return ERR_PTR(r);}static enum omapdss_version __init omap_display_get_version(void){	if (cpu_is_omap24xx())		return OMAPDSS_VER_OMAP24xx;	else if (cpu_is_omap3630())		return OMAPDSS_VER_OMAP3630;	else if (cpu_is_omap34xx()) {		if (soc_is_am35xx()) {			return OMAPDSS_VER_AM35xx;		} else {			if (omap_rev() < OMAP3430_REV_ES3_0)				return OMAPDSS_VER_OMAP34xx_ES1;			else				return OMAPDSS_VER_OMAP34xx_ES3;		}	} else if (omap_rev() == OMAP4430_REV_ES1_0)		return OMAPDSS_VER_OMAP4430_ES1;	else if (omap_rev() == OMAP4430_REV_ES2_0 ||			omap_rev() == OMAP4430_REV_ES2_1 ||			omap_rev() == OMAP4430_REV_ES2_2)		return OMAPDSS_VER_OMAP4430_ES2;	else if (cpu_is_omap44xx())		return OMAPDSS_VER_OMAP4;	else if (soc_is_omap54xx())		return OMAPDSS_VER_OMAP5;	else		return OMAPDSS_VER_UNKNOWN;}int __init omap_display_init(struct omap_dss_board_info *board_data){	int r = 0;	struct platform_device *pdev;	int i, oh_count;	const struct omap_dss_hwmod_data *curr_dss_hwmod;	struct platform_device *dss_pdev;	enum omapdss_version ver;	/* create omapdss device */	ver = omap_display_get_version();	if (ver == OMAPDSS_VER_UNKNOWN) {		pr_err("DSS not supported on this SoC\n");		return -ENODEV;	}	board_data->version = ver;	board_data->dsi_enable_pads = omap_dsi_enable_pads;	board_data->dsi_disable_pads = omap_dsi_disable_pads;	board_data->get_context_loss_count = omap_pm_get_dev_context_loss_count;	board_data->set_min_bus_tput = omap_dss_set_min_bus_tput;	omap_display_device.dev.platform_data = board_data;	r = platform_device_register(&omap_display_device);	if (r < 0) {		pr_err("Unable to register omapdss device\n");		return r;	}	/* create devices for dss hwmods */	if (cpu_is_omap24xx()) {		curr_dss_hwmod = omap2_dss_hwmod_data;		oh_count = ARRAY_SIZE(omap2_dss_hwmod_data);	} else if (cpu_is_omap34xx()) {		curr_dss_hwmod = omap3_dss_hwmod_data;		oh_count = ARRAY_SIZE(omap3_dss_hwmod_data);	} else {		curr_dss_hwmod = omap4_dss_hwmod_data;		oh_count = ARRAY_SIZE(omap4_dss_hwmod_data);	}	/*	 * First create the pdev for dss_core, which is used as a parent device	 * by the other dss pdevs. Note: dss_core has to be the first item in	 * the hwmod list.	 */	dss_pdev = create_dss_pdev(curr_dss_hwmod[0].dev_name,			curr_dss_hwmod[0].id,			curr_dss_hwmod[0].oh_name,			board_data, sizeof(*board_data),			NULL);	if (IS_ERR(dss_pdev)) {		pr_err("Could not build omap_device for %s\n",				curr_dss_hwmod[0].oh_name);		return PTR_ERR(dss_pdev);	}	for (i = 1; i < oh_count; i++) {		pdev = create_dss_pdev(curr_dss_hwmod[i].dev_name,				curr_dss_hwmod[i].id,				curr_dss_hwmod[i].oh_name,				board_data, sizeof(*board_data),				dss_pdev);		if (IS_ERR(pdev)) {			pr_err("Could not build omap_device for %s\n",					curr_dss_hwmod[i].oh_name);			return PTR_ERR(pdev);		}	}	/* Create devices for DPI and SDI */	pdev = create_simple_dss_pdev("omapdss_dpi", -1,			board_data, sizeof(*board_data), dss_pdev);	if (IS_ERR(pdev)) {		pr_err("Could not build platform_device for omapdss_dpi\n");		return PTR_ERR(pdev);	}	if (cpu_is_omap34xx()) {		pdev = create_simple_dss_pdev("omapdss_sdi", -1,				board_data, sizeof(*board_data), dss_pdev);		if (IS_ERR(pdev)) {			pr_err("Could not build platform_device for omapdss_sdi\n");			return PTR_ERR(pdev);		}	}	return 0;}static void dispc_disable_outputs(void){	u32 v, irq_mask = 0;	bool lcd_en, digit_en, lcd2_en = false, lcd3_en = false;	int i;	struct omap_dss_dispc_dev_attr *da;	struct omap_hwmod *oh;	oh = omap_hwmod_lookup("dss_dispc");	if (!oh) {		WARN(1, "display: could not disable outputs during reset - could not find dss_dispc hwmod\n");		return;	}	if (!oh->dev_attr) {		pr_err("display: could not disable outputs during reset due to missing dev_attr\n");		return;	}	da = (struct omap_dss_dispc_dev_attr *)oh->dev_attr;	/* store value of LCDENABLE and DIGITENABLE bits */	v = omap_hwmod_read(oh, DISPC_CONTROL);	lcd_en = v & LCD_EN_MASK;	digit_en = v & DIGIT_EN_MASK;
 |