Release 4.7 drivers/video/fbdev/nvidia/nv_i2c.c
  
  
/*
 * linux/drivers/video/nvidia/nvidia-i2c.c - nVidia i2c
 *
 * Copyright 2004 Antonino A. Daplas <adaplas @pol.net>
 *
 * Based on rivafb-i2c.c
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file COPYING in the main directory of this archive
 * for more details.
 */
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/delay.h>
#include <linux/gfp.h>
#include <linux/pci.h>
#include <linux/fb.h>
#include <asm/io.h>
#include "nv_type.h"
#include "nv_local.h"
#include "nv_proto.h"
#include "../edid.h"
static void nvidia_gpio_setscl(void *data, int state)
{
	struct nvidia_i2c_chan *chan = data;
	struct nvidia_par *par = chan->par;
	u32 val;
	val = NVReadCrtc(par, chan->ddc_base + 1) & 0xf0;
	if (state)
		val |= 0x20;
	else
		val &= ~0x20;
	NVWriteCrtc(par, chan->ddc_base + 1, val | 0x01);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| antonino daplas | antonino daplas | 76 | 100.00% | 2 | 100.00% | 
 | Total | 76 | 100.00% | 2 | 100.00% | 
static void nvidia_gpio_setsda(void *data, int state)
{
	struct nvidia_i2c_chan *chan = data;
	struct nvidia_par *par = chan->par;
	u32 val;
	val = NVReadCrtc(par, chan->ddc_base + 1) & 0xf0;
	if (state)
		val |= 0x10;
	else
		val &= ~0x10;
	NVWriteCrtc(par, chan->ddc_base + 1, val | 0x01);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| antonino daplas | antonino daplas | 76 | 100.00% | 2 | 100.00% | 
 | Total | 76 | 100.00% | 2 | 100.00% | 
static int nvidia_gpio_getscl(void *data)
{
	struct nvidia_i2c_chan *chan = data;
	struct nvidia_par *par = chan->par;
	u32 val = 0;
	if (NVReadCrtc(par, chan->ddc_base) & 0x04)
		val = 1;
	return val;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| antonino daplas | antonino daplas | 51 | 100.00% | 2 | 100.00% | 
 | Total | 51 | 100.00% | 2 | 100.00% | 
static int nvidia_gpio_getsda(void *data)
{
	struct nvidia_i2c_chan *chan = data;
	struct nvidia_par *par = chan->par;
	u32 val = 0;
	if (NVReadCrtc(par, chan->ddc_base) & 0x08)
		val = 1;
	return val;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| antonino daplas | antonino daplas | 51 | 100.00% | 2 | 100.00% | 
 | Total | 51 | 100.00% | 2 | 100.00% | 
static int nvidia_setup_i2c_bus(struct nvidia_i2c_chan *chan, const char *name,
				unsigned int i2c_class)
{
	int rc;
	strcpy(chan->adapter.name, name);
	chan->adapter.owner = THIS_MODULE;
	chan->adapter.class = i2c_class;
	chan->adapter.algo_data = &chan->algo;
	chan->adapter.dev.parent = &chan->par->pci_dev->dev;
	chan->algo.setsda = nvidia_gpio_setsda;
	chan->algo.setscl = nvidia_gpio_setscl;
	chan->algo.getsda = nvidia_gpio_getsda;
	chan->algo.getscl = nvidia_gpio_getscl;
	chan->algo.udelay = 40;
	chan->algo.timeout = msecs_to_jiffies(2);
	chan->algo.data = chan;
	i2c_set_adapdata(&chan->adapter, chan);
	/* Raise SCL and SDA */
	nvidia_gpio_setsda(chan, 1);
	nvidia_gpio_setscl(chan, 1);
	udelay(20);
	rc = i2c_bit_add_bus(&chan->adapter);
	if (rc == 0)
		dev_dbg(&chan->par->pci_dev->dev,
			"I2C bus %s registered.\n", name);
	else {
		dev_warn(&chan->par->pci_dev->dev,
			 "Failed to register I2C bus %s.\n", name);
		chan->par = NULL;
	}
	return rc;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| antonino daplas | antonino daplas | 215 | 94.71% | 2 | 66.67% | 
| jean delvare | jean delvare | 12 | 5.29% | 1 | 33.33% | 
 | Total | 227 | 100.00% | 3 | 100.00% | 
void nvidia_create_i2c_busses(struct nvidia_par *par)
{
	par->chan[0].par = par;
	par->chan[1].par = par;
	par->chan[2].par = par;
	par->chan[0].ddc_base = (par->reverse_i2c) ? 0x36 : 0x3e;
 	nvidia_setup_i2c_bus(&par->chan[0], "nvidia #0",
			     (par->reverse_i2c) ? I2C_CLASS_HWMON : 0);
	par->chan[1].ddc_base = (par->reverse_i2c) ? 0x3e : 0x36;
 	nvidia_setup_i2c_bus(&par->chan[1], "nvidia #1",
			     (par->reverse_i2c) ? 0 : I2C_CLASS_HWMON);
	par->chan[2].ddc_base = 0x50;
 	nvidia_setup_i2c_bus(&par->chan[2], "nvidia #2", 0);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| antonino daplas | antonino daplas | 144 | 94.12% | 3 | 50.00% | 
| jean delvare | jean delvare | 4 | 2.61% | 1 | 16.67% | 
| alessandro zummo | alessandro zummo | 3 | 1.96% | 1 | 16.67% | 
| petr vandrovec* | petr vandrovec* | 2 | 1.31% | 1 | 16.67% | 
 | Total | 153 | 100.00% | 6 | 100.00% | 
void nvidia_delete_i2c_busses(struct nvidia_par *par)
{
	int i;
	for (i = 0; i < 3; i++) {
		if (!par->chan[i].par)
			continue;
		i2c_del_adapter(&par->chan[i].adapter);
		par->chan[i].par = NULL;
	}
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| antonino daplas | antonino daplas | 42 | 64.62% | 1 | 33.33% | 
| jean delvare | jean delvare | 23 | 35.38% | 2 | 66.67% | 
 | Total | 65 | 100.00% | 3 | 100.00% | 
int nvidia_probe_i2c_connector(struct fb_info *info, int conn, u8 **out_edid)
{
	struct nvidia_par *par = info->par;
	u8 *edid = NULL;
	if (par->chan[conn - 1].par)
		edid = fb_ddc_read(&par->chan[conn - 1].adapter);
	if (!edid && conn == 1) {
		/* try to get from firmware */
		const u8 *e = fb_firmware_edid(info->device);
		if (e != NULL)
			edid = kmemdup(e, EDID_LENGTH, GFP_KERNEL);
	}
	*out_edid = edid;
	return (edid) ? 0 : 1;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| antonino daplas | antonino daplas | 113 | 95.76% | 4 | 66.67% | 
| alexey dobriyan | alexey dobriyan | 3 | 2.54% | 1 | 16.67% | 
| andrew morton | andrew morton | 2 | 1.69% | 1 | 16.67% | 
 | Total | 118 | 100.00% | 6 | 100.00% | 
Overall Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| antonino daplas | antonino daplas | 799 | 93.89% | 9 | 52.94% | 
| jean delvare | jean delvare | 39 | 4.58% | 3 | 17.65% | 
| tejun heo | tejun heo | 3 | 0.35% | 1 | 5.88% | 
| alessandro zummo | alessandro zummo | 3 | 0.35% | 1 | 5.88% | 
| alexey dobriyan | alexey dobriyan | 3 | 0.35% | 1 | 5.88% | 
| andrew morton | andrew morton | 2 | 0.24% | 1 | 5.88% | 
| petr vandrovec* | petr vandrovec* | 2 | 0.24% | 1 | 5.88% | 
 | Total | 851 | 100.00% | 17 | 100.00% | 
  
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.