12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460 |
- // SPDX-License-Identifier: GPL-2.0-only
- /*
- * Copyright (c) 2016-2021, The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 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);
- 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->refcount > 0) {
- 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->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->data_lanes = config->common_config.data_lanes;
- phy->dst_format = config->common_config.dst_format;
- 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);
- }
|