aboutsummaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Collapse)Author
2015-04-11cortexm: Add target option to inhibit assersion of SRST.Gareth McMullin
2015-04-11target: Remove old flash interface.Gareth McMullin
2015-04-11lpc: split out common code and rewrite to use new interface.Gareth McMullin
2015-04-11lpc: Reduce differences between lpc11xx and lpc43xx code.Gareth McMullin
2015-04-11Add buffering support for flash drivers.Gareth McMullin
Some devices can get a significant boost in performance by writing to flash memories one page at a time. Generic function to do this are provided at the target layer and may be used by flash drivers.
2015-04-03Fix flash buffer alignment in target layer.Gareth McMullin
2015-04-03Add new functions to wrap flash driver erase/write/done operations.Gareth McMullin
2015-04-03Add function to add simple flash driver to target.Gareth McMullin
Clean up ram/flash/memory map on target destruction.
2015-04-03Add functions for dynamically generating the XML memory map.Gareth McMullin
2015-03-29gdb: don't access target fields directly.Gareth McMullin
2015-03-29Improve cortexm_read/write_regs. Use more sensible return types.Gareth McMullin
2015-03-29Make cortexm_pc_write static.Gareth McMullin
2015-03-29cortexm: Separate stub loading from running.Gareth McMullin
2015-03-28Consistently use 'target *t' for target var.Gareth McMullin
2015-03-28target: Remove pc_read/pc_write methods.Gareth McMullin
2015-03-26Add a flash_done target method.Gareth McMullin
2015-03-26Consistently name target var 't' in cortexm.Gareth McMullin
2015-03-22Raise timeout exception when target is in WFI.Gareth McMullin
Ignore the exception when polling for halt, and report the exception to the user if halting the target fails. Remove old allow_timeout flag in DP struct that's no longer needed.
2015-03-22Add exception handling mechanism and raise exception on low-level comms failure.Gareth McMullin
2015-03-22Move MIN macro to general.hGareth McMullin
2015-03-19Rewrote stm32f1 stub in C and call with parameters in registers.Gareth McMullin
2015-03-19Add cortexm generic stub call, and use in stm32f1 driver.Gareth McMullin
2015-03-15Remove abstraction of adiv5_dp_write. Both implementations were identical.Gareth McMullin
2015-03-15Replace adiv5_ap_mem* functions with inline wrappers to target mem*.Gareth McMullin
2015-03-15Consolidate target_mem_read* and target_mem_write* methods.Gareth McMullin
There are now only mem_read and mem_write, that must handle all alignments. These methods return void, errors must be checked with target_check_error.
2015-03-14adiv5: Encode APnDP into register definition.Gareth McMullin
Clean up magic numbers in adiv5 calls. Removed old adiv5_dp_write_ap and adiv5_dp_read_ap.
2015-03-14Use size_t for sizes in flash functions. Fix all sign compare warnings.Gareth McMullin
2015-03-13Fix pointer sign warnings and remove -Wno-pointer-sign.Gareth McMullin
2015-03-11stm32l0: Fix pointer/integer casting warnings.Gareth McMullin
2015-03-11Cleaned up printf/scanf for C99 integer types.Gareth McMullin
2015-03-08Revisions on Gareth's comments.Marc Singer
o Implemented byte writes to EEPROM now that the emulator has a byte-wide target write. o Added comment describing the reason that mass erase doesn't work. o Removed all unused code. o Changed to Linux kernel indent style. o Changed to Linux kernel function to parenthesis style. o Stub generation doesn't use Perl, switched to sed. Also, only including the instructions instead of the source and the instructions. o Handling unaligned destination writes.
2015-03-08STM32L0x target support.Marc Singer
Target support for stm32l0's and stm32l1's including option bytes and data EEPROM. This module will superceed the previous stm32l1 driver. o Program flash write and erase. o Options modification and interpretive status. o Stubs for program flash writes and erases. Stubs are modestly faster than non-stub version. The stm32l0 will not execute stubs when the MCU has crashed. A monitor option may be used to force non-stub flash writes. o Stubs generated from C++ code and converted to arrays of half-words. o Writes to data EEPROM supoprted when loading segments. o EEPROM data monitor command to write words. o Stubs supported on stm32l1.
2015-03-02Factor out timing routines common to all STM32 targets.Gareth McMullin
2015-03-02Factor out common cdcacm.c from stm32 and tm4c.Gareth McMullin
Cleaned up interface to enter bootloader and read serial number.
2015-03-01Clean up includes everywhere.Gareth McMullin
All source files include general.h first and before anything else. This inlcludes platform.h and platform_support.h No header file needs to include to include any of these, but should include any others needed for it's own declarations.
2015-02-28Move common USB stuff out of platform header files.Gareth McMullin
2015-02-28Factor Morse code functions out of platform code.Gareth McMullin
2015-01-18Added support for SAMD10/11/21, and list of tested SAM D devicesRichard Meadows
This allows blackmagic to be used with the new Arduino Zero board via the unpopulated SWD header on the east end of the board.
2015-01-18Support for the NVMCTRL Security Bit (PROT=1)Richard Meadows
2015-01-18Avoid repetition of cortexm code in stmd20 driver.Gareth McMullin
2015-01-06First cut at Freescale Kinetis support.Gareth McMullin
2014-10-21Add support for halfword memory accesses.Vegard Storheil Eriksen
2014-09-03Atmel SAMD20 supportRichard Eoin Meadows
2014-05-01Nordic nRF51 series supportMike
2013-06-19Disable ADIv5 timeout while target is running.Gareth McMullin
2013-06-17Fix trailing whitespace everywhere.Gareth McMullin
2013-05-18Move semihosting support to cortexm.c.Gareth McMullin
Try to implement more syscalls.
2013-05-14adiv5_swdp: allow to connect to a sleeping target by pulling SRSTPaul Fertser
This patch introduces a new command, "connect_srst [enable|disable]" which allows to enable special mode in which SRST would be pulled low before the SWD scan till attaching to a target. Since on Cortex-Mx the SRST signal doesn't gate JTAG and SWD, it's possible to connect to a target while holding reset, ask it to stop at reset vector and only then deassert reset, thus allowing to attach to the kind of firmware that goes immediately to sleep or disables debugging by other means early on start. Tested on an STM32VLDiscovery board with STM32F100 configured to go to STOP mode and executing WFI in the very beginning of main(). Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2013-01-23LIBFTDI: Propagate the command line arguments to platform_initUwe Bonnes
2013-01-21gdb_if: Use a doubled buffer scheme for reading data from USBUwe Bonnes
Needed, as the OTG driver erases the data read after eventually calling the callback