From: Mayuresh Janorkar <mayur@ti.com>
To: linux-omap@vger.kernel.org
Cc: tomi.valkeinen@ti.com, Mayuresh Janorkar <mayur@ti.com>,
Mythri P K <mythripk@ti.com>
Subject: [PATCH 4/7] OMAP: DSS: Add i2c client driver for picodlp
Date: Mon, 18 Apr 2011 11:45:47 +0530 [thread overview]
Message-ID: <1303107350-22747-5-git-send-email-mayur@ti.com> (raw)
In-Reply-To: <1303107350-22747-1-git-send-email-mayur@ti.com>
The configurations and data transfer with picodlp panel happens through i2c.
An i2c client with name "picodlp_i2c_driver" is registered inside panel.
Signed-off-by: Mythri P K <mythripk@ti.com>
Signed-off-by: Mayuresh Janorkar <mayur@ti.com>
Signed-off-by: Mythri P K <mythripk@ti.com>
---
drivers/video/omap2/displays/panel-picodlp.c | 130 +++++++++++++++++++++++++-
1 files changed, 126 insertions(+), 4 deletions(-)
diff --git a/drivers/video/omap2/displays/panel-picodlp.c b/drivers/video/omap2/displays/panel-picodlp.c
index 4f12903..e361674 100644
--- a/drivers/video/omap2/displays/panel-picodlp.c
+++ b/drivers/video/omap2/displays/panel-picodlp.c
@@ -1,8 +1,10 @@
/*
* picodlp panel driver
+ * picodlp_i2c_driver: i2c_client driver
*
* Copyright (C) 2009-2011 Texas Instruments
* Author: Mythri P K <mythripk@ti.com>
+ * Mayuresh Janorkar <mayur@ti.com>
*
* 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
@@ -23,13 +25,29 @@
#include <linux/firmware.h>
#include <linux/slab.h>
#include <linux/mutex.h>
+#include <linux/i2c.h>
#include <linux/delay.h>
+#include <linux/gpio.h>
#include <plat/display.h>
#include <plat/panel-picodlp.h>
+#define DRIVER_NAME "picodlp_i2c_driver"
struct picodlp_data {
struct mutex lock;
+ struct i2c_client *picodlp_i2c_client;
+};
+
+static struct i2c_board_info picodlp_i2c_board_info = {
+ I2C_BOARD_INFO("picodlp_i2c_driver", 0x1b),
+};
+
+struct picodlp_i2c_data {
+ struct mutex xfer_lock;
+};
+
+struct i2c_device_id picodlp_i2c_id[] = {
+ { "picodlp_i2c_driver", 0 },
};
static struct omap_video_timings pico_ls_timings = {
@@ -46,9 +64,57 @@ static struct omap_video_timings pico_ls_timings = {
.vbp = 14,
};
+static inline struct picodlp_panel_data
+ *get_panel_data(const struct omap_dss_device *dssdev)
+{
+ return (struct picodlp_panel_data *) dssdev->data;
+}
+
+static int picodlp_i2c_probe(struct i2c_client *client,
+ const struct i2c_device_id *id)
+{
+ struct picodlp_i2c_data *picodlp_i2c_data;
+
+ picodlp_i2c_data = kzalloc(sizeof(struct picodlp_i2c_data), GFP_KERNEL);
+
+ if (!picodlp_i2c_data)
+ return -ENOMEM;
+
+ i2c_set_clientdata(client, picodlp_i2c_data);
+
+ return 0;
+}
+
+static int picodlp_i2c_remove(struct i2c_client *client)
+{
+ struct picodlp_i2c_data *picodlp_i2c_data =
+ i2c_get_clientdata(client);
+
+ kfree(picodlp_i2c_data);
+ i2c_unregister_device(client);
+ return 0;
+}
+
+static struct i2c_driver picodlp_i2c_driver = {
+ .driver = {
+ .name = "picodlp_i2c_driver",
+ },
+ .probe = picodlp_i2c_probe,
+ .remove = picodlp_i2c_remove,
+ .id_table = picodlp_i2c_id,
+};
+
static int picodlp_panel_power_on(struct omap_dss_device *dssdev)
{
- int r;
+ int r = 0;
+ struct picodlp_data *picod = dev_get_drvdata(&dssdev->dev);
+ struct picodlp_panel_data *picodlp_pdata;
+ struct picodlp_i2c_data *picodlp_i2c_data;
+
+ picodlp_pdata = get_panel_data(dssdev);
+ gpio_set_value(picodlp_pdata->display_sel_gpio, 1);
+ gpio_set_value(picodlp_pdata->park_gpio, 1);
+ gpio_set_value(picodlp_pdata->phy_reset_gpio, 1);
if (dssdev->platform_enable) {
r = dssdev->platform_enable(dssdev);
@@ -65,8 +131,10 @@ static int picodlp_panel_power_on(struct omap_dss_device *dssdev)
msleep(675);
dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
- return 0;
+ picodlp_i2c_data =
+ i2c_get_clientdata(picod->picodlp_i2c_client);
+ return r;
err:
if (dssdev->platform_disable)
dssdev->platform_disable(dssdev);
@@ -85,6 +153,11 @@ static void picodlp_panel_power_off(struct omap_dss_device *dssdev)
static int picodlp_panel_probe(struct omap_dss_device *dssdev)
{
struct picodlp_data *picod;
+ struct picodlp_panel_data *picodlp_pdata;
+ struct i2c_adapter *adapter;
+ struct i2c_client *picodlp_i2c_client;
+ struct picodlp_i2c_data *picodlp_i2c_data;
+ int r = 0, picodlp_adapter_id;
dssdev->panel.config = OMAP_DSS_LCD_TFT | OMAP_DSS_LCD_ONOFF |
OMAP_DSS_LCD_IHS | OMAP_DSS_LCD_IVS;
@@ -96,8 +169,38 @@ static int picodlp_panel_probe(struct omap_dss_device *dssdev)
return -ENOMEM;
mutex_init(&picod->lock);
+
+ picodlp_pdata = get_panel_data(dssdev);
+ picodlp_adapter_id = picodlp_pdata->picodlp_adapter_id;
+
+ adapter = i2c_get_adapter(picodlp_adapter_id);
+ if (!adapter) {
+ dev_err(&dssdev->dev, "can't get i2c adapter\n");
+ r = -ENODEV;
+ goto err;
+ }
+
+ picodlp_i2c_client = i2c_new_device(adapter, &picodlp_i2c_board_info);
+ /* wait till i2c device creation is done */
+ msleep(700);
+ if (!picodlp_i2c_client) {
+ dev_err(&dssdev->dev, "can't add i2c device::"
+ " picodlp_i2c_client is NULL\n");
+ r = -ENODEV;
+ goto err;
+ }
+
+ picod->picodlp_i2c_client = picodlp_i2c_client;
+
+ picodlp_i2c_data =
+ i2c_get_clientdata(picod->picodlp_i2c_client);
+
+ mutex_init(&picodlp_i2c_data->xfer_lock);
dev_set_drvdata(&dssdev->dev, picod);
- return 0;
+ return r;
+err:
+ kfree(picod);
+ return r;
}
static void picodlp_panel_remove(struct omap_dss_device *dssdev)
@@ -131,6 +234,11 @@ static int picodlp_panel_enable(struct omap_dss_device *dssdev)
static void picodlp_panel_disable(struct omap_dss_device *dssdev)
{
struct picodlp_data *picod = dev_get_drvdata(&dssdev->dev);
+ struct picodlp_panel_data *picodlp_pdata;
+
+ picodlp_pdata = get_panel_data(dssdev);
+ gpio_set_value(picodlp_pdata->phy_reset_gpio, 0);
+ gpio_set_value(picodlp_pdata->park_gpio, 0);
mutex_lock(&picod->lock);
/* Turn off DLP Power */
@@ -212,11 +320,25 @@ static struct omap_dss_driver picodlp_driver = {
static int __init picodlp_init(void)
{
- return omap_dss_register_driver(&picodlp_driver);
+ int r = 0;
+
+ r = i2c_add_driver(&picodlp_i2c_driver);
+ if (r < 0) {
+ printk(KERN_WARNING DRIVER_NAME
+ " driver registration failed\n");
+ return r;
+ }
+
+ r = omap_dss_register_driver(&picodlp_driver);
+ if (r)
+ i2c_del_driver(&picodlp_i2c_driver);
+
+ return r;
}
static void __exit picodlp_exit(void)
{
+ i2c_del_driver(&picodlp_i2c_driver);
omap_dss_unregister_driver(&picodlp_driver);
}
--
1.7.1
next prev parent reply other threads:[~2011-04-18 5:59 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-18 6:15 [PATCH 0/7] picodlp projector driver Mayuresh Janorkar
2011-04-18 6:15 ` [PATCH 1/7] OMAP: DSS: Adding a header file for picodlp panel data Mayuresh Janorkar
2011-04-18 6:15 ` [PATCH 2/7] OMAP: DSS: Adding a picodlp panel header file Mayuresh Janorkar
2011-04-18 6:15 ` [PATCH 3/7] OMAP: DSS: Adding a picodlp panel driver Mayuresh Janorkar
2011-04-19 11:09 ` Tomi Valkeinen
2011-04-21 11:06 ` Janorkar, Mayuresh
2011-04-26 10:42 ` Tomi Valkeinen
2011-04-18 6:15 ` Mayuresh Janorkar [this message]
2011-04-19 11:26 ` [PATCH 4/7] OMAP: DSS: Add i2c client driver for picodlp Tomi Valkeinen
2011-04-19 11:42 ` Tomi Valkeinen
2011-04-21 11:08 ` Janorkar, Mayuresh
2011-04-18 6:15 ` [PATCH 5/7] OMAP: DSS: Adding initialization routine to picodlp panel Mayuresh Janorkar
2011-04-19 11:52 ` Tomi Valkeinen
2011-04-21 11:17 ` Janorkar, Mayuresh
2011-04-26 10:47 ` Tomi Valkeinen
2011-04-18 6:15 ` [PATCH 6/7] OMAP4: DSS: Adding a picodlp in OMAP4430 SDP board file Mayuresh Janorkar
2011-04-19 11:54 ` Tomi Valkeinen
2011-04-21 11:18 ` Janorkar, Mayuresh
2011-04-18 6:15 ` [PATCH 7/7] OMAP4: DSS: Adding picodlp panel entry in Kconfig and Makefile Mayuresh Janorkar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1303107350-22747-5-git-send-email-mayur@ti.com \
--to=mayur@ti.com \
--cc=linux-omap@vger.kernel.org \
--cc=mythripk@ti.com \
--cc=tomi.valkeinen@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox