Skip to content
  1. Oct 14, 2022
    • Jon Hunter's avatar
      clk: tegra: Fix Tegra PWM parent clock · c461c677
      Jon Hunter authored
      
      
      Commit 8c193f47 ("pwm: tegra: Optimize period calculation") updated
      the period calculation in the Tegra PWM driver and now returns an error
      if the period requested is less than minimum period supported. This is
      breaking PWM support on various Tegra platforms. For example, on the
      Tegra210 Jetson Nano platform this is breaking the PWM fan support and
      probing the PWM fan driver now fails ...
      
       pwm-fan pwm-fan: Failed to configure PWM: -22
       pwm-fan: probe of pwm-fan failed with error -22
      
      The problem is that the default parent clock for the PWM on Tegra210 is
      a 32kHz clock and is unable to support the requested PWM period.
      
      Fix PWM support on Tegra20, Tegra30, Tegra114, Tegra124 and Tegra210 by
      updating the parent clock for the PWM to be the PLL_P.
      
      Fixes: 8c193f47 ("pwm: tegra: Optimize period calculation")
      Signed-off-by: default avatarJon Hunter <jonathanh@nvidia.com>
      Tested-by: Robert Eckelmann <longnoserob@gmail.com> # TF101 T20
      Tested-by: Antoni Aloy Torrens <aaloytorrens@gmail.com> # TF101 T20
      Tested-by: Svyatoslav Ryhel <clamor95@gmail.com> # TF201 T30
      Tested-by: Andreas Westman Dorcsak <hedmoo@yahoo.com> # TF700T T3
      Link: https://lore.kernel.org/r/20221010100046.6477-1-jonathanh@nvidia.com
      
      
      Acked-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
      c461c677
    • Linus Walleij's avatar
      clk: qcom: gcc-msm8660: Drop hardcoded fixed board clocks · 8c7bc6ca
      Linus Walleij authored
      
      
      These two clocks are now registered in the device tree as fixed clocks,
      causing a regression in the driver as the clock already exists with
      e.g. the name "pxo_board" as the MSM8660 GCC driver probes.
      
      Fix this by just not hard-coding this anymore and everything works
      like a charm.
      
      Cc: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
      Fixes: baecbda5 ("ARM: dts: qcom: msm8660: fix node names for fixed clocks")
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      Link: https://lore.kernel.org/r/20221013140745.7801-1-linus.walleij@linaro.org
      
      
      Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
      8c7bc6ca
    • AngeloGioacchino Del Regno's avatar
      clk: mediatek: clk-mux: Add .determine_rate() callback · b05ea331
      AngeloGioacchino Del Regno authored
      
      
      Since commit 262ca38f ("clk: Stop forwarding clk_rate_requests
      to the parent"), the clk_rate_request is .. as the title says, not
      forwarded anymore to the parent: this produces an issue with the
      MediaTek clock MUX driver during GPU DVFS on MT8195, but not on
      MT8192 or others.
      
      This is because, differently from others, like MT8192 where all of
      the clocks in the MFG parents tree are of mtk_mux type, but in the
      parent tree of MT8195's MFG clock, we have one mtk_mux clock and
      one (clk framework generic) mux clock, like so:
      
      names: mfg_bg3d -> mfg_ck_fast_ref -> top_mfg_core_tmp (or) mfgpll
      types: mtk_gate ->      mux        ->     mtk_mux      (or) mtk_pll
      
      To solve this issue and also keep the GPU DVFS clocks code working
      as expected, wire up a .determine_rate() callback for the mtk_mux
      ops; for that, the standard clk_mux_determine_rate_flags() was used
      as it was possible to.
      
      This commit was successfully tested on MT6795 Xperia M5, MT8173 Elm,
      MT8192 Spherion and MT8195 Tomato; no regressions were seen.
      
      For the sake of some more documentation about this issue here's the
      trace of it:
      
      [   12.211587] ------------[ cut here ]------------
      [   12.211589] WARNING: CPU: 6 PID: 78 at drivers/clk/clk.c:1462 clk_core_init_rate_req+0x84/0x90
      [   12.211593] Modules linked in: stp crct10dif_ce mtk_adsp_common llc rfkill snd_sof_xtensa_dsp
                     panfrost(+) sbs_battery cros_ec_lid_angle cros_ec_sensors snd_sof_of
                     cros_ec_sensors_core hid_multitouch cros_usbpd_logger snd_sof gpu_sched
                     snd_sof_utils fuse ipv6
      [   12.211614] CPU: 6 PID: 78 Comm: kworker/u16:2 Tainted: G        W          6.0.0-next-20221011+ #58
      [   12.211616] Hardware name: Acer Tomato (rev2) board (DT)
      [   12.211617] Workqueue: devfreq_wq devfreq_monitor
      [   12.211620] pstate: 40400009 (nZcv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
      [   12.211622] pc : clk_core_init_rate_req+0x84/0x90
      [   12.211625] lr : clk_core_forward_rate_req+0xa4/0xe4
      [   12.211627] sp : ffff80000893b8e0
      [   12.211628] x29: ffff80000893b8e0 x28: ffffdddf92f9b000 x27: ffff46a2c0e8bc05
      [   12.211632] x26: ffff46a2c1041200 x25: 0000000000000000 x24: 00000000173eed80
      [   12.211636] x23: ffff80000893b9c0 x22: ffff80000893b940 x21: 0000000000000000
      [   12.211641] x20: ffff46a2c1039f00 x19: ffff46a2c1039f00 x18: 0000000000000000
      [   12.211645] x17: 0000000000000038 x16: 000000000000d904 x15: 0000000000000003
      [   12.211649] x14: ffffdddf9357ce48 x13: ffffdddf935e71c8 x12: 000000000004803c
      [   12.211653] x11: 00000000a867d7ad x10: 00000000a867d7ad x9 : ffffdddf90c28df4
      [   12.211657] x8 : ffffdddf9357a980 x7 : 0000000000000000 x6 : 0000000000000004
      [   12.211661] x5 : ffffffffffffffc8 x4 : 00000000173eed80 x3 : ffff80000893b940
      [   12.211665] x2 : 00000000173eed80 x1 : ffff80000893b940 x0 : 0000000000000000
      [   12.211669] Call trace:
      [   12.211670]  clk_core_init_rate_req+0x84/0x90
      [   12.211673]  clk_core_round_rate_nolock+0xe8/0x10c
      [   12.211675]  clk_mux_determine_rate_flags+0x174/0x1f0
      [   12.211677]  clk_mux_determine_rate+0x1c/0x30
      [   12.211680]  clk_core_determine_round_nolock+0x74/0x130
      [   12.211682]  clk_core_round_rate_nolock+0x58/0x10c
      [   12.211684]  clk_core_round_rate_nolock+0xf4/0x10c
      [   12.211686]  clk_core_set_rate_nolock+0x194/0x2ac
      [   12.211688]  clk_set_rate+0x40/0x94
      [   12.211691]  _opp_config_clk_single+0x38/0xa0
      [   12.211693]  _set_opp+0x1b0/0x500
      [   12.211695]  dev_pm_opp_set_rate+0x120/0x290
      [   12.211697]  panfrost_devfreq_target+0x3c/0x50 [panfrost]
      [   12.211705]  devfreq_set_target+0x8c/0x2d0
      [   12.211707]  devfreq_update_target+0xcc/0xf4
      [   12.211708]  devfreq_monitor+0x40/0x1d0
      [   12.211710]  process_one_work+0x294/0x664
      [   12.211712]  worker_thread+0x7c/0x45c
      [   12.211713]  kthread+0x104/0x110
      [   12.211716]  ret_from_fork+0x10/0x20
      [   12.211718] irq event stamp: 7102
      [   12.211719] hardirqs last  enabled at (7101): [<ffffdddf904ea5a0>] finish_task_switch.isra.0+0xec/0x2f0
      [   12.211723] hardirqs last disabled at (7102): [<ffffdddf91794b74>] el1_dbg+0x24/0x90
      [   12.211726] softirqs last  enabled at (6716): [<ffffdddf90410be4>] __do_softirq+0x414/0x588
      [   12.211728] softirqs last disabled at (6507): [<ffffdddf904171d8>] ____do_softirq+0x18/0x24
      [   12.211730] ---[ end trace 0000000000000000 ]---
      
      Fixes: 262ca38f ("clk: Stop forwarding clk_rate_requests to the parent")
      Signed-off-by: default avatarAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
      Link: https://lore.kernel.org/r/20221011135548.318323-1-angelogioacchino.delregno@collabora.com
      
      
      Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
      b05ea331
    • Bjorn Helgaas's avatar
      Revert "PCI: Distribute available resources for root buses, too" · 5632e2be
      Bjorn Helgaas authored
      This reverts commit e96e27fc.
      
      Jonathan reported that this commit broke this topology, where all the space
      available on bus 02 was assigned to the 02:00.0 bridge window, leaving none
      for the e1000 device at 02:00.1:
      
        pci 0000:00:04.0: bridge window [mem 0x10200000-0x103fffff] to [bus 02-04]
        pci 0000:02:00.0: bridge window [mem 0x10200000-0x103fffff] to [bus 03-04]
        pci 0000:02:00.1: BAR 0: failed to assign [mem size 0x00020000]
        e1000 0000:02:00.1: can't ioremap BAR 0: [??? 0x00000000 flags 0x0]
      
      Link: https://lore.kernel.org/r/20221014124553.0000696f@huawei.com
      
      
      Reported-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
      Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
      5632e2be
    • Nathan Chancellor's avatar
      drm/amd/display: Fix build breakage with CONFIG_DEBUG_FS=n · 2130b87b
      Nathan Chancellor authored
      
      
      After commit 8799c0be ("drm/amd/display: Fix vblank refcount in vrr
      transition"), a build with CONFIG_DEBUG_FS=n is broken due to a
      misplaced brace, along the lines of:
      
        In file included from drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_trace.h:39,
                         from drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm.c:41:
        drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm.c: At top level:
        ./include/drm/drm_atomic.h:864:9: error: expected identifier or ‘(’ before ‘for’
          864 |         for ((__i) = 0;                                                 \
              |         ^~~
        drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm.c:8317:9: note: in expansion of macro ‘for_each_new_crtc_in_state’
         8317 |         for_each_new_crtc_in_state(state, crtc, new_crtc_state, j)
              |         ^~~~~~~~~~~~~~~~~~~~~~~~~~
      
      Move the brace within the #ifdef so that the file can be built with or
      without CONFIG_DEBUG_FS.
      
      Fixes: 8799c0be ("drm/amd/display: Fix vblank refcount in vrr transition")
      Signed-off-by: default avatarNathan Chancellor <nathan@kernel.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      2130b87b
    • Colin Ian King's avatar
      parisc: Fix spelling mistake "mis-match" -> "mismatch" in eisa driver · 34314cd6
      Colin Ian King authored
      
      
      There are several spelling mistakes in kernel error messages. Fix them.
      
      Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
      Signed-off-by: default avatarHelge Deller <deller@gmx.de>
      34314cd6
    • Helge Deller's avatar
      parisc: fbdev/stifb: Align graphics memory size to 4MB · aca7c13d
      Helge Deller authored
      
      
      Independend of the current graphics resolution, adjust the reported
      graphics card memory size to the next 4MB boundary.
      This fixes the fbtest program which expects a naturally aligned size.
      
      Signed-off-by: default avatarHelge Deller <deller@gmx.de>
      Cc: <stable@vger.kernel.org>
      aca7c13d
  2. Oct 13, 2022
  3. Oct 12, 2022
Loading