Skip to content
Snippets Groups Projects
  1. Apr 27, 2022
  2. Mar 23, 2022
  3. Feb 11, 2022
  4. Sep 30, 2021
  5. Sep 24, 2021
  6. May 14, 2021
  7. May 11, 2021
  8. May 07, 2021
  9. May 06, 2021
  10. Apr 29, 2021
    • Robert Chiras's avatar
      MLK-25444: arch: arm64: dts: imx8dxl: Fix lcdif nodes · 7f41e923
      Robert Chiras authored
      
      When booting with lcdif dtb file, the pca6416_3 interrupt controller
      keeps sending interrupts that are not handled by anyone. Apparently this
      was caused by the removal of some pinctrls unrelated to LCDIF, when
      removing the pinctrl for IMX8DXL_SPI3_CS0_ADMA_ACM_MCLK_OUT1.
      In order to fix this, add those pinctrls back, so that only the
      definition for IMX8DXL_SPI3_CS0_ADMA_ACM_MCLK_OUT1 is overwritten.
      Also, remove the disabling of lpspi3, since that node doesn't have any
      conflict with LCDIF.
      
      Fixes: 6024c8cb ("arch: arm64: dts: im8dxl: add lcdif dts file")
      Signed-off-by: default avatarRobert Chiras <robert.chiras@nxp.com>
      Reviewed-by: default avatarLaurentiu Palcu <laurentiu.palcu@oss.nxp.com>
      7f41e923
  11. Apr 15, 2021
  12. Apr 14, 2021
    • Peng Fan's avatar
      clk: imx: add mux ops for i.MX8M composite clk · 6dfcf49c
      Peng Fan authored
      
      The CORE/BUS root slice has following design, simplied graph:
      The difference is core not have pre_div block.
      A composite core/bus clk has 8 inputs for mux to select, saying clk[0-7].
      
      It support target(smart) interface and normal interface. Target interface
      is exported for programmer easy to configure ccm root. Normal interface
      is also exported, but we not use it in our driver, because it will
      introduce more complexity compared with target interface.
      
      The normal interface simplified as below:
                  SEL_A  GA
                  +--+  +-+
                  |  +->+ +------+
      CLK[0-7]--->+  |  +-+      |
             |    |  |      +----v---+    +----+
             |    +--+      |pre_diva+---->    |  +---------+
             |              +--------+    |mux +--+post_div |
             |    +--+      |pre_divb+--->+    |  +---------+
             |    |  |      +----^---+    +----+
             +--->+  |  +-+      |
                  |  +->+ +------+
                  +--+  +-+
                  SEL_B  GB
      
      The mux in the upper pic is not the target interface MUX, target
      interface MUX is hiding SEL_A and SEL_B. When you choose clk[0-7],
      you are actually writing SEL_A or SEL_B depends on the internal
      counter which will also control the internal "mux".
      
      The target interface simplified as below which is used by Linux Kernel:
      CLK[0-7]--->MUX-->Gate-->pre_div-->post_div
      
      A requirement of the Target Interface's software is that the
      target clock source is active, it means when setting SEL_A, the
      current input clk to SEL_A must be active, same to SEL_B.
      
      We touch target interface, but hardware logic actually also need
      configure normal interface.
      
      There will be system hang, when doing the following steps:
      The initial state:
        SEL_A/SEL_B are both sourcing from clk0, the internal counter
        choose SEL_A.
      1. switch mux from clk0 to clk1
         The hardware logic will choose SEL_B and configure SEL_B to clk1.
         SEL_A no changed.
      2. gate off clk0
         Disable clk0, then the input to SEL_A is off.
      3. swtich from clk1 to clk2
         The hardware logic will choose SEL_A and configure SEL_A to clk2,
         however the current SEL_A input clk0 is off, the system hang.
      
      The solution to fix the issue is in step 1, write twice to
      target interface MUX, it will make SEL_A/SEL_B both sources
      from clk1, then no need to care about the state of clk0. And
      finally system performs well.
      
      Signed-off-by: default avatarPeng Fan <peng.fan@nxp.com>
      Reviewed-by: default avatarDong Aisheng <aisheng.dong@nxp.com>
      Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
      Signed-off-by: default avatarJacky Bai <ping.bai@nxp.com>
      6dfcf49c
    • Guoniu.zhou's avatar
      LF-3623: media: imx8: isi: fix Can't match soc version · b686cecd
      Guoniu.zhou authored
      
      ISI core driver depend on soc version info but driver provided the info
      is not ready when ISI core driver probe, so return -EPROBE_DEFER replaced
      with -EINVAL.
      
      Signed-off-by: default avatarGuoniu.zhou <guoniu.zhou@nxp.com>
      Reviewed-by: default avatarRobby Cai <robby.cai@nxp.com>
      b686cecd
  13. Apr 13, 2021
  14. Apr 02, 2021
  15. Mar 30, 2021
  16. Mar 29, 2021
  17. Mar 26, 2021
Loading