Home
last modified time | relevance | path

Searched refs:mon_sense (Results 1 – 2 of 2) sorted by relevance

/linux-2.4.37.9/drivers/video/
Dcontrolfb.c944 out_le32(CNTRL_REG(p,mon_sense), 7); /* drive all lines high */ in read_control_sense()
946 out_le32(CNTRL_REG(p,mon_sense), 077); /* turn off drivers */ in read_control_sense()
948 sense = (in_le32(CNTRL_REG(p,mon_sense)) & 0x1c0) << 2; in read_control_sense()
951 out_le32(CNTRL_REG(p,mon_sense), 033); /* drive A low */ in read_control_sense()
953 sense |= (in_le32(CNTRL_REG(p,mon_sense)) & 0xc0) >> 2; in read_control_sense()
954 out_le32(CNTRL_REG(p,mon_sense), 055); /* drive B low */ in read_control_sense()
956 sense |= ((in_le32(CNTRL_REG(p,mon_sense)) & 0x100) >> 5) in read_control_sense()
957 | ((in_le32(CNTRL_REG(p,mon_sense)) & 0x40) >> 4); in read_control_sense()
958 out_le32(CNTRL_REG(p,mon_sense), 066); /* drive C low */ in read_control_sense()
960 sense |= (in_le32(CNTRL_REG(p,mon_sense)) & 0x180) >> 7; in read_control_sense()
[all …]
Dcontrolfb.h68 struct preg mon_sense; /* monitor sense bits */ member