aboutsummaryrefslogtreecommitdiff
path: root/platforms/rhesus/ec/gpio.h
blob: 65d7d878a333fdf420291d80435eaebdae3e09e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// SPDX-License-Identifier: Apache-2.0
/* Copyright 2013-2014 Google Corp. */

/**
 * @file gpio.h
 *
 * @brief Public interface of the EC GPIO device driver
 *
 */

#ifndef __EC_GPIO_H_
#define __EC_GPIO_H_

#ifdef __cplusplus
extern "C" {
#endif

#define EC_GPIO_INPUT  0
#define EC_GPIO_OUTPUT 1
#define EC_GPIO_PULLUP_DISABLE 0
#define EC_GPIO_PULLUP_ENABLE  1

// Sets up a GPIO as output or input.
// Returns: <0 on error
int ec_gpio_setup(EcGpioPort port, uint8_t pin,
                  int is_output, int pullup_enable);

// Reads the current value of an input GPIO.
// Returns: GPIO value (0,1) or <0 on error.
int ec_gpio_read(EcGpioPort port, uint8_t pin);

// Sets the driving value of an output GPIO.  Port should already be set
// to output mode.
// Returns: <0 on error
int ec_gpio_set(EcGpioPort port, uint8_t pin, int val);

#ifdef __cplusplus
}
#endif

#endif  // __EC_GPIO_H_