summaryrefslogtreecommitdiffstats
path: root/utils/bcm4751_test.c
blob: bf4159b4c0d08a485d3ca36920cc894a8ceb8b52 (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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
// Copyright (C) 2012 Paul Kocialkowski, contact@paulk.fr, GNU GPLv3+

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <unistd.h>
#include <termios.h>
#include <errno.h> 

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#include <sys/syscall.h>
#include <sys/linux-syscalls.h>

void hex_dump(void *data, int size)
{
    /* dumps size bytes of *data to stdout. Looks like:
     * [0000] 75 6E 6B 6E 6F 77 6E 20
     *                  30 FF 00 00 00 00 39 00 unknown 0.....9.
     * (in a single line of course)
     */

    unsigned char *p = data;
    unsigned char c;
    int n;
    char bytestr[4] = {0};
    char addrstr[10] = {0};
    char hexstr[ 16*3 + 5] = {0};
    char charstr[16*1 + 5] = {0};
    for(n=1;n<=size;n++) {
        if (n%16 == 1) {
            /* store address for this line */
            snprintf(addrstr, sizeof(addrstr), "%.4x",
               ((unsigned int)p-(unsigned int)data) );
        }

        c = *p;
        if (isalnum(c) == 0) {
            c = '.';
        }

        /* store hex str (for left side) */
        snprintf(bytestr, sizeof(bytestr), "%02X ", *p);
        strncat(hexstr, bytestr, sizeof(hexstr)-strlen(hexstr)-1);

        /* store char str (for right side) */
        snprintf(bytestr, sizeof(bytestr), "%c", c);
        strncat(charstr, bytestr, sizeof(charstr)-strlen(charstr)-1);

        if(n%16 == 0) {
            /* line completed */
            printf("[%4.4s]   %-50.50s  %s\n", addrstr, hexstr, charstr);
            hexstr[0] = 0;
            charstr[0] = 0;
        } else if(n%8 == 0) {
            /* half line: add whitespaces */
            strncat(hexstr, "  ", sizeof(hexstr)-strlen(hexstr)-1);
            strncat(charstr, " ", sizeof(charstr)-strlen(charstr)-1);
        }
        p++; /* next byte */
    }

    if (strlen(hexstr) > 0) {
        /* print rest of buffer if not empty */
        printf("[%4.4s]   %-50.50s  %s\n", addrstr, hexstr, charstr);
    }
}

int wake_lock_fd = -1;
int wake_unlock_fd = -1;

int wake_lock(char *lock_name, int size)
{
    int rc = 0;

    if(wake_lock_fd < 0)
        wake_lock_fd = open("/sys/power/wake_lock", O_RDWR);

    rc = write(wake_lock_fd, lock_name, size);

    return rc;
}

int wake_unlock(char *lock_name, int size)
{
    int rc = 0;

    if(wake_lock_fd < 0)
        wake_unlock_fd = open("/sys/power/wake_unlock", O_RDWR);

    rc = write(wake_unlock_fd, lock_name, size);

    return rc;
}

void gpio_write_ascii(char *gpio_path, char *value)
{
	int fd;
	fd = open(gpio_path, O_RDWR);

	if(fd < 0)
		return;

	write(fd, value, strlen(value));

	close(fd);
}

int main(int argc, char *argv[])
{
	char *gpio_standby_path = "/sys/class/sec/gps/GPS_PWR_EN/value";
	char *gpio_reset_path = "/sys/class/sec/gps/GPS_nRST/value";
	unsigned char *data;
	unsigned char init_val[21];
	int serial_fd;
	int rc;
	int i;

	struct termios termios;
	struct timeval timeout;
	int serial;
	fd_set fds;

	if(argc > 1) {
		if(strcmp(argv[1], "stop") == 0) {
			printf("Stopping it\n");
			wake_unlock("gpsd-interface", 14);
			gpio_write_ascii(gpio_standby_path, "0\n");

			return 0;
		}
	}

	sleep(1);

	printf("Wake lock on gpsd-interface\n");

	wake_lock("gpsd-interface", 14);

	printf("GPIO 1 write on %s\n", gpio_standby_path);
	gpio_write_ascii(gpio_standby_path, "1\n");

	usleep(250000);

	printf("Opening /dev/s3c2410_serial1\n");
	serial_fd = open("/dev/s3c2410_serial1", O_RDWR|O_NOCTTY|O_NONBLOCK);

	if(serial_fd < 0) {
		printf("Serial fd is wrong, aborting\n");
		return 1;
	}

	tcgetattr(serial_fd, &termios);
	ioctl(serial_fd, TCFLSH, 0x2);

	cfmakeraw(&termios);
	cfsetispeed(&termios, B115200);
	cfsetospeed(&termios, B115200);

	// This is the magic to contact the chip
	termios.c_cflag = 0x800018b2;
//	termios.c_cc[5]=0x01;
//	termios.c_cc[6]=0x00;

	tcsetattr(serial_fd, TCSANOW, &termios);
	ioctl(serial_fd, TCFLSH, 0x2);
	tcgetattr(serial_fd, &termios);

	FD_ZERO(&fds);
	FD_SET(serial_fd, &fds);

	memset(init_val, 0x80, 21);
	data = malloc(512);

	timeout.tv_sec = 1;
	timeout.tv_usec = 0;

	printf("Writing init bits\n");

	rc = select(serial_fd + 1, NULL,  &fds, NULL, &timeout);
	if(rc > 0) {
		write(serial_fd, init_val, 20);
		printf("Written\n");
	} else {
		printf("Timeout!\n");
		return 0;
	}

	for(i=0 ; i < 3 ; i++) {
		timeout.tv_sec = 1;
		timeout.tv_usec = 0;

		rc = select(serial_fd + 1, &fds, NULL, NULL, &timeout);

		printf("select rc is %d\n", rc);

		if(rc > 0) {
			rc = read(serial_fd, data, 512);
			printf("read %d bytes!\n", rc);

			if(rc < 0) {
				wake_unlock("gpsd-interface", 14);
				gpio_write_ascii(gpio_standby_path, "0\n");
				return 0;
			}

			hex_dump(data, rc);
			break;
		}

		write(serial_fd, init_val, 20);
	}

	for(i=0 ; i < 3 ; i++) {
		rc = read(serial_fd, data, 512);
		printf("read %d bytes!\n", rc);

		if(rc < 0) {
			perror("Here comes the error");
		} else
		hex_dump(data, rc);

		usleep(250000);
	}

	wake_unlock("gpsd-interface", 14);
	gpio_write_ascii(gpio_standby_path, "0\n");

	return 0;

	printf("Writing MEIF init bits\n");

	unsigned char meif_init_bits[9] = {
	0xff, 0x00, 0xfd, 0x40, 0x00, 0x00, 0xe6, 0xfc
	};

	write(serial_fd, meif_init_bits, 8);


	while(1) {
		FD_ZERO(&fds);
		FD_SET(serial_fd, &fds);

		timeout.tv_sec = 1;
		timeout.tv_usec = 499000;

		rc = select(serial_fd + 1, &fds, NULL, NULL, &timeout);

		printf("select rc is %d\n", rc);

		if(rc > 0) {
			rc = read(serial_fd, data, 512);
			printf("read %d bytes!\n");
			hex_dump(data, rc);

		//	usleep(30000);
		}
	}

	free(data);

	return 0;
}