123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464 |
- // SPDX-License-Identifier: GPL-2.0-only
- /*
- * Copyright (c) 2016-2021, The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2023, Qualcomm Innovation Center, Inc. All rights reserved.
- */
- #include <linux/of_device.h>
- #include <linux/err.h>
- #include <linux/regulator/consumer.h>
- #include <linux/clk.h>
- #include <linux/list.h>
- #include "msm_drv.h"
- #include "msm_kms.h"
- #include "dsi_phy.h"
- #include "dsi_phy_hw.h"
- #include "dsi_clk.h"
- #include "dsi_pwr.h"
- #include "dsi_catalog.h"
- #include "sde_dbg.h"
- #define DSI_PHY_DEFAULT_LABEL "MDSS PHY CTRL"
- #define BITS_PER_BYTE 8
- struct dsi_phy_list_item {
- struct msm_dsi_phy *phy;
- struct list_head list;
- };
- static LIST_HEAD(dsi_phy_list);
- static DEFINE_MUTEX(dsi_phy_list_lock);
- static const struct dsi_ver_spec_info dsi_phy_v3_0 = {
- .version = DSI_PHY_VERSION_3_0,
- .lane_cfg_count = 4,
- .strength_cfg_count = 2,
- .regulator_cfg_count = 0,
- .timing_cfg_count = 12,
- };
- static const struct dsi_ver_spec_info dsi_phy_v4_0 = {
- .version = DSI_PHY_VERSION_4_0,
- .lane_cfg_count = 4,
- .strength_cfg_count = 2,
- .regulator_cfg_count = 0,
- .timing_cfg_count = 14,
- };
- static const struct dsi_ver_spec_info dsi_phy_v4_1 = {
- .version = DSI_PHY_VERSION_4_1,
- .lane_cfg_count = 4,
- .strength_cfg_count = 2,
- .regulator_cfg_count = 0,
- .timing_cfg_count = 14,
- };
- static const struct dsi_ver_spec_info dsi_phy_v4_2 = {
- .version = DSI_PHY_VERSION_4_2,
- .lane_cfg_count = 4,
- .strength_cfg_count = 2,
- .regulator_cfg_count = 0,
- .timing_cfg_count = 14,
- };
- static const struct dsi_ver_spec_info dsi_phy_v4_3 = {
- .version = DSI_PHY_VERSION_4_3,
- .lane_cfg_count = 4,
- .strength_cfg_count = 2,
- .regulator_cfg_count = 0,
- .timing_cfg_count = 14,
- };
- static const struct dsi_ver_spec_info dsi_phy_v4_3_2 = {
- .version = DSI_PHY_VERSION_4_3_2,
- .lane_cfg_count = 4,
- .strength_cfg_count = 2,
- .regulator_cfg_count = 0,
- .timing_cfg_count = 14,
- };
- static const struct dsi_ver_spec_info dsi_phy_v5_2 = {
- .version = DSI_PHY_VERSION_5_2,
- .lane_cfg_count = 4,
- .strength_cfg_count = 2,
- .regulator_cfg_count = 0,
- .timing_cfg_count = 14,
- };
- static const struct of_device_id msm_dsi_phy_of_match[] = {
- { .compatible = "qcom,dsi-phy-v3.0",
- .data = &dsi_phy_v3_0,},
- { .compatible = "qcom,dsi-phy-v4.0",
- .data = &dsi_phy_v4_0,},
- { .compatible = "qcom,dsi-phy-v4.1",
- .data = &dsi_phy_v4_1,},
- { .compatible = "qcom,dsi-phy-v4.2",
- .data = &dsi_phy_v4_2,},
- { .compatible = "qcom,dsi-phy-v4.3",
- .data = &dsi_phy_v4_3,},
- { .compatible = "qcom,dsi-phy-v4.3.2",
- .data = &dsi_phy_v4_3_2,},
- { .compatible = "qcom,dsi-phy-v5.2",
- .data = &dsi_phy_v5_2,},
- {}
- };
- int dsi_phy_get_version(struct msm_dsi_phy *phy)
- {
- return phy->ver_info->version;
- }
- int dsi_phy_get_io_resources(struct msm_io_res *io_res)
- {
- struct dsi_phy_list_item *dsi_phy;
- int rc = 0;
- mutex_lock(&dsi_phy_list_lock);
- list_for_each_entry(dsi_phy, &dsi_phy_list, list) {
- rc = msm_dss_get_io_mem(dsi_phy->phy->pdev, &io_res->mem);
- if (rc) {
- DSI_PHY_ERR(dsi_phy->phy,
- "failed to get io mem, rc = %d\n", rc);
- return rc;
- }
- }
- mutex_unlock(&dsi_phy_list_lock);
- return rc;
- }
- static int dsi_phy_regmap_init(struct platform_device *pdev,
- struct msm_dsi_phy *phy)
- {
- int rc = 0;
- void __iomem *ptr;
- ptr = msm_ioremap(pdev, "dsi_phy", phy->name);
- if (IS_ERR(ptr)) {
- rc = PTR_ERR(ptr);
- return rc;
- }
- phy->hw.base = ptr;
- ptr = msm_ioremap(pdev, "dyn_refresh_base", phy->name);
- phy->hw.dyn_pll_base = ptr;
- DSI_PHY_DBG(phy, "map dsi_phy registers to %pK\n", phy->hw.base);
- return rc;
- }
- static int dsi_phy_regmap_deinit(struct msm_dsi_phy *phy)
- {
- DSI_PHY_DBG(phy, "unmap registers\n");
- return 0;
- }
- static int dsi_phy_supplies_init(struct platform_device *pdev,
- struct msm_dsi_phy *phy)
- {
- int rc = 0;
- int i = 0;
- struct dsi_regulator_info *regs;
- struct regulator *vreg = NULL;
- regs = &phy->pwr_info.digital;
- regs->vregs = devm_kzalloc(&pdev->dev, sizeof(struct dsi_vreg),
- GFP_KERNEL);
- if (!regs->vregs)
- goto error;
- regs->count = 1;
- snprintf(regs->vregs->vreg_name,
- ARRAY_SIZE(regs->vregs[i].vreg_name),
- "%s", "gdsc");
- rc = dsi_pwr_get_dt_vreg_data(&pdev->dev,
- &phy->pwr_info.phy_pwr,
- "qcom,phy-supply-entries");
- if (rc) {
- DSI_PHY_ERR(phy, "failed to get host power supplies, rc = %d\n",
- rc);
- goto error_digital;
- }
- regs = &phy->pwr_info.digital;
- for (i = 0; i < regs->count; i++) {
- vreg = devm_regulator_get(&pdev->dev, regs->vregs[i].vreg_name);
- rc = PTR_ERR_OR_ZERO(vreg);
- if (rc) {
- DSI_PHY_ERR(phy, "failed to get %s regulator\n",
- regs->vregs[i].vreg_name);
- goto error_host_pwr;
- }
- regs->vregs[i].vreg = vreg;
- }
- regs = &phy->pwr_info.phy_pwr;
- for (i = 0; i < regs->count; i++) {
- vreg = devm_regulator_get(&pdev->dev, regs->vregs[i].vreg_name);
- rc = PTR_ERR_OR_ZERO(vreg);
- if (rc) {
- DSI_PHY_ERR(phy, "failed to get %s regulator\n",
- regs->vregs[i].vreg_name);
- for (--i; i >= 0; i--)
- devm_regulator_put(regs->vregs[i].vreg);
- goto error_digital_put;
- }
- regs->vregs[i].vreg = vreg;
- }
- return rc;
- error_digital_put:
- regs = &phy->pwr_info.digital;
- for (i = 0; i < regs->count; i++)
- devm_regulator_put(regs->vregs[i].vreg);
- error_host_pwr:
- devm_kfree(&pdev->dev, phy->pwr_info.phy_pwr.vregs);
- phy->pwr_info.phy_pwr.vregs = NULL;
- phy->pwr_info.phy_pwr.count = 0;
- error_digital:
- devm_kfree(&pdev->dev, phy->pwr_info.digital.vregs);
- phy->pwr_info.digital.vregs = NULL;
- phy->pwr_info.digital.count = 0;
- error:
- return rc;
- }
- static int dsi_phy_supplies_deinit(struct msm_dsi_phy *phy)
- {
- int i = 0;
- int rc = 0;
- struct dsi_regulator_info *regs;
- regs = &phy->pwr_info.digital;
- for (i = 0; i < regs->count; i++) {
- if (!regs->vregs[i].vreg)
- DSI_PHY_ERR(phy, "vreg is NULL, should not reach here\n");
- else
- devm_regulator_put(regs->vregs[i].vreg);
- }
- regs = &phy->pwr_info.phy_pwr;
- for (i = 0; i < regs->count; i++) {
- if (!regs->vregs[i].vreg)
- DSI_PHY_ERR(phy, "vreg is NULL, should not reach here\n");
- else
- devm_regulator_put(regs->vregs[i].vreg);
- }
- if (phy->pwr_info.phy_pwr.vregs) {
- devm_kfree(&phy->pdev->dev, phy->pwr_info.phy_pwr.vregs);
- phy->pwr_info.phy_pwr.vregs = NULL;
- phy->pwr_info.phy_pwr.count = 0;
- }
- if (phy->pwr_info.digital.vregs) {
- devm_kfree(&phy->pdev->dev, phy->pwr_info.digital.vregs);
- phy->pwr_info.digital.vregs = NULL;
- phy->pwr_info.digital.count = 0;
- }
- return rc;
- }
- static int dsi_phy_parse_dt_per_lane_cfgs(struct platform_device *pdev,
- struct dsi_phy_per_lane_cfgs *cfg,
- char *property)
- {
- int rc = 0, i = 0, j = 0;
- const u8 *data;
- u32 len = 0;
- data = of_get_property(pdev->dev.of_node, property, &len);
- if (!data) {
- DSI_ERR("Unable to read Phy %s settings\n", property);
- return -EINVAL;
- }
- if (len != DSI_LANE_MAX * cfg->count_per_lane) {
- DSI_ERR("incorrect phy %s settings, exp=%d, act=%d\n",
- property, (DSI_LANE_MAX * cfg->count_per_lane), len);
- return -EINVAL;
- }
- for (i = DSI_LOGICAL_LANE_0; i < DSI_LANE_MAX; i++) {
- for (j = 0; j < cfg->count_per_lane; j++) {
- cfg->lane[i][j] = *data;
- data++;
- }
- }
- return rc;
- }
- static int dsi_phy_settings_init(struct platform_device *pdev,
- struct msm_dsi_phy *phy)
- {
- int rc = 0;
- struct dsi_phy_per_lane_cfgs *lane = &phy->cfg.lanecfg;
- struct dsi_phy_per_lane_cfgs *strength = &phy->cfg.strength;
- struct dsi_phy_per_lane_cfgs *timing = &phy->cfg.timing;
- struct dsi_phy_per_lane_cfgs *regs = &phy->cfg.regulators;
- lane->count_per_lane = phy->ver_info->lane_cfg_count;
- rc = dsi_phy_parse_dt_per_lane_cfgs(pdev, lane,
- "qcom,platform-lane-config");
- if (rc) {
- DSI_PHY_ERR(phy, "failed to parse lane cfgs, rc=%d\n", rc);
- goto err;
- }
- strength->count_per_lane = phy->ver_info->strength_cfg_count;
- rc = dsi_phy_parse_dt_per_lane_cfgs(pdev, strength,
- "qcom,platform-strength-ctrl");
- if (rc) {
- DSI_PHY_ERR(phy, "failed to parse lane cfgs, rc=%d\n", rc);
- goto err;
- }
- regs->count_per_lane = phy->ver_info->regulator_cfg_count;
- if (regs->count_per_lane > 0) {
- rc = dsi_phy_parse_dt_per_lane_cfgs(pdev, regs,
- "qcom,platform-regulator-settings");
- if (rc) {
- DSI_PHY_ERR(phy, "failed to parse lane cfgs, rc=%d\n",
- rc);
- goto err;
- }
- }
- /* Actual timing values are dependent on panel */
- timing->count_per_lane = phy->ver_info->timing_cfg_count;
- phy->allow_phy_power_off = of_property_read_bool(pdev->dev.of_node,
- "qcom,panel-allow-phy-poweroff");
- of_property_read_u32(pdev->dev.of_node,
- "qcom,dsi-phy-regulator-min-datarate-bps",
- &phy->regulator_min_datarate_bps);
- phy->dsi_phy_shared = of_property_read_bool(pdev->dev.of_node,
- "qcom,dsi-phy-shared");
- return 0;
- err:
- lane->count_per_lane = 0;
- strength->count_per_lane = 0;
- regs->count_per_lane = 0;
- timing->count_per_lane = 0;
- return rc;
- }
- static int dsi_phy_settings_deinit(struct msm_dsi_phy *phy)
- {
- memset(&phy->cfg.lanecfg, 0x0, sizeof(phy->cfg.lanecfg));
- memset(&phy->cfg.strength, 0x0, sizeof(phy->cfg.strength));
- memset(&phy->cfg.timing, 0x0, sizeof(phy->cfg.timing));
- memset(&phy->cfg.regulators, 0x0, sizeof(phy->cfg.regulators));
- return 0;
- }
- static int dsi_phy_driver_probe(struct platform_device *pdev)
- {
- struct msm_dsi_phy *dsi_phy;
- struct dsi_phy_list_item *item;
- const struct of_device_id *id;
- const struct dsi_ver_spec_info *ver_info;
- int rc = 0;
- u32 index = 0;
- if (!pdev || !pdev->dev.of_node) {
- DSI_ERR("pdev not found\n");
- return -ENODEV;
- }
- id = of_match_node(msm_dsi_phy_of_match, pdev->dev.of_node);
- if (!id)
- return -ENODEV;
- ver_info = id->data;
- item = devm_kzalloc(&pdev->dev, sizeof(*item), GFP_KERNEL);
- if (!item)
- return -ENOMEM;
- dsi_phy = devm_kzalloc(&pdev->dev, sizeof(*dsi_phy), GFP_KERNEL);
- if (!dsi_phy) {
- devm_kfree(&pdev->dev, item);
- return -ENOMEM;
- }
- rc = of_property_read_u32(pdev->dev.of_node, "cell-index", &index);
- if (rc) {
- DSI_PHY_DBG(dsi_phy, "cell index not set, default to 0\n");
- index = 0;
- }
- dsi_phy->index = index;
- dsi_phy->name = of_get_property(pdev->dev.of_node, "label", NULL);
- if (!dsi_phy->name)
- dsi_phy->name = DSI_PHY_DEFAULT_LABEL;
- dsi_phy->hw.phy_pll_bypass = of_property_read_bool(pdev->dev.of_node,
- "qcom,dsi-phy-pll-bypass");
- DSI_PHY_DBG(dsi_phy, "Probing device\n");
- dsi_phy->ver_info = ver_info;
- rc = dsi_phy_regmap_init(pdev, dsi_phy);
- if (rc) {
- DSI_PHY_ERR(dsi_phy, "Failed to parse register information, rc=%d\n",
- rc);
- goto fail;
- }
- rc = dsi_phy_supplies_init(pdev, dsi_phy);
- if (rc) {
- DSI_PHY_ERR(dsi_phy, "failed to parse voltage supplies, rc = %d\n",
- rc);
- goto fail_regmap;
- }
- rc = dsi_catalog_phy_setup(&dsi_phy->hw, ver_info->version,
- dsi_phy->index);
- if (rc) {
- DSI_PHY_ERR(dsi_phy, "Catalog does not support version (%d)\n",
- ver_info->version);
- goto fail_supplies;
- }
- rc = dsi_phy_settings_init(pdev, dsi_phy);
- if (rc) {
- DSI_PHY_ERR(dsi_phy, "Failed to parse phy setting, rc=%d\n",
- rc);
- goto fail_supplies;
- }
- rc = dsi_pll_init(pdev, &dsi_phy->pll);
- if (rc) {
- DSI_PHY_ERR(dsi_phy, "Failed to initialize DSI PLL, rc=%d\n", rc);
- goto fail_settings;
- }
- rc = dsi_catalog_phy_pll_setup(&dsi_phy->hw,
- dsi_phy->pll->pll_revision);
- if (rc) {
- DSI_PHY_ERR(dsi_phy, "Catalog does not support PLL version (%d)\n",
- dsi_phy->pll->pll_revision);
- goto fail_settings;
- }
- item->phy = dsi_phy;
- mutex_lock(&dsi_phy_list_lock);
- list_add(&item->list, &dsi_phy_list);
- mutex_unlock(&dsi_phy_list_lock);
- mutex_init(&dsi_phy->phy_lock);
- /** TODO: initialize debugfs */
- dsi_phy->pdev = pdev;
- platform_set_drvdata(pdev, dsi_phy);
- DSI_PHY_INFO(dsi_phy, "Probe successful\n");
- return 0;
- fail_settings:
- (void)dsi_phy_settings_deinit(dsi_phy);
- fail_supplies:
- (void)dsi_phy_supplies_deinit(dsi_phy);
- fail_regmap:
- (void)dsi_phy_regmap_deinit(dsi_phy);
- fail:
- devm_kfree(&pdev->dev, dsi_phy);
- devm_kfree(&pdev->dev, item);
- return rc;
- }
- static int dsi_phy_driver_remove(struct platform_device *pdev)
- {
- int rc = 0;
- struct msm_dsi_phy *phy = platform_get_drvdata(pdev);
- struct list_head *pos, *tmp;
- if (!pdev || !phy) {
- DSI_PHY_ERR(phy, "Invalid device\n");
- return -EINVAL;
- }
- mutex_lock(&dsi_phy_list_lock);
- list_for_each_safe(pos, tmp, &dsi_phy_list) {
- struct dsi_phy_list_item *n;
- n = list_entry(pos, struct dsi_phy_list_item, list);
- if (n->phy == phy) {
- list_del(&n->list);
- devm_kfree(&pdev->dev, n);
- break;
- }
- }
- mutex_unlock(&dsi_phy_list_lock);
- mutex_lock(&phy->phy_lock);
- rc = dsi_phy_settings_deinit(phy);
- if (rc)
- DSI_PHY_ERR(phy, "failed to deinitialize phy settings, rc=%d\n",
- rc);
- rc = dsi_phy_supplies_deinit(phy);
- if (rc)
- DSI_PHY_ERR(phy, "failed to deinitialize voltage supplies, rc=%d\n",
- rc);
- rc = dsi_phy_regmap_deinit(phy);
- if (rc)
- DSI_PHY_ERR(phy, "failed to deinitialize regmap, rc=%d\n", rc);
- mutex_unlock(&phy->phy_lock);
- mutex_destroy(&phy->phy_lock);
- devm_kfree(&pdev->dev, phy);
- platform_set_drvdata(pdev, NULL);
- return 0;
- }
- static struct platform_driver dsi_phy_platform_driver = {
- .probe = dsi_phy_driver_probe,
- .remove = dsi_phy_driver_remove,
- .driver = {
- .name = "dsi_phy",
- .of_match_table = msm_dsi_phy_of_match,
- },
- };
- static void dsi_phy_enable_hw(struct msm_dsi_phy *phy)
- {
- if (phy->hw.ops.regulator_enable)
- phy->hw.ops.regulator_enable(&phy->hw, &phy->cfg.regulators);
- if (phy->hw.ops.enable)
- phy->hw.ops.enable(&phy->hw, &phy->cfg);
- }
- static void dsi_phy_disable_hw(struct msm_dsi_phy *phy)
- {
- if (phy->hw.ops.disable)
- phy->hw.ops.disable(&phy->hw, &phy->cfg);
- if (phy->hw.ops.regulator_disable)
- phy->hw.ops.regulator_disable(&phy->hw);
- }
- /**
- * dsi_phy_check_resource() - check if DSI PHY is probed
- * @of_node: of_node of the DSI PHY.
- *
- * Checks if the DSI PHY has been probed and is available.
- *
- * Return: status of DSI PHY
- */
- bool dsi_phy_check_resource(struct device_node *of_node)
- {
- struct list_head *pos, *tmp;
- struct msm_dsi_phy *phy = NULL;
- mutex_lock(&dsi_phy_list_lock);
- list_for_each_safe(pos, tmp, &dsi_phy_list) {
- struct dsi_phy_list_item *n;
- n = list_entry(pos, struct dsi_phy_list_item, list);
- if (!n->phy || !n->phy->pdev)
- break;
- if (n->phy->pdev->dev.of_node == of_node) {
- phy = n->phy;
- break;
- }
- }
- mutex_unlock(&dsi_phy_list_lock);
- return phy ? true : false;
- }
- /**
- * dsi_phy_get() - get a dsi phy handle from device node
- * @of_node: device node for dsi phy controller
- *
- * Gets the DSI PHY handle for the corresponding of_node. The ref count is
- * incremented to one all subsequents get will fail until the original client
- * calls a put.
- *
- * Return: DSI PHY handle or an error code.
- */
- struct msm_dsi_phy *dsi_phy_get(struct device_node *of_node)
- {
- struct list_head *pos, *tmp;
- struct msm_dsi_phy *phy = NULL;
- mutex_lock(&dsi_phy_list_lock);
- list_for_each_safe(pos, tmp, &dsi_phy_list) {
- struct dsi_phy_list_item *n;
- n = list_entry(pos, struct dsi_phy_list_item, list);
- if (n->phy->pdev->dev.of_node == of_node) {
- phy = n->phy;
- break;
- }
- }
- mutex_unlock(&dsi_phy_list_lock);
- if (!phy) {
- DSI_PHY_ERR(phy, "Device with of node not found rc=%d\n",
- -EPROBE_DEFER);
- phy = ERR_PTR(-EPROBE_DEFER);
- return phy;
- }
- mutex_lock(&phy->phy_lock);
- if ((phy->dsi_phy_shared && phy->refcount == 2) ||
- (!phy->dsi_phy_shared && phy->refcount == 1)) {
- DSI_PHY_ERR(phy, "Device under use\n");
- phy = ERR_PTR(-EINVAL);
- } else {
- phy->refcount++;
- }
- mutex_unlock(&phy->phy_lock);
- return phy;
- }
- /**
- * dsi_phy_put() - release dsi phy handle
- * @dsi_phy: DSI PHY handle.
- *
- * Release the DSI PHY hardware. Driver will clean up all resources and puts
- * back the DSI PHY into reset state.
- */
- void dsi_phy_put(struct msm_dsi_phy *dsi_phy)
- {
- mutex_lock(&dsi_phy->phy_lock);
- if (dsi_phy->refcount == 0)
- DSI_PHY_ERR(dsi_phy, "Unbalanced %s call\n", __func__);
- else
- dsi_phy->refcount--;
- mutex_unlock(&dsi_phy->phy_lock);
- }
- /**
- * dsi_phy_drv_init() - initialize dsi phy driver
- * @dsi_phy: DSI PHY handle.
- *
- * Initializes DSI PHY driver. Should be called after dsi_phy_get().
- *
- * Return: error code.
- */
- int dsi_phy_drv_init(struct msm_dsi_phy *dsi_phy)
- {
- char dbg_name[DSI_DEBUG_NAME_LEN];
- snprintf(dbg_name, DSI_DEBUG_NAME_LEN, "dsi%d_phy", dsi_phy->index);
- sde_dbg_reg_register_base(dbg_name, dsi_phy->hw.base,
- msm_iomap_size(dsi_phy->pdev, "dsi_phy"),
- msm_get_phys_addr(dsi_phy->pdev, "dsi_phy"), SDE_DBG_DSI);
- return 0;
- }
- /**
- * dsi_phy_drv_deinit() - de-initialize dsi phy driver
- * @dsi_phy: DSI PHY handle.
- *
- * Release all resources acquired by dsi_phy_drv_init().
- *
- * Return: error code.
- */
- int dsi_phy_drv_deinit(struct msm_dsi_phy *dsi_phy)
- {
- return 0;
- }
- int dsi_phy_clk_cb_register(struct msm_dsi_phy *dsi_phy,
- struct clk_ctrl_cb *clk_cb)
- {
- if (!dsi_phy || !clk_cb) {
- DSI_PHY_ERR(dsi_phy, "Invalid params\n");
- return -EINVAL;
- }
- dsi_phy->clk_cb.priv = clk_cb->priv;
- dsi_phy->clk_cb.dsi_clk_cb = clk_cb->dsi_clk_cb;
- return 0;
- }
- /**
- * dsi_phy_validate_mode() - validate a display mode
- * @dsi_phy: DSI PHY handle.
- * @mode: Mode information.
- *
- * Validation will fail if the mode cannot be supported by the PHY driver or
- * hardware.
- *
- * Return: error code.
- */
- int dsi_phy_validate_mode(struct msm_dsi_phy *dsi_phy,
- struct dsi_mode_info *mode)
- {
- int rc = 0;
- if (!dsi_phy || !mode) {
- DSI_PHY_ERR(dsi_phy, "Invalid params\n");
- return -EINVAL;
- }
- DSI_PHY_DBG(dsi_phy, "Skipping validation\n");
- return rc;
- }
- /**
- * dsi_phy_set_power_state() - enable/disable dsi phy power supplies
- * @dsi_phy: DSI PHY handle.
- * @enable: Boolean flag to enable/disable.
- *
- * Return: error code.
- */
- int dsi_phy_set_power_state(struct msm_dsi_phy *dsi_phy, bool enable)
- {
- int rc = 0;
- if (!dsi_phy) {
- DSI_PHY_ERR(dsi_phy, "Invalid params\n");
- return -EINVAL;
- }
- mutex_lock(&dsi_phy->phy_lock);
- if (enable == dsi_phy->power_state) {
- DSI_PHY_ERR(dsi_phy, "No state change\n");
- goto error;
- }
- if (enable) {
- rc = dsi_pwr_enable_regulator(&dsi_phy->pwr_info.digital, true);
- if (rc) {
- DSI_PHY_ERR(dsi_phy, "failed to enable digital regulator\n");
- goto error;
- }
- if (dsi_phy->dsi_phy_state == DSI_PHY_ENGINE_OFF &&
- dsi_phy->regulator_required) {
- rc = dsi_pwr_enable_regulator(
- &dsi_phy->pwr_info.phy_pwr, true);
- if (rc) {
- DSI_PHY_ERR(dsi_phy, "failed to enable phy power\n");
- (void)dsi_pwr_enable_regulator(
- &dsi_phy->pwr_info.digital, false);
- goto error;
- }
- }
- } else {
- if (dsi_phy->dsi_phy_state == DSI_PHY_ENGINE_OFF &&
- dsi_phy->regulator_required) {
- rc = dsi_pwr_enable_regulator(
- &dsi_phy->pwr_info.phy_pwr, false);
- if (rc) {
- DSI_PHY_ERR(dsi_phy, "failed to enable digital regulator\n");
- goto error;
- }
- }
- rc = dsi_pwr_enable_regulator(&dsi_phy->pwr_info.digital,
- false);
- if (rc) {
- DSI_PHY_ERR(dsi_phy, "failed to enable phy power\n");
- goto error;
- }
- }
- dsi_phy->power_state = enable;
- error:
- mutex_unlock(&dsi_phy->phy_lock);
- return rc;
- }
- /**
- * dsi_phy_get_data_lanes_count() - Count the data lines need to be configured
- * @dsi_phy: DSI PHY handle.
- *
- * Return: Count of data lanes being used
- */
- static inline int dsi_phy_get_data_lanes_count(struct msm_dsi_phy *phy)
- {
- int num_of_lanes = 0;
- enum dsi_data_lanes dlanes;
- dlanes = phy->cfg.data_lanes;
- /**
- * For split link use case effective data lines need to be used
- * rather than total lanes on PHY for clock calculation and hence we
- * fall back pll->lanes to lanes_per_sublink rather than total
- * lanes.
- */
- if (phy->cfg.split_link.enabled)
- return phy->cfg.split_link.lanes_per_sublink;
- if (dlanes & DSI_DATA_LANE_0)
- num_of_lanes++;
- if (dlanes & DSI_DATA_LANE_1)
- num_of_lanes++;
- if (dlanes & DSI_DATA_LANE_2)
- num_of_lanes++;
- if (dlanes & DSI_DATA_LANE_3)
- num_of_lanes++;
- return num_of_lanes;
- }
- /**
- * dsi_phy_configure() - Configure DSI PHY PLL
- * @dsi_phy: DSI PHY handle.
- * @commit: boolean to specify if calculated PHY configuration
- * needs to be committed. Set to false in case of
- * dynamic clock switch.
- *
- * Return: error code.
- */
- int dsi_phy_configure(struct msm_dsi_phy *phy, bool commit)
- {
- int rc = 0;
- phy->pll->type = phy->cfg.phy_type;
- phy->pll->bpp = dsi_pixel_format_to_bpp(phy->dst_format);
- phy->pll->lanes = dsi_phy_get_data_lanes_count(phy);
- if (phy->hw.ops.configure)
- rc = phy->hw.ops.configure(phy->pll, commit);
- return rc;
- }
- /**
- * dsi_phy_pll_toggle() - Toggle DSI PHY PLL
- * @dsi_phy: DSI PHY handle.
- * @prepare: specifies if PLL needs to be turned on or not.
- *
- * Return: error code.
- */
- int dsi_phy_pll_toggle(struct msm_dsi_phy *phy, bool prepare)
- {
- int rc = 0;
- if (phy->hw.ops.pll_toggle)
- rc = phy->hw.ops.pll_toggle(phy->pll, prepare);
- return rc;
- }
- static int dsi_phy_enable_ulps(struct msm_dsi_phy *phy,
- struct dsi_host_config *config, bool clamp_enabled)
- {
- int rc = 0;
- u32 lanes = 0;
- u32 ulps_lanes;
- lanes = config->common_config.data_lanes;
- if (!dsi_is_type_cphy(&config->common_config))
- lanes |= DSI_CLOCK_LANE;
- /*
- * If DSI clamps are enabled, it means that the DSI lanes are
- * already in idle state. Checking for lanes to be in idle state
- * should be skipped during ULPS entry programming while coming
- * out of idle screen.
- */
- if (!clamp_enabled) {
- rc = phy->hw.ops.ulps_ops.wait_for_lane_idle(&phy->hw, lanes);
- if (rc) {
- DSI_PHY_ERR(phy, "lanes not entering idle, skip ULPS\n");
- return rc;
- }
- }
- phy->hw.ops.ulps_ops.ulps_request(&phy->hw, &phy->cfg, lanes);
- ulps_lanes = phy->hw.ops.ulps_ops.get_lanes_in_ulps(&phy->hw);
- if (!phy->hw.ops.ulps_ops.is_lanes_in_ulps(lanes, ulps_lanes)) {
- DSI_PHY_ERR(phy, "Failed to enter ULPS, request=0x%x, actual=0x%x\n",
- lanes, ulps_lanes);
- rc = -EIO;
- }
- return rc;
- }
- static int dsi_phy_disable_ulps(struct msm_dsi_phy *phy,
- struct dsi_host_config *config)
- {
- u32 ulps_lanes, lanes = 0;
- lanes = config->common_config.data_lanes;
- if (!dsi_is_type_cphy(&config->common_config))
- lanes |= DSI_CLOCK_LANE;
- ulps_lanes = phy->hw.ops.ulps_ops.get_lanes_in_ulps(&phy->hw);
- if (!phy->hw.ops.ulps_ops.is_lanes_in_ulps(lanes, ulps_lanes)) {
- DSI_PHY_ERR(phy, "Mismatch in ULPS: lanes:%d, ulps_lanes:%d\n",
- lanes, ulps_lanes);
- return -EIO;
- }
- phy->hw.ops.ulps_ops.ulps_exit(&phy->hw, &phy->cfg, lanes);
- ulps_lanes = phy->hw.ops.ulps_ops.get_lanes_in_ulps(&phy->hw);
- if (phy->hw.ops.ulps_ops.is_lanes_in_ulps(lanes, ulps_lanes)) {
- DSI_PHY_ERR(phy, "Lanes (0x%x) stuck in ULPS\n", ulps_lanes);
- return -EIO;
- }
- return 0;
- }
- void dsi_phy_toggle_resync_fifo(struct msm_dsi_phy *phy)
- {
- if (!phy)
- return;
- if (!phy->hw.ops.toggle_resync_fifo)
- return;
- phy->hw.ops.toggle_resync_fifo(&phy->hw);
- }
- void dsi_phy_reset_clk_en_sel(struct msm_dsi_phy *phy)
- {
- if (!phy)
- return;
- if (!phy->hw.ops.reset_clk_en_sel)
- return;
- phy->hw.ops.reset_clk_en_sel(&phy->hw);
- }
- int dsi_phy_set_ulps(struct msm_dsi_phy *phy, struct dsi_host_config *config,
- bool enable, bool clamp_enabled)
- {
- int rc = 0;
- if (!phy) {
- DSI_PHY_ERR(phy, "Invalid params\n");
- return DSI_PHY_ULPS_ERROR;
- }
- if (!phy->hw.ops.ulps_ops.ulps_request ||
- !phy->hw.ops.ulps_ops.ulps_exit ||
- !phy->hw.ops.ulps_ops.get_lanes_in_ulps ||
- !phy->hw.ops.ulps_ops.is_lanes_in_ulps ||
- !phy->hw.ops.ulps_ops.wait_for_lane_idle) {
- DSI_PHY_DBG(phy, "DSI PHY ULPS ops not present\n");
- return DSI_PHY_ULPS_NOT_HANDLED;
- }
- mutex_lock(&phy->phy_lock);
- if (enable)
- rc = dsi_phy_enable_ulps(phy, config, clamp_enabled);
- else
- rc = dsi_phy_disable_ulps(phy, config);
- if (rc) {
- DSI_PHY_ERR(phy, "Ulps state change(%d) failed, rc=%d\n",
- enable, rc);
- rc = DSI_PHY_ULPS_ERROR;
- goto error;
- }
- DSI_PHY_DBG(phy, "ULPS state = %d\n", enable);
- error:
- mutex_unlock(&phy->phy_lock);
- return rc;
- }
- /**
- * dsi_phy_enable() - enable DSI PHY hardware
- * @dsi_phy: DSI PHY handle.
- * @config: DSI host configuration.
- * @pll_source: Source PLL for PHY clock.
- * @skip_validation: Validation will not be performed on parameters.
- * @skip_op: Skip re-enabling dsi phy hw during usecases like
- * cont-splash/trusted-vm if set to true.
- *
- * Validates and enables DSI PHY.
- *
- * Return: error code.
- */
- int dsi_phy_enable(struct msm_dsi_phy *phy,
- struct dsi_host_config *config,
- enum dsi_phy_pll_source pll_source,
- bool skip_validation,
- bool skip_op)
- {
- int rc = 0;
- if (!phy || !config) {
- DSI_PHY_ERR(phy, "Invalid params\n");
- return -EINVAL;
- }
- mutex_lock(&phy->phy_lock);
- if (!skip_validation)
- DSI_PHY_DBG(phy, "TODO: perform validation\n");
- memcpy(&phy->mode, &config->video_timing, sizeof(phy->mode));
- memcpy(&phy->cfg.lane_map, &config->lane_map, sizeof(config->lane_map));
- phy->dst_format = config->common_config.dst_format;
- phy->cfg.data_lanes = config->common_config.data_lanes;
- phy->cfg.pll_source = pll_source;
- phy->cfg.bit_clk_rate_hz = config->bit_clk_rate_hz;
- /**
- * If PHY timing parameters are not present in panel dtsi file,
- * then calculate them in the driver
- */
- if (!phy->cfg.is_phy_timing_present)
- rc = phy->hw.ops.calculate_timing_params(&phy->hw,
- &phy->mode,
- &config->common_config,
- &phy->cfg.timing, false);
- if (rc) {
- DSI_PHY_ERR(phy, "failed to set timing, rc=%d\n", rc);
- goto error;
- }
- if (!skip_op) {
- dsi_phy_enable_hw(phy);
- DSI_PHY_DBG(phy, "cont splash not enabled, phy enable required\n");
- }
- phy->dsi_phy_state = DSI_PHY_ENGINE_ON;
- error:
- mutex_unlock(&phy->phy_lock);
- return rc;
- }
- /* update dsi phy timings for dynamic clk switch use case */
- int dsi_phy_update_phy_timings(struct msm_dsi_phy *phy,
- struct dsi_host_config *config)
- {
- int rc = 0;
- if (!phy || !config) {
- DSI_PHY_ERR(phy, "invalid argument\n");
- return -EINVAL;
- }
- memcpy(&phy->mode, &config->video_timing, sizeof(phy->mode));
- rc = phy->hw.ops.calculate_timing_params(&phy->hw, &phy->mode,
- &config->common_config,
- &phy->cfg.timing, true);
- if (rc)
- DSI_PHY_ERR(phy, "failed to calculate phy timings %d\n", rc);
- return rc;
- }
- int dsi_phy_lane_reset(struct msm_dsi_phy *phy)
- {
- int ret = 0;
- if (!phy)
- return ret;
- mutex_lock(&phy->phy_lock);
- if (phy->hw.ops.phy_lane_reset)
- ret = phy->hw.ops.phy_lane_reset(&phy->hw);
- mutex_unlock(&phy->phy_lock);
- return ret;
- }
- /**
- * dsi_phy_disable() - disable DSI PHY hardware.
- * @phy: DSI PHY handle.
- * @skip_op: Skip disabling dsi phy hw during usecases like
- * trusted-vm if set to true.
- *
- * Return: error code.
- */
- int dsi_phy_disable(struct msm_dsi_phy *phy, bool skip_op)
- {
- int rc = 0;
- if (!phy) {
- DSI_PHY_ERR(phy, "Invalid params\n");
- return -EINVAL;
- }
- mutex_lock(&phy->phy_lock);
- if (!skip_op)
- dsi_phy_disable_hw(phy);
- phy->dsi_phy_state = DSI_PHY_ENGINE_OFF;
- mutex_unlock(&phy->phy_lock);
- return rc;
- }
- /**
- * dsi_phy_set_clamp_state() - configure clamps for DSI lanes
- * @phy: DSI PHY handle.
- * @enable: boolean to specify clamp enable/disable.
- *
- * Return: error code.
- */
- int dsi_phy_set_clamp_state(struct msm_dsi_phy *phy, bool enable)
- {
- if (!phy)
- return -EINVAL;
- DSI_PHY_DBG(phy, "enable=%d\n", enable);
- if (phy->hw.ops.clamp_ctrl)
- phy->hw.ops.clamp_ctrl(&phy->hw, enable);
- return 0;
- }
- /**
- * dsi_phy_idle_ctrl() - enable/disable DSI PHY during idle screen
- * @phy: DSI PHY handle
- * @enable: boolean to specify PHY enable/disable.
- *
- * Return: error code.
- */
- int dsi_phy_idle_ctrl(struct msm_dsi_phy *phy, bool enable)
- {
- if (!phy) {
- DSI_PHY_ERR(phy, "Invalid params\n");
- return -EINVAL;
- }
- DSI_PHY_DBG(phy, "enable=%d\n", enable);
- mutex_lock(&phy->phy_lock);
- if (enable) {
- if (phy->hw.ops.phy_idle_on)
- phy->hw.ops.phy_idle_on(&phy->hw, &phy->cfg);
- if (phy->hw.ops.regulator_enable)
- phy->hw.ops.regulator_enable(&phy->hw,
- &phy->cfg.regulators);
- if (phy->hw.ops.enable)
- phy->hw.ops.enable(&phy->hw, &phy->cfg);
- phy->dsi_phy_state = DSI_PHY_ENGINE_ON;
- } else {
- phy->dsi_phy_state = DSI_PHY_ENGINE_OFF;
- if (phy->hw.ops.phy_idle_off)
- phy->hw.ops.phy_idle_off(&phy->hw, &phy->cfg);
- }
- mutex_unlock(&phy->phy_lock);
- return 0;
- }
- /**
- * dsi_phy_set_clk_freq() - set DSI PHY clock frequency setting
- * @phy: DSI PHY handle
- * @clk_freq: link clock frequency
- *
- * Return: error code.
- */
- int dsi_phy_set_clk_freq(struct msm_dsi_phy *phy,
- struct link_clk_freq *clk_freq)
- {
- if (!phy || !clk_freq) {
- DSI_PHY_ERR(phy, "Invalid params\n");
- return -EINVAL;
- }
- phy->regulator_required = clk_freq->byte_clk_rate >
- (phy->regulator_min_datarate_bps / BITS_PER_BYTE);
- /*
- * DSI PLL needs 0p9 LDO1A for Powering DSI PLL block.
- * PLL driver can vote for this regulator in PLL driver file, but for
- * the usecase where we come out of idle(static screen), if PLL and
- * PHY vote for regulator ,there will be performance delays as both
- * votes go through RPM to enable regulators.
- */
- phy->regulator_required = true;
- DSI_PHY_DBG(phy, "lane_datarate=%u min_datarate=%u required=%d\n",
- clk_freq->byte_clk_rate * BITS_PER_BYTE,
- phy->regulator_min_datarate_bps,
- phy->regulator_required);
- return 0;
- }
- /**
- * dsi_phy_set_timing_params() - timing parameters for the panel
- * @phy: DSI PHY handle
- * @timing: array holding timing params.
- * @size: size of the array.
- * @commit: boolean to indicate if programming PHY HW registers is
- * required
- *
- * When PHY timing calculator is not implemented, this array will be used to
- * pass PHY timing information.
- *
- * Return: error code.
- */
- int dsi_phy_set_timing_params(struct msm_dsi_phy *phy,
- u32 *timing, u32 size, bool commit)
- {
- int rc = 0;
- if (!phy || !timing || !size) {
- DSI_PHY_ERR(phy, "Invalid params\n");
- return -EINVAL;
- }
- mutex_lock(&phy->phy_lock);
- if (phy->hw.ops.phy_timing_val)
- rc = phy->hw.ops.phy_timing_val(&phy->cfg.timing, timing, size);
- if (!rc)
- phy->cfg.is_phy_timing_present = true;
- if (phy->hw.ops.commit_phy_timing && commit)
- phy->hw.ops.commit_phy_timing(&phy->hw, &phy->cfg.timing);
- mutex_unlock(&phy->phy_lock);
- return rc;
- }
- /**
- * dsi_phy_conv_phy_to_logical_lane() - Convert physical to logical lane
- * @lane_map: logical lane
- * @phy_lane: physical lane
- *
- * Return: Error code on failure. Lane number on success.
- */
- int dsi_phy_conv_phy_to_logical_lane(
- struct dsi_lane_map *lane_map, enum dsi_phy_data_lanes phy_lane)
- {
- int i = 0;
- if (phy_lane > DSI_PHYSICAL_LANE_3)
- return -EINVAL;
- for (i = DSI_LOGICAL_LANE_0; i < (DSI_LANE_MAX - 1); i++) {
- if (lane_map->lane_map_v2[i] == phy_lane)
- break;
- }
- return i;
- }
- /**
- * dsi_phy_conv_logical_to_phy_lane() - Convert logical to physical lane
- * @lane_map: physical lane
- * @lane: logical lane
- *
- * Return: Error code on failure. Lane number on success.
- */
- int dsi_phy_conv_logical_to_phy_lane(
- struct dsi_lane_map *lane_map, enum dsi_logical_lane lane)
- {
- int i = 0;
- if (lane > (DSI_LANE_MAX - 1))
- return -EINVAL;
- for (i = DSI_LOGICAL_LANE_0; i < (DSI_LANE_MAX - 1); i++) {
- if (BIT(i) == lane_map->lane_map_v2[lane])
- break;
- }
- return i;
- }
- /**
- * dsi_phy_config_dynamic_refresh() - Configure dynamic refresh registers
- * @phy: DSI PHY handle
- * @delay: pipe delays for dynamic refresh
- * @is_master: Boolean to indicate if for master or slave.
- */
- void dsi_phy_config_dynamic_refresh(struct msm_dsi_phy *phy,
- struct dsi_dyn_clk_delay *delay,
- bool is_master)
- {
- struct dsi_phy_cfg *cfg;
- if (!phy)
- return;
- mutex_lock(&phy->phy_lock);
- cfg = &phy->cfg;
- if (phy->hw.ops.dyn_refresh_ops.dyn_refresh_config)
- phy->hw.ops.dyn_refresh_ops.dyn_refresh_config(&phy->hw, cfg,
- is_master);
- if (phy->hw.ops.dyn_refresh_ops.dyn_refresh_pipe_delay)
- phy->hw.ops.dyn_refresh_ops.dyn_refresh_pipe_delay(
- &phy->hw, delay);
- mutex_unlock(&phy->phy_lock);
- }
- /**
- * dsi_phy_dynamic_refresh_trigger_sel() - trigger dynamic refresh and
- * update the video timings at next frame flush call.
- * @phy: DSI PHY handle
- * @is_master: Boolean to indicate if for master or slave.
- */
- void dsi_phy_dynamic_refresh_trigger_sel(struct msm_dsi_phy *phy,
- bool is_master)
- {
- if (!phy)
- return;
- mutex_lock(&phy->phy_lock);
- /*
- * program DYNAMIC_REFRESH_CTRL.TRIGGER_SEL for master.
- */
- if (phy->hw.ops.dyn_refresh_ops.dyn_refresh_trigger_sel)
- phy->hw.ops.dyn_refresh_ops.dyn_refresh_trigger_sel
- (&phy->hw, is_master);
- phy->dfps_trigger_mdpintf_flush = true;
- SDE_EVT32(is_master, phy->index);
- mutex_unlock(&phy->phy_lock);
- }
- /**
- * dsi_phy_dynamic_refresh_trigger() - trigger dynamic refresh
- * @phy: DSI PHY handle
- * @is_master: Boolean to indicate if for master or slave.
- */
- void dsi_phy_dynamic_refresh_trigger(struct msm_dsi_phy *phy, bool is_master)
- {
- u32 off;
- if (!phy)
- return;
- mutex_lock(&phy->phy_lock);
- /*
- * program PLL_SWI_INTF_SEL and SW_TRIGGER bit only for
- * master and program SYNC_MODE bit only for slave.
- */
- if (is_master)
- off = BIT(DYN_REFRESH_INTF_SEL) | BIT(DYN_REFRESH_SWI_CTRL) |
- BIT(DYN_REFRESH_SW_TRIGGER);
- else
- off = BIT(DYN_REFRESH_SYNC_MODE) | BIT(DYN_REFRESH_SWI_CTRL);
- if (phy->hw.ops.dyn_refresh_ops.dyn_refresh_helper)
- phy->hw.ops.dyn_refresh_ops.dyn_refresh_helper(&phy->hw, off);
- mutex_unlock(&phy->phy_lock);
- }
- /**
- * dsi_phy_cache_phy_timings - cache the phy timings calculated as part of
- * dynamic refresh.
- * @phy: DSI PHY Handle.
- * @dst: Pointer to cache location.
- * @size: Number of phy lane settings.
- */
- int dsi_phy_dyn_refresh_cache_phy_timings(struct msm_dsi_phy *phy, u32 *dst,
- u32 size)
- {
- int rc = 0;
- if (!phy || !dst || !size)
- return -EINVAL;
- if (phy->hw.ops.dyn_refresh_ops.cache_phy_timings)
- rc = phy->hw.ops.dyn_refresh_ops.cache_phy_timings(
- &phy->cfg.timing, dst, size);
- if (rc)
- DSI_PHY_ERR(phy, "failed to cache phy timings %d\n", rc);
- return rc;
- }
- /**
- * dsi_phy_dynamic_refresh_clear() - clear dynamic refresh config
- * @phy: DSI PHY handle
- */
- void dsi_phy_dynamic_refresh_clear(struct msm_dsi_phy *phy)
- {
- if (!phy)
- return;
- mutex_lock(&phy->phy_lock);
- if (phy->hw.ops.dyn_refresh_ops.dyn_refresh_helper)
- phy->hw.ops.dyn_refresh_ops.dyn_refresh_helper(&phy->hw, 0);
- mutex_unlock(&phy->phy_lock);
- }
- /**
- * dsi_phy_set_continuous_clk() - set/unset force clock lane HS request
- * @phy: DSI PHY handle
- * @enable: variable to control continuous clock
- */
- void dsi_phy_set_continuous_clk(struct msm_dsi_phy *phy, bool enable)
- {
- if (!phy)
- return;
- mutex_lock(&phy->phy_lock);
- if (phy->hw.ops.set_continuous_clk)
- phy->hw.ops.set_continuous_clk(&phy->hw, enable);
- else
- DSI_PHY_WARN(phy, "set_continuous_clk ops not present\n");
- mutex_unlock(&phy->phy_lock);
- }
- /**
- * dsi_phy_pll_parse_dfps_data() - parse dfps data for PLL
- * @phy: DSI PHY handle
- */
- void dsi_phy_pll_parse_dfps_data(struct msm_dsi_phy *phy)
- {
- dsi_pll_parse_dfps_data(phy->pdev, phy->pll);
- }
- void dsi_phy_drv_register(void)
- {
- platform_driver_register(&dsi_phy_platform_driver);
- }
- void dsi_phy_drv_unregister(void)
- {
- platform_driver_unregister(&dsi_phy_platform_driver);
- }
|