interconnect fixes for v6.8-rc

These are tiny fixes for reported issues in driver code for a few
 platforms. One of them sorts out a hang issue, the other improves
 the power consumption and the rest are fixing some bitmasks to make
 sure the hardware does thing right.
 
 -  interconnect: qcom: sc8180x: Mark CO0 BCM keepalive
 -  interconnect: qcom: sm8550: Enable sync_state
 -  interconnect: qcom: sm8650: Use correct ACV enable_mask
 -  interconnect: qcom: x1e80100: Add missing ACV enable_mask
 
 Signed-off-by: Georgi Djakov <djakov@kernel.org>
 -----BEGIN PGP SIGNATURE-----
 
 iQIcBAABAgAGBQJlw3+gAAoJEIDQzArG2BZjaLoQAKgRDO32dkqF+1u157i7W80F
 0pJB8YfHfdmgxz1jtkG6vAzTR7GW966gNzol7ZKgPN44qx/6/myWIk0t8QG3qXgy
 ApaezBKHAjkORkCf+ONe51uSiRlXGHXYi3ijht/7f+pC3654UbjIBeDwKbkE/2O5
 QZ/SzRFPzN73EgZB8rn/l2cbNQNoVWxmQsw6UNj/m8EMZhPJZ82ZDmuOCZyMTxlj
 cXb4zdpnXYtkKG3VxyesedoHpZOzgvDMMT2DPMUd8gFY+Zh/EBdnj7u29gqyrsgk
 PUD491EtnCl381gJILrAImQUnOyBKLf3OVJAffPtu7/Q+l/YMsPigCSzLkIL2gtD
 drkthCHGI+MSYDEuDhuVjrdFxwOXQgTlXGI18YEXJ/7iR7sTiT3iPAvMLDSiHHN5
 +pf4nSK5b0kxtAuHrQzpllDXv0jJCxa1wYUv1cTMXQxYviT3U0OZqb+BbepPAzPE
 HM4c7iz1rdVO63u62YjUeqi1fz90u5ZFib+b6CRHTtFMqhfPONGd4i76d3jdTGdF
 0cN1hJfUXgAq5anSHNl0ITp7BF6CWvYBgrS6MxdWzRIHEHrDL8ePrvBIQFGmeA1w
 bbgSSGqcuMk1i5v6jcrfb9U/K3REBtVVcDs7ny0y3jOpTShcD6fpzwi7rEZaW+qM
 1riyyzgG/ZBX10H/dWLW
 =LxOW
 -----END PGP SIGNATURE-----

Merge tag 'icc-6.8-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc into char-misc-linus

Georgi writes:

interconnect fixes for v6.8-rc

These are tiny fixes for reported issues in driver code for a few
platforms. One of them sorts out a hang issue, the other improves
the power consumption and the rest are fixing some bitmasks to make
sure the hardware does thing right.

-  interconnect: qcom: sc8180x: Mark CO0 BCM keepalive
-  interconnect: qcom: sm8550: Enable sync_state
-  interconnect: qcom: sm8650: Use correct ACV enable_mask
-  interconnect: qcom: x1e80100: Add missing ACV enable_mask

Signed-off-by: Georgi Djakov <djakov@kernel.org>

* tag 'icc-6.8-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc:
  interconnect: qcom: x1e80100: Add missing ACV enable_mask
  interconnect: qcom: sm8650: Use correct ACV enable_mask
  interconnect: qcom: sm8550: Enable sync_state
  interconnect: qcom: sc8180x: Mark CO0 BCM keepalive
This commit is contained in:
Greg Kroah-Hartman 2024-02-07 13:47:21 +00:00
commit 51c161008e
4 changed files with 4 additions and 1 deletions

View File

@ -1372,6 +1372,7 @@ static struct qcom_icc_bcm bcm_mm0 = {
static struct qcom_icc_bcm bcm_co0 = {
.name = "CO0",
.keepalive = true,
.num_nodes = 1,
.nodes = { &slv_qns_cdsp_mem_noc }
};

View File

@ -2223,6 +2223,7 @@ static struct platform_driver qnoc_driver = {
.driver = {
.name = "qnoc-sm8550",
.of_match_table = qnoc_of_match,
.sync_state = icc_sync_state,
},
};

View File

@ -1160,7 +1160,7 @@ static struct qcom_icc_node qns_gemnoc_sf = {
static struct qcom_icc_bcm bcm_acv = {
.name = "ACV",
.enable_mask = BIT(3),
.enable_mask = BIT(0),
.num_nodes = 1,
.nodes = { &ebi },
};

View File

@ -1586,6 +1586,7 @@ static struct qcom_icc_node qns_pcie_south_gem_noc_pcie = {
static struct qcom_icc_bcm bcm_acv = {
.name = "ACV",
.enable_mask = BIT(3),
.num_nodes = 1,
.nodes = { &ebi },
};