Changeset f701b236 in mainline for arch/ia32/src/ia32.c


Ignore:
Timestamp:
2005-11-24T00:46:43Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9149135
Parents:
8418c7d
Message:

More SMP cleanup.
Suddenly, keyboard started to work on SMP under Simics.
Still not functional on Bochs (will consult Bochs people).
Doxygen style comments for apic.c.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/ia32.c

    r8418c7d rf701b236  
    9595{
    9696        i8254_calibrate_delay_loop();
    97         i8254_normal_operation();
     97        if (config.cpu_active == 1) {
     98                /*
     99                 * This has to be done only on UP.
     100                 * On SMP, i8254 is not used for time keeping and its interrupt pin remains masked.
     101                 */
     102                i8254_normal_operation();
     103        }
    98104}
Note: See TracChangeset for help on using the changeset viewer.