Chameleon

Chameleon Commit Details

Date:2010-07-25 02:27:01 (13 years 9 months ago)
Author:Rekursor
Commit:233
Parents: 232
Message:Fixed bank selection b7 bit is set to 1 by some constructors like for Patriots rams. cleanup display messages and removed getc().
Changes:
M/trunk/i386/libsaio/platform.c
M/trunk/i386/libsaio/spd.c
M/trunk/i386/libsaio/dram_controllers.c

File differences

trunk/i386/libsaio/spd.c
127127
128128
129129
130
130
131131
132132
133
133
134134
135135
136136
uint8_t bank = 0;
uint8_t code = 0;
int i = 0;
char * spd = slot->spd;
uint8_t * spd = (uint8_t *) slot->spd;
if (spd[SPD_MEMORY_TYPE]==SPD_MEMORY_TYPE_SDRAM_DDR3) { // DDR3
bank = spd[SPD_DDR3_MEMORY_BANK];
bank = (spd[SPD_DDR3_MEMORY_BANK] & 0x07f); // constructors like Patriot use b7=1
code = spd[SPD_DDR3_MEMORY_CODE];
for (i=0; i < VEN_MAP_SIZE; i++)
if (bank==vendorMap[i].bank && code==vendorMap[i].code)
trunk/i386/libsaio/dram_controllers.c
514514
515515
516516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546517
547518
548519
......
558529
559530
560531
561
562
532
563533
564
534
565535
566536
567
537
568538
569539
570
540
571541
572
573
574
542
543
575544
576545
577546
};
static const char *memory_device_types[] =
{
"RAM", /* 00h Undefined */
"RAM", /* 01h Other */
"RAM", /* 02h Unknown */
"DRAM", /* 03h DRAM */
"EDRAM", /* 04h EDRAM */
"VRAM", /* 05h VRAM */
"SRAM", /* 06h SRAM */
"RAM", /* 07h RAM */
"ROM", /* 08h ROM */
"FLASH", /* 09h FLASH */
"EEPROM", /* 0Ah EEPROM */
"FEPROM", /* 0Bh FEPROM */
"EPROM", /* 0Ch EPROM */
"CDRAM", /* 0Dh CDRAM */
"3DRAM", /* 0Eh 3DRAM */
"SDRAM", /* 0Fh SDRAM */
"SGRAM", /* 10h SGRAM */
"RDRAM", /* 11h RDRAM */
"DDR SDRAM", /* 12h DDR */
"DDR2 SDRAM", /* 13h DDR2 */
"DDR2 FB-DIMM" /* 14h DDR2 FB-DIMM */
"",/* 15h RAM (Not Used) */
"",/* 16h RAM (Not Used) */
"",/* 17h RAM (Not Used) */
"DDR3 SDRAM" /* 18h DDR3 (AppleSMBIOS 1.1.1+) */
};
static const char *memory_channel_types[] =
{
"Unknown", "Single", "Dual", "Triple"
verbose("%s%s DRAM Controller [%4x:%4x] at %02x:%02x.%x\n",
(dram_dev->vendor_id == 0x8086) ? "Intel " : "" ,
dram_controllers[i].name, dram_dev->vendor_id, dram_dev->device_id,
dram_dev->dev.bits.bus, dram_dev->dev.bits.dev, dram_dev->dev.bits.func
);
dram_dev->dev.bits.bus, dram_dev->dev.bits.dev, dram_dev->dev.bits.func);
if(dram_controllers[i].initialise != NULL)
if (dram_controllers[i].initialise != NULL)
dram_controllers[i].initialise(dram_dev);
if(dram_controllers[i].poll_timings != NULL)
if (dram_controllers[i].poll_timings != NULL)
dram_controllers[i].poll_timings(dram_dev);
if(dram_controllers[i].poll_speed != NULL)
if (dram_controllers[i].poll_speed != NULL)
dram_controllers[i].poll_speed(dram_dev);
printf("%s %d MHz (%d) %s Channel %d-%d-%d-%d\n",
memory_device_types[Platform.RAM.Type],
verbose("Frequency detected: %d MHz (%d) %s Channel %d-%d-%d-%d\n",
(uint32_t)Platform.RAM.Frequency / 1000000,
(uint32_t)Platform.RAM.Frequency / 500000,
memory_channel_types[Platform.RAM.Channels],
trunk/i386/libsaio/platform.c
5151
5252
5353
54
54
5555
5656
5757
}
scan_memory(&Platform); // unfortunately still necesary for some comp where spd cant read correct speed
scan_spd(&Platform);
getc();
//getc();
}
done = true;
}

Archive Download the corresponding diff file

Revision: 233