From patchwork Tue Jun 7 10:45:49 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sascha Hauer X-Patchwork-Id: 855812 Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p57AkZrf029824 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 7 Jun 2011 10:46:57 GMT Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1QTtnm-0000KP-S4; Tue, 07 Jun 2011 10:46:26 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1QTtnm-0006xY-CX; Tue, 07 Jun 2011 10:46:26 +0000 Received: from metis.ext.pengutronix.de ([2001:6f8:1178:4:290:27ff:fe1d:cc33]) by canuck.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1QTtnd-0006vz-0Q for linux-arm-kernel@lists.infradead.org; Tue, 07 Jun 2011 10:46:19 +0000 Received: from octopus.hi.pengutronix.de ([2001:6f8:1178:2:215:17ff:fe12:23b0]) by metis.ext.pengutronix.de with esmtp (Exim 4.72) (envelope-from ) id 1QTtnZ-0002yz-EE; Tue, 07 Jun 2011 12:46:13 +0200 Received: from sha by octopus.hi.pengutronix.de with local (Exim 4.76) (envelope-from ) id 1QTtnX-0007EZ-4Z; Tue, 07 Jun 2011 12:46:11 +0200 From: Sascha Hauer To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 4/5] DRM: Add support for the sii902x HDMI/DVI encoder Date: Tue, 7 Jun 2011 12:45:49 +0200 Message-Id: <1307443550-25549-5-git-send-email-s.hauer@pengutronix.de> X-Mailer: git-send-email 1.7.5.3 In-Reply-To: <1307443550-25549-1-git-send-email-s.hauer@pengutronix.de> References: <1307443550-25549-1-git-send-email-s.hauer@pengutronix.de> X-SA-Exim-Connect-IP: 2001:6f8:1178:2:215:17ff:fe12:23b0 X-SA-Exim-Mail-From: sha@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-arm-kernel@lists.infradead.org X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110607_064617_884398_E9F9E449 X-CRM114-Status: GOOD ( 31.19 ) X-Spam-Score: -0.0 (/) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (-0.0 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 T_RP_MATCHES_RCVD Envelope sender domain matches handover relay domain Cc: Konstantinos Margaritis , Eric Miao , Jason Chen , DRI mailing list , Sascha Hauer X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Tue, 07 Jun 2011 10:46:57 +0000 (UTC) Signed-off-by: Sascha Hauer --- drivers/gpu/drm/Kconfig | 6 + drivers/gpu/drm/i2c/Makefile | 3 + drivers/gpu/drm/i2c/sii902x.c | 334 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 343 insertions(+), 0 deletions(-) create mode 100644 drivers/gpu/drm/i2c/sii902x.c diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig index bcd9a27..01d5444 100644 --- a/drivers/gpu/drm/Kconfig +++ b/drivers/gpu/drm/Kconfig @@ -166,6 +166,12 @@ config DRM_SAVAGE Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister chipset. If M is selected the module will be called savage. +config DRM_I2C_SII902X + tristate "sii902x" + depends on DRM && I2C + help + Support for sii902x DVI/HDMI encoder chips + config DRM_IMX_IPUV3 tristate "i.MX IPUv3" depends on DRM && ARCH_MXC diff --git a/drivers/gpu/drm/i2c/Makefile b/drivers/gpu/drm/i2c/Makefile index 9286256..a7a8d40 100644 --- a/drivers/gpu/drm/i2c/Makefile +++ b/drivers/gpu/drm/i2c/Makefile @@ -5,3 +5,6 @@ obj-$(CONFIG_DRM_I2C_CH7006) += ch7006.o sil164-y := sil164_drv.o obj-$(CONFIG_DRM_I2C_SIL164) += sil164.o + +sii902x := sii902x_drv.o +obj-$(CONFIG_DRM_I2C_SII902X) += sii902x.o diff --git a/drivers/gpu/drm/i2c/sii902x.c b/drivers/gpu/drm/i2c/sii902x.c new file mode 100644 index 0000000..7928533 --- /dev/null +++ b/drivers/gpu/drm/i2c/sii902x.c @@ -0,0 +1,334 @@ +/* + * Copyright (C) 2010 Francisco Jerez. + * All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice (including the + * next paragraph) shall be included in all copies or substantial + * portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE + * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + */ + +#include +#include +#include +#include + +struct sii902x_encoder_params { +}; + +struct sii902x_priv { + struct sii902x_encoder_params config; + struct i2c_client *client; + struct drm_encoder_connector encon; +}; + +#define to_sii902x(x) container_of(x, struct sii902x_priv, encon) + +static int sii902x_write(struct i2c_client *client, uint8_t addr, uint8_t val) +{ + int ret; + + ret = i2c_smbus_write_byte_data(client, addr, val); + if (ret) { + dev_dbg(&client->dev, "%s failed with %d\n", __func__, ret); + } + return ret; +} + +static uint8_t sii902x_read(struct i2c_client *client, uint8_t addr) +{ + int dat; + + dat = i2c_smbus_read_byte_data(client, addr); + + return dat; +} + +static int hdmi_cap = 0; /* FIXME */ + +static void sii902x_poweron(struct sii902x_priv *priv) +{ + struct i2c_client *client = priv->client; + + /* Turn on DVI or HDMI */ + if (hdmi_cap) + sii902x_write(client, 0x1A, 0x01 | 4); + else + sii902x_write(client, 0x1A, 0x00); + + return; +} + +static void sii902x_poweroff(struct sii902x_priv *priv) +{ + struct i2c_client *client = priv->client; + + /* disable tmds before changing resolution */ + if (hdmi_cap) + sii902x_write(client, 0x1A, 0x11); + else + sii902x_write(client, 0x1A, 0x10); + + return; +} + +static int sii902x_get_modes(struct drm_encoder_connector *encon) +{ + struct sii902x_priv *priv = to_sii902x(encon); + struct i2c_client *client = priv->client; + struct i2c_adapter *adap = client->adapter; + struct drm_connector *connector = &encon->connector; + struct edid *edid; + int ret; + int old, dat, cnt = 100; + + old = sii902x_read(client, 0x1A); + + sii902x_write(client, 0x1A, old | 0x4); + do { + cnt--; + msleep(10); + dat = sii902x_read(client, 0x1A); + } while ((!(dat & 0x2)) && cnt); + + if (!cnt) + return -ETIMEDOUT; + + sii902x_write(client, 0x1A, old | 0x06); + + edid = drm_get_edid(connector, adap); + if (edid) { + drm_mode_connector_update_edid_property(connector, edid); + ret = drm_add_edid_modes(connector, edid); + connector->display_info.raw_edid = NULL; + kfree(edid); + } + + cnt = 100; + do { + cnt--; + sii902x_write(client, 0x1A, old & ~0x6); + msleep(10); + dat = sii902x_read(client, 0x1A); + } while ((dat & 0x6) && cnt); + + if (!cnt) + ret = -1; + + sii902x_write(client, 0x1A, old); + + return 0; +} + +static irqreturn_t sii902x_detect_handler(int irq, void *data) +{ + struct sii902x_priv *priv = data; + struct i2c_client *client = priv->client; + int dat; + + dat = sii902x_read(client, 0x3D); + if (dat & 0x1) { + /* cable connection changes */ + if (dat & 0x4) { + printk("plugin\n"); + } else { + printk("plugout\n"); + } + } + sii902x_write(client, 0x3D, dat); + + return IRQ_HANDLED; +} + + +static int sii902x_mode_valid(struct drm_encoder_connector *encon, + struct drm_display_mode *mode) +{ + return MODE_OK; +} + +static void sii902x_mode_set(struct drm_encoder_connector *encon, + struct drm_display_mode *mode, + struct drm_display_mode *adjusted_mode) +{ + struct sii902x_priv *priv = to_sii902x(encon); + struct i2c_client *client = priv->client; + u16 data[4]; + u32 refresh; + u8 *tmp; + int i; + + /* Power up */ + sii902x_write(client, 0x1E, 0x00); + + dev_dbg(&client->dev, "%s: %dx%d, pixclk %d\n", __func__, + mode->hdisplay, mode->vdisplay, + mode->clock * 1000); + + /* set TPI video mode */ + data[0] = mode->clock / 10; + data[2] = mode->htotal; + data[3] = mode->vtotal; + refresh = data[2] * data[3]; + refresh = (mode->clock * 1000) / refresh; + data[1] = refresh * 100; + tmp = (u8 *)data; + for (i = 0; i < 8; i++) + sii902x_write(client, i, tmp[i]); + + /* input bus/pixel: full pixel wide (24bit), rising edge */ + sii902x_write(client, 0x08, 0x70); + /* Set input format to RGB */ + sii902x_write(client, 0x09, 0x00); + /* set output format to RGB */ + sii902x_write(client, 0x0A, 0x00); + /* audio setup */ + sii902x_write(client, 0x25, 0x00); + sii902x_write(client, 0x26, 0x40); + sii902x_write(client, 0x27, 0x00); +} + +static void sii902x_dpms(struct drm_encoder_connector *encon, int mode) +{ + struct sii902x_priv *priv = to_sii902x(encon); + + if (mode) + sii902x_poweroff(priv); + else + sii902x_poweron(priv); +} + +static void sii902x_prepare(struct drm_encoder_connector *encon) +{ + struct sii902x_priv *priv = to_sii902x(encon); + + sii902x_poweroff(priv); +} + +static void sii902x_commit(struct drm_encoder_connector *encon) +{ + struct sii902x_priv *priv = to_sii902x(encon); + + sii902x_poweron(priv); +} + +struct drm_encoder_connector_funcs sii902x_funcs = { + .dpms = sii902x_dpms, + .prepare = sii902x_prepare, + .commit = sii902x_commit, + .get_modes = sii902x_get_modes, + .mode_valid = sii902x_mode_valid, + .mode_set = sii902x_mode_set, +}; + +/* I2C driver functions */ + +static int +sii902x_probe(struct i2c_client *client, const struct i2c_device_id *id) +{ + int dat, ret; + struct sii902x_priv *priv; + const char *drm_name = "imx-drm.0"; /* FIXME: pass from pdata */ + int encon_id = 0; /* FIXME: pass from pdata */ + + priv = kzalloc(sizeof(*priv), GFP_KERNEL); + if (!priv) + return -ENOMEM; + + priv->client = client; + + /* Set 902x in hardware TPI mode on and jump out of D3 state */ + if (sii902x_write(client, 0xc7, 0x00) < 0) { + dev_err(&client->dev, "SII902x: cound not find device\n"); + return -ENODEV; + } + + /* read device ID */ + dat = sii902x_read(client, 0x1b); + if (dat != 0xb0) { + dev_err(&client->dev, "not found. id is 0x%02x instead of 0xb0\n", + dat); + return -ENODEV; + } + + if (client->irq) { + ret = request_threaded_irq(client->irq, NULL, sii902x_detect_handler, + IRQF_TRIGGER_FALLING, + "SII902x_det", priv); + sii902x_write(client, 0x3c, 0x01); + } + + priv->encon.funcs = &sii902x_funcs; + + i2c_set_clientdata(client, priv); + + drm_encon_register(drm_name, encon_id, &priv->encon); + + dev_info(&client->dev, "initialized\n"); + + return 0; +} + +static int sii902x_remove(struct i2c_client *client) +{ + struct sii902x_priv *priv; + int ret; + + priv = i2c_get_clientdata(client); + + ret = drm_encon_unregister(&priv->encon); + if (ret) + return ret; + + kfree(priv); + + return 0; +} + +static struct i2c_device_id sii902x_ids[] = { + { "sii9022", 0 }, + { } +}; +MODULE_DEVICE_TABLE(i2c, sii902x_ids); + +static struct i2c_driver sii902x_i2c_driver = { + .probe = sii902x_probe, + .remove = sii902x_remove, + .driver = { + .name = "sii902x", + }, + .id_table = sii902x_ids, +}; + +static int __init sii902x_init(void) +{ + return i2c_add_driver(&sii902x_i2c_driver); +} + +static void __exit sii902x_exit(void) +{ + i2c_del_driver(&sii902x_i2c_driver); +} + +MODULE_AUTHOR("Sascha Hauer "); +MODULE_DESCRIPTION("Silicon Image sii902x HDMI transmitter driver"); +MODULE_LICENSE("GPL"); + +module_init(sii902x_init); +module_exit(sii902x_exit);