patch-2.4.21 linux-2.4.21/arch/alpha/kernel/time.c
Next file: linux-2.4.21/arch/alpha/kernel/traps.c
Previous file: linux-2.4.21/arch/alpha/kernel/sys_wildfire.c
Back to the patch index
Back to the overall index
- Lines: 59
- Date:
2003-06-13 07:51:29.000000000 -0700
- Orig file:
linux-2.4.20/arch/alpha/kernel/time.c
- Orig date:
2002-02-25 11:37:52.000000000 -0800
diff -urN linux-2.4.20/arch/alpha/kernel/time.c linux-2.4.21/arch/alpha/kernel/time.c
@@ -143,7 +143,9 @@
/* Reset periodic interrupt frequency. */
x = CMOS_READ(RTC_FREQ_SELECT) & 0x3f;
- if (x != 0x26 && x != 0x19 && x != 0x06) {
+ /* Test includes known working values on various platforms
+ where 0x26 is wrong; we refuse to change those. */
+ if (x != 0x26 && x != 0x25 && x != 0x19 && x != 0x06) {
printk("Setting RTC_FREQ to 1024 Hz (%x)\n", x);
CMOS_WRITE(0x26, RTC_FREQ_SELECT);
}
@@ -183,8 +185,8 @@
unsigned int min, max;
} cpu_hz[] __initdata = {
[EV3_CPU] = { 50000000, 200000000 }, /* guess */
- [EV4_CPU] = { 150000000, 300000000 },
- [LCA4_CPU] = { 150000000, 300000000 }, /* guess */
+ [EV4_CPU] = { 100000000, 300000000 },
+ [LCA4_CPU] = { 100000000, 300000000 }, /* guess */
[EV45_CPU] = { 200000000, 300000000 },
[EV5_CPU] = { 250000000, 433000000 },
[EV56_CPU] = { 333000000, 667000000 },
@@ -255,12 +257,12 @@
cc = rpcc();
do {
- count++;
+ count += 100; /* by 1 takes too long to timeout from 0 */
} while ((inb(0x61) & 0x20) == 0 && count > 0);
cc = rpcc() - cc;
/* Error: ECTCNEVERSET or ECPUTOOFAST. */
- if (count <= 1)
+ if (count <= 100)
return 0;
/* Error: ECPUTOOSLOW. */
@@ -378,21 +380,6 @@
/* Startup the timer source. */
alpha_mv.init_rtc();
-
- /*
- * If we had wanted SRM console printk echoing early, undo it now.
- *
- * "srmcons" specified in the boot command arguments allows us to
- * see kernel messages during the period of time before the true
- * console device is "registered" during console_init(). As of this
- * version (2.4.10), time_init() is the last Alpha-specific code
- * called before console_init(), so we put this "unregister" code
- * here to prevent schizophrenic console behavior later... ;-}
- */
- if (alpha_using_srm && srmcons_output) {
- unregister_srm_console();
- srmcons_output = 0;
- }
}
/*
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)