- Timestamp:
- 09/24/08 00:26:27 (4 months ago)
- Location:
- trunk/coreboot-v2/src
- Files:
-
- 2 modified
-
mainboard/asus/m2v-mx_se/cache_as_ram_auto.c (modified) (2 diffs)
-
superio/ite/it8712f/it8712f_early_serial.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/cache_as_ram_auto.c
r3591 r3595 158 158 sio_init(); 159 159 it8712f_enable_serial(SERIAL_DEV, TTYS0_BASE); 160 it8712f_kill_watchdog(); 160 161 uart_init(); 161 162 console_init(); … … 227 228 sio_init(); 228 229 it8712f_enable_serial(SERIAL_DEV, TTYS0_BASE); 230 it8712f_kill_watchdog(); 229 231 uart_init(); 230 232 console_init(); -
trunk/coreboot-v2/src/superio/ite/it8712f/it8712f_early_serial.c
r3594 r3595 33 33 #define IT8712F_CONFIG_REG_CLOCKSEL 0x23 /* Clock Selection. */ 34 34 #define IT8712F_CONFIG_REG_SWSUSP 0x24 /* Software Suspend, Flash I/F. */ 35 #define IT8712F_CONFIG_REG_WATCHDOG 0x72 /* Watchdog control. */ 35 36 36 37 #define IT8712F_CONFIGURATION_PORT 0x2e /* Write-only. */ … … 78 79 } 79 80 81 static void it8712f_kill_watchdog(void) 82 { 83 it8712f_enter_conf(); 84 85 /* Kill the Watchdog */ 86 it8712f_sio_write(0x07, IT8712F_CONFIG_REG_WATCHDOG, 0x00); 87 88 it8712f_exit_conf(); 89 } 90 80 91 /* Enable the peripheral devices on the IT8712F Super I/O chip. */ 81 92 static void it8712f_enable_serial(device_t dev, unsigned iobase)
