Lines Matching refs:soc
556 struct tegra_dfll_soc_data *soc; in tegra124_dfll_fcpu_probe() local
574 soc = devm_kzalloc(&pdev->dev, sizeof(*soc), GFP_KERNEL); in tegra124_dfll_fcpu_probe()
575 if (!soc) in tegra124_dfll_fcpu_probe()
578 soc->dev = get_cpu_device(0); in tegra124_dfll_fcpu_probe()
579 if (!soc->dev) { in tegra124_dfll_fcpu_probe()
592 soc->max_freq = fcpu_data->cpu_max_freq_table[speedo_id]; in tegra124_dfll_fcpu_probe()
594 soc->cvb = tegra_cvb_add_opp_table(soc->dev, fcpu_data->cpu_cvb_tables, in tegra124_dfll_fcpu_probe()
597 speedo_value, soc->max_freq); in tegra124_dfll_fcpu_probe()
598 soc->alignment = align; in tegra124_dfll_fcpu_probe()
600 if (IS_ERR(soc->cvb)) { in tegra124_dfll_fcpu_probe()
602 PTR_ERR(soc->cvb)); in tegra124_dfll_fcpu_probe()
603 return PTR_ERR(soc->cvb); in tegra124_dfll_fcpu_probe()
606 err = tegra_dfll_register(pdev, soc); in tegra124_dfll_fcpu_probe()
608 tegra_cvb_remove_opp_table(soc->dev, soc->cvb, soc->max_freq); in tegra124_dfll_fcpu_probe()
617 struct tegra_dfll_soc_data *soc; in tegra124_dfll_fcpu_remove() local
619 soc = tegra_dfll_unregister(pdev); in tegra124_dfll_fcpu_remove()
620 if (IS_ERR(soc)) { in tegra124_dfll_fcpu_remove()
622 PTR_ERR(soc)); in tegra124_dfll_fcpu_remove()
623 return PTR_ERR(soc); in tegra124_dfll_fcpu_remove()
626 tegra_cvb_remove_opp_table(soc->dev, soc->cvb, soc->max_freq); in tegra124_dfll_fcpu_remove()