Prepare v2024.10
[platform/kernel/u-boot.git] / drivers / misc / nuvoton_nct6102d.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2016 Stefan Roese <sr@denx.de>
4  */
5
6 #include <nuvoton_nct6102d.h>
7 #include <asm/io.h>
8 #include <asm/pnp_def.h>
9
10 static void superio_outb(int reg, int val)
11 {
12         outb(reg, NCT_EFER);
13         outb(val, NCT_EFDR);
14 }
15
16 static inline int superio_inb(int reg)
17 {
18         outb(reg, NCT_EFER);
19         return inb(NCT_EFDR);
20 }
21
22 static int superio_enter(void)
23 {
24         outb(NCT_ENTRY_KEY, NCT_EFER); /* Enter extended function mode */
25         outb(NCT_ENTRY_KEY, NCT_EFER); /* Again according to manual */
26
27         return 0;
28 }
29
30 static void superio_select(int ld)
31 {
32         superio_outb(NCT_LD_SELECT_REG, ld);
33 }
34
35 static void superio_exit(void)
36 {
37         outb(NCT_EXIT_KEY, NCT_EFER); /* Leave extended function mode */
38 }
39
40 /*
41  * The Nuvoton NCT6102D starts per default after reset with both,
42  * the internal watchdog and the internal legacy UART enabled. This
43  * code provides a function to disable the watchdog.
44  */
45 int nct6102d_wdt_disable(void)
46 {
47         superio_enter();
48         /* Select logical device for WDT */
49         superio_select(NCT6102D_LD_WDT);
50         superio_outb(NCT6102D_WDT_TIMEOUT, 0x00);
51         superio_exit();
52
53         return 0;
54 }