blob: 66e950f7bf85f128eae68ef76d2daa3eec265c15 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/*
* Copyright (C) 2014 Samsung Electronics
*
* Krzysztof Opasiak <k.opasiak@samsung.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
/**
* @file show-udcs.c
* @example show-udcs.c
* This is an example of how to learn about UDCs available in system
* and find out what gadget are enabled on them.
*/
#include <errno.h>
#include <stdio.h>
#include <usbg/usbg.h>
int main(void)
{
int usbg_ret;
int ret = -EINVAL;
usbg_state *s;
usbg_gadget *g;
usbg_udc *u;
const char *udc_name, *gadget_name;
usbg_ret = usbg_init("/sys/kernel/config", &s);
if (usbg_ret != USBG_SUCCESS) {
fprintf(stderr, "Error on USB state init\n");
fprintf(stderr, "Error: %s : %s\n", usbg_error_name(usbg_ret),
usbg_strerror(usbg_ret));
goto out;
}
usbg_for_each_udc(u, s) {
udc_name = usbg_get_udc_name(u);
g = usbg_get_udc_gadget(u);
if (g)
/* some gadget is enabled */
gadget_name = usbg_get_gadget_name(g);
else
gadget_name = "";
fprintf(stdout, "%s <-> %s\n", udc_name, gadget_name);
}
ret = 0;
usbg_cleanup(s);
out:
return ret;
}
|