1. 06 9月, 2013 1 次提交
  2. 02 9月, 2013 2 次提交
  3. 30 8月, 2013 2 次提交
    • A
      regulator: tps65217: Convert to use linear ranges · 6290d606
      Axel Lin 提交于
      Below is the equation in original code:
      
      tps65217_uv1_ranges:
              0  ... 24: uV = vsel * 25000 + 900000;
              25 ... 52: uV = (vsel - 24) * 50000 + 1500000;
                            = (vsel - 25) * 50000 + 1550000;
              53 ... 55: uV = (vsel - 52) * 100000 + 2900000;
                            = (vsel - 53) * 100000 + 3000000;
              56 ... 62: uV = 3300000;
      
      tps65217_uv2_ranges:
              0  ...  8: uV = vsel * 50000 + 1500000;
              9  ... 13: uV = (vsel - 8) * 100000 + 1900000;
                            = (vsel - 9) * 100000 + 2000000;
              14 ... 31: uV = (vsel - 13) * 50000 + 2400000;
                            = (vsel - 14) * 50000 + 2450000;
      
      The voltage tables are composed of linear ranges.
      This patch converts this driver to use multiple linear ranges APIs.
      
      In original code, voltage range for DCDC1 is 900000 ~ 1800000 and voltage range
      for DCDC3 is 900000 ~ 1500000.  This patch separates the range 25~52 in
      tps65217_uv1_ranges table to two linear ranges: 25~30 and 31~52.
      This change makes it possible to reuse the same linear_ranges table for DCDCx.
      Signed-off-by: NAxel Lin <axel.lin@ingics.com>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      6290d606
    • W
      mfd: mmc: rtsx: Change default tx phase · 84d72f9c
      Wei WANG 提交于
      The default phase can meet most cards' requirement, but it is not the
      optimal one. In some extreme situation, the rx phase point produced by
      the following tuning process will drift quite a distance.
      Before tuning UHS card, this patch will set a more proper initial tx
      phase point, which is calculated from statistic data, and can achieve
      a much better tx signal quality.
      Signed-off-by: NWei WANG <wei_wang@realsil.com.cn>
      Acked-by: NLee Jones <lee.jones@linaro.org>
      Acked-by: NChris Ball <cjb@laptop.org>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      84d72f9c
  4. 25 8月, 2013 2 次提交
  5. 20 8月, 2013 9 次提交
  6. 15 8月, 2013 2 次提交
  7. 12 8月, 2013 1 次提交
  8. 05 8月, 2013 2 次提交
  9. 31 7月, 2013 5 次提交
  10. 25 7月, 2013 1 次提交
  11. 22 7月, 2013 1 次提交
  12. 16 7月, 2013 1 次提交
  13. 15 7月, 2013 2 次提交
  14. 04 7月, 2013 1 次提交
  15. 02 7月, 2013 1 次提交
  16. 01 7月, 2013 4 次提交
  17. 25 6月, 2013 1 次提交
  18. 24 6月, 2013 2 次提交