| /src/sys/dev/ic/ |
| ct65550var.h | 73 uint8_t sc_edid[1024]; member in struct:chipsfb_softc
|
| /src/sys/dev/pci/ |
| mgafbvar.h | 121 uint8_t sc_edid[128]; member in struct:mgafb_softc
|
| veritefb.c | 171 uint8_t sc_edid[128]; member in struct:veritefb_softc 975 memset(sc->sc_edid, 0, sizeof(sc->sc_edid)); 977 if (ddc_read_edid(&sc->sc_i2c, sc->sc_edid, 978 sizeof(sc->sc_edid)) == 0 && sc->sc_edid[1] != 0) 980 memset(sc->sc_edid, 0, sizeof(sc->sc_edid)); 983 if (sc->sc_edid[1] == 0) { 988 if (edid_parse(sc->sc_edid, &sc->sc_ei) != 0) [all...] |
| mgafb.c | 549 memset(sc->sc_edid, 0, sizeof(sc->sc_edid)); 551 if (ddc_read_edid(&sc->sc_i2c, sc->sc_edid, 128) == 0 && 552 sc->sc_edid[1] != 0) 554 memset(sc->sc_edid, 0, sizeof(sc->sc_edid)); 557 if (sc->sc_edid[1] == 0) { 562 if (edid_parse(sc->sc_edid, &sc->sc_edid_info) == -1) {
|
| /src/sys/dev/i2c/ |
| tda19988.c | 268 uint8_t *sc_edid; member in struct:tda19988_softc 590 err = tda19988_read_edid_block(sc, sc->sc_edid, 0); 594 blocks = sc->sc_edid[0x7e]; 598 memcpy(edid, sc->sc_edid, EDID_LENGTH); 599 kmem_free(sc->sc_edid, sc->sc_edid_len); 600 sc->sc_edid = edid; 605 buf = sc->sc_edid + EDID_LENGTH*(i+1); 736 pedid = (struct edid *)sc->sc_edid; 740 pedid = (struct edid *)sc->sc_edid; 893 sc->sc_edid = kmem_zalloc(EDID_LENGTH, KM_SLEEP) [all...] |
| /src/sys/dev/pci/voyager/ |
| voyagerfb.c | 105 uint8_t sc_edid[128]; member in struct:voyagerfb_softc 366 memset(sc->sc_edid, 0, sizeof(sc->sc_edid)); 368 if (ddc_read_edid(&sc->sc_ddc_i2c, sc->sc_edid, 369 sizeof(sc->sc_edid)) == 0 && sc->sc_edid[1] != 0) 371 memset(sc->sc_edid, 0, sizeof(sc->sc_edid)); 374 if (sc->sc_edid[1] == 0) { 381 if (edid_parse(sc->sc_edid, &sc->sc_edid_info) == -1) [all...] |