Browse Source

soc: Boundary check for swr master num_port.

During stress testing, observed master num port is
going out of bounds which is impacting the next usecase
and leads to bus clsh error.
added a check to set master num port to 0 if it is
going out of boundary.

Change-Id: If273230fcef612bae484b19c5b69506606b0e911
Signed-off-by: Ganapathiraju Sarath Varma <[email protected]>
Ganapathiraju Sarath Varma 2 years ago
parent
commit
4c76e50b0b
1 changed files with 5 additions and 2 deletions
  1. 5 2
      soc/swr-mstr-ctrl.c

+ 5 - 2
soc/swr-mstr-ctrl.c

@@ -1906,7 +1906,6 @@ static int swrm_connect_port(struct swr_master *master,
 	master->num_port += portinfo->num_port;
 	set_bit(ENABLE_PENDING, &swrm->port_req_pending);
 	swr_port_response(master, portinfo->tid);
-
 	mutex_unlock(&swrm->mlock);
 	return 0;
 
@@ -1970,7 +1969,11 @@ static int swrm_disconnect_port(struct swr_master *master,
 			swrm_update_bus_clk(swrm);
 		}
 	}
-	master->num_port -= portinfo->num_port;
+
+	if (master->num_port <= portinfo->num_port)
+		master->num_port = 0;
+	else
+		master->num_port -= portinfo->num_port;
 	set_bit(DISABLE_PENDING, &swrm->port_req_pending);
 	swr_port_response(master, portinfo->tid);
 	mutex_unlock(&swrm->mlock);