jtag/swd: Rename defines/make variables to allow removal of weak attribute
jtagtap.c is libopencm3 generic. Move to common.
This commit is contained in:
parent
067956266c
commit
e29f2b4fb9
|
@ -16,4 +16,4 @@ tags
|
|||
*.b#*
|
||||
blackmagic_upgrade
|
||||
*.exe
|
||||
|
||||
.vscode
|
||||
|
|
|
@ -64,12 +64,12 @@ ifndef TARGET
|
|||
TARGET=blackmagic
|
||||
endif
|
||||
|
||||
ifndef SWD_HL
|
||||
SRC += swdptap.c swdptap_generic.c
|
||||
ifdef NO_OWN_LL
|
||||
SRC += jtagtap_generic.c swdptap_generic.c
|
||||
endif
|
||||
|
||||
ifndef JTAG_HL
|
||||
SRC += jtag_scan.c jtagtap.c jtagtap_generic.c
|
||||
ifndef OWN_HL
|
||||
SRC += jtag_scan.c jtagtap.c swdptap.c
|
||||
endif
|
||||
|
||||
OBJ = $(SRC:.c=.o)
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#ifndef __GDB_IF_H
|
||||
#define __GDB_IF_H
|
||||
|
||||
#if !defined(LIBFTDI)
|
||||
#if !defined(PC_HOSTED)
|
||||
#include <libopencm3/usb/usbd.h>
|
||||
void gdb_usb_out_cb(usbd_device *dev, uint8_t ep);
|
||||
#endif
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
# error "Include 'general.h' instead"
|
||||
#endif
|
||||
|
||||
#if defined(LIBFTDI)
|
||||
#if defined(PC_HOSTED)
|
||||
void platform_init(int argc, char **argv);
|
||||
#else
|
||||
void platform_init(void);
|
||||
|
|
|
@ -27,7 +27,9 @@ int swdptap_init(void);
|
|||
bool swdptap_bit_in(void);
|
||||
void swdptap_bit_out(bool val);
|
||||
|
||||
/* High level functions, provided as weak in swdptap_generic.c */
|
||||
/* Low level functions, provided in swdptap_generic.c from the primitives
|
||||
(indicate NO_OWN_LL in the Makefile.inc or libopencm specific in
|
||||
platforms/common*/
|
||||
uint32_t swdptap_seq_in(int ticks);
|
||||
bool swdptap_seq_in_parity(uint32_t *data, int ticks);
|
||||
void swdptap_seq_out(uint32_t MS, int ticks);
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
#if defined(LIBFTDI)
|
||||
#if defined(PC_HOSTED)
|
||||
platform_init(argc, argv);
|
||||
#else
|
||||
(void) argc;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SYS = $(shell $(CC) -dumpmachine)
|
||||
CFLAGS += -DLIBFTDI -DENABLE_DEBUG
|
||||
CFLAGS += -DPC_HOSTED -DENABLE_DEBUG
|
||||
LDFLAGS += -lftdi1
|
||||
ifneq (, $(findstring mingw, $(SYS)))
|
||||
LDFLAGS += -lusb-1.0 -lws2_32
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
TARGET=blackmagic_stlinkv2
|
||||
SYS = $(shell $(CC) -dumpmachine)
|
||||
CFLAGS += -DLIBFTDI -DSTLINKV2 -DJTAG_HL -DENABLE_DEBUG
|
||||
CFLAGS += -DPC_HOSTED -DSTLINKV2 -DJTAG_HL -DENABLE_DEBUG
|
||||
CFLAGS +=-I ./target
|
||||
LDFLAGS += -lusb-1.0
|
||||
ifneq (, $(findstring mingw, $(SYS)))
|
||||
|
@ -11,5 +11,4 @@ LDFLAGS += -lws2_32
|
|||
endif
|
||||
VPATH += platforms/pc
|
||||
SRC += timing.c stlinkv2.c
|
||||
SWD_HL = 1
|
||||
JTAG_HL = 1
|
||||
OWN_HL = 1
|
||||
|
|
|
@ -24,8 +24,7 @@
|
|||
#include "general.h"
|
||||
#include "jtagtap.h"
|
||||
|
||||
void __attribute__((weak))
|
||||
jtagtap_tms_seq(uint32_t MS, int ticks)
|
||||
void jtagtap_tms_seq(uint32_t MS, int ticks)
|
||||
{
|
||||
while(ticks--) {
|
||||
jtagtap_next(MS & 1, 1);
|
||||
|
@ -33,8 +32,7 @@ jtagtap_tms_seq(uint32_t MS, int ticks)
|
|||
}
|
||||
}
|
||||
|
||||
void __attribute__((weak))
|
||||
jtagtap_tdi_tdo_seq(uint8_t *DO, const uint8_t final_tms, const uint8_t *DI, int ticks)
|
||||
void jtagtap_tdi_tdo_seq(uint8_t *DO, const uint8_t final_tms, const uint8_t *DI, int ticks)
|
||||
{
|
||||
uint8_t index = 1;
|
||||
while(ticks--) {
|
||||
|
@ -50,8 +48,7 @@ jtagtap_tdi_tdo_seq(uint8_t *DO, const uint8_t final_tms, const uint8_t *DI, int
|
|||
}
|
||||
}
|
||||
|
||||
void __attribute__((weak))
|
||||
jtagtap_tdi_seq(const uint8_t final_tms, const uint8_t *DI, int ticks)
|
||||
void jtagtap_tdi_seq(const uint8_t final_tms, const uint8_t *DI, int ticks)
|
||||
{
|
||||
uint8_t index = 1;
|
||||
while(ticks--) {
|
||||
|
|
|
@ -20,8 +20,7 @@
|
|||
#include "general.h"
|
||||
#include "swdptap.h"
|
||||
|
||||
uint32_t __attribute__((weak))
|
||||
swdptap_seq_in(int ticks)
|
||||
uint32_t swdptap_seq_in(int ticks)
|
||||
{
|
||||
uint32_t index = 1;
|
||||
uint32_t ret = 0;
|
||||
|
@ -35,8 +34,7 @@ swdptap_seq_in(int ticks)
|
|||
return ret;
|
||||
}
|
||||
|
||||
bool __attribute__((weak))
|
||||
swdptap_seq_in_parity(uint32_t *ret, int ticks)
|
||||
bool swdptap_seq_in_parity(uint32_t *ret, int ticks)
|
||||
{
|
||||
uint32_t index = 1;
|
||||
uint8_t parity = 0;
|
||||
|
@ -55,8 +53,7 @@ swdptap_seq_in_parity(uint32_t *ret, int ticks)
|
|||
return parity;
|
||||
}
|
||||
|
||||
void __attribute__((weak))
|
||||
swdptap_seq_out(uint32_t MS, int ticks)
|
||||
void swdptap_seq_out(uint32_t MS, int ticks)
|
||||
{
|
||||
while (ticks--) {
|
||||
swdptap_bit_out(MS & 1);
|
||||
|
@ -64,8 +61,7 @@ swdptap_seq_out(uint32_t MS, int ticks)
|
|||
}
|
||||
}
|
||||
|
||||
void __attribute__((weak))
|
||||
swdptap_seq_out_parity(uint32_t MS, int ticks)
|
||||
void swdptap_seq_out_parity(uint32_t MS, int ticks)
|
||||
{
|
||||
uint8_t parity = 0;
|
||||
|
||||
|
|
|
@ -314,7 +314,7 @@ void target_detach(target *t)
|
|||
{
|
||||
t->detach(t);
|
||||
t->attached = false;
|
||||
#if defined(LIBFTDI)
|
||||
#if defined(PC_HOSTED)
|
||||
# include "platform.h"
|
||||
platform_buffer_flush();
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue