ARK-1250L User Manual
68
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_Command_Port
mov al, 5Fh ; Watchdog reset delay time low byte (5Eh is high byte) index.
out dx,al
mov dx, EC_Data_Port
mov al, 30h ;Set 3 seconds delay time.
out dx,al
mov dx, EC_Command_Port
mov al,89h ; Write EC HW ram.
out dx,al
mov dx, EC_Command_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.
out dx,al
.exit
END
Содержание ARK-1250L
Страница 1: ...User Manual ARK 1250L Fanless Embedded Box Computer ...
Страница 10: ...ARK 1250L User Manual x ...
Страница 13: ...Chapter 1 1 General Introduction This chapter details background information on the ARK 1250L series ...
Страница 17: ...5 ARK 1250L User Manual Chapter 1 General Introduction 1 3 Mechanical Diagrams 141 173 60 ...
Страница 23: ...11 ARK 1250L User Manual Chapter 2 H W Installation 2 3 System I O ...
Страница 39: ...Chapter 3 3 BIOS Settings This chapter details instructions for setting BIOS configuration data ...
Страница 43: ...31 ARK 1250L User Manual Chapter 3 BIOS Settings 3 2 2 2 Power Performance ...
Страница 53: ...41 ARK 1250L User Manual Chapter 3 BIOS Settings Hardware Monitor Provide hardware monitor information ...
Страница 58: ...ARK 1250L User Manual 46 Provide Intel TXT information 3 2 2 11 USB Configuration ...
Страница 60: ...ARK 1250L User Manual 48 3 2 2 12 Network Stack Configuration Network Stack Enable Disable UEFI network stack ...
Страница 62: ...ARK 1250L User Manual 50 3 2 2 14 NVMe Configuration Provide NVMe device information ...
Страница 63: ...51 ARK 1250L User Manual Chapter 3 BIOS Settings 3 2 3 Chipset 3 2 3 1 System Agent SA Configuration ...
Страница 65: ...53 ARK 1250L User Manual Chapter 3 BIOS Settings 3 2 3 2 PCH IO Configuration ...
Страница 66: ...ARK 1250L User Manual 54 ...
Страница 69: ...57 ARK 1250L User Manual Chapter 3 BIOS Settings ...
Страница 79: ...Appendix A A Watchdog Timer Sample Code ...
Страница 81: ...69 ARK 1250L User Manual Appendix A Watchdog Timer Sample Code ...