1. 22 8月, 2019 11 次提交
    • P
      clk: imx: expose CCF entry for all · ccab0668
      Peng Fan 提交于
      Expose CCF entry, then we could avoid expand the SoC support list
      Signed-off-by: NPeng Fan <peng.fan@nxp.com>
      ccab0668
    • P
      sandbox: clk: add clk enable/disable test code · c66f4f5e
      Peng Fan 提交于
      Since we added clk enable_count and prograte clk child enabling
      operation to clk parent, so add a new function sandbox_clk_enable_count
      to get enable_count for test usage.
      
      And add test code to get the enable_count after we enable/disable
      the device clk.
      Signed-off-by: NPeng Fan <peng.fan@nxp.com>
      c66f4f5e
    • P
      clk: support clk tree dump · aeeb2e6d
      Peng Fan 提交于
      The previous code only dump the clk list. This patch is
      to support clk tree dump, and also dump the enable_cnt.
      
      The code used in patch is similar to dm_dump_all, but
      the code here only filter out the UCLASS_CLK devices.
      
      On i.MX8MM, Partial output:
      u-boot=> clk dump
       Rate               Usecnt      Name
      ------------------------------------------
       24000000             0        |-- clock-osc-24m
       24000000             0        |   |-- dram_pll_ref_sel
       750000000            0        |   |   `-- dram_pll
       750000000            0        |   |       `-- dram_pll_bypass
       750000000            0        |   |           `-- dram_pll_out
       24000000             0        |   |-- arm_pll_ref_sel
       1200000000           0        |   |   `-- arm_pll
       1200000000           0        |   |       `-- arm_pll_bypass
       1200000000           0        |   |           `-- arm_pll_out
       1200000000           0        |   |               `-- arm_a53_src
       1200000000           0        |   |                   `-- arm_a53_cg
       1200000000           0        |   |                       `-- arm_a53_div
       24000000             4        |   |-- sys_pll1_ref_sel
       800000000            4        |   |   `-- sys_pll1
       800000000            4        |   |       `-- sys_pll1_bypass
       800000000            4        |   |           `-- sys_pll1_out
       40000000             0        |   |               |-- sys_pll1_40m
      Signed-off-by: NPeng Fan <peng.fan@nxp.com>
      aeeb2e6d
    • P
      clk: prograte clk enable/disable to parent · 0520be0f
      Peng Fan 提交于
      On i.MX8MM, thinking such as clk path
      OSC->PLL->PLL GATE->CCM ROOT->CCGR GATE->Device
      
      Only enabling CCGR GATE is not enough, we also need to enable PLL GATE
      to make sure the clk path work. So when enabling CCGR GATE,
      we could prograte to enabling PLL GATE to make life easier.
      Signed-off-by: NPeng Fan <peng.fan@nxp.com>
      0520be0f
    • P
      clk: introduce enable_count · e6849e2f
      Peng Fan 提交于
      As what Linux Kernel 5.3.0 provides when enable/disable clk,
      there is an enable_count in clk_core_disable/enable. Introduce
      enable_count to track the clk enable/disable count when
      clk_enable/disable for CCF. And Initialize enable_count to 0 when
      register the clk.
      
      And clk tree dump with enable_count will be supported, it will
      be easy for us to check the clk status with enable_count
      Signed-off-by: NPeng Fan <peng.fan@nxp.com>
      e6849e2f
    • M
      test/py: Add cmd_memory dependency back to test_mmc_wr · 753e5385
      Michal Simek 提交于
      Based on discussion with Stephen Warren there was recommendation to list
      both memory and random command dependencies just in case that dependency is
      not properly handled by Kconfig.
      
      Fixes: a09c1f7e ("test/py: Fix MMC/SD block write test dependency")
      Signed-off-by: NMichal Simek <michal.simek@xilinx.com>
      Acked-by: NStephen Warren <swarren@nvidia.com>
      753e5385
    • H
      easylogo: avoid buffer overrun · 2bdb42f7
      Heinrich Schuchardt 提交于
      Building easylogo with `HOST_TOOLS_ALL=y make tools` results in a build
      warning due to a possible buffer overrun:
      
      tools/easylogo/easylogo.c:453:4: note: ‘sprintf’ output between 7 and
      262 bytes into a destination of size 256
          sprintf (str, "%s, 0x%02x", app, *dataptr++);
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      
      Truncate the output to fit into the destination buffer.
      Signed-off-by: NHeinrich Schuchardt <xypron.glpk@gmx.de>
      2bdb42f7
    • U
      jffs2: remove unused code files · 071f369d
      Uwe Kleine-König 提交于
      I failed to find where these two files are used and a few test compile
      runs with JFFS2 enabled succeeded also without these.
      071f369d
    • F
      mmc: mtk-sd: Add MT8183 SoC support · 848256bd
      Fabien Parent 提交于
      Add support for the MT8183 in the MediaTek MMC driver.
      Signed-off-by: NFabien Parent <fparent@baylibre.com>
      848256bd
    • H
      mailmap: provide usage instruction · 7dd83edb
      Heinrich Schuchardt 提交于
      Looking at the contents of file .mailmap it seems that some editors assumed
      that translation is done by entering multiple lines into the file and the
      last one replaces the others. This is not how it works. The translation
      occurs according to entries in single lines as described in the
      git-check-mailmap man-page.
      
      Add a description of the file format.
      
      Add an entry for Alexander Graf as his old email address is not valid
      anymore.
      Signed-off-by: NHeinrich Schuchardt <xypron.glpk@gmx.de>
      7dd83edb
    • A
      README: Clarify use of BSS during SPL board_init_f() · 150a878b
      Andreas Dannenberg 提交于
      The earlier commit....
      
      commit a5a5d997 ("spl: Allow performing BSS init early before board_init_f()")
      
      ...introduced the ability to use BSS from SPL's board_init_f() as it may
      be required in certain exceptional use cases so go ahead and update the
      README to reflect this change. Note that as highlighted with the changes
      the use of the associated CONFIG option is generally not recommended.
      Signed-off-by: NAndreas Dannenberg <dannenberg@ti.com>
      Reviewed-by: NSimon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
      150a878b
  2. 21 8月, 2019 1 次提交
  3. 20 8月, 2019 14 次提交
  4. 19 8月, 2019 9 次提交
  5. 18 8月, 2019 5 次提交