-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnoise.c
More file actions
153 lines (133 loc) · 3.99 KB
/
noise.c
File metadata and controls
153 lines (133 loc) · 3.99 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
* Copyright (c) 2013 Luc Verhaegen <libv@skynet.be>
*
* 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.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
* Really trivial program to make constant noise on many available serial
* busses, so that UART pins may be found. Copyright is ascertained to at
* least attempt to mitigate some of the stupidity of android forums, and
* to perhaps see some changes get back to linux-sunxi.org from time to time.
*
* For usage information, please refer to http://linux-sunxi.org/UART
*/
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
#define SERIAL_COUNT 32
#define FILENAME_SIZE 32
struct files {
FILE *file;
char name[FILENAME_SIZE];
};
int
console_open(struct files *file, char *format, int index)
{
struct stat stat_buf;
int ret;
ret = snprintf(file->name, FILENAME_SIZE, format, index);
if (ret <= 0) {
printf("error writing filename!\n");
return -1;
}
ret = stat(file->name, &stat_buf);
if (ret == -1) {
if (errno != ENOENT)
printf("Error: failed to stat %s: %s\n",
file->name, strerror(errno));
return -1;
}
file->file = fopen(file->name, "w");
if (!(file->file)) {
printf("Error: failed to open %s: %s\n", file->name,
strerror(errno));
return -1;
}
return 0;
}
int
main(int argc, char *argv[])
{
struct files files[SERIAL_COUNT] = {{NULL,}, };
int i = 0, j, ret, found;
if (argc != 1) {
printf("\n");
printf("Copyright (c) 2013 Luc Verhaegen <libv@skynet.be>\n");
printf("\n");
printf("This program is free software; you can redistribute it "
"and/or modify it\n");
printf("under the terms of the GNU General Public License as "
"published by the\n");
printf("Free Software Foundation; either version 2 of the "
"License, or (at your\n");
printf("option) any later version.\n");
printf("\n");
printf("This program is distributed in the hope that it will be"
" useful, but\n");
printf("WITHOUT ANY WARRANTY; without even the implied warranty"
" of\n");
printf("MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. "
"See the GNU\n");
printf("General Public License for more details.\n");
printf("\n");
printf("You should have received a copy of the GNU General "
"Public License along\n");
printf("with this program; if not, write to the Free Software "
"Foundation, Inc.,\n");
printf("59 Temple Place, Suite 330, Boston, MA 02111-1307 "
"USA\n");
printf("\n");
printf("For more information, refer to "
"http://linux-sunxi.org/UART\n");
printf("\n");
return 0;
}
for (j = 0; j < 8; j++) {
ret = console_open(&files[i], "/dev/ttyS%d", j);
if (ret)
continue;
i++;
}
/* special device nodes for telechips */
for (j = 0; j < 8; j++) {
ret = console_open(&files[i], "/dev/tcc-uart%d", j);
if (ret)
continue;
i++;
}
printf("Flooding serial consoles with text...\n");
while (1) {
for (i = 0, found = 0; i < SERIAL_COUNT; i++) {
if (!files[i].file)
continue;
found = 1;
ret = fprintf(files[i].file, "%s\n", files[i].name);
if (ret > 0)
continue;
printf("Error: failed to write to %s: %s\n",
files[i].name, strerror(errno));
fclose(files[i].file);
files[i].file = NULL;
}
if (!found) {
printf("Error: No serial consoles found. Exiting.\n");
return -1;
}
usleep(20000);
}
return 0;
}