In the protocol it is written that when there is interconnect the slave is required to support the transition between masters.Does it mean that the address and control signals go to another master or the data signals also.?For example:If the first master (green) was returned a low HREADY in the DATA PHASE (in cnt=0) , and he did not finish to write the data, is it possible to force the new master (M1) to receive a high HREADY, and also the slave as an input, but the first master to receive the low HREADYOUT. And in fact we will move in the next clock (cnt=1)) to the DATA PHASE of the new master.
Sorry, my earlier replies were wrongly looking at bus master handover on the original AHB protocol using HBUSREQ and HGRANT to control the handover. You don't have any of that in an interconnect, so the interconnect itself handles all the transfer request detection and decision making as to which transfer to allow through to a slave when two or more requests are for the same target.
So where the interconnect is switching from one master source to another, the HREADY signals seen will be different at each master. HREADY going to the new master would need to initially be high so that the transfer request can be sampled, while the HREADY to the currently active master will be determined by whatever the destination slave is returning for the current data phase transfer.
It's only once the first transfer address phase from the new master has been sampled (the input stage logic in the interconnect will need to store that new transfer address phase until it can be passed through to the slave) that the arbitration logic in the interconnect can decide if the new request takes priority over the currently active master source, at which point the new master will be stalled until the current transfer from the old master can complete.
So yes, you will have different HREADY values going back to masters in the system, depending on whether the interconnect input stage for that master is able to sample a new request (HREADY high), or if a request has been sampled but cannot be routed through to the target slave yet (HREADY low), or HREADY driven by the HREADYOUT from the slave because this master is the current sources selected to access the target slave.
Hopefully I've understood your question better this time.