phy_mipi_dphy_get_default_config

/*
 * Minimum D-PHY timings based on MIPI D-PHY specification. Derived
 * from the valid ranges specified in Section 6.9, Table 14, Page 41
 * of the D-PHY specification (v2.1).
 */
int phy_mipi_dphy_get_default_config(unsigned long pixel_clock,
                     unsigned int bpp,
                     unsigned int lanes,
                     struct phy_configure_opts_mipi_dphy *cfg)
{
    unsigned long long hs_clk_rate;
    unsigned long long ui;

    if (!cfg)
        return -EINVAL;

    hs_clk_rate = pixel_clock * bpp;
    do_div(hs_clk_rate, lanes);

    ui = ALIGN(PSEC_PER_SEC, hs_clk_rate);
    do_div(ui, hs_clk_rate);

    cfg->clk_miss = 0;
    cfg->clk_post = 60000 + 52 * ui;
    cfg->clk_pre = 8000;
    cfg->clk_prepare = 38000;
    cfg->clk_settle = 95000;
    cfg->clk_term_en = 0;
    cfg->clk_trail = 60000;
    cfg->clk_zero = 262000;
    cfg->d_term_en = 0;
    cfg->eot = 0;
    cfg->hs_exit = 100000;
    cfg->hs_prepare = 40000 + 4 * ui;
    cfg->hs_zero = 105000 + 6 * ui;
    cfg->hs_settle = 85000 + 6 * ui;
    cfg->hs_skip = 40000;

    /*
     * The MIPI D-PHY specification (Section 6.9, v1.2, Table 14, Page 40)
     * contains this formula as:
     *
     *     T_HS-TRAIL = max(n * 8 * ui, 60 + n * 4 * ui)
     *
     * where n = 1 for forward-direction HS mode and n = 4 for reverse-
     * direction HS mode. There's only one setting and this function does
     * not parameterize on anything other that ui, so this code will
     * assumes that reverse-direction HS mode is supported and uses n = 4.
     */
    cfg->hs_trail = max(4 * 8 * ui, 60000 + 4 * 4 * ui);

    cfg->init = 100;
    cfg->lpx = 50000;
    cfg->ta_get = 5 * cfg->lpx;
    cfg->ta_go = 4 * cfg->lpx;
    cfg->ta_sure = cfg->lpx;
    cfg->wakeup = 1000;

    cfg->hs_clk_rate = hs_clk_rate;
    cfg->lanes = lanes;

    return 0;
}
EXPORT_SYMBOL(phy_mipi_dphy_get_default_config);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值