Lines Matching defs:mrst
71 struct meson_pcie_rc_reset mrst;
93 struct meson_pcie_rc_reset *mrst = &mp->mrst;
95 mrst->port = meson_pcie_get_reset(mp, "port", PCIE_NORMAL_RESET);
96 if (IS_ERR(mrst->port))
97 return PTR_ERR(mrst->port);
98 reset_control_deassert(mrst->port);
100 mrst->apb = meson_pcie_get_reset(mp, "apb", PCIE_SHARED_RESET);
101 if (IS_ERR(mrst->apb))
102 return PTR_ERR(mrst->apb);
103 reset_control_deassert(mrst->apb);
149 struct meson_pcie_rc_reset *mrst = &mp->mrst;
156 reset_control_assert(mrst->port);
157 reset_control_assert(mrst->apb);
159 reset_control_deassert(mrst->port);
160 reset_control_deassert(mrst->apb);