5801f33a47f90e780979978d2943ddc02c41386b
[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 StartTimer1(void)
11 {
12         outb(0x56, 0x43);
13         outb(0x12, 0x41);
14 }
15
16 void SystemPreInit(void)
17 {
18         /* they want a jump ... */
19 #ifndef CONFIG_USE_DCACHE_RAM
20         __asm__ __volatile__("jmp .+2\ninvd\njmp .+2\n");
21 #endif
22         StartTimer1();
23 }