aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-11-14struct scan_field_s -> struct scan_fieldZachary T Welch
Remove obsolete suffix from struct scan_field. Somehow, these definitions did not get updated but did not cause any errors.
2009-11-14Fix for md* commands, similar to mw*.Krzysztof Dziuba
2009-11-14lpc2900.h -- remove from Makefile.am tooDavid Brownell
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-14flash: remove needless lpc2900.h headerDavid Brownell
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-14remove annoying $URL$ startup messageDavid Brownell
It's completely unused; the obnoxious "DANGER!!!" comments don't even explain what it was doing (shorthand SVN magic). Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-14Invalid command syntax errors with MWW.Dean Glazeski
This fixes an issue due to the new command handler syntax caused by the mw handler playing with the args pointer before using the CMD_NAME macro. Fix is to move this call above the lines changing args.
2009-11-14add openocd.h for top-level declarationsZachary T Welch
Create src/openocd.h to hold declarations previously made internally by src/main.c and src/server/server.c. This ensures all functions are verified to be in-sync at compile time (rather than at link), making it easier to track down bugs.
2009-11-14compile with cygwin (32-bit)Ferdinand Postema
Changed some printf format strings.. [dbrownell@users.sourceforge.net: shrink lines, fix indents] Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-13ARM11: ETM + ETB supportDavid Brownell
Kick in ETM (and ETB) support for ARM11. Tested on OMAP 2420, so update that configuration. (That's an ARM1136ejs, ETB, OpenGL ES1.1, C55x DSP, etc.) Also update the other ARM11 ETM + ETB targets in the tree to set up these modules. (Not tested.) Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-13ARM11: revert etmr/etmw commandsDavid Brownell
These aren't desirable, given "standard" ETM support. Also remove the now-unused arm11_find_target(). Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-13ARM7/ARM9: use shared examine() methodDavid Brownell
No point in having two identical examine methods for the ARM7TDMI and ARM9TDMI drivers; move, rename, shrink, share. Add a bit of doxygen; stop needlessly exporting a method. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-13ETM: simplify ETM initialization code pathsDavid Brownell
Return NULL from etm_build_reg_cache() not ERROR_OK; and share code on that fault path. Let ETM code handle any tracking of its cache -- not callers. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-13ARM11: switch to new "arm" base typeDavid Brownell
This will enable reusing many common ARM utilities, in particular the ETM and ETB support. The ARM11 support can still be much simplified after this patch, though. Note: none of those common utilities kick in yet... Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-13target: remove unused "bitfield" infrastructureDavid Brownell
We have too many different registers, and too many version and context dependent interpretations, for this type of bitfield management to be scalable. (Anyone who really wants bitfield interpretation *can* do that in Tcl code...) There are ... quite a few copies of the same ARM dummy registers. There should eventually be one copy; this many is craziness. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-13ARM7/9: rm arm7_9_get_arch_pointers()David Brownell
Remove the last external user of arm7_9_get_arch_pointers(), and that annoying downcast utility. Add an is_arm7_9() predicate. Stop returning specious success codes on various failure paths in the ARM7/ARM9 commands which used that downcast utility. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-13command_t -> struct commandZachary T Welch
Remove misleading typedef and redundant suffix from struct command.
2009-11-13command_context_t -> struct command_contextZachary T Welch
Remove misleading typedef and redundant suffix from struct command_context.
2009-11-13remove rlink structure typedefsZachary T Welch
Remove useless typedefs from the rlink driver. Improve whitespace.
2009-11-13flash_bank_t -> struct flash_bankZachary T Welch
Remove misleading typedef and redundant suffix from struct flash_bank.
2009-11-13nand_device_t -> struct nand_deviceZachary T Welch
Remove misleading typedef and redundant suffix from struct nand_device.
2009-11-13target_t -> struct targetZachary T Welch
Remove misleading typedef and redundant suffix from struct target.
2009-11-13reg_t -> struct regZachary T Welch
Remove misleading typedef and redundant suffix from struct reg.
2009-11-13target_type_t -> struct target_typeZachary T Welch
Remove misleading typedef and redundant suffix from struct target_type.
2009-11-13improve mips32_pracc_contextZachary T Welch
Use struct mips32_pracc_context instead of a typedef.
2009-11-13image_t -> struct imageZachary T Welch
Remove misleading typedef and redundant suffix from struct image. Also removes the typedef from enum image_type, as it is used in image.h only.
2009-11-13armv4_5_common_t -> struct armZachary T Welch
Remove misleading typedef and just use struct arm.
2009-11-13etm_context_t -> struct etm_contextZachary T Welch
Remove misleading typedef and redundant suffix from struct etm_context.
2009-11-13etb_t -> struct etbZachary T Welch
Remove misleading typedef and redundant suffix from struct etb.
2009-11-13trace_t -> struct traceZachary T Welch
Remove misleading typedef and redundant suffix from struct trace.
2009-11-13image_elf_t -> struct image_elfZachary T Welch
Remove misleading typedef and redundant suffix from struct image_elf.
2009-11-13cortex_m3_dwt_comparator_t -> struct cortex_m3_dwt_comparatorZachary T Welch
Remove misleading typedef and redundant suffix from struct cortex_m3_dwt_comparator.
2009-11-13cortex_m3_fp_comparator_t -> struct cortex_m3_fp_comparatorZachary T Welch
Remove misleading typedef and redundant suffix from struct cortex_m3_fp_comparator.
2009-11-13cortex_a8_wrp_t -> struct cortex_a8_wrpZachary T Welch
Remove misleading typedef and redundant suffix from struct cortex_a8_wrp.
2009-11-13cortex_a8_brp_t -> struct cortex_a8_brpZachary T Welch
Remove misleading typedef and redundant suffix from struct cortex_a8_brp.
2009-11-13breakpoint_t -> struct breakpointZachary T Welch
Remove misleading typedef and redundant suffix from struct breakpoint.
2009-11-13xscale_trace_t -> struct xscale_traceZachary T Welch
Remove misleading typedef and redundant suffix from struct xscale_trace.
2009-11-13xscale_trace_entry_t -> struct xscale_trace_entryZachary T Welch
Remove misleading typedef and redundant suffix from struct xscale_trace_entry.
2009-11-13target_event_action_t -> struct target_event_actionZachary T Welch
Remove misleading typedef and redundant suffix from struct target_event_action.
2009-11-13arm_instruction_t -> struct arm_instructionZachary T Welch
Remove misleading typedef and redundant suffix from struct arm_instruction.
2009-11-13arm9tdmi_vector_t -> struct arm9tdmi_vectorZachary T Welch
Remove misleading typedef and redundant suffix from struct arm9tdmi_vector. Renames enum arm9tdmi_vector as enum arm9tdmi_vector_bit.
2009-11-13xscale_reg_t -> struct xscale_regZachary T Welch
Remove misleading typedef and redundant suffix from struct xscale_reg.
2009-11-13xscale_common_t -> struct xscale_commonZachary T Welch
Remove misleading typedef and redundant suffix from struct xscale_common.
2009-11-13xscale_trace_data_t -> struct xscale_trace_dataZachary T Welch
Remove misleading typedef and redundant suffix from struct xscale_trace_data.
2009-11-13trace_point_t -> struct trace_pointZachary T Welch
Remove misleading typedef and redundant suffix from struct trace_point.
2009-11-13debug_msg_receiver_t -> struct debug_msg_receiverZachary T Welch
Remove misleading typedef and redundant suffix from struct debug_msg_receiver.
2009-11-13target_timer_callback_t -> struct target_timer_callbackZachary T Welch
Remove misleading typedef and redundant suffix from struct target_timer_callback.
2009-11-13target_event_callback_t -> struct target_event_callbackZachary T Welch
Remove misleading typedef and redundant suffix from struct target_event_callback.
2009-11-13working_area_t -> struct working_areaZachary T Welch
Remove misleading typedef and redundant suffix from struct working_area.
2009-11-13reg_arch_type_t -> struct reg_arch_typeZachary T Welch
Remove misleading typedef and redundant suffix from struct reg_arch_type.
2009-11-13reg_cache_t -> struct reg_cacheZachary T Welch
Remove misleading typedef and redundant suffix from struct reg_cache.