summaryrefslogtreecommitdiff
path: root/ccdbg.c
blob: 6462739a56b08747d55fe74aa6a5337c1c8a05a6 (plain) (blame)
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
266
267
/*
 * Copyright © 2008 Keith Packard <keithp@keithp.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.
 *
 * 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.
 */

#include "ccdbg.h"

static void
get_bit(char *line, int i, char on, uint8_t bit, uint8_t *bits, uint8_t *masks)
{
	if (line[i] == on) {
		*bits |= bit;
		*masks |= bit;
		return;
	}
	if (line[i] == '.') {
		*masks |= bit;
		return;
	}
	if (line[i] == '-') {
		return;
	}
	fprintf(stderr, "bad line %s\n", line);
	exit (1);
}

static char
is_bit(uint8_t get, uint8_t mask, char on, uint8_t bit)
{
	if (mask&bit) {
		if (get&bit)
			return on;
		else
			return '.';
	} else
		return '-';
}

static uint8_t
ccdbg_write_read(struct ccdbg *dbg, uint8_t set, uint8_t mask)
{
	uint8_t	get = set;

	if (mask != (CC_DATA|CC_CLOCK|CC_RESET_N))
		get = ccdbg_read(dbg);
	ccdbg_write(dbg, mask, set);
	printf ("%c %c %c",
		is_bit(set, mask, 'C', CC_CLOCK),
		is_bit(set, mask, 'D', CC_DATA),
		is_bit(set, mask, 'R', CC_RESET_N));
	if (mask != (CC_DATA|CC_CLOCK|CC_RESET_N))
		printf(" -> %c %c %c",
		       is_bit(get, 0xf, 'C', CC_CLOCK),
		       is_bit(get, 0xf, 'D', CC_DATA),
		       is_bit(get, 0xf, 'R', CC_RESET_N));
	printf("\n");
	ccdbg_half_clock(dbg);
	return get;
}

static void
_ccdbg_debug_mode(struct ccdbg *dbg)
{
	printf ("#\n");
	printf ("# Debug mode\n");
	printf ("#\n");
	ccdbg_write_read(dbg, CC_CLOCK|CC_DATA|CC_RESET_N, CC_CLOCK|CC_DATA|CC_RESET_N);
	ccdbg_write_read(dbg,          CC_DATA           , CC_CLOCK|CC_DATA|CC_RESET_N);
	ccdbg_write_read(dbg, CC_CLOCK|CC_DATA           , CC_CLOCK|CC_DATA|CC_RESET_N);
	ccdbg_write_read(dbg,          CC_DATA           , CC_CLOCK|CC_DATA|CC_RESET_N);
	ccdbg_write_read(dbg, CC_CLOCK|CC_DATA           , CC_CLOCK|CC_DATA|CC_RESET_N);
	ccdbg_write_read(dbg,          CC_DATA|CC_RESET_N, CC_CLOCK|CC_DATA|CC_RESET_N);
}

static void
_ccdbg_reset(struct ccdbg *dbg)
{
	ccdbg_write_read(dbg, CC_CLOCK|CC_DATA|CC_RESET_N, CC_CLOCK|CC_DATA|CC_RESET_N);
	ccdbg_write_read(dbg, CC_CLOCK|CC_DATA           , CC_CLOCK|CC_DATA|CC_RESET_N);
	ccdbg_write_read(dbg, CC_CLOCK|CC_DATA           , CC_CLOCK|CC_DATA|CC_RESET_N);
	ccdbg_write_read(dbg, CC_CLOCK|CC_DATA|CC_RESET_N, CC_CLOCK|CC_DATA|CC_RESET_N);
}

static void
_ccdbg_send_bit(struct ccdbg *dbg, uint8_t bit)
{
	if (bit) bit = CC_DATA;
	ccdbg_write_read(dbg, CC_CLOCK|bit|CC_RESET_N, CC_CLOCK|CC_DATA|CC_RESET_N);
	ccdbg_write_read(dbg,          bit|CC_RESET_N, CC_CLOCK|CC_DATA|CC_RESET_N);
}

static void
_ccdbg_send_byte(struct ccdbg *dbg, uint8_t byte)
{
	int bit;
	printf ("#\n");
	printf ("# Send Byte 0x%02x\n", byte);
	printf ("#\n");
	for (bit = 7; bit >= 0; bit--) {
		_ccdbg_send_bit(dbg, (byte >> bit) & 1);
		if (bit == 3)
			printf ("\n");
	}
}

static void
_ccdbg_send_bits(struct ccdbg *dbg, int n, uint32_t bits)
{
	int bit;
	printf ("#\n");
	printf ("# Send %d bits 0x%08x\n", n, bits);
	printf ("#\n");
	for (bit = n - 1; bit >= 0; bit--) {
		_ccdbg_send_bit(dbg, (bits >> bit) & 1);
		if ((bit & 3) == 3)
			printf ("\n");
	}
}

static void
_ccdbg_print_bits(int n, uint32_t bits)
{
	int	bit;

	for (bit = n - 1; bit >= 0; bit--)
		printf ("%d", (bits >> bit) & 1);
}

static uint32_t
_ccdbg_read_bits(struct ccdbg *dbg, int bits)
{
	int		bit;
	uint32_t	val = 0;
	uint8_t		get;

	printf ("#\n");
	printf ("# Read %d bits\n", bits);
	printf ("#\n");
	for (bit = 0; bit < bits; bit++) {
		      ccdbg_write_read(dbg, CC_CLOCK|CC_DATA|CC_RESET_N, CC_CLOCK|CC_RESET_N);
		get = ccdbg_write_read(dbg,          CC_DATA|CC_RESET_N, CC_CLOCK|CC_RESET_N);
		val <<= 1;
		if (get & CC_DATA)
			val |= 1;
		if ((bit & 3) == 3)
			printf ("\n");
	}
	printf ("#\n");
	printf ("# Read "); _ccdbg_print_bits(bits, val); printf ("\n");
	printf ("#\n");
	return val;
}

static int
_ccdbg_check_bits(uint32_t bits, uint8_t match)
{
	int	bit;

	for (bit = 0; bit < 24; bit++)
		if (((bits >> bit) & 0xff) == match)
			return 1;
	return 0;
}

static uint32_t
_ccdbg_play(struct ccdbg *dbg, int num_sync, uint32_t sync)
{
	uint32_t	bits;
	_ccdbg_debug_mode(dbg);
	_ccdbg_send_bits(dbg, num_sync, sync);
	_ccdbg_send_byte(dbg, CC_GET_CHIP_ID);
	bits = _ccdbg_read_bits(dbg, 16);
	_ccdbg_send_byte(dbg, CC_GET_CHIP_ID);
	bits = _ccdbg_read_bits(dbg, 16);
//	_ccdbg_send_byte(dbg, CC_READ_STATUS);
	_ccdbg_reset(dbg);
	if (_ccdbg_check_bits(bits, 0x11)) {
		printf("#\n#match with %d bits 0x%08x\n#\n", num_sync, sync);
		return 1;
	}
	return 0;
}

static int
_ccdbg_play_num(struct ccdbg *dbg, int num)
{
	uint32_t	sync;
	uint32_t	max;

	printf ("#\n#play %d\n#\n", num);
	max = (1 << num);
	for (sync = 0; sync < max; sync++)
		if (_ccdbg_play(dbg, num, sync))
			return 1;
	return 0;
}

static int
_ccdbg_play_many(struct ccdbg *dbg, int max)
{
	int	num;

	for (num = 0; num < max; num++)
		if (_ccdbg_play_num(dbg, num))
			return 1;
	return 0;
}

static void
ccdbg_manual(struct ccdbg *dbg, FILE *input)
{
	char	line[80];
	uint8_t	set, mask;

	while (fgets(line, sizeof line, input)) {
		if (line[0] == '#' || line[0] == '\n') {
			printf ("%s", line);
			continue;
		}
		set = 0;
		mask = 0;
		get_bit(line, 0, 'C', CC_CLOCK, &set, &mask);
		get_bit(line, 2, 'D', CC_DATA, &set, &mask);
		get_bit(line, 4, 'R', CC_RESET_N, &set, &mask);
		ccdbg_write_read(dbg, set, mask);
	}
}

int
main (int argc, char **argv)
{
	struct ccdbg	*dbg;
	uint8_t		status;
	uint16_t	chip_id;

	dbg = ccdbg_open("/dev/ttyUSB0");
	if (!dbg)
		exit (1);
#if 0	
	_ccdbg_play(dbg, 0, 0);
	_ccdbg_play_many(dbg, 8);
#endif
	ccdbg_manual(dbg, stdin);
#if 0
	ccdbg_debug_mode(dbg);
	status = ccdbg_read_status(dbg);
	printf("Status: 0x%02x\n", status);
	chip_id = ccdbg_get_chip_id(dbg);
	printf("Chip id: 0x%04x\n", chip_id);
	_ccdbg_reset(dbg);
#endif
	ccdbg_close(dbg);
	exit (0);
}