File: nokia-gpio.h

package info (click to toggle)
ofono 2.18-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,064 kB
  • sloc: ansic: 224,979; sh: 5,012; python: 4,040; makefile: 956
file content (26 lines) | stat: -rw-r--r-- 666 bytes parent folder | download | duplicates (2)
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
/*
 * oFono - Open Source Telephony
 * Copyright (C) 2010  Nokia Corporation and/or its subsidiary(-ies)
 *
 * SPDX-License-Identifier: GPL-2.0-only
 */

enum power_state {
	POWER_STATE_NONE,
	POWER_STATE_ON_STARTED,
	POWER_STATE_ON,
	POWER_STATE_ON_RESET,
	POWER_STATE_ON_FAILED,
	POWER_STATE_OFF_STARTED,
	POWER_STATE_OFF_WAITING,
	POWER_STATE_OFF,
};

typedef void (*gpio_finished_cb_t)(enum power_state value, void *opaque);

int gpio_probe(GIsiModem *idx, unsigned addr, gpio_finished_cb_t cb, void *data);
int gpio_enable(void *opaque);
int gpio_disable(void *opaque);
int gpio_remove(void *opaque);

char const *gpio_power_state_name(enum power_state value);