Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/drivers/video/nvidia/nv_of.c |
| 3 | * |
| 4 | * Copyright 2004 Antonino A. Daplas <adaplas @pol.net> |
| 5 | * |
| 6 | * Based on rivafb-i2c.c |
| 7 | * |
| 8 | * This file is subject to the terms and conditions of the GNU General Public |
| 9 | * License. See the file COPYING in the main directory of this archive |
| 10 | * for more details. |
| 11 | */ |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/module.h> |
| 14 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/delay.h> |
| 16 | #include <linux/pci.h> |
| 17 | #include <linux/fb.h> |
| 18 | |
| 19 | #include <asm/io.h> |
| 20 | |
| 21 | #include <asm/prom.h> |
| 22 | #include <asm/pci-bridge.h> |
| 23 | |
| 24 | #include "nv_type.h" |
| 25 | #include "nv_local.h" |
| 26 | #include "nv_proto.h" |
| 27 | |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 28 | #include "../edid.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 30 | int nvidia_probe_of_connector(struct fb_info *info, int conn, u8 **out_edid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | { |
Alexey Dobriyan | 2d21247 | 2005-09-11 04:01:09 +0400 | [diff] [blame] | 32 | struct nvidia_par *par = info->par; |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 33 | struct device_node *parent, *dp; |
Jeremy Kerr | b04e3dd | 2006-07-12 15:40:40 +1000 | [diff] [blame] | 34 | const unsigned char *pedid = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | static char *propnames[] = { |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 36 | "DFP,EDID", "LCD,EDID", "EDID", "EDID1", |
| 37 | "EDID,B", "EDID,A", NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | int i; |
| 39 | |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 40 | parent = pci_device_to_OF_node(par->pci_dev); |
| 41 | if (parent == NULL) |
| 42 | return -1; |
| 43 | if (par->twoHeads) { |
Jeremy Kerr | b04e3dd | 2006-07-12 15:40:40 +1000 | [diff] [blame] | 44 | const char *pname; |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 45 | int len; |
| 46 | |
| 47 | for (dp = NULL; |
| 48 | (dp = of_get_next_child(parent, dp)) != NULL;) { |
Jeremy Kerr | b04e3dd | 2006-07-12 15:40:40 +1000 | [diff] [blame] | 49 | pname = get_property(dp, "name", NULL); |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 50 | if (!pname) |
| 51 | continue; |
| 52 | len = strlen(pname); |
| 53 | if ((pname[len-1] == 'A' && conn == 1) || |
| 54 | (pname[len-1] == 'B' && conn == 2)) { |
| 55 | for (i = 0; propnames[i] != NULL; ++i) { |
Jeremy Kerr | b04e3dd | 2006-07-12 15:40:40 +1000 | [diff] [blame] | 56 | pedid = get_property(dp, propnames[i], |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 57 | NULL); |
| 58 | if (pedid != NULL) |
| 59 | break; |
| 60 | } |
| 61 | of_node_put(dp); |
| 62 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | } |
| 64 | } |
| 65 | } |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 66 | if (pedid == NULL) { |
| 67 | for (i = 0; propnames[i] != NULL; ++i) { |
Jeremy Kerr | b04e3dd | 2006-07-12 15:40:40 +1000 | [diff] [blame] | 68 | pedid = get_property(parent, propnames[i], NULL); |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 69 | if (pedid != NULL) |
| 70 | break; |
| 71 | } |
| 72 | } |
| 73 | if (pedid) { |
Alexey Dobriyan | bfba7b3 | 2006-12-08 02:40:46 -0800 | [diff] [blame] | 74 | *out_edid = kmemdup(pedid, EDID_LENGTH, GFP_KERNEL); |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 75 | if (*out_edid == NULL) |
| 76 | return -1; |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 77 | printk(KERN_DEBUG "nvidiafb: Found OF EDID for head %d\n", conn); |
| 78 | return 0; |
| 79 | } |
| 80 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |