]> www.infradead.org Git - users/borneoa/openocd-next.git/commitdiff
driver: stlink: get adapter speed through adapter_get_speed_khz()
authorAntonio Borneo <borneo.antonio@gmail.com>
Sun, 10 Nov 2024 13:30:25 +0000 (14:30 +0100)
committerAntonio Borneo <borneo.antonio@gmail.com>
Sat, 23 Nov 2024 13:49:16 +0000 (13:49 +0000)
The stlink driver, both in dapdirect and in HLA modes, pretends to
store locally the value of the adapter speed in order to use it
later-on during adapter initialization.
It doesn't work in dapdirect mode since the code to store locally
the value will not be executed until the adapter is already fully
initialized.

This cause an issue in dapdirect mode:
- due to the local value, still kept at -1, the adapter will be
  initialized to the lowest clock speed (5 KHz on stlink v2 in SWD
  mode);
- after the adapter initialization the framework will again set
  the speed with the value requested by the user.

Some target, like nRF51822, only accepts JTAG/SWD speed in a
defined range of frequencies. The initial speed of 5 KHz used by
dapdirect can be out of range, making the target debug port not
working.

The adapter framework already stores the value of speed and makes
it available through adapter_get_speed_khz().

Drop struct hl_interface_param::initial_interface_speed.
Let the code to use adapter_get_speed_khz().

Change-Id: Ie11bf0234574f2a9180d3d3a16efb78e08dfcd86
Reported-by: Andrzej Sierżęga <asier70@gmail.com>
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: https://review.openocd.org/c/openocd/+/8574
Reviewed-by: Andrzej Sierżęga <asier70@gmail.com>
Tested-by: jenkins
src/jtag/drivers/stlink_usb.c
src/jtag/hla/hla_interface.c
src/jtag/hla/hla_interface.h

index 0385e4d857654c95cdb6f5979b7e729cc7de8575..d77f28b0f44c0f3a1abbc859f73b3c44f4af7c07 100644 (file)
@@ -3781,7 +3781,7 @@ static int stlink_open(struct hl_interface_param *param, enum stlink_mode mode,
        }
 
        /* initialize the debug hardware */
-       err = stlink_usb_init_mode(h, param->connect_under_reset, param->initial_interface_speed);
+       err = stlink_usb_init_mode(h, param->connect_under_reset, adapter_get_speed_khz());
 
        if (err != ERROR_OK) {
                LOG_ERROR("init mode failed (unable to connect to the target)");
@@ -5174,7 +5174,6 @@ static int stlink_dap_speed(int speed)
                return ERROR_JTAG_NOT_IMPLEMENTED;
        }
 
-       stlink_dap_param.initial_interface_speed = speed;
        stlink_speed(stlink_dap_handle, speed, false);
        return ERROR_OK;
 }
index e826f79103b9bc510b2f0849a9155076510da4d2..96862b0d05a094cc2fef9ff4c56eeb0c57daf29f 100644 (file)
@@ -30,7 +30,6 @@ static struct hl_interface hl_if = {
                .pid = { 0 },
                .transport = HL_TRANSPORT_UNKNOWN,
                .connect_under_reset = false,
-               .initial_interface_speed = -1,
                .use_stlink_tcp = false,
                .stlink_tcp_port = 7184,
        },
@@ -165,11 +164,8 @@ static int hl_interface_speed(int speed)
        if (!hl_if.layout->api->speed)
                return ERROR_OK;
 
-       if (!hl_if.handle) {
-               /* pass speed as initial param as interface not open yet */
-               hl_if.param.initial_interface_speed = speed;
+       if (!hl_if.handle)
                return ERROR_OK;
-       }
 
        hl_if.layout->api->speed(hl_if.handle, speed, false);
 
index c95638b92abb02bfbcef34df6746a125c3d8f555..f1550d991566c8f79be98bbd1585c4a0ebf0489f 100644 (file)
@@ -31,8 +31,6 @@ struct hl_interface_param {
        enum hl_transports transport;
        /** */
        bool connect_under_reset;
-       /** Initial interface clock clock speed */
-       int initial_interface_speed;
        /** */
        bool use_stlink_tcp;
        /** */