blob: c341cd9cb62a365a015f7e8052805c442af95262 [file] [log] [blame]
Holger Brunck95626872020-01-10 12:47:42 +01001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * (C) Copyright 2018 ABB
Holger Brunck078e1b72020-07-09 17:31:23 +02004 * Valentin Longchamp <valentin.longchamp@hitachi-powergrids.com>
Holger Brunck95626872020-01-10 12:47:42 +01005 */
6
7#ifndef __QRIO_H
8#define __QRIO_H
9
10/* QRIO GPIO ports */
11#define QRIO_GPIO_A 0x40
12#define QRIO_GPIO_B 0x60
13
Aleksandar Gerasimovski69d5b7b2021-01-13 16:20:51 +000014void show_qrio(void);
Aleksandar Gerasimovski8a78d922021-11-16 12:48:46 +000015bool qrio_get_selftest_pin(void);
Holger Brunck95626872020-01-10 12:47:42 +010016int qrio_get_gpio(u8 port_off, u8 gpio_nr);
17void qrio_set_opendrain_gpio(u8 port_off, u8 gpio_nr, u8 val);
18void qrio_set_gpio(u8 port_off, u8 gpio_nr, bool value);
19void qrio_gpio_direction_output(u8 port_off, u8 gpio_nr, bool value);
20void qrio_gpio_direction_input(u8 port_off, u8 gpio_nr);
21
22/* QRIO Periphery reset configurations */
23#define PRSTCFG_POWUP_UNIT_CORE_RST 0x0
24#define PRSTCFG_POWUP_UNIT_RST 0x1
25#define PRSTCFG_POWUP_RST 0x3
26
27void qrio_prst(u8 bit, bool en, bool wden);
28void qrio_wdmask(u8 bit, bool wden);
29void qrio_prstcfg(u8 bit, u8 mode);
30void qrio_set_leds(void);
31void qrio_enable_app_buffer(void);
32void qrio_cpuwd_flag(bool flag);
33bool qrio_reason_unitrst(void);
34
35/* QRIO uP reset request configurations */
36#define UPREQ_UNIT_RST 0x0
37#define UPREQ_CORE_RST 0x1
38
39void qrio_uprstreq(u8 mode);
40
41void i2c_deblock_gpio_cfg(void);
42#endif /* __QRIO_H */