Use defined VID/PIDs instead of magic numbers
[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
42     // STLINK_GET_CURRENT_MODE
43 #define STLINK_DEV_DFU_MODE             0x00
44 #define STLINK_DEV_MASS_MODE            0x01
45 #define STLINK_DEV_DEBUG_MODE           0x02
46 #define STLINK_DEV_UNKNOWN_MODE -1
47
48     // jtag mode cmds
49 #define STLINK_DEBUG_ENTER              0x20
50 #define STLINK_DEBUG_EXIT               0x21
51 #define STLINK_DEBUG_READCOREID 0x22
52 #define STLINK_DEBUG_GETSTATUS          0x01
53 #define STLINK_DEBUG_FORCEDEBUG 0x02
54 #define STLINK_DEBUG_RESETSYS           0x03
55 #define STLINK_DEBUG_READALLREGS        0x04
56 #define STLINK_DEBUG_READREG            0x05
57 #define STLINK_DEBUG_WRITEREG           0x06
58 #define STLINK_DEBUG_READMEM_32BIT      0x07
59 #define STLINK_DEBUG_WRITEMEM_32BIT     0x08
60 #define STLINK_DEBUG_RUNCORE            0x09
61 #define STLINK_DEBUG_STEPCORE           0x0a
62 #define STLINK_DEBUG_SETFP              0x0b
63 #define STLINK_DEBUG_WRITEMEM_8BIT      0x0d
64 #define STLINK_DEBUG_CLEARFP            0x0e
65 #define STLINK_DEBUG_WRITEDEBUGREG      0x0f
66 #define STLINK_DEBUG_ENTER_SWD          0xa3
67 #define STLINK_DEBUG_ENTER_JTAG 0x00
68
69     typedef struct {
70         uint32_t r[16];
71         uint32_t xpsr;
72         uint32_t main_sp;
73         uint32_t process_sp;
74         uint32_t rw;
75         uint32_t rw2;
76     } reg;
77
78     typedef uint32_t stm32_addr_t;
79
80     typedef struct flash_loader {
81         stm32_addr_t loader_addr; /* loader sram adddr */
82         stm32_addr_t buf_addr; /* buffer sram address */
83     } flash_loader_t;
84
85     enum transport_type {
86         TRANSPORT_TYPE_ZERO = 0,
87         TRANSPORT_TYPE_LIBSG,
88         TRANSPORT_TYPE_LIBUSB,
89         TRANSPORT_TYPE_INVALID
90     };
91
92     typedef struct _stlink stlink_t;
93
94     typedef struct _stlink_backend {
95         void (*close) (stlink_t * sl);
96         void (*exit_debug_mode) (stlink_t * sl);
97         void (*enter_swd_mode) (stlink_t * sl);
98         void (*enter_jtag_mode) (stlink_t * stl);
99         void (*exit_dfu_mode) (stlink_t * stl);
100         void (*core_id) (stlink_t * stl);
101         void (*reset) (stlink_t * stl);
102         void (*run) (stlink_t * stl);
103         void (*status) (stlink_t * stl);
104         void (*version) (stlink_t * stl);
105         void (*read_mem32) (stlink_t *sl, uint32_t addr, uint16_t len);
106         void (*write_mem32) (stlink_t *sl, uint32_t addr, uint16_t len);
107         void (*write_mem8) (stlink_t *sl, uint32_t addr, uint16_t len);
108         void (*read_all_regs) (stlink_t *sl, reg* regp);
109         void (*read_reg) (stlink_t *sl, int r_idx, reg* regp);
110         void (*write_reg) (stlink_t *sl, uint32_t reg, int idx);
111         void (*step) (stlink_t * stl);
112         int (*current_mode) (stlink_t * stl);
113     } stlink_backend_t;
114
115     struct _stlink {
116         struct _stlink_backend *backend;
117         void *backend_data;
118
119         // Data transferred from or to device
120         unsigned char q_buf[Q_BUF_LEN];
121         int q_len;
122
123         // transport layer verboseness: 0 for no debug info, 10 for lots
124         int verbose;
125         uint32_t core_id;
126         int core_stat;
127
128
129
130         /* medium density stm32 flash settings */
131 #define STM32_FLASH_BASE 0x08000000
132 #define STM32_FLASH_SIZE (128 * 1024)
133 #define STM32_FLASH_PGSZ 1024
134         stm32_addr_t flash_base;
135         size_t flash_size;
136         size_t flash_pgsz;
137
138         /* in flash system memory */
139 #define STM32_SYSTEM_BASE 0x1ffff000
140 #define STM32_SYSTEM_SIZE (2 * 1024)
141         stm32_addr_t sys_base;
142         size_t sys_size;
143
144         /* sram settings */
145 #define STM32_SRAM_BASE 0x20000000
146 #define STM32_SRAM_SIZE (8 * 1024)
147         stm32_addr_t sram_base;
148         size_t sram_size;
149
150     };
151
152     // some quick and dirty logging...
153     void D(stlink_t *sl, char *txt);
154     void DD(stlink_t *sl, char *format, ...);
155
156     //stlink_t* stlink_quirk_open(const char *dev_name, const int verbose);
157
158     // delegated functions...
159     void stlink_enter_swd_mode(stlink_t *sl);
160     void stlink_enter_jtag_mode(stlink_t *sl);
161     void stlink_exit_debug_mode(stlink_t *sl);
162     void stlink_exit_dfu_mode(stlink_t *sl);
163     void stlink_close(stlink_t *sl);
164     void stlink_core_id(stlink_t *sl);
165     void stlink_reset(stlink_t *sl);
166     void stlink_run(stlink_t *sl);
167     void stlink_status(stlink_t *sl);
168     void stlink_version(stlink_t *sl);
169     void stlink_read_mem32(stlink_t *sl, uint32_t addr, uint16_t len);
170     void stlink_write_mem32(stlink_t *sl, uint32_t addr, uint16_t len);
171     void stlink_write_mem8(stlink_t *sl, uint32_t addr, uint16_t len);
172     void stlink_read_all_regs(stlink_t *sl, reg *regp);
173     void stlink_read_reg(stlink_t *sl, int r_idx, reg *regp);
174     void stlink_write_reg(stlink_t *sl, uint32_t reg, int idx);
175     void stlink_step(stlink_t *sl);
176     int stlink_current_mode(stlink_t *sl);
177
178
179     // unprocessed
180     void stlink_force_debug(stlink_t *sl);
181
182     int stlink_erase_flash_mass(stlink_t* sl);
183     int stlink_write_flash(stlink_t* sl, stm32_addr_t address, uint8_t* data, unsigned length);
184
185     // privates, publics, the rest....
186     // TODO sort what is private, and what is not
187     int stlink_erase_flash_page(stlink_t* sl, stm32_addr_t page);
188     uint16_t read_uint16(const unsigned char *c, const int pt);
189     void stlink_core_stat(stlink_t *sl);
190     void stlink_print_data(stlink_t *sl);
191     unsigned int is_bigendian(void);
192     uint32_t read_uint32(const unsigned char *c, const int pt);
193     void write_uint32(unsigned char* buf, uint32_t ui);
194     void write_uint16(unsigned char* buf, uint16_t ui);
195     unsigned int is_core_halted(stlink_t *sl);
196     int write_buffer_to_sram(stlink_t *sl, flash_loader_t* fl, const uint8_t* buf, size_t size);
197     int write_loader_to_sram(stlink_t *sl, stm32_addr_t* addr, size_t* size);
198     int stlink_fread(stlink_t* sl, const char* path, stm32_addr_t addr, size_t size);
199     int run_flash_loader(stlink_t *sl, flash_loader_t* fl, stm32_addr_t target, const uint8_t* buf, size_t size);
200
201
202
203 #include "stlink-sg.h"
204 #include "stlink-usb.h"    
205
206
207
208 #ifdef  __cplusplus
209 }
210 #endif
211
212 #endif  /* STLINK_COMMON_H */
213