diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-07-31 12:05:29 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-07-31 12:05:29 +0000 |
commit | edfc72b500999863c2adbe29d6677577c3d62122 (patch) | |
tree | a47d13894ac14aa9667822d86cac6ecc478676b3 /sys/src/9/pc | |
parent | 84b77568cda98a21dd4f3403a94c56724fbd5b37 (diff) |
[PATCH] Support for igfx on Celeron(R) 2957U (thanks Lorenzo Bivens)
> After some tinkering I managed to get igfx working on this device.
> hw cursor works.
> The only caveat is that I can only get video over hdmi...
> will revisit displayport later
Diffstat (limited to 'sys/src/9/pc')
-rw-r--r-- | sys/src/9/pc/vgaigfx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/src/9/pc/vgaigfx.c b/sys/src/9/pc/vgaigfx.c index ea70310ab..2c8348f82 100644 --- a/sys/src/9/pc/vgaigfx.c +++ b/sys/src/9/pc/vgaigfx.c @@ -149,6 +149,7 @@ igfxcurregs(VGAscr* scr, int pipe) switch(scr->pci->did){ case 0x0412: /* Haswell HD Graphics 4600 */ case 0x0a16: /* Haswell HD Graphics 4400 */ + case 0x0a06: if(pipe > 3) return nil; if(pipe == 3) |