Sponsored Content
Special Forums Hardware VGA distributor hardware detection Post 303012646 by diehard on Wednesday 7th of February 2018 07:54:41 AM
Old 02-07-2018
VGA distributor hardware detection

Hi,

I am trying to find the monitor information attach to my system. To get the detail I have decoded the information available in edid file using edid-decode utility.

The file is available at /sys/devices/pci0000:00/0000:00:01.0/drm/card0/card0-VGA-1/edid

After decoding edid file I get the attached monitor details. Now I have situation where I am using VGA distributor which split the signal and I can connect multiple monitor through it.After doing this I am still getting the same monitor information in my edid file.Second monitor detail is missing from it. I try to restart the system and found that file empty edid file is generated if two monitor is connected.

I have concluded that after starting the system some utility is actually creating the edid file but I am not sure which one is doing this.

Can anyone let me know how to detect if multiple monitor is connected to my system through VGA distributor ? I am using Ubuntu 14.04 on HP machine.

Any help or suggestion is highly appreciated. Smilie



Thanks
 

9 More Discussions You Might Find Interesting

1. Solaris

VGA to 13W UPA graphics

Hello, I have a Sun Ultra2 with a 13W type Creator Graphics card. My old Sun monitor has failed. Is the an adaptor or cable that I could find which will allow me to use a VGA type monitor? If so who sells them? Thanks, Jim (2 Replies)
Discussion started by: stocksj
2 Replies

2. UNIX Desktop Questions & Answers

Vga Installation

what is the procedure of installing a vga on the unix desktop? i have a dell machine optiplex gx 520 and it doesnt pick the vga i tryed other vga s but graphics are so poor? pls help. (2 Replies)
Discussion started by: Linus Aloo
2 Replies

3. Solaris

Ultra 10 -> VGA Monitor Help

I have a vga card in my Ultra 10. How can I activate it in my Ultra 10 box which is currently still running off the Sun CRT Monitor port? (2 Replies)
Discussion started by: revzalot
2 Replies

4. Solaris

Ultra 10 Creator 3D: enabling onboard VGA

Hello, I have an Ultra 10 Creator 3D working fine with a Sun monitor, but I'd like to use it with a VGA flat panel (it would be great if I could use both screens simultaneously). As I've read in a previous thread (https://www.unix.com/sun-solaris/14875-creator-3d-video-adapter.html) this box... (1 Reply)
Discussion started by: ama
1 Replies

5. UNIX for Dummies Questions & Answers

need help changing the vga mode

hello all, I am trying to interface the VGA, however, it appears to be in text mode. I want to get it into mode 13h (320x240) but I can't seem to achieve this I looked at here to see which registers I need to set but I've for some reason I cant get it to work. Are these all the registers I need to... (5 Replies)
Discussion started by: neur0n
5 Replies

6. Programming

Parallel Processing Detection and Program Return Value Detection

Hey, for the purpose of a research project I need to know if a specific type of parallel processing is being utilized by any user-run programs. Is there a way to detect whether a program either returns a value to another program at the end of execution, or just utilizes any form of parallel... (4 Replies)
Discussion started by: azar.zorn
4 Replies

7. Programming

vga assembly question

Im trying to make a vga program for linux Im wondering if anyone knows of a simple document on the subject or if someone could show me some basics. What system calls should I use what parameters should I give them. How do I draw a line of pixels green after in vga mode. I prefer nasm but I can use... (2 Replies)
Discussion started by: Errigour
2 Replies

8. AIX

No VGA card and I need to know server IP

Dear All, I have Power7 server, and I want to know its IP address. The server have no VGA card, only serial port. Kindly tell me how to know its IP using serial cable? Thanks a lot (5 Replies)
Discussion started by: Mohannad
5 Replies

9. Linux

Vga passtrough with only one monitor,is possible?

I have one monitor,two vga cards,one is nvidia(host) the other ati rs450(guest),I use this script for use a vm windows with a native gpu(the ati rs450) I see this video and seems to be possible using only one monitor,but I don't understand how to do The video QEMU VGA passthrough without a... (0 Replies)
Discussion started by: Linusolaradm1
0 Replies
VGA(3)							     Library Functions Manual							    VGA(3)

NAME
vga - VGA controller device SYNOPSIS
bind #v /dev /dev/vgactl /dev/vgaiob /dev/vgaiow /dev/vgaiol DESCRIPTION
The VGA device allows configuration of a graphics controller on a PC. Vgactl allows control over higher-level settings such as display height, width, depth, controller and hardware-cursor type. Vgaiob, vgaiow and vgaiol allow control over individual 8-bit, 16-bit and 32-bit x86 I/O-ports respectively, such as those used to implement configuration and setup registers on a VGA controller card. These func- tions are normally carried out by vga(8). Writes to vgactl are of the form `attribute value'. Valid attributes are size value is 'XxYxZ' , where X, Y and Z are numbers that tell the kernel the width and height of the screen in pixels and the number of bits per pixel. type tells the kernel which type of controller is being used, mainly to enable the correct code for display-memory bank switching at res- olutions greater than 640x480x1. The names vga, clgd542x, et4000, mach32, and s3 are supported for value. Note that this list does not indicate the full set of VGA chips supported. For example, s3 includes the 86C801/5, 86C928, Vision864, and Vision964. It is the job of vga(8) to recognize which particular chip is being used and to initialize it appropriately. hwgc tells the kernel to use a particular type of hardware graphics cursor. Bt485hwgc, et4000hwgc, s3hwgc and tvp3020hwgc, are currently recognized values. A value of off reverts to using the software cursor. Reading vgactl returns the current settings, one per line. EXAMPLES
The following reverts to using the software graphics cursor echo -n 'hwgc off' >/dev/vgactl Sample code to read an x86 8-bit I/O port uchar inportb(long port) { uchar data; if(iobfd == -1) iobfd = open("#v/vgaiob", ORDWR); seek(iobfd, port, 0); if(read(iobfd, &data, sizeof(data)) != sizeof(data)) error("inportb(0x%4.4x): %r0, port); return data; } SOURCE
/sys/src/9/pc/devvga.c SEE ALSO
vga(8) BUGS
There should be some restriction on the range of valid ports. There should be support for the hardware graphics cursor on the clgd54[23]x VGA controller chips. The hardware graphics cursor on the et4000 does not work in 2x8-bit mode. VGA(3)
All times are GMT -4. The time now is 12:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy