3 #include <linux/module.h>
4 #include <linux/kernel.h>
5 #include <linux/delay.h>
10 #include <linux/i2c-algo-bit.h>
14 #include <video/radeon.h>
17 static void radeon_gpio_setscl(void* data
, int state
)
19 struct radeon_i2c_chan
*chan
= data
;
20 struct radeonfb_info
*rinfo
= chan
->rinfo
;
23 val
= INREG(chan
->ddc_reg
) & ~(VGA_DDC_CLK_OUT_EN
);
25 val
|= VGA_DDC_CLK_OUT_EN
;
27 OUTREG(chan
->ddc_reg
, val
);
28 (void)INREG(chan
->ddc_reg
);
31 static void radeon_gpio_setsda(void* data
, int state
)
33 struct radeon_i2c_chan
*chan
= data
;
34 struct radeonfb_info
*rinfo
= chan
->rinfo
;
37 val
= INREG(chan
->ddc_reg
) & ~(VGA_DDC_DATA_OUT_EN
);
39 val
|= VGA_DDC_DATA_OUT_EN
;
41 OUTREG(chan
->ddc_reg
, val
);
42 (void)INREG(chan
->ddc_reg
);
45 static int radeon_gpio_getscl(void* data
)
47 struct radeon_i2c_chan
*chan
= data
;
48 struct radeonfb_info
*rinfo
= chan
->rinfo
;
51 val
= INREG(chan
->ddc_reg
);
53 return (val
& VGA_DDC_CLK_INPUT
) ? 1 : 0;
56 static int radeon_gpio_getsda(void* data
)
58 struct radeon_i2c_chan
*chan
= data
;
59 struct radeonfb_info
*rinfo
= chan
->rinfo
;
62 val
= INREG(chan
->ddc_reg
);
64 return (val
& VGA_DDC_DATA_INPUT
) ? 1 : 0;
67 static int radeon_setup_i2c_bus(struct radeon_i2c_chan
*chan
, const char *name
)
71 snprintf(chan
->adapter
.name
, sizeof(chan
->adapter
.name
),
73 chan
->adapter
.owner
= THIS_MODULE
;
74 chan
->adapter
.algo_data
= &chan
->algo
;
75 chan
->adapter
.dev
.parent
= &chan
->rinfo
->pdev
->dev
;
76 chan
->algo
.setsda
= radeon_gpio_setsda
;
77 chan
->algo
.setscl
= radeon_gpio_setscl
;
78 chan
->algo
.getsda
= radeon_gpio_getsda
;
79 chan
->algo
.getscl
= radeon_gpio_getscl
;
80 chan
->algo
.udelay
= 10;
81 chan
->algo
.timeout
= 20;
82 chan
->algo
.data
= chan
;
84 i2c_set_adapdata(&chan
->adapter
, chan
);
86 /* Raise SCL and SDA */
87 radeon_gpio_setsda(chan
, 1);
88 radeon_gpio_setscl(chan
, 1);
91 rc
= i2c_bit_add_bus(&chan
->adapter
);
93 dev_dbg(&chan
->rinfo
->pdev
->dev
, "I2C bus %s registered.\n", name
);
95 dev_warn(&chan
->rinfo
->pdev
->dev
, "Failed to register I2C bus %s.\n", name
);
99 void radeon_create_i2c_busses(struct radeonfb_info
*rinfo
)
101 rinfo
->i2c
[0].rinfo
= rinfo
;
102 rinfo
->i2c
[0].ddc_reg
= GPIO_MONID
;
104 rinfo
->i2c
[0].adapter
.class = I2C_CLASS_HWMON
;
106 radeon_setup_i2c_bus(&rinfo
->i2c
[0], "monid");
108 rinfo
->i2c
[1].rinfo
= rinfo
;
109 rinfo
->i2c
[1].ddc_reg
= GPIO_DVI_DDC
;
110 radeon_setup_i2c_bus(&rinfo
->i2c
[1], "dvi");
112 rinfo
->i2c
[2].rinfo
= rinfo
;
113 rinfo
->i2c
[2].ddc_reg
= GPIO_VGA_DDC
;
114 radeon_setup_i2c_bus(&rinfo
->i2c
[2], "vga");
116 rinfo
->i2c
[3].rinfo
= rinfo
;
117 rinfo
->i2c
[3].ddc_reg
= GPIO_CRT2_DDC
;
118 radeon_setup_i2c_bus(&rinfo
->i2c
[3], "crt2");
121 void radeon_delete_i2c_busses(struct radeonfb_info
*rinfo
)
123 if (rinfo
->i2c
[0].rinfo
)
124 i2c_del_adapter(&rinfo
->i2c
[0].adapter
);
125 rinfo
->i2c
[0].rinfo
= NULL
;
127 if (rinfo
->i2c
[1].rinfo
)
128 i2c_del_adapter(&rinfo
->i2c
[1].adapter
);
129 rinfo
->i2c
[1].rinfo
= NULL
;
131 if (rinfo
->i2c
[2].rinfo
)
132 i2c_del_adapter(&rinfo
->i2c
[2].adapter
);
133 rinfo
->i2c
[2].rinfo
= NULL
;
135 if (rinfo
->i2c
[3].rinfo
)
136 i2c_del_adapter(&rinfo
->i2c
[3].adapter
);
137 rinfo
->i2c
[3].rinfo
= NULL
;
140 int radeon_probe_i2c_connector(struct radeonfb_info
*rinfo
, int conn
,
145 edid
= fb_ddc_read(&rinfo
->i2c
[conn
-1].adapter
);
150 pr_debug("radeonfb: I2C (port %d) ... not found\n", conn
);
153 if (edid
[0x14] & 0x80) {
154 /* Fix detection using BIOS tables */
155 if (rinfo
->is_mobility
/*&& conn == ddc_dvi*/ &&
156 (INREG(LVDS_GEN_CNTL
) & LVDS_ON
)) {
157 pr_debug("radeonfb: I2C (port %d) ... found LVDS panel\n", conn
);
160 pr_debug("radeonfb: I2C (port %d) ... found TMDS panel\n", conn
);
164 pr_debug("radeonfb: I2C (port %d) ... found CRT display\n", conn
);