[GIT PULL] clk: eyeq: Support for Mobileye EyeQ7H for v7.3
Benoît Monin <[email protected]>
| Newsgroups | org.kernel.vger.linux-clk,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
Hi Stephen, Here is a pull for the clk-eyeq driver adding support for Mobileye EyeQ7H SoC. This pull request is a clean rebase of the version that was posted during the last release cycle[1] and it was also posted as a patch series[2]. Alongside the changes to the clk-eyeq driver, this pull request also provides the dt-bindings reviewed by Krzysztof Kozlowski, a change to the reset-eyeq driver acked by Philipp Zabel and a small rework of the fixed-factor clocks reviewed by Brian Masney. [1]: https://lore.kernel.org/linux-clk/[email protected] [2]: https://patch.msgid.link/[email protected] The following changes since commit dc59e4fea9d83f03bad6bddf3fa2e52491777482: Linux 7.2-rc1 (2026-06-28 12:01:31 -0700) are available in the Git repository at: https://github.com/benoitmonin/linux tags/clk-eyeq7h-7.3 for you to fetch changes up to 44af1b974949c8f2f7cca469c0c7eee481750309: clk: eyeq: Add EyeQ7H compatibles (2026-07-17 10:09:56 +0200) ---------------------------------------------------------------- clk-eyeq: Add support for Mobileye EyeQ7H This patchset brings the support of the Other Logic Blocks (OLB) found in the first Mobileye SoC based on the RISC-V architecture, the EyeQ7H. Despite the change from MIPS to RISC-V, the Other Logic Blocks provide similar clock and reset functions to the controllers of the chip. This series introduces the device tree bindings of the SoC and the necessary changes to the clock and reset eyeq drivers. Signed-off-by: Benoît Monin <[email protected]> ---------------------------------------------------------------- Benoît Monin (9): dt-bindings: soc: mobileye: Add EyeQ7H OLB reset: eyeq: Add EyeQ7H compatibles clk: fixed-factor: Rework initialization with parent clocks clk: fixed-factor: Export __clk_hw_register_fixed_factor() clk: eyeq: Prefix the PLL registers with the PLL type clk: eyeq: Introduce a generic clock type clk: eyeq: Convert clocks declaration to eqc_clock clk: eyeq: Drop PLL, dividers, and fixed factors structs clk: eyeq: Add EyeQ7H compatibles .../bindings/soc/mobileye/mobileye,eyeq7h-olb.yaml | 192 +++ drivers/clk/clk-eyeq.c | 1268 +++++++++++++------- drivers/clk/clk-fixed-factor.c | 78 +- drivers/reset/reset-eyeq.c | 271 ++++- include/dt-bindings/clock/mobileye,eyeq7h-clk.h | 119 ++ include/linux/clk-provider.h | 56 +- 6 files changed, 1487 insertions(+), 497 deletions(-) create mode 100644 Documentation/devicetree/bindings/soc/mobileye/mobileye,eyeq7h-olb.yaml create mode 100644 include/dt-bindings/clock/mobileye,eyeq7h-clk.h