1. 03 2月, 2021 2 次提交
  2. 26 1月, 2021 5 次提交
  3. 26 11月, 2020 1 次提交
  4. 09 11月, 2020 1 次提交
  5. 04 11月, 2020 3 次提交
  6. 28 10月, 2020 1 次提交
  7. 27 10月, 2020 4 次提交
  8. 24 9月, 2020 2 次提交
  9. 16 7月, 2020 1 次提交
  10. 10 7月, 2020 1 次提交
    • H
      platform/x86: Add new intel_atomisp2_led driver · 4b2d688f
      Hans de Goede 提交于
      Many Bay Trail and Cherry Trail devices come with a camera attached to
      Intel's Image Signal Processor. Linux currently does not have a driver for
      these, so they do not work as a camera.
      
      Some of these camera's have a status LED which is controlled through a GPIO
      in some cases, e.g. on the Asus T100TA and Asus T200TA, there is a firmware
      issue where the LED gets turned on at boot.
      
      This commit adds a Linux LED driver for the camera LED on these devices.
      This driver will turn the LED off at boot and also allows controlling the
      LED (so the user can repurpose it) through the sysfs LED interface.
      
      Which GPIO is attached to the LED is usually not described in the ACPI
      tables, so this driver contains per-system info about the GPIO inside the
      driver. This means that this driver only works on systems the driver knows
      about.
      Signed-off-by: NHans de Goede <hdegoede@redhat.com>
      Signed-off-by: NAndy Shevchenko <andriy.shevchenko@linux.intel.com>
      4b2d688f
  11. 14 6月, 2020 1 次提交
    • M
      treewide: replace '---help---' in Kconfig files with 'help' · a7f7f624
      Masahiro Yamada 提交于
      Since commit 84af7a61 ("checkpatch: kconfig: prefer 'help' over
      '---help---'"), the number of '---help---' has been gradually
      decreasing, but there are still more than 2400 instances.
      
      This commit finishes the conversion. While I touched the lines,
      I also fixed the indentation.
      
      There are a variety of indentation styles found.
      
        a) 4 spaces + '---help---'
        b) 7 spaces + '---help---'
        c) 8 spaces + '---help---'
        d) 1 space + 1 tab + '---help---'
        e) 1 tab + '---help---'    (correct indentation)
        f) 1 tab + 1 space + '---help---'
        g) 1 tab + 2 spaces + '---help---'
      
      In order to convert all of them to 1 tab + 'help', I ran the
      following commend:
      
        $ find . -name 'Kconfig*' | xargs sed -i 's/^[[:space:]]*---help---/\thelp/'
      Signed-off-by: NMasahiro Yamada <masahiroy@kernel.org>
      a7f7f624
  12. 20 5月, 2020 1 次提交
  13. 06 5月, 2020 2 次提交
  14. 24 4月, 2020 4 次提交
  15. 29 3月, 2020 1 次提交
  16. 26 3月, 2020 1 次提交
  17. 20 3月, 2020 1 次提交
  18. 28 2月, 2020 1 次提交
  19. 10 2月, 2020 1 次提交
  20. 23 1月, 2020 1 次提交
  21. 14 1月, 2020 1 次提交
    • S
      platform/x86: Add support for Uncore frequency control · 49a474c7
      Srinivas Pandruvada 提交于
      Some server users set limits on the uncore frequency using MSR 620H, while
      running latency sensitive workloads. Here uncore frequency controls
      RING/LLC(last-level cache) clocks.
      
      But MSR control is not always possible from the user space, so this driver
      provides a sysfs interface to set max and min frequency limits. This MSR
      620H is a die scoped in multi-die system or package scoped in non multi-die
      systems.
      
      When this driver is loaded, a new directory is created under
       /sys/devices/system/cpu.
      
      For example on a two package Skylake server:
      $cd /sys/devices/system/cpu/intel_uncore_frequency
      
      $ls
      package_00_die_00 package_01_die_00
      
      $ls package_00_die_00
      max_freq_khz  min_freq_khz  initial_max_freq_khz
      initial_min_freq_khz
      
      $grep . *
          max_freq_khz:2400000
          min_freq_khz:1200000
          initial_max_freq_khz:2400000
          initial_min_freq_khz:1200000
      
      Here, initial_max_freq_khz and initial_min_freq_khz are read only
      attributes to show power up or initial values of max and min frequencies
      respectively. Other attributes are read-write, so that users can modify.
      Signed-off-by: NSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
      Signed-off-by: NAndy Shevchenko <andriy.shevchenko@linux.intel.com>
      49a474c7
  22. 10 1月, 2020 1 次提交
  23. 16 10月, 2019 1 次提交
  24. 15 10月, 2019 2 次提交