2 * driver/vide/fb_ddc.c - DDC/EDID read support.
4 * Copyright (C) 2006 Dennis Munsie <dmunsie@cecropia.com>
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive
11 #include <linux/delay.h>
12 #include <linux/device.h>
14 #include <linux/i2c-algo-bit.h>
20 static unsigned char *fb_do_probe_ddc_edid(struct i2c_adapter
*adapter
)
22 unsigned char start
= 0x0;
23 struct i2c_msg msgs
[] = {
36 buf
= kmalloc(EDID_LENGTH
, GFP_KERNEL
);
38 dev_warn(&adapter
->dev
, "unable to allocate memory for EDID "
44 if (i2c_transfer(adapter
, msgs
, 2) == 2)
47 dev_warn(&adapter
->dev
, "unable to read EDID block.\n");
52 unsigned char *fb_ddc_read(struct i2c_adapter
*adapter
)
54 struct i2c_algo_bit_data
*algo_data
= adapter
->algo_data
;
55 unsigned char *edid
= NULL
;
58 algo_data
->setscl(algo_data
->data
, 1);
59 algo_data
->setscl(algo_data
->data
, 0);
61 for (i
= 0; i
< 3; i
++) {
62 /* For some old monitors we need the
63 * following process to initialize/stop DDC
65 algo_data
->setsda(algo_data
->data
, 0);
68 algo_data
->setscl(algo_data
->data
, 1);
69 for (j
= 0; j
< 5; j
++) {
71 if (algo_data
->getscl(algo_data
->data
))
77 algo_data
->setsda(algo_data
->data
, 0);
79 algo_data
->setscl(algo_data
->data
, 0);
81 algo_data
->setsda(algo_data
->data
, 1);
84 /* Do the real work */
85 edid
= fb_do_probe_ddc_edid(adapter
);
86 algo_data
->setsda(algo_data
->data
, 0);
87 algo_data
->setscl(algo_data
->data
, 0);
90 algo_data
->setscl(algo_data
->data
, 1);
91 for (j
= 0; j
< 10; j
++) {
93 if (algo_data
->getscl(algo_data
->data
))
97 algo_data
->setsda(algo_data
->data
, 1);
99 algo_data
->setscl(algo_data
->data
, 0);
103 /* Release the DDC lines when done or the Apple Cinema HD display
106 algo_data
->setsda(algo_data
->data
, 0);
107 algo_data
->setscl(algo_data
->data
, 0);
112 EXPORT_SYMBOL_GPL(fb_ddc_read
);
114 MODULE_AUTHOR("Dennis Munsie <dmunsie@cecropia.com>");
115 MODULE_DESCRIPTION("DDC/EDID reading support");
116 MODULE_LICENSE("GPL");