coreboot-kgpe-d16/util/romcc/tests/simple_test46.c
Elyes HAOUAS bd96a84300 util: Fix typo on plural form of index
Change-Id: Idc165f8eafacf3130a29b701bc3610c1a67f69d5
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32855
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jacob Garber <jgarber1@ualberta.ca>
2019-05-20 14:45:35 +00:00

41 lines
764 B
C

static void spd_set_memclk(void)
{
static const int indices[] = { 26, 23, 9 };
int new_cycle_time, new_latency;
int index;
unsigned min_cycle_time, min_latency;
unsigned device;
min_cycle_time = 0x50;
min_latency = 2;
device = 0x50;
new_cycle_time = 0xa0;
new_latency = 5;
for(index = 0; index < 3; index++) {
unsigned long loops;
unsigned long address;
address = indices[index];
loops = 1000000;
do {
} while(--loops);
if (loops < 0) {
continue;
}
__builtin_outb(device, 0x10e4);
__builtin_outb(address, 0x10e8);
loops = 1000000;
if ((loops?0:-1) < 0) {
continue;
}
}
if (new_cycle_time > min_cycle_time) {
min_cycle_time = new_cycle_time;
}
if (new_latency > min_latency) {
min_latency = new_latency;
}
}