2008-02-28 04:07:54 -06:00
|
|
|
if OOCD_TRACE
|
2016-11-06 13:19:26 -06:00
|
|
|
OOCD_TRACE_FILES = %D%/oocd_trace.c
|
2008-02-28 04:07:54 -06:00
|
|
|
else
|
|
|
|
OOCD_TRACE_FILES =
|
|
|
|
endif
|
|
|
|
|
2018-07-18 15:34:23 -05:00
|
|
|
%C%_libtarget_la_LIBADD = %D%/openrisc/libopenrisc.la \
|
|
|
|
%D%/riscv/libriscv.la
|
|
|
|
|
2013-08-08 16:45:47 -05:00
|
|
|
|
2016-11-06 13:19:26 -06:00
|
|
|
STARTUP_TCL_SRCS += %D%/startup.tcl
|
2009-10-14 02:32:42 -05:00
|
|
|
|
2016-11-06 13:19:26 -06:00
|
|
|
noinst_LTLIBRARIES += %D%/libtarget.la
|
|
|
|
%C%_libtarget_la_SOURCES = \
|
2009-11-10 06:27:02 -06:00
|
|
|
$(TARGET_CORE_SRC) \
|
|
|
|
$(ARM_DEBUG_SRC) \
|
|
|
|
$(ARMV4_5_SRC) \
|
|
|
|
$(ARMV6_SRC) \
|
|
|
|
$(ARMV7_SRC) \
|
|
|
|
$(ARM_MISC_SRC) \
|
2010-08-15 14:51:34 -05:00
|
|
|
$(AVR32_SRC) \
|
2009-11-10 06:27:02 -06:00
|
|
|
$(MIPS32_SRC) \
|
2013-02-04 19:34:18 -06:00
|
|
|
$(NDS32_SRC) \
|
2017-11-06 12:56:28 -06:00
|
|
|
$(STM8_SRC) \
|
2014-02-06 11:11:15 -06:00
|
|
|
$(INTEL_IA32_SRC) \
|
2018-08-28 19:18:01 -05:00
|
|
|
$(ESIRISC_SRC) \
|
Introduce ARCv2 architecture related code
This patch is an initial bump of ARC-specific code
which implements the ARCv2 target(EMSK board) initializing
routine and some basic remote connection/load/continue
functionality.
Changes:
03.12.2019:
-Add return value checks.
-Using static code analizer next fixes were made:
Mem leak in functions:
arc_jtag_read_memory,arc_jtag_read_memory,
arc_jtag_write_registers, arc_jtag_read_registers,
jim_arc_add_reg_type_flags, jim_arc_add_reg_type_struct,
arc_build_reg_cache, arc_mem_read.
Dead code in "arc_mem_read";
In arc_save_context, arc_restore_context correct arguments
in"memset" calls.
In "build_bcr_reg_cache", "arc_build_reg_cache" check
if list is not empty.
29.12.2019
-Moved code from arc_v2.c to arc.c
-Added checks of the result of calloc/malloc calls
-Reworked arc_cmd.c: replaced spagetty code with functions
-Moved to one style in if statements - to "if(!bla)"
-Changed Licence headers
22.01.2020
-Removed unused variables in arc_common
-Renamed register operation functions
-Introduced arc_deinit_target function
-Fixed interrupt handling in halt/resume:
* add irq_state field in arc_common
* fix irq enable/disable calls ( now STATUS32 register is used)
-Switched from buf_set(get)_us32() usage to target_buffer_set(get)_u32()
-Made some cleanup
30.01.2020
-Removed redundant arc_register struct, moved target link to arc_reg_desc
-Introduced link to BCR reg cache in arc_common for freeing memory.
-Now arc_deinit_target frees all arc-related allocated memory.
Valgrind shows no memory leaks.
-Inroduced arch description in arc.c
01.02.2020
-Remove small memory allocations in arc_init_reg. Instead created reg_value
and feature fields in arc_reg_desc.
-Add return value for arc_init_reg() func.
-Replaced some integer constants(61,62,63) with defines.
-Removed redundant conversions in arc_reg_get_field().
-Moved iccm/dccm configuration code from arc_configure()
to separate functions.
19.02.2020
-Change sizeof(struct) to sizeof(*ptr) in allocations
-Changed if/while(ptr != NULL) to if/while(ptr)
-Removed unused variables from struct arc_jtag
-Add additional structs to arc_reg_data_type
to reduce amount of memory allocations calls
and simplifying memory freeing.
-Add helper arc_reg_bitfield_t struct which includes
reg_data_type_bitfield object and char[] name. Reduces
memory allocations calls.
-Add limit for reg_type/reg_type_field names(20 symbols).
-Add in jim_arc_add_reg_type*() functions additional
argnument checks(amount of field/name size).
-In jim_arc_add_reg_type*() reduced amount of memory allocations.
-Cleanup of jim_arc_add_reg_type*() functions.
-For commands update ".usage" fields according docopt.
-Cleanup in arc_jtag.c
-Renamed functions which require jtag_exeutre_queue() to arc_jtag_enque_*()
-Add arc_jtag_enque_register_rw() function, which r/w to jtag ir/dr regs
during regiter r/w.
24.02:
-Change include guards in arc* files according coding style
-Remove _t suffix in struct arc_reg_bitfield_t
-Some cleanup
Change-Id: I6ab0e82b12e6ddb683c9d13dfb7dd6f49a30cb9f
Signed-off-by: Evgeniy Didin <didin@synopsys.com>
Cc: Alexey Brodkin <abrodkin@synopsys.com>
Reviewed-on: http://openocd.zylin.com/5332
Tested-by: jenkins
Reviewed-by: Oleksij Rempel <linux@rempel-privat.de>
2020-01-27 06:22:27 -06:00
|
|
|
$(ARC_SRC) \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/avrt.c \
|
|
|
|
%D%/dsp563xx.c \
|
|
|
|
%D%/dsp563xx_once.c \
|
|
|
|
%D%/dsp5680xx.c \
|
2019-06-17 17:46:11 -05:00
|
|
|
%D%/hla_target.c \
|
|
|
|
$(ARMV8_SRC) \
|
|
|
|
$(MIPS64_SRC)
|
2015-01-15 19:22:20 -06:00
|
|
|
|
2009-11-10 06:27:02 -06:00
|
|
|
TARGET_CORE_SRC = \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/algorithm.c \
|
|
|
|
%D%/register.c \
|
|
|
|
%D%/image.c \
|
|
|
|
%D%/breakpoints.c \
|
|
|
|
%D%/target.c \
|
|
|
|
%D%/target_request.c \
|
|
|
|
%D%/testee.c \
|
2018-05-13 10:39:06 -05:00
|
|
|
%D%/semihosting_common.c \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/smp.c
|
2009-11-10 06:27:02 -06:00
|
|
|
|
|
|
|
ARMV4_5_SRC = \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/armv4_5.c \
|
|
|
|
%D%/armv4_5_mmu.c \
|
|
|
|
%D%/armv4_5_cache.c \
|
2009-11-10 06:27:02 -06:00
|
|
|
$(ARM7_9_SRC)
|
|
|
|
|
|
|
|
ARM7_9_SRC = \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/arm7_9_common.c \
|
|
|
|
%D%/arm7tdmi.c \
|
|
|
|
%D%/arm720t.c \
|
|
|
|
%D%/arm9tdmi.c \
|
|
|
|
%D%/arm920t.c \
|
|
|
|
%D%/arm966e.c \
|
|
|
|
%D%/arm946e.c \
|
|
|
|
%D%/arm926ejs.c \
|
|
|
|
%D%/feroceon.c
|
2009-11-10 06:27:02 -06:00
|
|
|
|
|
|
|
ARM_MISC_SRC = \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/fa526.c \
|
|
|
|
%D%/xscale.c
|
2009-11-10 06:27:02 -06:00
|
|
|
|
|
|
|
ARMV6_SRC = \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/arm11.c \
|
|
|
|
%D%/arm11_dbgtap.c
|
2009-11-10 06:27:02 -06:00
|
|
|
|
|
|
|
ARMV7_SRC = \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/armv7m.c \
|
|
|
|
%D%/armv7m_trace.c \
|
|
|
|
%D%/cortex_m.c \
|
|
|
|
%D%/armv7a.c \
|
2016-07-14 14:00:59 -05:00
|
|
|
%D%/armv7a_mmu.c \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/cortex_a.c \
|
2017-02-20 07:29:01 -06:00
|
|
|
%D%/ls1_sap.c \
|
|
|
|
%D%/mem_ap.c
|
2009-11-10 06:27:02 -06:00
|
|
|
|
2015-01-15 19:22:20 -06:00
|
|
|
ARMV8_SRC = \
|
2016-09-03 16:20:58 -05:00
|
|
|
%D%/armv8_dpm.c \
|
2016-09-15 02:13:51 -05:00
|
|
|
%D%/armv8_opcodes.c \
|
2015-01-15 19:22:20 -06:00
|
|
|
%D%/aarch64.c \
|
2016-09-20 04:16:30 -05:00
|
|
|
%D%/armv8.c \
|
|
|
|
%D%/armv8_cache.c
|
2015-01-15 19:22:20 -06:00
|
|
|
|
2009-11-10 06:27:02 -06:00
|
|
|
ARM_DEBUG_SRC = \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/arm_dpm.c \
|
|
|
|
%D%/arm_jtag.c \
|
|
|
|
%D%/arm_disassembler.c \
|
|
|
|
%D%/arm_simulator.c \
|
|
|
|
%D%/arm_semihosting.c \
|
|
|
|
%D%/arm_adi_v5.c \
|
2018-03-23 15:17:29 -05:00
|
|
|
%D%/arm_dap.c \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/armv7a_cache.c \
|
|
|
|
%D%/armv7a_cache_l2x.c \
|
2019-01-23 03:52:28 -06:00
|
|
|
%D%/adi_v5_dapdirect.c \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/adi_v5_jtag.c \
|
|
|
|
%D%/adi_v5_swd.c \
|
|
|
|
%D%/embeddedice.c \
|
|
|
|
%D%/trace.c \
|
|
|
|
%D%/etb.c \
|
|
|
|
%D%/etm.c \
|
2009-11-10 06:27:02 -06:00
|
|
|
$(OOCD_TRACE_FILES) \
|
2016-11-19 03:02:34 -06:00
|
|
|
%D%/etm_dummy.c \
|
|
|
|
%D%/arm_cti.c
|
2009-11-10 06:27:02 -06:00
|
|
|
|
2010-08-15 14:51:34 -05:00
|
|
|
AVR32_SRC = \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/avr32_ap7k.c \
|
|
|
|
%D%/avr32_jtag.c \
|
|
|
|
%D%/avr32_mem.c \
|
|
|
|
%D%/avr32_regs.c
|
2010-08-15 14:51:34 -05:00
|
|
|
|
2009-11-10 06:27:02 -06:00
|
|
|
MIPS32_SRC = \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/mips32.c \
|
|
|
|
%D%/mips_m4k.c \
|
|
|
|
%D%/mips32_pracc.c \
|
|
|
|
%D%/mips32_dmaacc.c \
|
|
|
|
%D%/mips_ejtag.c
|
2009-11-10 06:27:02 -06:00
|
|
|
|
2014-09-23 03:46:02 -05:00
|
|
|
MIPS64_SRC = \
|
|
|
|
%D%/mips64.c \
|
|
|
|
%D%/mips32_pracc.c \
|
|
|
|
%D%/mips64_pracc.c \
|
2014-09-23 03:51:05 -05:00
|
|
|
%D%/mips_mips64.c \
|
2014-09-23 03:46:02 -05:00
|
|
|
%D%/trace.c \
|
|
|
|
%D%/mips_ejtag.c
|
|
|
|
|
2013-02-04 19:34:18 -06:00
|
|
|
NDS32_SRC = \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/nds32.c \
|
|
|
|
%D%/nds32_reg.c \
|
|
|
|
%D%/nds32_cmd.c \
|
|
|
|
%D%/nds32_disassembler.c \
|
|
|
|
%D%/nds32_tlb.c \
|
|
|
|
%D%/nds32_v2.c \
|
|
|
|
%D%/nds32_v3_common.c \
|
|
|
|
%D%/nds32_v3.c \
|
|
|
|
%D%/nds32_v3m.c \
|
|
|
|
%D%/nds32_aice.c
|
2013-02-04 19:34:18 -06:00
|
|
|
|
2017-11-06 12:56:28 -06:00
|
|
|
STM8_SRC = \
|
|
|
|
%D%/stm8.c
|
|
|
|
|
2014-02-06 11:11:15 -06:00
|
|
|
INTEL_IA32_SRC = \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/quark_x10xx.c \
|
|
|
|
%D%/quark_d20xx.c \
|
|
|
|
%D%/lakemont.c \
|
|
|
|
%D%/x86_32_common.c
|
|
|
|
|
2018-08-28 19:18:01 -05:00
|
|
|
ESIRISC_SRC = \
|
|
|
|
%D%/esirisc.c \
|
2018-10-24 21:29:03 -05:00
|
|
|
%D%/esirisc_jtag.c \
|
|
|
|
%D%/esirisc_trace.c
|
2018-08-28 19:18:01 -05:00
|
|
|
|
Introduce ARCv2 architecture related code
This patch is an initial bump of ARC-specific code
which implements the ARCv2 target(EMSK board) initializing
routine and some basic remote connection/load/continue
functionality.
Changes:
03.12.2019:
-Add return value checks.
-Using static code analizer next fixes were made:
Mem leak in functions:
arc_jtag_read_memory,arc_jtag_read_memory,
arc_jtag_write_registers, arc_jtag_read_registers,
jim_arc_add_reg_type_flags, jim_arc_add_reg_type_struct,
arc_build_reg_cache, arc_mem_read.
Dead code in "arc_mem_read";
In arc_save_context, arc_restore_context correct arguments
in"memset" calls.
In "build_bcr_reg_cache", "arc_build_reg_cache" check
if list is not empty.
29.12.2019
-Moved code from arc_v2.c to arc.c
-Added checks of the result of calloc/malloc calls
-Reworked arc_cmd.c: replaced spagetty code with functions
-Moved to one style in if statements - to "if(!bla)"
-Changed Licence headers
22.01.2020
-Removed unused variables in arc_common
-Renamed register operation functions
-Introduced arc_deinit_target function
-Fixed interrupt handling in halt/resume:
* add irq_state field in arc_common
* fix irq enable/disable calls ( now STATUS32 register is used)
-Switched from buf_set(get)_us32() usage to target_buffer_set(get)_u32()
-Made some cleanup
30.01.2020
-Removed redundant arc_register struct, moved target link to arc_reg_desc
-Introduced link to BCR reg cache in arc_common for freeing memory.
-Now arc_deinit_target frees all arc-related allocated memory.
Valgrind shows no memory leaks.
-Inroduced arch description in arc.c
01.02.2020
-Remove small memory allocations in arc_init_reg. Instead created reg_value
and feature fields in arc_reg_desc.
-Add return value for arc_init_reg() func.
-Replaced some integer constants(61,62,63) with defines.
-Removed redundant conversions in arc_reg_get_field().
-Moved iccm/dccm configuration code from arc_configure()
to separate functions.
19.02.2020
-Change sizeof(struct) to sizeof(*ptr) in allocations
-Changed if/while(ptr != NULL) to if/while(ptr)
-Removed unused variables from struct arc_jtag
-Add additional structs to arc_reg_data_type
to reduce amount of memory allocations calls
and simplifying memory freeing.
-Add helper arc_reg_bitfield_t struct which includes
reg_data_type_bitfield object and char[] name. Reduces
memory allocations calls.
-Add limit for reg_type/reg_type_field names(20 symbols).
-Add in jim_arc_add_reg_type*() functions additional
argnument checks(amount of field/name size).
-In jim_arc_add_reg_type*() reduced amount of memory allocations.
-Cleanup of jim_arc_add_reg_type*() functions.
-For commands update ".usage" fields according docopt.
-Cleanup in arc_jtag.c
-Renamed functions which require jtag_exeutre_queue() to arc_jtag_enque_*()
-Add arc_jtag_enque_register_rw() function, which r/w to jtag ir/dr regs
during regiter r/w.
24.02:
-Change include guards in arc* files according coding style
-Remove _t suffix in struct arc_reg_bitfield_t
-Some cleanup
Change-Id: I6ab0e82b12e6ddb683c9d13dfb7dd6f49a30cb9f
Signed-off-by: Evgeniy Didin <didin@synopsys.com>
Cc: Alexey Brodkin <abrodkin@synopsys.com>
Reviewed-on: http://openocd.zylin.com/5332
Tested-by: jenkins
Reviewed-by: Oleksij Rempel <linux@rempel-privat.de>
2020-01-27 06:22:27 -06:00
|
|
|
ARC_SRC = \
|
|
|
|
%D%/arc.c \
|
|
|
|
%D%/arc_cmd.c \
|
|
|
|
%D%/arc_jtag.c \
|
|
|
|
%D%/arc_mem.c
|
|
|
|
|
2016-11-06 13:19:26 -06:00
|
|
|
%C%_libtarget_la_SOURCES += \
|
|
|
|
%D%/algorithm.h \
|
|
|
|
%D%/arm.h \
|
|
|
|
%D%/arm_dpm.h \
|
|
|
|
%D%/arm_jtag.h \
|
|
|
|
%D%/arm_adi_v5.h \
|
|
|
|
%D%/armv7a_cache.h \
|
|
|
|
%D%/armv7a_cache_l2x.h \
|
2016-07-14 14:00:59 -05:00
|
|
|
%D%/armv7a_mmu.h \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/arm_disassembler.h \
|
|
|
|
%D%/arm_opcodes.h \
|
|
|
|
%D%/arm_simulator.h \
|
|
|
|
%D%/arm_semihosting.h \
|
|
|
|
%D%/arm7_9_common.h \
|
|
|
|
%D%/arm7tdmi.h \
|
|
|
|
%D%/arm720t.h \
|
|
|
|
%D%/arm9tdmi.h \
|
|
|
|
%D%/arm920t.h \
|
|
|
|
%D%/arm926ejs.h \
|
|
|
|
%D%/arm966e.h \
|
|
|
|
%D%/arm946e.h \
|
|
|
|
%D%/arm11.h \
|
|
|
|
%D%/arm11_dbgtap.h \
|
|
|
|
%D%/armv4_5.h \
|
|
|
|
%D%/armv4_5_mmu.h \
|
|
|
|
%D%/armv4_5_cache.h \
|
|
|
|
%D%/armv7a.h \
|
|
|
|
%D%/armv7m.h \
|
|
|
|
%D%/armv7m_trace.h \
|
2015-01-15 19:22:20 -06:00
|
|
|
%D%/armv8.h \
|
2016-09-03 16:20:58 -05:00
|
|
|
%D%/armv8_dpm.h \
|
2016-09-02 03:38:08 -05:00
|
|
|
%D%/armv8_opcodes.h \
|
2016-09-20 04:16:30 -05:00
|
|
|
%D%/armv8_cache.h \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/avrt.h \
|
|
|
|
%D%/dsp563xx.h \
|
|
|
|
%D%/dsp563xx_once.h \
|
|
|
|
%D%/dsp5680xx.h \
|
|
|
|
%D%/breakpoints.h \
|
|
|
|
%D%/cortex_m.h \
|
|
|
|
%D%/cortex_a.h \
|
2015-01-15 19:22:20 -06:00
|
|
|
%D%/aarch64.h \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/embeddedice.h \
|
|
|
|
%D%/etb.h \
|
|
|
|
%D%/etm.h \
|
|
|
|
%D%/etm_dummy.h \
|
|
|
|
%D%/image.h \
|
|
|
|
%D%/mips32.h \
|
2014-09-23 03:46:02 -05:00
|
|
|
%D%/mips64.h \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/mips_m4k.h \
|
2014-09-23 03:51:05 -05:00
|
|
|
%D%/mips_mips64.h \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/mips_ejtag.h \
|
|
|
|
%D%/mips32_pracc.h \
|
|
|
|
%D%/mips32_dmaacc.h \
|
2014-09-23 03:46:02 -05:00
|
|
|
%D%/mips64_pracc.h \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/oocd_trace.h \
|
|
|
|
%D%/register.h \
|
|
|
|
%D%/target.h \
|
|
|
|
%D%/target_type.h \
|
|
|
|
%D%/trace.h \
|
|
|
|
%D%/target_request.h \
|
|
|
|
%D%/trace.h \
|
|
|
|
%D%/xscale.h \
|
|
|
|
%D%/smp.h \
|
|
|
|
%D%/avr32_ap7k.h \
|
|
|
|
%D%/avr32_jtag.h \
|
|
|
|
%D%/avr32_mem.h \
|
|
|
|
%D%/avr32_regs.h \
|
|
|
|
%D%/nds32.h \
|
|
|
|
%D%/nds32_cmd.h \
|
|
|
|
%D%/nds32_disassembler.h \
|
|
|
|
%D%/nds32_edm.h \
|
|
|
|
%D%/nds32_insn.h \
|
|
|
|
%D%/nds32_reg.h \
|
|
|
|
%D%/nds32_tlb.h \
|
|
|
|
%D%/nds32_v2.h \
|
|
|
|
%D%/nds32_v3_common.h \
|
|
|
|
%D%/nds32_v3.h \
|
|
|
|
%D%/nds32_v3m.h \
|
|
|
|
%D%/nds32_aice.h \
|
2018-05-13 10:39:06 -05:00
|
|
|
%D%/semihosting_common.h \
|
2017-11-06 12:56:28 -06:00
|
|
|
%D%/stm8.h \
|
2016-11-06 13:19:26 -06:00
|
|
|
%D%/lakemont.h \
|
2016-11-19 03:02:34 -06:00
|
|
|
%D%/x86_32_common.h \
|
2018-08-28 19:18:01 -05:00
|
|
|
%D%/arm_cti.h \
|
|
|
|
%D%/esirisc.h \
|
|
|
|
%D%/esirisc_jtag.h \
|
2018-10-24 21:29:03 -05:00
|
|
|
%D%/esirisc_regs.h \
|
Introduce ARCv2 architecture related code
This patch is an initial bump of ARC-specific code
which implements the ARCv2 target(EMSK board) initializing
routine and some basic remote connection/load/continue
functionality.
Changes:
03.12.2019:
-Add return value checks.
-Using static code analizer next fixes were made:
Mem leak in functions:
arc_jtag_read_memory,arc_jtag_read_memory,
arc_jtag_write_registers, arc_jtag_read_registers,
jim_arc_add_reg_type_flags, jim_arc_add_reg_type_struct,
arc_build_reg_cache, arc_mem_read.
Dead code in "arc_mem_read";
In arc_save_context, arc_restore_context correct arguments
in"memset" calls.
In "build_bcr_reg_cache", "arc_build_reg_cache" check
if list is not empty.
29.12.2019
-Moved code from arc_v2.c to arc.c
-Added checks of the result of calloc/malloc calls
-Reworked arc_cmd.c: replaced spagetty code with functions
-Moved to one style in if statements - to "if(!bla)"
-Changed Licence headers
22.01.2020
-Removed unused variables in arc_common
-Renamed register operation functions
-Introduced arc_deinit_target function
-Fixed interrupt handling in halt/resume:
* add irq_state field in arc_common
* fix irq enable/disable calls ( now STATUS32 register is used)
-Switched from buf_set(get)_us32() usage to target_buffer_set(get)_u32()
-Made some cleanup
30.01.2020
-Removed redundant arc_register struct, moved target link to arc_reg_desc
-Introduced link to BCR reg cache in arc_common for freeing memory.
-Now arc_deinit_target frees all arc-related allocated memory.
Valgrind shows no memory leaks.
-Inroduced arch description in arc.c
01.02.2020
-Remove small memory allocations in arc_init_reg. Instead created reg_value
and feature fields in arc_reg_desc.
-Add return value for arc_init_reg() func.
-Replaced some integer constants(61,62,63) with defines.
-Removed redundant conversions in arc_reg_get_field().
-Moved iccm/dccm configuration code from arc_configure()
to separate functions.
19.02.2020
-Change sizeof(struct) to sizeof(*ptr) in allocations
-Changed if/while(ptr != NULL) to if/while(ptr)
-Removed unused variables from struct arc_jtag
-Add additional structs to arc_reg_data_type
to reduce amount of memory allocations calls
and simplifying memory freeing.
-Add helper arc_reg_bitfield_t struct which includes
reg_data_type_bitfield object and char[] name. Reduces
memory allocations calls.
-Add limit for reg_type/reg_type_field names(20 symbols).
-Add in jim_arc_add_reg_type*() functions additional
argnument checks(amount of field/name size).
-In jim_arc_add_reg_type*() reduced amount of memory allocations.
-Cleanup of jim_arc_add_reg_type*() functions.
-For commands update ".usage" fields according docopt.
-Cleanup in arc_jtag.c
-Renamed functions which require jtag_exeutre_queue() to arc_jtag_enque_*()
-Add arc_jtag_enque_register_rw() function, which r/w to jtag ir/dr regs
during regiter r/w.
24.02:
-Change include guards in arc* files according coding style
-Remove _t suffix in struct arc_reg_bitfield_t
-Some cleanup
Change-Id: I6ab0e82b12e6ddb683c9d13dfb7dd6f49a30cb9f
Signed-off-by: Evgeniy Didin <didin@synopsys.com>
Cc: Alexey Brodkin <abrodkin@synopsys.com>
Reviewed-on: http://openocd.zylin.com/5332
Tested-by: jenkins
Reviewed-by: Oleksij Rempel <linux@rempel-privat.de>
2020-01-27 06:22:27 -06:00
|
|
|
%D%/esirisc_trace.h \
|
|
|
|
%D%/arc.h \
|
|
|
|
%D%/arc_cmd.h \
|
|
|
|
%D%/arc_jtag.h \
|
|
|
|
%D%/arc_mem.h
|
2016-11-06 13:19:26 -06:00
|
|
|
|
|
|
|
include %D%/openrisc/Makefile.am
|
2018-07-18 15:34:23 -05:00
|
|
|
include %D%/riscv/Makefile.am
|