6fcb2194e10cc35fc9b63fcf1718983376ed4260
[fw/stlink] / src / stlink-common.h
1 /* 
2  * File:   stlink-common.h
3  * Bulk import from stlink-hw.h
4  * 
5  * This should contain all the common top level stlink interfaces, regardless
6  * of how the backend does the work....
7  */
8
9 #ifndef STLINK_COMMON_H
10 #define STLINK_COMMON_H
11
12 #ifdef  __cplusplus
13 extern "C" {
14 #endif
15
16 #include <stdint.h>
17
18     // Max data transfer size.
19     // 6kB = max mem32_read block, 8kB sram
20     //#define Q_BUF_LEN 96
21 #define Q_BUF_LEN                       (1024 * 100)
22
23     // st-link vendor cmd's
24 #define USB_ST_VID                      0x0483
25 #define USB_STLINK_PID                  0x3744
26 #define USB_STLINK_32L_PID              0x3748
27
28     // STLINK_DEBUG_RESETSYS, etc:
29 #define STLINK_OK                       0x80
30 #define STLINK_FALSE                    0x81
31 #define STLINK_CORE_RUNNING             0x80
32 #define STLINK_CORE_HALTED              0x81
33 #define STLINK_CORE_STAT_UNKNOWN        -1
34
35 #define STLINK_GET_VERSION              0xf1
36 #define STLINK_GET_CURRENT_MODE 0xf5
37
38 #define STLINK_DEBUG_COMMAND            0xF2
39 #define STLINK_DFU_COMMAND              0xF3
40 #define STLINK_DFU_EXIT         0x07
41     // enter dfu could be 0x08?
42
43     // STLINK_GET_CURRENT_MODE
44 #define STLINK_DEV_DFU_MODE             0x00
45 #define STLINK_DEV_MASS_MODE            0x01
46 #define STLINK_DEV_DEBUG_MODE           0x02
47 #define STLINK_DEV_UNKNOWN_MODE -1
48
49     // jtag mode cmds
50 #define STLINK_DEBUG_ENTER              0x20
51 #define STLINK_DEBUG_EXIT               0x21
52 #define STLINK_DEBUG_READCOREID 0x22
53 #define STLINK_DEBUG_GETSTATUS          0x01
54 #define STLINK_DEBUG_FORCEDEBUG 0x02
55 #define STLINK_DEBUG_RESETSYS           0x03
56 #define STLINK_DEBUG_READALLREGS        0x04
57 #define STLINK_DEBUG_READREG            0x05
58 #define STLINK_DEBUG_WRITEREG           0x06
59 #define STLINK_DEBUG_READMEM_32BIT      0x07
60 #define STLINK_DEBUG_WRITEMEM_32BIT     0x08
61 #define STLINK_DEBUG_RUNCORE            0x09
62 #define STLINK_DEBUG_STEPCORE           0x0a
63 #define STLINK_DEBUG_SETFP              0x0b
64 #define STLINK_DEBUG_WRITEMEM_8BIT      0x0d
65 #define STLINK_DEBUG_CLEARFP            0x0e
66 #define STLINK_DEBUG_WRITEDEBUGREG      0x0f
67 #define STLINK_DEBUG_ENTER_SWD          0xa3
68 #define STLINK_DEBUG_ENTER_JTAG 0x00
69     
70     // TODO - possible poor names...
71 #define STLINK_SWD_ENTER 0x30
72 #define STLINK_SWD_READCOREID 0x32  // TBD
73 #define STLINK_JTAG_WRITEDEBUG_32BIT 0x35
74 #define STLINK_JTAG_READDEBUG_32BIT 0x36
75 #define STLINK_JTAG_DRIVE_NRST 0x3c
76 #define STLINK_JTAG_DRIVE_NRST 0x3c
77
78 // cortex m3 technical reference manual
79 #define CM3_REG_CPUID 0xE000ED00
80 #define CM3_REG_FP_CTRL 0xE0002000
81 #define CM3_REG_FP_COMP0 0xE0002008
82
83 /* cortex core ids */
84     // TODO clean this up...
85 #define STM32VL_CORE_ID 0x1ba01477
86 #define STM32L_CORE_ID 0x2ba01477
87 #define STM32F4_CORE_ID 0x2ba01477
88 #define CORE_M3_R1 0x1BA00477
89 #define CORE_M3_R2 0x4BA00477
90 #define CORE_M4_R0 0x2BA01477
91
92 /*
93  * Chip IDs are explained in the appropriate programming manual for the
94  * DBGMCU_IDCODE register (0xE0042000)
95  */
96 // stm32 chipids, only lower 12 bits..
97 #define STM32_CHIPID_F1_MEDIUM 0x410
98 #define STM32_CHIPID_F2 0x411
99 #define STM32_CHIPID_F1_LOW 0x412
100 #define STM32_CHIPID_F4 0x413
101 #define STM32_CHIPID_F1_HIGH 0x414
102 #define STM32_CHIPID_L1_MEDIUM 0x416
103 #define STM32_CHIPID_F1_CONN 0x418
104 #define STM32_CHIPID_F1_VL_MEDIUM 0x420
105 #define STM32_CHIPID_F1_VL_HIGH 0x428
106 #define STM32_CHIPID_F1_XL 0x430
107
108 // Constant STM32 memory map figures
109 #define STM32_FLASH_BASE 0x08000000
110 #define STM32_SRAM_BASE 0x20000000
111
112 /* Cortex™-M3 Technical Reference Manual */
113 /* Debug Halting Control and Status Register */
114 #define DHCSR 0xe000edf0
115 #define DBGKEY 0xa05f0000
116
117 /* Enough space to hold both a V2 command or a V1 command packaged as generic scsi*/
118 #define C_BUF_LEN 32
119
120     typedef struct chip_params_ {
121         uint32_t chip_id;
122         char* description;
123         uint32_t flash_size_reg;
124         uint32_t flash_pagesize;
125         uint32_t sram_size;
126         uint32_t bootrom_base, bootrom_size;
127     } chip_params_t;
128     
129     
130     // These maps are from a combination of the Programming Manuals, and 
131     // also the Reference manuals.  (flash size reg is normally in ref man)
132  static const chip_params_t devices[] = {
133         { // table 2, PM0063
134             .chip_id = 0x410,
135             .description = "F1 Medium-density device",
136             .flash_size_reg = 0x1ffff7e0,
137                     .flash_pagesize = 0x400,
138                     .sram_size = 0x5000,
139                     .bootrom_base = 0x1ffff000,
140                     .bootrom_size = 0x800
141         },
142         {  // table 1, PM0059
143             .chip_id = 0x411,
144                     .description = "F2 device",
145                     .flash_size_reg = 0, /* no flash size reg found in the docs! */
146                     .flash_pagesize = 0x20000,
147                     .sram_size = 0x20000,
148                     .bootrom_base = 0x1fff0000,
149                     .bootrom_size = 0x7800
150         },
151         { // PM0063
152             .chip_id = 0x412,
153                     .description = "F1 Low-density device",
154                     .flash_size_reg = 0x1ffff7e0,
155                     .flash_pagesize = 0x400,
156                     .sram_size = 0x2800,
157                     .bootrom_base = 0x1ffff000,
158                     .bootrom_size = 0x800
159         },
160         {
161             .chip_id = 0x413,
162                     .description = "F4 device",
163                     .flash_size_reg = 0x1FFF7A10,  //RM0090 error same as unique ID
164                     .flash_pagesize = 0x4000,
165                     .sram_size = 0x30000,
166                     .bootrom_base = 0x1fff0000,
167                     .bootrom_size = 0x7800
168         },
169         {
170             .chip_id = 0x414,
171                     .description = "F1 High-density device",
172                     .flash_size_reg = 0x1ffff7e0,
173                     .flash_pagesize = 0x800,
174                     .sram_size = 0x10000,
175                     .bootrom_base = 0x1ffff000,
176                     .bootrom_size = 0x800
177         },
178         {
179           // This ignores the EEPROM! (and uses the page erase size,
180           // not the sector write protection...)
181             .chip_id = 0x416,
182                     .description = "L1 Med-density device",
183                     .flash_size_reg = 0x1ff8004c,
184                     .flash_pagesize = 0x100,
185                     .sram_size = 0x4000,
186                     .bootrom_base = 0x1ff00000,
187                     .bootrom_size = 0x1000
188         },
189         {
190             .chip_id = 0x418,
191                     .description = "F1 Connectivity line device",
192                     .flash_size_reg = 0x1ffff7e0,
193                     .flash_pagesize = 0x800,
194                     .sram_size = 0x10000,
195                     .bootrom_base = 0x1fffb000,
196                     .bootrom_size = 0x4800
197         },
198         {
199             .chip_id = 0x420,
200                     .description = "F1 Medium-density Value Line device",
201                     .flash_size_reg = 0x1ffff7e0,
202                     .flash_pagesize = 0x400,
203                     .sram_size = 0x2000,
204                     .bootrom_base = 0x1ffff000,
205                     .bootrom_size = 0x800
206         },
207         {
208             .chip_id = 0x428,
209                     .description = "F1 High-density value line device",
210                     .flash_size_reg = 0x1ffff7e0,
211                     .flash_pagesize = 0x800,
212                     .sram_size = 0x8000,
213                     .bootrom_base = 0x1ffff000,
214                     .bootrom_size = 0x800
215         },
216         {
217             .chip_id = 0x430,
218                     .description = "F1 XL-density device",
219                     .flash_size_reg = 0x1ffff7e0,
220                     .flash_pagesize = 0x800,
221                     .sram_size = 0x18000,
222                     .bootrom_base = 0x1fffe000,
223                     .bootrom_size = 0x1800
224         }
225  };
226
227     
228     typedef struct {
229         uint32_t r[16];
230         uint32_t xpsr;
231         uint32_t main_sp;
232         uint32_t process_sp;
233         uint32_t rw;
234         uint32_t rw2;
235     } reg;
236
237     typedef uint32_t stm32_addr_t;
238     
239     typedef struct _cortex_m3_cpuid_ {
240         uint16_t implementer_id;
241         uint16_t variant;
242         uint16_t part;
243         uint8_t revision;
244     } cortex_m3_cpuid_t;
245
246     typedef struct stlink_version_ {
247         uint32_t stlink_v;
248         uint32_t jtag_v;
249         uint32_t swim_v;
250         uint32_t st_vid;
251         uint32_t stlink_pid;
252     } stlink_version_t;
253
254     typedef struct flash_loader {
255         stm32_addr_t loader_addr; /* loader sram adddr */
256         stm32_addr_t buf_addr; /* buffer sram address */
257     } flash_loader_t;
258
259     enum transport_type {
260         TRANSPORT_TYPE_ZERO = 0,
261         TRANSPORT_TYPE_LIBSG,
262         TRANSPORT_TYPE_LIBUSB,
263         TRANSPORT_TYPE_INVALID
264     };
265
266     typedef struct _stlink stlink_t;
267
268     typedef struct _stlink_backend {
269         void (*close) (stlink_t * sl);
270         void (*exit_debug_mode) (stlink_t * sl);
271         void (*enter_swd_mode) (stlink_t * sl);
272         void (*enter_jtag_mode) (stlink_t * stl);
273         void (*exit_dfu_mode) (stlink_t * stl);
274         void (*core_id) (stlink_t * stl);
275         void (*reset) (stlink_t * stl);
276         void (*jtag_reset) (stlink_t * stl, int value);
277         void (*run) (stlink_t * stl);
278         void (*status) (stlink_t * stl);
279         void (*version) (stlink_t *sl);
280         uint32_t (*read_debug32) (stlink_t *sl, uint32_t addr);
281         void (*read_mem32) (stlink_t *sl, uint32_t addr, uint16_t len);
282         void (*write_debug32) (stlink_t *sl, uint32_t addr, uint32_t data);
283         void (*write_mem32) (stlink_t *sl, uint32_t addr, uint16_t len);
284         void (*write_mem8) (stlink_t *sl, uint32_t addr, uint16_t len);
285         void (*read_all_regs) (stlink_t *sl, reg * regp);
286         void (*read_reg) (stlink_t *sl, int r_idx, reg * regp);
287         void (*write_reg) (stlink_t *sl, uint32_t reg, int idx);
288         void (*step) (stlink_t * stl);
289         int (*current_mode) (stlink_t * stl);
290         void (*force_debug) (stlink_t *sl);
291     } stlink_backend_t;
292
293     struct _stlink {
294         struct _stlink_backend *backend;
295         void *backend_data;
296
297         // Room for the command header
298         unsigned char c_buf[C_BUF_LEN];
299         // Data transferred from or to device
300         unsigned char q_buf[Q_BUF_LEN];
301         int q_len;
302
303         // transport layer verboseness: 0 for no debug info, 10 for lots
304         int verbose;
305         uint32_t core_id;
306         uint32_t chip_id;
307         int core_stat;
308
309 #define STM32_FLASH_PGSZ 1024
310 #define STM32L_FLASH_PGSZ 256
311
312 #define STM32F4_FLASH_PGSZ 16384
313 #define STM32F4_FLASH_SIZE (128 * 1024 * 8)
314
315         stm32_addr_t flash_base;
316         size_t flash_size;
317         size_t flash_pgsz;
318
319         /* sram settings */
320 #define STM32_SRAM_SIZE (8 * 1024)
321 #define STM32L_SRAM_SIZE (16 * 1024)
322         stm32_addr_t sram_base;
323         size_t sram_size;
324         
325         // bootloader
326         stm32_addr_t sys_base;
327         size_t sys_size;
328
329         struct stlink_version_ version;
330     };
331
332     //stlink_t* stlink_quirk_open(const char *dev_name, const int verbose);
333
334     // delegated functions...
335     void stlink_enter_swd_mode(stlink_t *sl);
336     void stlink_enter_jtag_mode(stlink_t *sl);
337     void stlink_exit_debug_mode(stlink_t *sl);
338     void stlink_exit_dfu_mode(stlink_t *sl);
339     void stlink_close(stlink_t *sl);
340     uint32_t stlink_core_id(stlink_t *sl);
341     void stlink_reset(stlink_t *sl);
342     void stlink_jtag_reset(stlink_t *sl, int value);
343     void stlink_run(stlink_t *sl);
344     void stlink_status(stlink_t *sl);
345     void stlink_version(stlink_t *sl);
346     uint32_t stlink_read_debug32(stlink_t *sl, uint32_t addr);
347     void stlink_read_mem32(stlink_t *sl, uint32_t addr, uint16_t len);
348     void stlink_write_debug32(stlink_t *sl, uint32_t addr, uint32_t data);
349     void stlink_write_mem32(stlink_t *sl, uint32_t addr, uint16_t len);
350     void stlink_write_mem8(stlink_t *sl, uint32_t addr, uint16_t len);
351     void stlink_read_all_regs(stlink_t *sl, reg *regp);
352     void stlink_read_reg(stlink_t *sl, int r_idx, reg *regp);
353     void stlink_write_reg(stlink_t *sl, uint32_t reg, int idx);
354     void stlink_step(stlink_t *sl);
355     int stlink_current_mode(stlink_t *sl);
356     void stlink_force_debug(stlink_t *sl);
357
358
359     // unprocessed
360     int stlink_erase_flash_mass(stlink_t* sl);
361     int stlink_write_flash(stlink_t* sl, stm32_addr_t address, uint8_t* data, unsigned length);
362     int stlink_fwrite_flash(stlink_t *sl, const char* path, stm32_addr_t addr);
363     int stlink_fwrite_sram(stlink_t *sl, const char* path, stm32_addr_t addr);
364     int stlink_verify_write_flash(stlink_t *sl, stm32_addr_t address, uint8_t *data, unsigned length);
365     
366     // PUBLIC
367     uint32_t stlink_chip_id(stlink_t *sl);
368     void stlink_cpu_id(stlink_t *sl, cortex_m3_cpuid_t *cpuid);
369
370     // privates, publics, the rest....
371     // TODO sort what is private, and what is not
372     int stlink_erase_flash_page(stlink_t* sl, stm32_addr_t flashaddr);
373     uint32_t stlink_calculate_pagesize(stlink_t *sl, uint32_t flashaddr);
374     uint16_t read_uint16(const unsigned char *c, const int pt);
375     void stlink_core_stat(stlink_t *sl);
376     void stlink_print_data(stlink_t *sl);
377     unsigned int is_bigendian(void);
378     uint32_t read_uint32(const unsigned char *c, const int pt);
379     void write_uint32(unsigned char* buf, uint32_t ui);
380     void write_uint16(unsigned char* buf, uint16_t ui);
381     unsigned int is_core_halted(stlink_t *sl);
382     int write_buffer_to_sram(stlink_t *sl, flash_loader_t* fl, const uint8_t* buf, size_t size);
383     int write_loader_to_sram(stlink_t *sl, stm32_addr_t* addr, size_t* size);
384     int stlink_fread(stlink_t* sl, const char* path, stm32_addr_t addr, size_t size);
385     int run_flash_loader(stlink_t *sl, flash_loader_t* fl, stm32_addr_t target, const uint8_t* buf, size_t size);
386     int stlink_load_device_params(stlink_t *sl);
387
388
389
390 #include "stlink-sg.h"
391 #include "stlink-usb.h"    
392
393
394
395 #ifdef  __cplusplus
396 }
397 #endif
398
399 #endif  /* STLINK_COMMON_H */
400