User`s manual
Table Of Contents
- M-322
- Revision History
- Preface
- Table of Contents
- List of Figures
- List of Tables
- 1 Introduction
- 2 Connectors & Jumpers
- 2.1 Rear I/O Connectors
- 2.2 Onboard Connectors
- Front Panel Audio Pin Header (AAFP)
- ATX 12V Power Connector (ATX12V)
- ATX Power Connector (EATXPWR)
- CD-in Connector (CD)
- System Fan Connector (CHA_FAN1)
- CPU Fan Connector (CPU_FAN)
- Chassis Intrusion Connector (CHASSIS)
- Serial Port Connectors RS-232 (COM2-4)
- Serial Port Connectors RS-422/485 (COM4)
- Floppy Disk Drive Connector (FLOPPY)
- System Panel Pin Header (F_PANEL)
- Amplifier Audio Pin Header (JAMP1)
- Digital IO Pin Header (JDIO)
- IDE Connector (PRI_EIDE)
- Power Fan Connector (PWR_FAN)
- SATA Connectors (SATA1-6)
- S/PDIF Pin Header (SPDIF_OUT)
- SPI Pin Header (SPI)
- USB Pin Headers (USB56/78/910/1112)
- 2.3 Jumpers
- 3 Getting Started
- 4 BIOS Setup
- 4.1 Starting the BIOS
- 4.2 Main Setup
- 4.3 Advanced Setings
- 4.3.1 USB Configuration
- 4.3.2 Trusted Computing
- 4.3.3 Intel TXT Configuration
- 4.3.4 Intel VT-d Configuration
- 4.3.5 CPU Configuration
- 4.3.6 Chipset Settings
- North Bridge Configuration
- 4.4 Power Settings
- 4.5 Boot Settings
- 4.6 Exit Menu
- Appendix A - Watchdog Timer
- Appendix B - System Resources
- Important Safety Instructions
- Getting Service

Watchdog Timer 65
M-322
Appendix A - Watchdog Timer
The following is a sample program for configuring the M-322’s
watchdog timer.
A.1 Sample Code
Unlock W83627DHG-A:
outportb(0x2E, 0x87) ;Unlock Super I/O
Select Logical Device:
outportb(0x2E, 0x07) ;Select device number register
outportb(0x2F, 0x08) ;Set to Logical Device 8
Activate WDT:
outportb(0x2E, 0x30) ;Select WDTO# activate register
outportb(0x2F, 0x01) ;Enable watchdog
Set Seconds or Minutes:
outportb(0x2E, 0xF5) ;Select WDTO# control register
outportb(0x2F, mode)
;where mode=0x00(Sec) or 0x08(Min)
Set base timer:
outportb(0x2E, 0xF6) ;Select WDTO# counter register
outportb(0x2F, timeout) ;where timeout=0x00~0xFF
Reset timeout counter:
outportb(0x2E, 0xF6) ;Select WDTO# counter register
outportb(0x2F, timeout) ;where timeout=0x00~0xFF}










