Add toggling the test and reset pins to make gpio 4-wire JTAG work
on SBW-enabled targets
This commit is contained in:
parent
fa3557db51
commit
916f63ef82
|
@ -386,12 +386,20 @@ unsigned int jtag_init(struct jtdev *p)
|
||||||
|
|
||||||
jtag_rst_clr(p);
|
jtag_rst_clr(p);
|
||||||
p->f->jtdev_power_on(p);
|
p->f->jtdev_power_on(p);
|
||||||
jtag_tst_set(p);
|
|
||||||
jtag_tdi_set(p);
|
jtag_tdi_set(p);
|
||||||
jtag_tms_set(p);
|
jtag_tms_set(p);
|
||||||
jtag_tck_set(p);
|
jtag_tck_set(p);
|
||||||
jtag_tclk_set(p);
|
jtag_tclk_set(p);
|
||||||
|
|
||||||
|
jtag_rst_set(p);
|
||||||
|
jtag_tst_clr(p);
|
||||||
|
|
||||||
|
jtag_tst_set(p);
|
||||||
jtag_rst_clr(p);
|
jtag_rst_clr(p);
|
||||||
|
jtag_tst_clr(p);
|
||||||
|
|
||||||
|
jtag_tst_set(p);
|
||||||
|
|
||||||
p->f->jtdev_connect(p);
|
p->f->jtdev_connect(p);
|
||||||
jtag_rst_set(p);
|
jtag_rst_set(p);
|
||||||
jtag_reset_tap(p);
|
jtag_reset_tap(p);
|
||||||
|
|
Loading…
Reference in New Issue