Remote debug AFU on-chip memory using System Console.
Hi,
I have designed AFU with on-chip memory. I am doing remote debug of AFU using mmlink, system console, and signal tap. I want to read and write the on-chip memory using the system console(remote method, that is TCP, the SLD hub controller). I am using the following command to communicate on-chip memory using the system console.
1)
cmd: get_service_paths device
rsp: /devices/1
2)
cmd: set m_path [lindex [get_service_paths master] 0 ]
rsp: /devices/1/(link)/TCP/sld_hub_controller_system_0_fabric.h2t_0/sld_hub/(110:132 v1 #0)/phy_0/master
3)
cmd: set c_path [claim_service master $m_path ""]
rsp: error: claim_service: Could not claim service at /devices/1/(link)/TCP/sld_hub_controller_system_0_fabric.h2t_0/sld_hub/(110:132 v1 #0)/phy_0/master: Channel(s) have already been claimed, and the new claims are not compatible with the existing claims(s).
while executing
"claim_service master $m_path """
invoked from within
"set c_path [claim_service master $m_path ""]"
I got the above error when using the claim_service command to claims the service for exclusive use.
Even for the open_service command also I am getting the same error.
Could you please provide the solution to the above issue?