c6b2ea527ca76daf0a1424eee3cd920ec1aedfc1
[coreboot.git] / src / cpu / amd / model_gx2 / syspreinit.c
1 /* ***************************************************************************/
2 /* **/
3 /* *    StartTimer1*/
4 /* **/
5 /* *    Entry: none*/
6 /* *    Exit: Starts Timer 1 for port 61 use*/
7 /* *    Destroys: Al,*/
8 /* **/
9 /* ***************************************************************************/
10 static void
11 StartTimer1(void)
12 {
13         outb(0x56, 0x43);
14         outb(0x12, 0x41);
15 }
16
17 void
18 SystemPreInit(void)
19 {
20         /* they want a jump ... */
21         __asm__("jmp .+2\ninvd\njmp.+2\n");
22         StartTimer1();
23 }