[patch] bug fixes and documentation improvements by Greg Alexander
[fw/stlink] / README
1 HOWTO
2 =====
3
4 First, load the sg kernel module.
5 # modprobe sg
6
7 To run the gdb server, do (you do not need sudo if you have set up
8 permissions correctly):
9 $ make -C build && sudo ./build/st-util 1234 /dev/sg1
10
11 Then, in gdb:
12 (gdb) target remote :1234
13
14 Have fun!
15
16 Resetting the chip from GDB
17 ===========================
18
19 You may reset the chip using GDB if you want. You'll need to use `target
20 extended-remote' command like in this session:
21 (gdb) target extended-remote localhost:1111
22 Remote debugging using localhost:1111
23 0x080007a8 in _startup ()
24 (gdb) kill
25 Kill the program being debugged? (y or n) y
26 (gdb) run
27 Starting program: /home/whitequark/ST/apps/bally/firmware.elf 
28
29 Remember that you can shorten the commands. `tar ext :1111' is good enough
30 for GDB.
31
32 Setting up udev rules
33 =====================
34
35 For convenience, you may install udev rules file, 10-stlink.rules, located
36 in the root of repository. You will need to copy it to /etc/udev/rules.d,
37 and then either reboot or execute
38 $ udevadm control --reload-rules
39
40 Udev will now create a /dev/stlink file, which will point at appropriate
41 /dev/sgX device. Good to not accidentally start debugging your flash drive.
42
43 Setting up modprobe rules
44 =========================
45
46 You may install a modprobe rules file, stlink.modprobe.conf, located in
47 the root of the repository.  You will need to copy it to /etc/modprobe.d
48 and then 
49   $ rmmod usb-storage
50 If you have usb-storage built as a module, then this will cause it to be
51 loaded with a "quirks" parameter that will cause it to ignore the STLink,
52 rather than causing repeated errors and resets.
53
54 Running programs from SRAM
55 ==========================
56
57 You can run your firmware directly from SRAM if you want to. Just link
58 it at 0x20000000 and do
59 (gdb) load firmware.elf
60
61 It will be loaded, and pc will be adjusted to point to start of the
62 code, if it is linked correctly (i.e. ELF has correct entry point).
63
64 Writing to flash
65 ================
66
67 The GDB stub ships with a correct memory map, including the flash area.
68 If you would link your executable to 0x08000000 and then do
69 (gdb) load firmware.elf
70 then it would be written to the memory.
71
72 FAQ
73 ===
74
75 Q: My breakpoints do not work at all or only work once.
76
77 A: Optimizations can cause severe instruction reordering. For example,
78 if you are doing something like `REG = 0x100;' in a loop, the code may
79 be split into two parts: loading 0x100 into some intermediate register
80 and moving that value to REG. When you set up a breakpoint, GDB will
81 hook to the first instruction, which may be called only once if there are
82 enough unused registers. In my experience, -O3 causes that frequently.
83
84 Q: At some point I use GDB command `next', and it hangs.
85
86 A: Sometimes when you will try to use GDB `next' command to skip a loop,
87 it will use a rather inefficient single-stepping way of doing that.
88 Set up a breakpoint manually in that case and do `continue'.