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
|
/*
* 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"
uint8_t
ccdbg_chip_erase(struct ccdbg *dbg)
{
return ccdbg_cmd_write_read8(dbg, CC_CHIP_ERASE, NULL, 0);
}
uint8_t
ccdbg_wr_config(struct ccdbg *dbg, uint8_t config)
{
return ccdbg_cmd_write_read8(dbg, CC_WR_CONFIG, &config, 1);
}
uint8_t
ccdbg_rd_config(struct ccdbg *dbg)
{
return ccdbg_cmd_write_read8(dbg, CC_RD_CONFIG, NULL, 0);
}
uint16_t
ccdbg_get_pc(struct ccdbg *dbg)
{
uint16_t pc1, pc2;
pc1 = ccdbg_cmd_write_read16(dbg, CC_GET_PC, NULL, 0);
pc2 = ccdbg_cmd_write_read16(dbg, CC_GET_PC, NULL, 0);
if (pc1 != pc2)
fprintf (stderr, "Invalid pc %04x != %04x\n",
pc1, pc2);
return pc2;
}
uint8_t
ccdbg_read_status(struct ccdbg *dbg)
{
return ccdbg_cmd_write_read8(dbg, CC_READ_STATUS, NULL, 0);
}
uint8_t
ccdbg_set_hw_brkpnt(struct ccdbg *dbg, uint8_t number, uint8_t enable, uint16_t addr)
{
uint8_t data[3];
data[0] = (number << 3) | (enable << 2);
data[1] = (addr >> 8);
data[2] = addr;
return ccdbg_cmd_write_read8(dbg, CC_SET_HW_BRKPNT, data, 3);
}
uint8_t
ccdbg_halt(struct ccdbg *dbg)
{
return ccdbg_cmd_write_read8(dbg, CC_HALT, NULL, 0);
}
uint8_t
ccdbg_resume(struct ccdbg *dbg)
{
return ccdbg_cmd_write_read8(dbg, CC_RESUME, NULL, 0);
}
uint8_t
ccdbg_debug_instr(struct ccdbg *dbg, uint8_t *instr, int nbytes)
{
return ccdbg_cmd_write_read8(dbg, CC_DEBUG_INSTR(nbytes), instr, nbytes);
}
void
ccdbg_debug_instr_discard(struct ccdbg *dbg, uint8_t *instr, int nbytes)
{
static uint8_t discard;
ccdbg_cmd_write_queue8(dbg, CC_DEBUG_INSTR(nbytes),
instr, nbytes, &discard);
}
void
ccdbg_debug_instr_queue(struct ccdbg *dbg, uint8_t *instr, int nbytes,
uint8_t *reply)
{
return ccdbg_cmd_write_queue8(dbg, CC_DEBUG_INSTR(nbytes),
instr, nbytes, reply);
}
uint8_t
ccdbg_step_instr(struct ccdbg *dbg)
{
return ccdbg_cmd_write_read8(dbg, CC_STEP_INSTR, NULL, 0);
}
uint8_t
ccdbg_step_replace(struct ccdbg *dbg, uint8_t *instr, int nbytes)
{
return ccdbg_cmd_write_read8(dbg, CC_STEP_REPLACE(nbytes), instr, nbytes);
}
uint16_t
ccdbg_get_chip_id(struct ccdbg *dbg)
{
return ccdbg_cmd_write_read16(dbg, CC_GET_CHIP_ID, NULL, 0);
}
/*
* Execute a sequence of instructions
*/
uint8_t
ccdbg_execute(struct ccdbg *dbg, uint8_t *inst)
{
uint8_t status = 0;
while(inst[0] != 0) {
uint8_t len = inst[0];
int i;
ccdbg_debug(CC_DEBUG_INSTRUCTIONS, "\t%02x", inst[1]);
for (i = 0; i < len - 1; i++)
ccdbg_debug(CC_DEBUG_INSTRUCTIONS, " %02x", inst[i+2]);
ccdbg_debug_instr_queue(dbg, inst+1, len, &status);
for (; i < 3; i++)
ccdbg_debug(CC_DEBUG_INSTRUCTIONS, " ");
ccdbg_debug(CC_DEBUG_INSTRUCTIONS, " -> %02x\n", status);
inst += len + 1;
}
ccdbg_sync(dbg);
return status;
}
static uint8_t jump_mem[] = {
3, LJMP, 0xf0, 0x00,
#define PC_HIGH 2
#define PC_LOW 3
0
};
uint8_t
ccdbg_set_pc(struct ccdbg *dbg, uint16_t pc)
{
jump_mem[PC_HIGH] = pc >> 8;
jump_mem[PC_LOW] = pc & 0xff;
return ccdbg_execute(dbg, jump_mem);
}
uint8_t
ccdbg_execute_hex_image(struct ccdbg *dbg, struct hex_image *image)
{
uint16_t pc;
uint8_t status;
if (image->address < 0xf000) {
fprintf(stderr, "Cannot execute program starting at 0x%04x\n", image->address);
return -1;
}
ccdbg_write_hex_image(dbg, image, 0);
ccdbg_set_pc(dbg, image->address);
pc = ccdbg_get_pc(dbg);
ccdbg_debug(CC_DEBUG_EXECUTE, "pc starts at 0x%04x\n", pc);
status = ccdbg_resume(dbg);
ccdbg_debug(CC_DEBUG_EXECUTE, "resume status: 0x%02x\n", status);
return 0;
}
|