Lines Matching defs:derived_refclk
1797 struct cdns_torrent_derived_refclk *derived_refclk = to_cdns_torrent_derived_refclk(hw);
1799 regmap_field_write(derived_refclk->cmn_cdiag_refclk_ovrd_4, 1);
1800 regmap_field_write(derived_refclk->phy_pipe_cmn_ctrl1_0, 1);
1807 struct cdns_torrent_derived_refclk *derived_refclk = to_cdns_torrent_derived_refclk(hw);
1809 regmap_field_write(derived_refclk->phy_pipe_cmn_ctrl1_0, 0);
1810 regmap_field_write(derived_refclk->cmn_cdiag_refclk_ovrd_4, 0);
1815 struct cdns_torrent_derived_refclk *derived_refclk = to_cdns_torrent_derived_refclk(hw);
1818 regmap_field_read(derived_refclk->cmn_cdiag_refclk_ovrd_4, &val);
1831 struct cdns_torrent_derived_refclk *derived_refclk;
1840 derived_refclk = devm_kzalloc(dev, sizeof(*derived_refclk), GFP_KERNEL);
1841 if (!derived_refclk)
1849 dev_err(dev, "No parent clock for derived_refclk\n");
1853 init = &derived_refclk->clk_data;
1864 derived_refclk->phy_pipe_cmn_ctrl1_0 = cdns_phy->phy_pipe_cmn_ctrl1_0;
1865 derived_refclk->cmn_cdiag_refclk_ovrd_4 = cdns_phy->cmn_cdiag_refclk_ovrd_4;
1867 derived_refclk->hw.init = init;
1869 hw = &derived_refclk->hw;