Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add "WITH Linux-syscall-note" to SPDX tag of uapi headers #94

Open
wants to merge 95 commits into
base: JH7110_VisionFive2_upstream
Choose a base branch
from

Commits on Mar 20, 2023

  1. clk: starfive: Replace SOC_STARFIVE with ARCH_STARFIVE

    Using ARCH_FOO symbol is preferred than SOC_FOO.
    Set obj-y for starfive/ in Makefile, so the StarFive drivers
    can be compiled with COMPILE_TEST=y but ARCH_STARFIVE=n.
    
    Reviewed-by: Conor Dooley <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    fc34f41 View commit details
    Browse the repository at this point in the history
  2. clk: starfive: Factor out common JH7100 and JH7110 code

    The clock control registers on the StarFive JH7100 and JH7110 work
    identically, so factor out the code then drivers for the two SoCs
    can share it without depending on each other. No functional change.
    
    Tested-by: Tommaso Merciai <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    a0178bf View commit details
    Browse the repository at this point in the history
  3. clk: starfive: Rename clk-starfive-jh7100.h to clk-starfive-jh71x0.h

    Rename clk-starfive-jh7100.h to clk-starfive-jh71x0.h for making
    the code to be common.
    
    Tested-by: Tommaso Merciai <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    3f402fe View commit details
    Browse the repository at this point in the history
  4. clk: starfive: Rename "jh7100" to "jh71x0" for the common code

    Rename some variables from "jh7100" or "JH7100" to "jh71x0"
    or "JH71X0".
    
    Tested-by: Tommaso Merciai <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    5aa27d1 View commit details
    Browse the repository at this point in the history
  5. reset: starfive: Replace SOC_STARFIVE with ARCH_STARFIVE

    Using ARCH_FOO symbol is preferred than SOC_FOO.
    
    Reviewed-by: Philipp Zabel <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    3100fda View commit details
    Browse the repository at this point in the history
  6. reset: Create subdirectory for StarFive drivers

    This moves the StarFive JH7100 reset driver to a new subdirectory in
    preparation for adding more StarFive reset drivers.
    
    Reviewed-by: Philipp Zabel <[email protected]>
    Tested-by: Tommaso Merciai <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    970f77a View commit details
    Browse the repository at this point in the history
  7. reset: starfive: Factor out common JH71X0 reset code

    The StarFive JH7100 SoC has additional reset controllers for audio and
    video, but the registers follow the same structure. On the JH7110 the
    reset registers don't get their own memory range, but instead follow the
    clock control registers. The registers still follow the same structure
    though, so let's factor out the common code to handle all these cases.
    
    Tested-by: Tommaso Merciai <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    c2766bd View commit details
    Browse the repository at this point in the history
  8. reset: starfive: Extract the common JH71X0 reset code

    Extract the common JH71X0 reset code for reusing them to
    support JH7110 SoC.
    
    Tested-by: Tommaso Merciai <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    60825d5 View commit details
    Browse the repository at this point in the history
  9. reset: starfive: Rename "jh7100" to "jh71x0" for the common code

    For the common code will be shared with the StarFive JH7110 SoC.
    
    Tested-by: Tommaso Merciai <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    3f28947 View commit details
    Browse the repository at this point in the history
  10. reset: starfive: jh71x0: Use 32bit I/O on 32bit registers

    We currently use 64bit I/O on the 32bit registers. This works because
    there are an even number of assert and status registers, so they're only
    ever accessed in pairs on 64bit boundaries.
    
    There are however other reset controllers for audio and video on the
    JH7100 SoC with only one status register that isn't 64bit aligned so
    64bit I/O results in an unaligned access exception.
    
    Switch to 32bit I/O in preparation for supporting these resets too.
    
    Tested-by: Tommaso Merciai <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    d7759ec View commit details
    Browse the repository at this point in the history
  11. dt-bindings: clock: Add StarFive JH7110 system clock and reset generator

    Add bindings for the system clock and reset generator (SYSCRG) on the
    JH7110 RISC-V SoC by StarFive Ltd.
    
    Reviewed-by: Conor Dooley <[email protected]>
    Reviewed-by: Rob Herring <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    3ec262a View commit details
    Browse the repository at this point in the history
  12. dt-bindings: clock: Add StarFive JH7110 always-on clock and reset gen…

    …erator
    
    Add bindings for the always-on clock and reset generator (AONCRG) on the
    JH7110 RISC-V SoC by StarFive Ltd.
    
    Reviewed-by: Conor Dooley <[email protected]>
    Reviewed-by: Rob Herring <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    02592e1 View commit details
    Browse the repository at this point in the history
  13. clk: starfive: Add StarFive JH7110 system clock driver

    Add driver for the StarFive JH7110 system clock controller and
    register an auxiliary device for system reset controller which
    is named as "reset-sys".
    
    Tested-by: Tommaso Merciai <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Co-developed-by: Hal Feng <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    5e91e89 View commit details
    Browse the repository at this point in the history
  14. clk: starfive: Add StarFive JH7110 always-on clock driver

    Add driver for the StarFive JH7110 always-on clock controller
    and register an auxiliary device for always-on reset controller
    which is named as "reset-aon".
    
    Tested-by: Tommaso Merciai <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Co-developed-by: Hal Feng <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    5f48958 View commit details
    Browse the repository at this point in the history
  15. reset: starfive: Add StarFive JH7110 reset driver

    Add auxiliary driver to support StarFive JH7110 system
    and always-on resets.
    
    Tested-by: Tommaso Merciai <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    4e1b69a View commit details
    Browse the repository at this point in the history
  16. dt-bindings: timer: Add StarFive JH7110 clint

    Add compatible string for the StarFive JH7110 clint.
    
    Reviewed-by: Conor Dooley <[email protected]>
    Acked-by: Krzysztof Kozlowski <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    0bdb168 View commit details
    Browse the repository at this point in the history
  17. dt-bindings: interrupt-controller: Add StarFive JH7110 plic

    Add compatible string for StarFive JH7110 plic.
    
    Reviewed-by: Conor Dooley <[email protected]>
    Acked-by: Krzysztof Kozlowski <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    c048fd4 View commit details
    Browse the repository at this point in the history
  18. dt-bindings: riscv: Add SiFive S7 compatible

    Add a new compatible string in cpu.yaml for SiFive S7 CPU
    core which is used on SiFive U74-MC core complex etc.
    
    Reviewed-by: Conor Dooley <[email protected]>
    Acked-by: Krzysztof Kozlowski <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    6c4261b View commit details
    Browse the repository at this point in the history
  19. riscv: dts: starfive: Add initial StarFive JH7110 device tree

    Add initial device tree for the JH7110 RISC-V SoC by StarFive
    Technology Ltd.
    
    Tested-by: Tommaso Merciai <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Co-developed-by: Jianlong Huang <[email protected]>
    Signed-off-by: Jianlong Huang <[email protected]>
    Co-developed-by: Hal Feng <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    eb1d449 View commit details
    Browse the repository at this point in the history
  20. riscv: dts: starfive: Add StarFive JH7110 pin function definitions

    Add pin function definitions for StarFive JH7110 SoC.
    
    Tested-by: Tommaso Merciai <[email protected]>
    Co-developed-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Jianlong Huang <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    jianlonghuang authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    66e0703 View commit details
    Browse the repository at this point in the history
  21. riscv: dts: starfive: Add StarFive JH7110 VisionFive 2 board device tree

    Add a minimal device tree for StarFive JH7110 VisionFive 2 board
    which has version A and version B. Support booting and basic
    clock/reset/pinctrl/uart drivers.
    
    Tested-by: Tommaso Merciai <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Acked-by: Conor Dooley <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Co-developed-by: Jianlong Huang <[email protected]>
    Signed-off-by: Jianlong Huang <[email protected]>
    Co-developed-by: Hal Feng <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    e280d0c View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2023

  1. riscv: dts: starfive: add pmu controller node

    Add the pmu controller node for the Starfive JH7110 SoC. The PMU needs
    to be used by other modules such as VPU, ISP, etc.
    
    Signed-off-by: Walker Chen <[email protected]>
    WalkerChenL authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    d0f1483 View commit details
    Browse the repository at this point in the history
  2. dt-bindings: soc: starfive: Add StarFive syscon doc

    Add documentation to describe StarFive System Controller Registers.
    
    Signed-off-by: William Qiu <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    littleqyp authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    3748bac View commit details
    Browse the repository at this point in the history
  3. riscv: dts: starfive: Add syscon node

    Add stg_syscon/sys_syscon/aon_syscon node for JH7110 Soc.
    
    Signed-off-by: William Qiu <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Reviewed-by: Emil Renner Berthing <[email protected]>
    littleqyp authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    4eb32e1 View commit details
    Browse the repository at this point in the history
  4. dt-bindings: clock: Add StarFive JH7110 System-Top-Group clock and re…

    …set generator
    
    Add bindings for the System-Top-Group clock and reset generator (STGCRG)
    on the JH7110 RISC-V SoC by StarFive Ltd.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    Reviewed-by: Krzysztof Kozlowski <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    4170791 View commit details
    Browse the repository at this point in the history
  5. reset: starfive: jh7110: Add StarFive System-Top-Group reset support

    Add auxiliary_device_id to support StarFive JH7110 System-Top-Group resets
    of which the auxiliary device name is "clk_starfive_jh71x0.reset-stg".
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    c049246 View commit details
    Browse the repository at this point in the history
  6. clk: starfive: Add StarFive JH7110 System-Top-Group clock driver

    Add driver for the StarFive JH7110 System-Top-Group clock controller.
    
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Co-developed-by: Xingyu Wu <[email protected]>
    Signed-off-by: Xingyu Wu <[email protected]>
    esmil authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    99f2ae6 View commit details
    Browse the repository at this point in the history
  7. dt-bindings: clock: Add StarFive JH7110 Image-Signal-Process clock an…

    …d reset generator
    
    Add bindings for the Image-Signal-Process clock and reset
    generator (ISPCRG) on the JH7110 RISC-V SoC by StarFive Ltd.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    Reviewed-by: Krzysztof Kozlowski <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    16d1466 View commit details
    Browse the repository at this point in the history
  8. reset: starfive: jh7110: Add StarFive Image-Signal-Process reset support

    Add auxiliary_device_id to support StarFive JH7110 Image-Signal-Process
    resets of which the auxiliary device name is
    "clk_starfive_jh71x0.reset-isp".
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    d6a5d69 View commit details
    Browse the repository at this point in the history
  9. clk: starfive: Add StarFive JH7110 Image-Signal-Process clock driver

    Add driver for the StarFive JH7110 Image-Signal-Process clock controller.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    cb5792e View commit details
    Browse the repository at this point in the history
  10. dt-bindings: clock: Add StarFive JH7110 Video-Output clock and reset …

    …generator
    
    Add bindings for the Video-Output clock and reset generator (VOUTCRG)
    on the JH7110 RISC-V SoC by StarFive Ltd.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    Reviewed-by: Krzysztof Kozlowski <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    87db461 View commit details
    Browse the repository at this point in the history
  11. reset: starfive: jh7110: Add StarFive Video-Output reset support

    Add auxiliary_device_id to support StarFive JH7110 Video-Output resets
    of which the auxiliary device name is "clk_starfive_jh71x0.reset-vout".
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    e612495 View commit details
    Browse the repository at this point in the history
  12. clk: starfive: Add StarFive JH7110 Video-Output clock driver

    Add driver for the StarFive JH7110 Video-Output clock controller.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    b111ca3 View commit details
    Browse the repository at this point in the history
  13. riscv: dts: starfive: jh7110: Add DVP and HDMI TX pixel external clocks

    Add DVP and HDMI TX pixel external fixed clocks and the rates are
    74.25MHz and 297MHz.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    51232aa View commit details
    Browse the repository at this point in the history
  14. riscv: dts: starfive: jh7110: Add STGCRG/ISPCRG/VOUTCRG nodes

    Add STGCRG/ISPCRG/VOUTCRG new node to support JH7110
    System-Top-Group, Image-Signal-Process and Video-Output
    clock and reset drivers for the JH7110 RISC-V SoC.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    2e26044 View commit details
    Browse the repository at this point in the history
  15. dt-bindings: clock: Add StarFive JH7110 PLL clock generator

    Add bindings for the PLL clock generator on the JH7110 RISC-V SoC.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    Reviewed-by: Krzysztof Kozlowski <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    496b3dc View commit details
    Browse the repository at this point in the history
  16. clk: starfive: Add StarFive JH7110 PLL clock driver

    Add driver for the StarFive JH7110 PLL clock controller.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    770a9bd View commit details
    Browse the repository at this point in the history
  17. dt-bindings: soc: starfive: syscon: Add optional patternProperties

    Add optional compatible and patternProperties.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    a15b8db View commit details
    Browse the repository at this point in the history
  18. dt-bindings: clock: jh7110-syscrg: Add PLL clock inputs

    Add PLL clock inputs from PLL clock generator.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    Acked-by: Krzysztof Kozlowski <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    d4c14c1 View commit details
    Browse the repository at this point in the history
  19. clk: starfive: jh7110-sys: Modify PLL clocks source

    Modify PLL clocks source to be got from dts instead of
    the fixed factor clocks.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    3503fa9 View commit details
    Browse the repository at this point in the history
  20. riscv: dts: starfive: jh7110: Add PLL clock node and modify syscrg node

    Add the PLL clock node for the Starfive JH7110 SoC and
    modify the SYSCRG node to add PLL clocks.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    e7f175c View commit details
    Browse the repository at this point in the history
  21. dt-bindings: watchdog: Add watchdog for StarFive JH7100 and JH7110

    Add bindings to describe the watchdog for the StarFive JH7100/JH7110 SoC.
    And Use JH7100 as first StarFive SoC with watchdog.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    Reviewed-by: Krzysztof Kozlowski <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    ab78365 View commit details
    Browse the repository at this point in the history
  22. drivers: watchdog: Add StarFive Watchdog driver

    Add watchdog driver for the StarFive JH7100 and JH7110 SoC.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    213dc21 View commit details
    Browse the repository at this point in the history
  23. riscv: dts: starfive: jh7100: Add watchdog node

    Add watchdog node for the StarFive JH7100 RISC-V SoC.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    Reviewed-by: Emil Renner Berthing <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    e95a0a4 View commit details
    Browse the repository at this point in the history
  24. riscv: dts: starfive: jh7110: Add watchdog node

    Add the watchdog node for the Starfive JH7110 SoC.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    7224e0c View commit details
    Browse the repository at this point in the history
  25. dt-bindings: timer: Add timer for StarFive JH7110 SoC

    Add bindings for the timer on the JH7110 RISC-V SoC
    by StarFive Technology Ltd.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    e9efa99 View commit details
    Browse the repository at this point in the history
  26. clocksource: Add StarFive timer driver

    Add timer driver for the StarFive JH7110 SoC.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    13eefc4 View commit details
    Browse the repository at this point in the history
  27. riscv: dts: jh7110: starfive: Add timer node

    Add the timer node for the Starfive JH7110 SoC.
    
    Signed-off-by: Xingyu Wu <[email protected]>
    SFxingyuwu authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    112004f View commit details
    Browse the repository at this point in the history
  28. riscv: dts: starfive: Add mmc node

    Adds the mmc node for the StarFive JH7110 SoC.
    Set mmco node to emmc and set mmc1 node to sd.
    
    Signed-off-by: William Qiu <[email protected]>
    littleqyp authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    1565d66 View commit details
    Browse the repository at this point in the history
  29. dt-bindings: qspi: cdns,qspi-nor: constrain minItems/maxItems of resets

    The QSPI controller needs three reset items to work properly on JH7110 SoC,
    so there is need to change the maxItems's value to 3 and add minItems
    whose value is equal to 2. Other platforms do not have this constraint.
    
    Signed-off-by: William Qiu <[email protected]>
    Link: https://lore.kernel.org/r/[email protected]
    Signed-off-by: Mark Brown <[email protected]>
    littleqyp authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    04907f5 View commit details
    Browse the repository at this point in the history
  30. spi: cadence-quadspi: Add support for StarFive JH7110 QSPI

    Add QSPI reset operation in device probe and add RISCV support to
    QUAD SPI Kconfig.
    
    Co-developed-by: Ziv Xu <[email protected]>
    Signed-off-by: Ziv Xu <[email protected]>
    Signed-off-by: William Qiu <[email protected]>
    Link: https://lore.kernel.org/r/[email protected]
    Signed-off-by: Mark Brown <[email protected]>
    littleqyp authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    a02af44 View commit details
    Browse the repository at this point in the history
  31. riscv: dts: starfive: jh7110: Add qspi controller node

    Add the quad spi controller node for the Starfive JH7110 SoC.
    
    Signed-off-by: William Qiu <[email protected]>
    littleqyp authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    78b7ec3 View commit details
    Browse the repository at this point in the history
  32. dt-bindings: PWM: Add StarFive PWM module

    Add documentation to describe StarFive Pulse Width Modulation
    controller driver.
    
    Signed-off-by: William Qiu <[email protected]>
    Reviewed-by: Krzysztof Kozlowski <[email protected]>
    littleqyp authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    5f55e7d View commit details
    Browse the repository at this point in the history
  33. pwm: starfive: Add PWM driver support

    Add Pulse Width Modulation driver support for StarFive
    JH7110 soc.
    
    Signed-off-by: Hal Feng <[email protected]>
    Signed-off-by: William Qiu <[email protected]>
    littleqyp authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    50d9b82 View commit details
    Browse the repository at this point in the history
  34. riscv: dts: starfive: Add PWM node

    Adding StarFive PWM controller node to VisionFive 2 SoC.
    
    Signed-off-by: William Qiu <[email protected]>
    littleqyp authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    a81b079 View commit details
    Browse the repository at this point in the history
  35. dt-bindings: net: snps,dwmac: Add dwmac-5.20 version

    Add dwmac-5.20 IP version to snps.dwmac.yaml
    
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Samin Guo <[email protected]>
    Acked-by: Krzysztof Kozlowski <[email protected]>
    Tested-by: Tommaso Merciai <[email protected]>
    esmil authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    7f13b47 View commit details
    Browse the repository at this point in the history
  36. net: stmmac: platform: Add snps,dwmac-5.20 IP compatible string

    Add "snps,dwmac-5.20" compatible string for 5.20 version that can avoid
    to define some platform data in the glue layer.
    
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Samin Guo <[email protected]>
    Tested-by: Tommaso Merciai <[email protected]>
    esmil authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    87ec231 View commit details
    Browse the repository at this point in the history
  37. dt-bindings: net: snps,dwmac: Add 'ahb' reset/reset-name

    According to:
    stmmac_platform.c: stmmac_probe_config_dt
    stmmac_main.c: stmmac_dvr_probe
    
    dwmac controller may require one (stmmaceth) or two (stmmaceth+ahb)
    reset signals, and the maxItems of resets/reset-names is going to be 2.
    
    The gmac of Starfive Jh7110 SOC must have two resets.
    it uses snps,dwmac-5.20 IP.
    
    Signed-off-by: Samin Guo <[email protected]>
    Tested-by: Tommaso Merciai <[email protected]>
    SaminGuo authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    d457a2a View commit details
    Browse the repository at this point in the history
  38. dt-bindings: net: Add support StarFive dwmac

    Add documentation to describe StarFive dwmac driver(GMAC).
    
    Signed-off-by: Yanhong Wang <[email protected]>
    Signed-off-by: Samin Guo <[email protected]>
    Tested-by: Tommaso Merciai <[email protected]>
    Yanhong Wang authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    072bb0f View commit details
    Browse the repository at this point in the history
  39. net: stmmac: Add glue layer for StarFive JH7110 SoC

    This adds StarFive dwmac driver support on the StarFive JH7110 SoC.
    
    Co-developed-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Samin Guo <[email protected]>
    Tested-by: Tommaso Merciai <[email protected]>
    SaminGuo authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    4cdcc13 View commit details
    Browse the repository at this point in the history
  40. net: stmmac: starfive_dmac: Add phy interface settings

    dwmac supports multiple modess. When working under rmii and rgmii,
    you need to set different phy interfaces.
    
    According to the dwmac document, when working in rmii, it needs to be
    set to 0x4, and rgmii needs to be set to 0x1.
    
    The phy interface needs to be set in syscon, the format is as follows:
    starfive,syscon: <&syscon, offset, shift>
    
    Signed-off-by: Samin Guo <[email protected]>
    Tested-by: Tommaso Merciai <[email protected]>
    SaminGuo authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    6e39c57 View commit details
    Browse the repository at this point in the history
  41. riscv: dts: starfive: jh7110: Add ethernet device nodes

    Add JH7110 ethernet device node to support gmac driver for the JH7110
    RISC-V SoC.
    
    Signed-off-by: Yanhong Wang <[email protected]>
    Signed-off-by: Samin Guo <[email protected]>
    Tested-by: Tommaso Merciai <[email protected]>
    SaminGuo authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    1e3ef8f View commit details
    Browse the repository at this point in the history
  42. riscv: dts: starfive: visionfive 2: Add configuration of gmac and phy

    v1.3B:
      v1.3B uses motorcomm YT8531(rgmii-id phy) x2, need delay and
      inverse configurations.
      The tx_clk of v1.3B uses an external clock and needs to be
      switched to an external clock source.
    
    v1.2A:
      v1.2A gmac0 uses motorcomm YT8531(rgmii-id) PHY, and needs delay
      configurations.
      v1.2A gmac1 uses motorcomm YT8512(rmii) PHY, and needs to
      switch rx and rx to external clock sources.
    
    Signed-off-by: Samin Guo <[email protected]>
    Tested-by: Tommaso Merciai <[email protected]>
    SaminGuo authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    754b157 View commit details
    Browse the repository at this point in the history
  43. dt-bindings: hwmon: Add starfive,jh71x0-temp

    Add bindings for the temperature sensor on the StarFive JH7100 and
    JH7110 SoCs.
    
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    Reviewed-by: Rob Herring <[email protected]>
    esmil authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    d7afd3d View commit details
    Browse the repository at this point in the history
  44. hwmon: (sfctemp) Add StarFive JH71x0 temperature sensor

    Add driver for the StarFive JH71x0 temperature sensor. You
    can enable/disable it and read temperature in milli Celcius
    through sysfs.
    
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Co-developed-by: Samin Guo <[email protected]>
    Signed-off-by: Samin Guo <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    8a4c544 View commit details
    Browse the repository at this point in the history
  45. riscv: dts: starfive: jh7110: Add temperature sensor node

    Add temperature sensor support for StarFive JH7110 SoC.
    
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    06ade2d View commit details
    Browse the repository at this point in the history
  46. riscv: dts: starfive: visionfive-2: Add thermal-zones

    Add thermal-zones for StarFive VisionFive 2 board.
    
    Signed-off-by: Emil Renner Berthing <[email protected]>
    Signed-off-by: Hal Feng <[email protected]>
    esmil authored and hal-feng committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    aba4738 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2023

  1. dt-bindings: dma: snps,dw-axi-dmac: constrain the items of resets for…

    … JH7110 dma
    
    The DMA controller needs two reset items to work properly on JH7110 SoC,
    so there is need to constrain the items' value to 2, other platforms
    have 1 reset item at most.
    
    Signed-off-by: Walker Chen <[email protected]>
    Reviewed-by: Rob Herring <[email protected]>
    WalkerChenL authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    9539bcf View commit details
    Browse the repository at this point in the history
  2. dmaengine: dw-axi-dmac: Add support for StarFive JH7110 DMA

    Add DMA reset operation in device probe and use different configuration
    on CH_CFG registers according to match data. Update all uses of
    of_device_is_compatible with of_device_get_match_data.
    
    Signed-off-by: Walker Chen <[email protected]>
    WalkerChenL authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    a8a131e View commit details
    Browse the repository at this point in the history
  3. riscv: dts: starfive: add dma controller node

    Add the dma controller node for the Starfive JH7110 SoC.
    
    Signed-off-by: Walker Chen <[email protected]>
    WalkerChenL authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    62d3103 View commit details
    Browse the repository at this point in the history
  4. riscv: dts: starfive: Add TRNG node for VisionFive 2

    Adding StarFive TRNG controller node to VisionFive 2 board.
    
    Co-developed-by: Jenny Zhang <[email protected]>
    Signed-off-by: Jenny Zhang <[email protected]>
    Signed-off-by: Jia Jie Ho <[email protected]>
    jiajieho authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    fd6ede5 View commit details
    Browse the repository at this point in the history
  5. dt-bindings: crypto: Add StarFive crypto module

    Add documentation to describe StarFive cryptographic engine.
    
    Co-developed-by: Huan Feng <[email protected]>
    Signed-off-by: Huan Feng <[email protected]>
    Signed-off-by: Jia Jie Ho <[email protected]>
    Reviewed-by: Rob Herring <[email protected]>
    jiajieho authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    b30df28 View commit details
    Browse the repository at this point in the history
  6. crypto: starfive - Add crypto engine support

    Adding device probe and DMA init for StarFive cryptographic module.
    
    Co-developed-by: Huan Feng <[email protected]>
    Signed-off-by: Huan Feng <[email protected]>
    Signed-off-by: Jia Jie Ho <[email protected]>
    jiajieho authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    63a7e88 View commit details
    Browse the repository at this point in the history
  7. riscv: dts: starfive: Add crypto and DMA node for VisionFive 2

    Add StarFive cryptographic module and dedicated DMA controller node to
    VisionFive 2 SoCs.
    
    Co-developed-by: Huan Feng <[email protected]>
    Signed-off-by: Huan Feng <[email protected]>
    Signed-off-by: Jia Jie Ho <[email protected]>
    Acked-by: Palmer Dabbelt <[email protected]>
    jiajieho authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    5702dde View commit details
    Browse the repository at this point in the history
  8. crypto: starfive - Add hash and HMAC support

    Adding hash/HMAC support for SHA-2 and SM3 to StarFive cryptographic
    module.
    
    Co-developed-by: Huan Feng <[email protected]>
    Signed-off-by: Huan Feng <[email protected]>
    Signed-off-by: Jia Jie Ho <[email protected]>
    jiajieho authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    bd03e8a View commit details
    Browse the repository at this point in the history
  9. dt-bindings: phy: Add starfive,jh7110-dphy-rx

    StarFive SoCs like the jh7110 use a MIPI D-PHY RX controller based on
    a M31 IP. Add a binding for it.
    
    Signed-off-by: Changhuang Liang <[email protected]>
    changhuangliang authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    3970ccd View commit details
    Browse the repository at this point in the history
  10. phy: starfive: Add mipi dphy rx support

    Add mipi dphy rx support for the StarFive JH7110 SoC. It is used to
    transfer CSI camera data.
    
    Signed-off-by: Changhuang Liang <[email protected]>
    changhuangliang authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    a62573f View commit details
    Browse the repository at this point in the history
  11. riscv: dts: starfive: Add dphy rx node

    Add dphy rx node for the StarFive JH7110 SoC. It is used to transfer CSI
    camera data.
    
    Signed-off-by: Changhuang Liang <[email protected]>
    changhuangliang authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    d94aef1 View commit details
    Browse the repository at this point in the history
  12. media: dt-bindings: Add bindings for JH7110 Camera Subsystem

    Add the bindings documentation for Starfive JH7110 Camera Subsystem
    which is used for handing image sensor data.
    
    Signed-off-by: Jack Zhu <[email protected]>
    jackzhustf authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    c996239 View commit details
    Browse the repository at this point in the history
  13. media: dt-bindings: cadence-csi2rx: Convert to DT schema

    Convert DT bindings document for Cadence MIPI-CSI2 RX controller
    to DT schema format and add new properties.
    
    Signed-off-by: Jack Zhu <[email protected]>
    jackzhustf authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    618208a View commit details
    Browse the repository at this point in the history
  14. media: admin-guide: Add starfive_camss.rst for Starfive Camera Subsystem

    Add the file 'starfive_camss.rst' that documents the Starfive Camera
    Subsystem driver which is used for handing image sensor data.
    
    Signed-off-by: Jack Zhu <[email protected]>
    jackzhustf authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    aedbdd6 View commit details
    Browse the repository at this point in the history
  15. media: cadence: Add support for external dphy and JH7110 SoC

    Add support for external MIPI D-PHY and Starfive JH7110 SoC which
    has the cadence csi2 receiver.
    
    Signed-off-by: Jack Zhu <[email protected]>
    jackzhustf authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    8bfe758 View commit details
    Browse the repository at this point in the history
  16. MAINTAINERS: Add Starfive Camera Subsystem driver

    Add an entry for Starfive Camera Subsystem driver.
    
    Signed-off-by: Jack Zhu <[email protected]>
    jackzhustf authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    106091c View commit details
    Browse the repository at this point in the history
  17. media: starfive: Add Starfive Camera Subsystem driver

    Add the driver for Starfive Camera Subsystem found on
    Starfive JH7110 SoC. It is used for handing image sensor
    data.
    
    Signed-off-by: Jack Zhu <[email protected]>
    jackzhustf authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    5cf8a5f View commit details
    Browse the repository at this point in the history
  18. dt-bindings: phy: Add StarFive JH7110 USB/PCIe document

    Add StarFive JH7110 SoC USB 2.0/3.0 and PCIe 2.0 PHY dt-binding.
    PCIe 2.0 phy can use as USB 3.0 PHY.
    
    Signed-off-by: Minda Chen <[email protected]>
    mindachen1987 authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    e1c46d7 View commit details
    Browse the repository at this point in the history
  19. phy: starfive: add JH7110 PCIE 2.0 and USB 2.0 PHY driver.

    Add Starfive JH7110 SoC PCIe 2.0 and USB 2.0 PHY driver support.
    PCIe 2.0 PHY can used as USB 3.0 PHY
    
    Signed-off-by: Minda Chen <[email protected]>
    mindachen1987 authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    0b65149 View commit details
    Browse the repository at this point in the history
  20. dt-binding: Add JH7110 USB wrapper layer doc.

    The dt-binding doc of Cadence USBSS-DRD controller wrapper
    layer.
    
    Signed-off-by: Minda Chen <[email protected]>
    Reviewed-by: Peter Chen <[email protected]>
    mindachen1987 authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    a20f830 View commit details
    Browse the repository at this point in the history
  21. usb: cdns3: add StarFive JH7110 USB driver.

    There is a Cadence USB3 core for JH7110 SoCs, the cdns
    core is the child of this USB wrapper module device.
    
    Signed-off-by: Minda Chen <[email protected]>
    mindachen1987 authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    b61c783 View commit details
    Browse the repository at this point in the history
  22. dts: usb: add StarFive JH7110 USB dts configuration.

    USB Glue layer and Cadence USB subnode configuration,
    also includes USB and PCIe phy dts configuration.
    
    Signed-off-by: Minda Chen <[email protected]>
    mindachen1987 authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    d87fc09 View commit details
    Browse the repository at this point in the history
  23. RISC-V: Change suspend_save_csrs and suspend_restore_csrs to public f…

    …unction
    
    Currently suspend_save_csrs() and suspend_restore_csrs() functions are
    statically defined in the suspend.c. Change the function's attribute
    to public so that the functions can be used by hibernation as well.
    
    Signed-off-by: Sia Jee Heng <[email protected]>
    Reviewed-by: Ley Foon Tan <[email protected]>
    Reviewed-by: Mason Huo <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Reviewed-by: Andrew Jones <[email protected]>
    Sia Jee Heng authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    32b615c View commit details
    Browse the repository at this point in the history
  24. RISC-V: Factor out common code of __cpu_resume_enter()

    The cpu_resume() function is very similar for the suspend to disk and
    suspend to ram cases. Factor out the common code into suspend_restore_csrs
    macro and suspend_restore_regs macro.
    
    Signed-off-by: Sia Jee Heng <[email protected]>
    Reviewed-by: Andrew Jones <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Sia Jee Heng authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    2c651b1 View commit details
    Browse the repository at this point in the history
  25. RISC-V: mm: Enable huge page support to kernel_page_present() function

    Currently kernel_page_present() function doesn't support huge page
    detection causes the function to mistakenly return false to the
    hibernation core.
    
    Add huge page detection to the function to solve the problem.
    
    Fixes: 9e953cd ("riscv: Introduce huge page support for 32/64bit kernel")
    Signed-off-by: Sia Jee Heng <[email protected]>
    Reviewed-by: Ley Foon Tan <[email protected]>
    Reviewed-by: Mason Huo <[email protected]>
    Reviewed-by: Andrew Jones <[email protected]>
    Reviewed-by: Alexandre Ghiti <[email protected]>
    Sia Jee Heng authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    7c7f2a3 View commit details
    Browse the repository at this point in the history
  26. RISC-V: Add arch functions to support hibernation/suspend-to-disk

    Low level Arch functions were created to support hibernation.
    swsusp_arch_suspend() relies code from __cpu_suspend_enter() to write
    cpu state onto the stack, then calling swsusp_save() to save the memory
    image.
    
    Arch specific hibernation header is implemented and is utilized by the
    arch_hibernation_header_restore() and arch_hibernation_header_save()
    functions. The arch specific hibernation header consists of satp, hartid,
    and the cpu_resume address. The kernel built version is also need to be
    saved into the hibernation image header to making sure only the same
    kernel is restore when resume.
    
    swsusp_arch_resume() creates a temporary page table that covering only
    the linear map. It copies the restore code to a 'safe' page, then start
    to restore the memory image. Once completed, it restores the original
    kernel's page table. It then calls into __hibernate_cpu_resume()
    to restore the CPU context. Finally, it follows the normal hibernation
    path back to the hibernation core.
    
    To enable hibernation/suspend to disk into RISCV, the below config
    need to be enabled:
    - CONFIG_ARCH_HIBERNATION_HEADER
    - CONFIG_ARCH_HIBERNATION_POSSIBLE
    
    Signed-off-by: Sia Jee Heng <[email protected]>
    Reviewed-by: Ley Foon Tan <[email protected]>
    Reviewed-by: Mason Huo <[email protected]>
    Reviewed-by: Conor Dooley <[email protected]>
    Sia Jee Heng authored and hal-feng committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    197b506 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    cea31b2 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2023

  1. media: starfive: add "WITH Linux-syscall-note" to SPDX tag of uapi he…

    …aders
    
    UAPI headers licensed under GPL are supposed to have exception
    "WITH Linux-syscall-note" so that they can be included into non-GPL
    user space application code.
    
    Signed-off-by: Łukasz Stelmach <[email protected]>
    Łukasz Stelmach committed Mar 29, 2023
    Configuration menu
    Copy the full SHA
    90ef854 View commit details
    Browse the repository at this point in the history