Chameleon

Chameleon Commit Details

Date:2012-11-20 21:21:54 (11 years 4 months ago)
Author:ErmaC
Commit:2129
Parents: 2128
Message:Sync with trunk. Merge dmazar's patch for Resolution module (Core processors) http://forum.voodooprojects.org/index.php/topic,2754.0.html Few SubIDs for 10DE0FC6.
Changes:
M/branches/ErmaC/Trunk/i386/libsa/libsa.h
M/branches/ErmaC/Trunk/i386/libsaio/fake_efi.c
M/branches/ErmaC/Trunk/i386/libsaio/nvidia.c
M/branches/ErmaC/Trunk/i386/modules/Resolution/915resolution.c
M/branches/ErmaC/Trunk/i386/modules/Resolution/edid.c
M/branches/ErmaC/Trunk/i386/modules/Resolution/915resolution.h

File differences

branches/ErmaC/Trunk/i386/libsaio/nvidia.c
12541254
12551255
12561256
1257
1258
1259
1260
1261
1262
1263
1264
12571265
12581266
12591267
......
16461654
16471655
16481656
1657
1658
1659
16491660
16501661
16511662
......
23402351
23412352
23422353
2343
2354
23442355
23452356
23462357
......
23762387
23772388
23782389
2379
2390
23802391
23812392
23822393
......
26502661
26512662
26522663
2664
26532665
26542666
26552667
// 0FC0 - 0FCF
{ 0x10DE0FC2,0x103C0936,"HP GeForce GT 630" },
{ 0x10DE0FC2,0x174B0630,"PC Panther GeForce GT 630" },
{ 0x10DE0FC6,0x10B00FC6,"Gainward GeForce GTX 650" },
{ 0x10DE0FC6,0x10DE0973,"nVidia GeForce GTX 650" },
{ 0x10DE0FC6,0x14583553,"Gigabyte GeForce GTX 650" },
{ 0x10DE0FC6,0x14583555,"Gigabyte GeForce GTX 650" },
{ 0x10DE0FC6,0x15690FC6,"Palit GeForce GTX 650" },
{ 0x10DE0FC6,0x19DA1288,"Zotac GeForce GTX 650" },
// 0FD0 - 0FDF
{ 0x10DE0FD1,0x10280552,"Dell GeForce GT 650M" },
{ 0x10DE0FD1,0x10280566,"Dell GeForce GT 650M" },
{ 0x10DE11BE,0x15587102,"Clevo Quadro K3000M" },
// 11C0 - 11CF
{ 0x10DE11C0,0x10DE0995,"Inno3D GeForce GTX660" },
{ 0x10DE11C6,0x10DE1016,"nVidia GeForce GTX 650 Ti" },
{ 0x10DE11C6,0x156911C6,"Palit GeForce GTX 650 Ti" },
// 11D0 - 11DF
// 11E0 - 11EF
// 11F0 - 11FF
{ 0x10DE0840,NV_SUB_IDS,"GeForce 8200M" },
{ 0x10DE0844,NV_SUB_IDS,"GeForce 9100M G" },
{ 0x10DE0845,NV_SUB_IDS,"GeForce 8200M G" },
{ 0x10DE0846,NV_SUB_IDS,"GeForce 9200" },
{ 0x10DE0846,NV_SUB_IDS,"GeForce 9200" }, // Tesla M2050 ??
{ 0x10DE0847,NV_SUB_IDS,"GeForce 9100" },
{ 0x10DE0848,NV_SUB_IDS,"GeForce 8300" },
{ 0x10DE0849,NV_SUB_IDS,"GeForce 8200" },
{ 0x10DE087A,NV_SUB_IDS,"GeForce 9400" },
{ 0x10DE087D,NV_SUB_IDS,"ION 9400M" },
{ 0x10DE087E,NV_SUB_IDS,"ION LE" },
{ 0x10DE087F,NV_SUB_IDS,"ION LE" },
{ 0x10DE087F,NV_SUB_IDS,"ION LE" }, // Tesla M2070-Q ??
// 0880 - 088F
// 0890 - 089F
// 08A0 - 08AF
// 0FF0 - 0FFF
{ 0x10DE0FFB,NV_SUB_IDS,"Quadro K2000M" },
{ 0x10DE0FFC,NV_SUB_IDS,"Quadro K1000M" },
{ 0x10DE0FFD,NV_SUB_IDS,"NVS 510" },
{ 0x10DE0FFF,NV_SUB_IDS,"Quadro 410" },
// 1000 - 100F
// 1010 - 101F
branches/ErmaC/Trunk/i386/libsaio/fake_efi.c
22
33
44
5
5
66
77
88
......
178178
179179
180180
181
181
182182
183183
184184
......
288288
289289
290290
291
291
292292
293293
294294
/*
* Copyright 2007 David F. Elliott. All rights reserved.
*/
#include "saio_types.h"
#include "libsaio.h"
#include "boot.h"
#include "bootstruct.h"
struct fake_efi_pages *fakeEfiPages = (struct fake_efi_pages*)AllocateKernelMemory(sizeof(struct fake_efi_pages));
// Zero out all the tables in case fields are added later
bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
//bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
// --------------------------------------------------------------------
// Initialize some machine code that will return EFI_UNSUPPORTED for
struct fake_efi_pages *fakeEfiPages = (struct fake_efi_pages*)AllocateKernelMemory(sizeof(struct fake_efi_pages));
// Zero out all the tables in case fields are added later
bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
//bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
// --------------------------------------------------------------------
// Initialize some machine code that will return EFI_UNSUPPORTED for
branches/ErmaC/Trunk/i386/modules/Resolution/915resolution.c
1717
1818
1919
20
20
2121
2222
23
2324
24
2525
2626
2727
......
4444
4545
4646
47
48
49
50
51
52
4753
4854
4955
......
177183
178184
179185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
180207
181208
182209
......
275302
276303
277304
278
305
279306
280307
281308
282309
283310
311
312
313
314
284315
285316
317
286318
287319
288320
......
295327
296328
297329
330
298331
299332
300333
......
314347
315348
316349
317
318
350
351
352
353
354
355
356
357
358
359
360
361
362
319363
320
364
365
321366
322367
323368
......
331376
332377
333378
334
335379
336380
337381
382
383
338384
339385
340
386
341387
342388
343389
......
397443
398444
399445
400
446
401447
402448
403449
404450
451
405452
406453
407454
......
417464
418465
419466
467
420468
421469
422470
471
472
473
474
423475
424476
425477
......
435487
436488
437489
490
438491
439492
440493
......
446499
447500
448501
502
449503
450504
451505
452506
507
453508
454509
455510
456511
512
457513
458514
515
459516
460517
461518
......
508565
509566
510567
511
512568
513569
514570
......
516572
517573
518574
575
576
577
578
579
580
581
582
583
519584
520585
521586
......
566631
567632
568633
569
570634
571635
572636
573637
638
639
640
641
642
574643
575644
576645
......
590659
591660
592661
593
662
594663
595664
596665
......
607676
608677
609678
610
611
612
679
680
681
682
613683
614684
615685
......
626696
627697
628698
629
699
630700
631701
632702
......
643713
644714
645715
716
646717
647718
719
648720
649721
650722
651723
724
652725
653726
654
727
728
655729
656730
657731
......
661735
662736
663737
738
664739
665
740
666741
742
667743
668
744
669745
670746
671747
......
690766
691767
692768
769
693770
771
694772
773
695774
696
775
697776
777
698778
779
699780
781
700782
783
701784
702785
786
703787
704788
705789
......
721805
722806
723807
808
724809
810
725811
812
726813
814
727815
816
728817
818
729819
820
730821
731
822
732823
733824
734825
735826
827
736828
737829
738830
739831
832
740833
741834
742835
743836
744
745
837
838
839
840
746841
747842
748843
......
755850
756851
757852
853
854
855
856
758857
759858
760859
......
781880
782881
783882
883
784884
785885
786886
787887
788888
789889
890
790891
791892
792893
......
799900
800901
801902
903
904
905
906
802907
803908
804909
......
809914
810915
811916
812
813
814
815
816
817
818
819
820
821
822
917
918
919
920
921
922
923
924
925
926
927
823928
824929
825930
826931
827932
828933
934
829935
830936
831937
832938
833939
834
940
941
942
835943
836944
837945
......
844952
845953
846954
955
956
957
958
847959
848960
849961
......
869981
870982
871983
984
872985
873986
874987
void patchVideoBios()
{
{
UInt32 x = 0, y = 0, bp = 0;
verbose("Resolution:\n");
getResolution(&x, &y, &bp);
verbose("getResolution: %dx%dx%d\n", (int)x, (int)y, (int)bp);
if (x != 0 &&
y != 0 &&
}
static const UInt8 nvda_pattern[] = {
0x44, 0x01, 0x04, 0x00
};
static const char nvda_string[] = "NVID";
/* Copied from 915 resolution created by steve tomljenovic
*
* This code is based on the techniques used in :
type = CT_GM45;
break;
//
// Core processors
// http://pci-ids.ucw.cz/read/PC/8086
//
case 0x00408086: // Core Processor DRAM Controller
case 0x00448086: // Core Processor DRAM Controller
case 0x00488086: // Core Processor DRAM Controller
case 0x00698086: // Core Processor DRAM Controller
case 0x01008086: // 2nd Generation Core Processor Family DRAM Controller
case 0x01048086: // 2nd Generation Core Processor Family DRAM Controller
case 0x01088086: // Xeon E3-1200 2nd Generation Core Processor Family DRAM Controller
case 0x010c8086: // Xeon E3-1200 2nd Generation Core Processor Family DRAM Controller
case 0x01508086: // 3rd Generation Core Processor Family DRAM Controller
case 0x01548086: // 3rd Generation Core Processor Family DRAM Controller
case 0x01588086: // 3rd Generation Core Processor Family DRAM Controller
case 0x015c8086: // 3rd Generation Core Processor Family DRAM Controller
verbose(" core proc identified\n");
type = CT_CORE_PROC;
break;
default:
if((id & 0x0000FFFF) == 0x00008086) // Intel chipset
if (map->chipset == CT_UNKNOWN)
{
//verbose("Unknown chipset type.\n");
verbose(" Unknown chipset type: %08x.\n", map->chipset_id);
//verbose("915resolution only works with Intel 800/900 series graphic chipsets.\n");
//verbose("Chipset Id: %x\n", map->chipset_id);
close_vbios(map);
return 0;
}
else
{
verbose(" Detected chipset/proc id (DRAM controller): %08x\n", map->chipset_id);
}
verbose(" VBios: ");
/*
* Map the video bios to memory
*/
map->ati_tables.AtomRomHeader = (ATOM_ROM_HEADER *) (map->bios_ptr + *(unsigned short *) (map->bios_ptr + OFFSET_TO_POINTER_TO_ATOM_ROM_HEADER));
if (strcmp ((char *) map->ati_tables.AtomRomHeader->uaFirmWareSignature, "ATOM") == 0)
{
verbose("ATI");
// ATI Radeon Card
map->bios = BT_ATI_1;
}
map->mode_table_size = std_vesa->sHeader.usStructureSize - sizeof(ATOM_COMMON_TABLE_HEADER);
if (!detect_ati_bios_type(map)) map->bios = BT_ATI_2;
if (!detect_ati_bios_type(map))
{
map->bios = BT_ATI_2;
}
if (map->bios == BT_ATI_1)
{
verbose(", BT_ATI_1\n");
}
else
{
verbose(", BT_ATI_2\n");
}
}
else {
else
{
/*
* check if we have NVIDIA
&& (map->bios_ptr[i+2] == 'I')
&& (map->bios_ptr[i+3] == 'D'))
{
map->bios = BT_NVDA;
unsigned short nv_data_table_offset = 0;
unsigned short * nv_data_table;
NV_VESA_TABLE * std_vesa;
verbose("nVidia\n");
map->bios = BT_NVDA;
int i = 0;
while (i < 0x300)
{ //We don't need to look for the table in the whole bios, the 768 first bytes only
if ((map->bios_ptr[i] == 0x44)
/*
* Figure out where the mode table is
*/
if ((map->bios != BT_ATI_1) && (map->bios != BT_NVDA))
if ((map->bios != BT_ATI_1) && (map->bios != BT_ATI_2) && (map->bios != BT_NVDA))
{
char* p = map->bios_ptr + 16;
char* limit = map->bios_ptr + VBIOS_SIZE - (3 * sizeof(vbios_mode));
verbose("Other");
while (p < limit && map->mode_table == 0)
{
vbios_mode * mode_ptr = (vbios_mode *) p;
if (map->mode_table == 0)
{
verbose(", mode table not found");
close_vbios(map);
return 0;
}
else
{
verbose(", mode_table: 0x%p", map->mode_table);
}
}
map->mode_table_size++;
mode_ptr++;
}
verbose(", mode_table_size: 0x%x", map->mode_table_size);
}
/*
if (detect_bios_type(map, TRUE, sizeof(vbios_modeline_type3)))
{
map->bios = BT_3;
verbose(", BT_3\n");
}
else if (detect_bios_type(map, TRUE, sizeof(vbios_modeline_type2)))
{
map->bios = BT_2;
verbose(", BT_2\n");
}
else if (detect_bios_type(map, FALSE, sizeof(vbios_resolution_type1)))
{
map->bios = BT_1;
verbose(", BT_1\n");
}
else {
verbose(" - unknown\n");
return 0;
}
}
case CT_G31:
case CT_500:
case CT_3150:
case CT_UNKNOWN_INTEL:// Assume newer intel chipset is the same as before
outl(CONFIG_MECH_ONE_ADDR, 0x80000090);
map->b1 = inb(CONFIG_MECH_ONE_DATA + 1);
map->b2 = inb(CONFIG_MECH_ONE_DATA + 2);
outb(CONFIG_MECH_ONE_DATA + 1, 0x33);
outb(CONFIG_MECH_ONE_DATA + 2, 0x33);
break;
case CT_CORE_PROC: // Core procs - PAM regs are 80h - 86h
case CT_UNKNOWN_INTEL:// Assume newer intel chipset is the same as before
outl(CONFIG_MECH_ONE_ADDR, 0x80000080);
map->b1 = inb(CONFIG_MECH_ONE_DATA + 1);
map->b2 = inb(CONFIG_MECH_ONE_DATA + 2);
outl(CONFIG_MECH_ONE_ADDR, 0x80000080);
outb(CONFIG_MECH_ONE_DATA + 1, 0x33);
outb(CONFIG_MECH_ONE_DATA + 2, 0x33);
break;
default:
break;
}
case CT_G31:
case CT_500:
case CT_3150:
case CT_UNKNOWN_INTEL:
outl(CONFIG_MECH_ONE_ADDR, 0x80000090);
outb(CONFIG_MECH_ONE_DATA + 1, map->b1);
outb(CONFIG_MECH_ONE_DATA + 2, map->b2);
break;
case CT_CORE_PROC:
case CT_UNKNOWN_INTEL:
outl(CONFIG_MECH_ONE_ADDR, 0x80000080);
outb(CONFIG_MECH_ONE_DATA + 1, map->b1);
outb(CONFIG_MECH_ONE_DATA + 2, map->b2);
default:
break;
}
if(!edidInfo) return 1;
//Slice
if(!fb_parse_edid((struct EDID *)edidInfo, mode))
if(!fb_parse_edid((struct EDID *)edidInfo, mode) || !mode->h_active)
{
free( edidInfo );
return 1;
*/
free( edidInfo );
if(!mode->h_active) return 1;
if(!mode->h_active)
{
return 1;
}
return 0;
}
vfreq = vbl * freq;
hbl = 16 * (int)(x * (30.0 - 300000.0 / vfreq) /
+ (70.0 + 300000.0 / vfreq) / 16.0 + 0.5);
*vsyncstart = y;
*vsyncend = y + 3;
*vblank = vbl - 1;
//for (i=0; i < map->mode_table_size; i++) {
//if (map->mode_table[0].mode == mode) {
verbose(" Patching: ");
switch(map->bios) {
case BT_INTEL:
verbose("BT_INTEL - not supported\n");
return;
case BT_1:
{
verbose("BT_1 patched.\n");
vbios_resolution_type1 * res = map_type1_resolution(map, map->mode_table[i].resolution);
if (bp) {
if (bp)
{
map->mode_table[i].bits_per_pixel = bp;
}
res->y2 = (vtotal?(((vtotal-y) >> 8) & 0x0f) : (res->y2 & 0x0f)) | ((y >> 4) & 0xf0);
res->y1 = (y & 0xff);
if (htotal)
{
res->x_total = ((htotal-x) & 0xff);
}
if (vtotal)
{
res->y_total = ((vtotal-y) & 0xff);
}
break;
}
case BT_2:
&modeline->vsyncend, &modeline->vblank);
if (htotal)
{
modeline->htotal = htotal;
}
else
{
modeline->htotal = modeline->hblank;
}
if (vtotal)
{
modeline->vtotal = vtotal;
}
else
{
modeline->vtotal = modeline->vblank;
}
}
}
verbose("BT_1 patched.\n");
break;
}
case BT_3:
&modeline->hblank, &modeline->vsyncstart,
&modeline->vsyncend, &modeline->vblank);
if (htotal)
{
modeline->htotal = htotal;
}
else
{
modeline->htotal = modeline->hblank;
}
if (vtotal)
{
modeline->vtotal = vtotal;
}
else
{
modeline->vtotal = modeline->vblank;
}
modeline->timing_h = y-1;
modeline->timing_v = x-1;
}
}
verbose("BT_3 patched.\n");
break;
}
case BT_ATI_1:
{
verbose("BT_ATI_1");
edid_mode mode;
ATOM_MODE_TIMING *mode_timing = (ATOM_MODE_TIMING *) map->ati_mode_table;
//if (mode.pixel_clock && (mode.h_active == x) && (mode.v_active == y) && !force) {
if (!getMode(&mode)) {
//if (mode.pixel_clock && (mode.h_active == x) && (mode.v_active == y) && !force){
if (!getMode(&mode))
{
verbose("\n Edid detailed timing descriptor found: %dx%d\n vbios mode 0 patched!\n", mode.h_active, mode.v_active);
mode_timing->usCRTC_H_Total = mode.h_active + mode.h_blanking;
mode_timing->usCRTC_H_Disp = mode.h_active;
mode_timing->usCRTC_H_SyncStart = mode.h_active + mode.h_sync_offset;
mode_timing->usPixelClock = mode.pixel_clock;
}
else
{
verbose(" Edid not found or invalid - vbios not patched!\n");
}
/*else
{
vbios_modeline_type2 modeline;
}
case BT_ATI_2:
{
verbose("BT_ATI_2");
edid_mode mode;
ATOM_DTD_FORMAT *mode_timing = (ATOM_DTD_FORMAT *) map->ati_mode_table;
/*if (mode.pixel_clock && (mode.h_active == x) && (mode.v_active == y) && !force) {*/
if (!getMode(&mode)) {
verbose("\n Edid detailed timing descriptor found: %dx%d\n vbios mode 0 patched!\n", mode.h_active, mode.v_active);
mode_timing->usHBlanking_Time = mode.h_blanking;
mode_timing->usHActive = mode.h_active;
mode_timing->usHSyncOffset = mode.h_sync_offset;
mode_timing->usPixClk = mode.pixel_clock;
}
else
{
verbose(" Edid not found or invalid - vbios not patched!\n");
}
/*else
{
vbios_modeline_type2 modeline;
&modeline.vsyncend, &modeline.vblank, 0);
mode_timing->usHBlanking_Time = modeline.hblank;
+mode_timing->usHActive = x;
+mode_timing->usHSyncOffset = modeline.hsyncstart - x;
+mode_timing->usHSyncWidth = modeline.hsyncend - modeline.hsyncstart;
+
+mode_timing->usVBlanking_Time = modeline.vblank;
+mode_timing->usVActive = y;
+mode_timing->usVSyncOffset = modeline.vsyncstart - y;
+mode_timing->usVSyncWidth = modeline.hsyncend - modeline.hsyncstart;
+
+mode_timing->usPixClk = modeline.clock;
+}*/
mode_timing->usHActive = x;
mode_timing->usHSyncOffset = modeline.hsyncstart - x;
mode_timing->usHSyncWidth = modeline.hsyncend - modeline.hsyncstart;
mode_timing->usVBlanking_Time = modeline.vblank;
mode_timing->usVActive = y;
mode_timing->usVSyncOffset = modeline.vsyncstart - y;
mode_timing->usVSyncWidth = modeline.hsyncend - modeline.hsyncstart;
mode_timing->usPixClk = modeline.clock;
}*/
break;
}
case BT_NVDA:
{
verbose("BT_NVDA");
edid_mode mode;
NV_MODELINE *mode_timing = (NV_MODELINE *) map->nv_mode_table;
/*if (mode.pixel_clock && (mode.h_active == x) && (mode.v_active == y) && !force) {*/
if (!getMode(&mode)) {
if (!getMode(&mode))
{
verbose("\n Edid detailed timing descriptor found: %dx%d\n vbios mode %d patched!\n", mode.h_active, mode.v_active, i);
mode_timing[i].usH_Total = mode.h_active + mode.h_blanking;
mode_timing[i].usH_Active = mode.h_active;
mode_timing[i].usH_SyncStart = mode.h_active + mode.h_sync_offset;
mode_timing[i].usPixel_Clock = mode.pixel_clock;
}
else
{
verbose(" Edid not found or invalid - vbios not patched!\n");
}
/*else
{
vbios_modeline_type2 modeline;
}
case BT_UNKNOWN:
{
verbose(" Unknown - vbios not patched\n");
break;
}
default:
branches/ErmaC/Trunk/i386/modules/Resolution/edid.c
143143
144144
145145
146
146
147
147148
148149
149150
151
152
153
154
150155
151156
152157
......
165170
166171
167172
173
174
175
176
177
168178
169179
170180
......
179189
180190
181191
182
183
192
193
184194
195
185196
197
186198
199
187200
188201
189202
......
191204
192205
193206
207
208
209
210
211
212
213
194214
195
196
197215
198216
199217
200218
219
201220
202221
203222
......
205224
206225
207226
208
227
209228
210229
211230
......
237256
238257
239258
240
259
241260
242261
243262
......
249268
250269
251270
252
253
254
255271
256272
257
258273
259274
260275
276
261277
262278
263279
......
305321
306322
307323
324
308325
309326
310327
......
325342
326343
327344
328
329
345
346
330347
331
348
332349
333350
334
351
335352
336353
354
337355
338
339
340356
341357
342358
......
345361
346362
347363
348
364
349365
350366
351
352367
353368
354369
......
359374
360375
361376
362
377
363378
364379
365380
......
381396
382397
383398
384
399
385400
386401
387402
......
397412
398413
399414
400
401415
402
403
416
417
404418
405419
406
407
408
409
410
411
420
421
422
423
412424
all_null |= edid[i];
}
if (csum == 0x00 && all_null) {
if (csum == 0x00 && all_null)
{
/* checksum passed, everything's good */
err = 1;
}
else
{
msglog(" edid_checksum error ");
}
return err;
}
err = 0;
}
if (err == 0)
{
msglog(" edid_check_header error ");
}
return err;
}
//------------------------------------------------------------------------
int edid_is_timing_block(unsigned char *block)
{
if ((block[0] != 0x00) || (block[1] != 0x00) ||
(block[2] != 0x00) || (block[4] != 0x00))
if ((block[0] != 0x00) || (block[1] != 0x00) || (block[2] != 0x00) || (block[4] != 0x00))
{
return 1;
}
else
{
return 0;
}
}
//----------------------------------------------------------------------------------
{
int i;
unsigned char *block;
msglog(" Parse Edid:");
if(!verifyEDID((unsigned char *)edid))
{
msglog(" error\n");
return 0;
}
if(!verifyEDID((unsigned char *)edid)) return 1;
block = (unsigned char *)edid + DETAILED_TIMING_DESCRIPTIONS_START; //54
for (i = 0; i < 4; i++, block += DETAILED_TIMING_DESCRIPTION_SIZE) {
if (edid_is_timing_block(block)) {
msglog(" descriptor block %d is timing descriptor ", i);
var->h_active = H_ACTIVE;
var->v_active = V_ACTIVE;
var->h_sync_offset = H_SYNC_OFFSET;
var->h_blanking = H_BLANKING;
var->v_blanking = V_BLANKING;
var->pixel_clock = PIXEL_CLOCK;
var->h_sync_width = H_SYNC_WIDTH;
var->v_sync_offset = V_SYNC_OFFSET;
var->v_sync_width = V_SYNC_WIDTH;
/*
var->xres = var->xres_virtual = H_ACTIVE;
void getResolution(UInt32* x, UInt32* y, UInt32* bp)
{
//int val;
static UInt32 xResolution, yResolution, bpResolution;
static UInt32 xResolution, yResolution, bpResolution = 32;// assume 32bits
/*
if(getIntForKey(kScreenWidth, &val, &bootInfo->chameleonConfig))
{
yResolution = val;
}
*/
bpResolution = 32;// assume 32bits
if(!xResolution || !yResolution || !bpResolution)
{
char* edidInfo = readEDID();
if(!edidInfo) return;
edid_mode mode;
// TODO: check *all* resolutions reported and either use the highest, or the native resolution (if there is a flag for that)
//xResolution = edidInfo[56] | ((edidInfo[58] & 0xF0) << 4);
*y = yResolution;
*bp = bpResolution;
msglog("Best mode: %dx%dx%d\n", *x, *y, *bp);
}
char* readEDID()
bzero( edidInfo, EDID_BLOCK_SIZE);
status = getEDID(edidInfo, blocks_left);
/*
msglog("Buffer location: 0x%X status: %d\n", SEG(edidInfo) << 16 | OFF(edidInfo), status);
int j, i;
for (j = 0; j < 8; j++) {
for(i = 0; i < 16; i++) msglog("0x%02X ", edidInfo[((i+1) * (j + 1)) - 1]);
for(i = 0; i < 16; i++) msglog(" 0x%02X", edidInfo[((i+1) * (j + 1)) - 1]);
msglog("\n");
}
*/
if(status == 0)
{
//if( edidInfo[0] == 0x00 || edidInfo[0] == 0xFF)
{
blocks_left--;
int reported = edidInfo[ EDID_V1_BLOCKS_TO_GO_OFFSET ];
if ( reported > blocks_left )
{
msglog("EDID claims %d more blocks left\n", reported);
}
)
{
msglog("Last reported %d\n", last_reported);
msglog( "EDID blocks left is wrong.\n"
msglog("EDID blocks left is wrong.\n"
"Your EDID is probably invalid.\n");
return 0;
}
return 0;
}
}
blocks_left = 0;
blocks_left = 0;
} while(blocks_left);
char* ret = malloc(sizeof(edidInfo));
int getEDID( void * edidBlock, UInt8 block)
{
biosBuf_t bb;
bzero(&bb, sizeof(bb));
bb.intno = 0x10;
bb.eax.rr = 0x4F15;
bb.intno = 0x10;
bb.eax.rr = 0x4F15;
bb.ebx.r.l= 0x01;
bb.edx.rr = block;
bb.es = SEG( edidBlock );
bb.edi.rr = OFF( edidBlock );
bios( &bb );
return(bb.eax.r.h);
bb.es = SEG( edidBlock );
bb.edi.rr = OFF( edidBlock );
bios( &bb );
return(bb.eax.r.h);
}
branches/ErmaC/Trunk/i386/modules/Resolution/915resolution.h
112112
113113
114114
115
115
116
116117
117118
118119
......
123124
124125
125126
126
127
128
129
127
128
129
130
130131
131132
132133
......
156157
157158
158159
159
160
160
161
161162
162163
163164
......
197198
198199
199200
200
201
201202
202203
203204
......
221222
222223
223224
224
225
226225
227226
228227
CT_915G, CT_915GM, CT_945G, CT_945GM, CT_945GME, CT_946GZ,
CT_955X, CT_G965, CT_Q965, CT_965GM, CT_975X,
CT_P35, CT_X48, CT_B43, CT_Q45, CT_P45,
CT_GM45, CT_G41, CT_G31, CT_G45, CT_500, CT_3150
CT_GM45, CT_G41, CT_G31, CT_G45, CT_500, CT_3150,
CT_CORE_PROC
} chipset_type;
typedef struct {
char *base;
ATOM_ROM_HEADER *AtomRomHeader;
unsigned short *MasterCommandTables;
unsigned short *MasterDataTables;
char*base;
ATOM_ROM_HEADER*AtomRomHeader;
unsigned short*MasterCommandTables;
unsigned short*MasterDataTables;
} bios_tables_t;
typedef struct {
UInt16 hsyncstart;
UInt16 hsyncend;
UInt16 y1;
UInt16 vtotal;
UInt16 y2;
UInt16 vtotal;
UInt16 y2;
UInt16 vblank;
UInt16 vsyncstart;
UInt16 vsyncend;
typedef struct {
unsigned char unknown[6];
vbios_modeline_type3 modelines[];
vbios_modeline_type3 modelines[];
} __attribute__((packed)) vbios_resolution_type3;
typedef struct {
UInt8 unlocked;
} vbios_map;
vbios_map * open_vbios(chipset_type);
void close_vbios (vbios_map*);
void unlock_vbios(vbios_map*);
branches/ErmaC/Trunk/i386/libsa/libsa.h
8383
8484
8585
86
87
8688
8789
8890
#ifndef bzero
extern void bzero(void * dst, size_t len);
extern void __bzero(void * dst, size_t len);
#else
#error bzero is defined.
#endif
extern void * memset(void * dst, int c, size_t n);

Archive Download the corresponding diff file

Revision: 2129