1 /* SPDX-License-Identifier: GPL-2.0-only OR MIT */
3 #include <device/mmio.h>
6 #include <soc/pmif_spmi.h>
8 /* IOCFG_BM, DRV_CFG2 */
9 DEFINE_BITFIELD(SPMI_SCL
, 8, 6)
10 DEFINE_BITFIELD(SPMI_SDA
, 11, 9)
11 DEFINE_BIT(SPMI_SCL_IN
, 20)
12 DEFINE_BIT(SPMI_SDA_IN
, 21)
13 DEFINE_BIT(SPMI_SCL_PU
, 21)
14 DEFINE_BIT(SPMI_SDA_PD
, 22)
15 DEFINE_BIT(SPMI_SCL_SMT
, 25)
16 DEFINE_BIT(SPMI_SDA_SMT
, 26)
17 DEFINE_BITFIELD(SPMI_TD
, 11, 8)
18 DEFINE_BITFIELD(SPMI_RD
, 23, 22)
19 DEFINE_BITFIELD(SPMI_DRI
, 5, 0)
21 /* TOPRGU, WDT_SWSYSRST2 */
22 DEFINE_BIT(SPMI_MST_RST
, 23)
23 DEFINE_BITFIELD(UNLOCK_KEY
, 31, 24)
25 /* TOPCKGEN, CLK_CFG_17 */
26 DEFINE_BITFIELD(CLK_SPMI_MST_SEL
, 10, 8)
27 DEFINE_BIT(CLK_SPMI_MST_INT
, 12)
28 DEFINE_BIT(PDN_SPMI_MST
, 15)
30 /* TOPCKGEN, CLK_CFG_UPDATE2 */
31 DEFINE_BIT(SPMI_MST_CK_UPDATE
, 5)
33 const struct spmi_device spmi_dev
[] = {
35 .slvid
= SPMI_SLAVE_6
,
37 .type_id
= BUCK_CPU_ID
,
40 .slvid
= SPMI_SLAVE_7
,
42 .type_id
= BUCK_GPU_ID
,
46 const size_t spmi_dev_cnt
= ARRAY_SIZE(spmi_dev
);
48 int spmi_config_master(void)
51 SET32_BITFIELDS(&mtk_rug
->wdt_swsysrst2
, SPMI_MST_RST
, 1, UNLOCK_KEY
, 0x88);
53 SET32_BITFIELDS(&mtk_topckgen
->clk_cfg_17
,
54 CLK_SPMI_MST_SEL
, 0x3,
57 SET32_BITFIELDS(&mtk_topckgen
->clk_cfg_update2
, SPMI_MST_CK_UPDATE
, 1);
60 SET32_BITFIELDS(&mtk_rug
->wdt_swsysrst2
, SPMI_MST_RST
, 0, UNLOCK_KEY
, 0x88);
63 write32(&mtk_spmi_mst
->mst_req_en
, 1);
64 write32(&mtk_spmi_mst
->rcs_ctrl
, 0x15);
69 void pmif_spmi_config(struct pmif
*arb
, int mstid
)
73 /* Clear all cmd permission for per channel */
74 write32(&arb
->mtk_pmif
->inf_cmd_per_0
, 0);
75 write32(&arb
->mtk_pmif
->inf_cmd_per_1
, 0);
76 write32(&arb
->mtk_pmif
->inf_cmd_per_2
, 0);
77 write32(&arb
->mtk_pmif
->inf_cmd_per_3
, 0);
79 /* Enable if we need cmd 0~3 permission for per channel */
80 cmd_per
= PMIF_CMD_PER_3
<< 28 | PMIF_CMD_PER_3
<< 24 |
81 PMIF_CMD_PER_3
<< 20 | PMIF_CMD_PER_3
<< 16 |
82 PMIF_CMD_PER_3
<< 8 | PMIF_CMD_PER_3
<< 4 |
83 PMIF_CMD_PER_1_3
<< 0;
84 write32(&arb
->mtk_pmif
->inf_cmd_per_0
, cmd_per
);
86 cmd_per
= PMIF_CMD_PER_3
<< 4;
87 write32(&arb
->mtk_pmif
->inf_cmd_per_1
, cmd_per
);
90 void pmif_spmi_iocfg(void)
92 SET32_BITFIELDS(&mtk_iocfg_bm
->eh_cfg_clr
, SPMI_SCL
, 0x7, SPMI_SDA
, 0x7);
93 SET32_BITFIELDS(&mtk_iocfg_bm
->ies_cfg1_clr
, SPMI_SCL_IN
, 0x1);
94 SET32_BITFIELDS(&mtk_iocfg_bm
->ies_cfg1_set
, SPMI_SDA_IN
, 0x1);
95 SET32_BITFIELDS(&mtk_iocfg_bm
->pu_cfg1_clr
, SPMI_SCL_PU
, 0x1,
97 SET32_BITFIELDS(&mtk_iocfg_bm
->pd_cfg1_clr
, SPMI_SCL_PU
, 0x1,
99 SET32_BITFIELDS(&mtk_iocfg_bm
->smt_cfg0_set
, SPMI_SCL_SMT
, 0x1,
101 SET32_BITFIELDS(&mtk_iocfg_bm
->tdsel_cfg1_clr
, SPMI_TD
, 0xF);
102 SET32_BITFIELDS(&mtk_iocfg_bm
->rdsel_cfg0_clr
, SPMI_RD
, 0x3);
103 SET32_BITFIELDS(&mtk_iocfg_bm
->drv_cfg3_clr
, SPMI_DRI
, 0x2D);
104 SET32_BITFIELDS(&mtk_iocfg_bm
->drv_cfg3_set
, SPMI_DRI
, 0x12);