ARK-3532 User Manual
86
A.1
EC Watchdog Timer Sample Code
EC_Command_Port = 0x29Ah
EC_Data_Port = 0x299h
Write EC HW ram = 0x89
Watch dog event flag = 0x57
Watchdog reset delay time = 0x5E
Reset event = 0x04
Start WDT function = 0x28
====================================================
.model small
.486p
.stack 256
.data
.code
org 100h
.STARTup
mov dx, EC_Command_Port
mov al,89h ; Write EC HW ram.
out dx,al
mov dx, EC_Data_Port
mov al, 5Fh ; Watchdog reset delay time low byte (5Eh is high byte) index, Timebase:
100ms
out dx,al
mov dx, EC_Data_Port
mov al, 64h ;Set 10 seconds delay time.
out dx,al
mov dx, EC_Command_Port
mov al,89h ; Write EC HW ram.
out dx,al
mov dx, EC_Data_Port
mov al, 57h ; Watch dog event flag.
out dx,al
mov dx, EC_Data_Port
mov al, 04h ; Reset event.
out dx,al
mov dx, EC_Command_Port
mov al,28h ; start WDT function. (Stop: 0x29, Reset: 0x2A)
out dx,al
.exit
END
Summary of Contents for ARK-3532
Page 1: ...User Manual ARK 3532 Fanless Embedded Box PC ...
Page 10: ...ARK 3532 User Manual x ...
Page 21: ...Chapter 2 2 Hardware Configuration ...
Page 36: ...ARK 3532 User Manual 24 ...
Page 37: ...Chapter 3 3 BIOS Settings ...
Page 60: ...ARK 3532 User Manual 48 3 2 2 8 NCT61260 Super I O Configuration ...
Page 62: ...ARK 3532 User Manual 50 3 2 2 9 NCT7802Y HW Monitor ...
Page 68: ...ARK 3532 User Manual 56 3 2 2 14 USB Configuration ...
Page 72: ...ARK 3532 User Manual 60 CSM Support Enable Disable CSM Support 3 2 2 17 NVMe Configuration ...
Page 96: ...ARK 3532 User Manual 84 ...
Page 97: ...Appendix A A Watchdog Timer Sample Code ...
Page 99: ...Appendix B B Fixing the LAN order ...
Page 103: ...91 ARK 3532 User Manual Appendix B Fixing the LAN order ...