Przeglądaj źródła

Merge "soc: swr-mstr: Update class-H port params"

Linux Build Service Account 6 lat temu
rodzic
commit
5cdd74d98c
2 zmienionych plików z 3 dodań i 3 usunięć
  1. 1 1
      soc/swr-mstr-ctrl.c
  2. 2 2
      soc/swrm_port_config.h

+ 1 - 1
soc/swr-mstr-ctrl.c

@@ -924,7 +924,7 @@ static void swrm_copy_data_port_config(struct swr_master *master, u8 bank)
 		if (mport->hstart != SWR_INVALID_PARAM
 				&& mport->hstop != SWR_INVALID_PARAM) {
 			reg[len] = SWRM_DP_PORT_HCTRL_BANK(i + 1, bank);
-			hparams = (mport->hstart << 4) | mport->hstop;
+			hparams = (mport->hstop << 4) | mport->hstart;
 			val[len++] = hparams;
 		}
 		if (mport->blk_pack_mode != SWR_INVALID_PARAM) {

+ 2 - 2
soc/swrm_port_config.h

@@ -34,7 +34,7 @@ struct port_params wsa_frame_superset[SWR_MSTR_PORT_LEN] = {
 
 struct port_params rx_frame_params[SWR_MSTR_PORT_LEN] = {
 	{3,  0,  0,  0xFF, 0xFF, 1,    0xFF, 0xFF, 1},
-	{31, 0,  0,  3,    6,    7,    0,    0xFF, 0},
+	{63, 0,  0,  3,    6,    7,    0,    0xFF, 0},
 	{31, 11, 11, 0xFF, 0xFF, 4,    1,    0xFF, 0},
 	{3,  1,  0,  0xFF, 0xFF, 0xFF, 0xFF, 1,    0},
 	{0,  0,  0,  0xFF, 0xFF, 0xFF, 0xFF, 0,    0},
@@ -42,7 +42,7 @@ struct port_params rx_frame_params[SWR_MSTR_PORT_LEN] = {
 
 struct port_params rx_frame_params_dsd[SWR_MSTR_PORT_LEN] = {
 	{3,  0,  0,  0xFF, 0xFF, 1,    0xFF, 0xFF, 1},
-	{31, 0,  0,  3,    6,    7,    0,    0xFF, 0},
+	{63, 0,  0,  3,    6,    7,    0,    0xFF, 0},
 	{31, 11, 11, 0xFF, 0xFF, 4,    1,    0xFF, 0},
 	{7,  9,  0,  0xFF, 0xFF, 0xFF, 0xFF, 1,    0},
 	{3,  1,  0,  0xFF, 0xFF, 0xFF, 0xFF, 3,    0},