linux/Documentation/ABI/testing
Linus Torvalds 69afef4af4 gpio updates for v6.9
Serialization rework:
 - use SRCU to serialize access to the global GPIO device list, to GPIO device
   structs themselves and to GPIO descriptors
 - make the GPIO subsystem resilient to the GPIO providers being unbound while
   the API calls are in progress
 - don't dereference the SRCU-protected chip pointer if the information we need
   can be obtained from the GPIO device structure
 - move some of the information contained in struct gpio_chip to struct
   gpio_device to further reduce the need to dereference the former
 - pass the GPIO device struct instead of the GPIO chip to sysfs callback to,
   again, reduce the need for accessing the latter
 - get GPIO descriptors from the GPIO device, not from the chip for the same
   reason
 - allow for mostly lockless operation of the GPIO driver API: assure
   consistency with SRCU and atomic operations
 - remove the global GPIO spinlock
 - remove the character device RW semaphore
 
 Core GPIOLIB:
 - constify pointers in GPIO API where applicable
 - unify the GPIO counting APIs for ACPI and OF
 - provide a macro for iterating over all GPIOs, not only the ones that are
   requested
 - remove leftover typedefs
 - pass the consumer device to GPIO core in devm_fwnode_gpiod_get_index() for
   improved logging
 - constify the GPIO bus type
 - don't warn about removing GPIO chips with descriptors still held by users as
   we can now handle this situation gracefully
 - remove unused logging helpers
 - unexport functions that are only used internally in the GPIO subsystem
 - set the device type (assign the relevant struct device_type) for GPIO devices
 
 New drivers:
 - add the ChromeOS EC GPIO driver
 
 Driver improvements:
 - allow building gpio-vf610 with COMPILE_TEST as well as disabling it in
   menuconfig (before it was always built for i.MX cofigs)
 - count the number of EICs using the device properties instead of hard-coding
   it in gpio-eic-sprd
 - improve the device naming, extend the debugfs output and add lockdep asserts
   to gpio-sim
 
 DT bindings:
 - document the 'label' property for gpio-pca9570
 - convert aspeed,ast2400-gpio bindings to DT schema
 - disallow unevaluated properties for gpio-mvebu
 - document a new model in renesas,rcar-gpio
 
 Documentation:
 - improve the character device kerneldocs in user-space headers
 - add proper documentation for the character device uAPI (both v1 and v2)
 - move the sysfs and gpio-mockup docs into the "obsolete" section
 - improve naming consistency for GPIO terms
 - clarify the line values description for sysfs
 - minor docs improvements
 - improve the driver API contract for setting GPIO direction
 - mark unsafe APIs as deprecated in kerneldocs and suggest replacements
 
 Other:
 - remove an obsolete test from selftests
 -----BEGIN PGP SIGNATURE-----
 
 iQIzBAABCgAdFiEEFp3rbAvDxGAT0sefEacuoBRx13IFAmXu1ecACgkQEacuoBRx
 13JR7w//R3TswZ1uC9qkRjat9eA2KZUaI2QChlS7V/yXVcDHynuTlO/ZQmnnMdYL
 ch7T2cjPcW0OCt0UhcjamUmYtWaxe1e5GU3E42EosWUsojEzgGs0iNKe0R4SHYzv
 whlkFqO8+8IctYhiMpAU1PzP9N4YBqypwgCrTqHIrYuhz3MbPQxtCMkr7g0LTo8u
 Z3K0D3Y0LuwISWNYYhA20Bwemn1fEHXJ9f3pTeNaGh2dGZek9k9xd0zWcCxwhaYD
 CBTBiZXf57TUTJ2u+JG+au1ghEmmvBPlMpza+fazypbcvsiQxdGvv5QH1bTwyt4B
 woGq+biLLvlwfJ8BT7+09uni7gUyNL3wWkixlx/8Slkyti4xWqgZQ3WnhwN8yS4Y
 DbkTtzH/PIsjr1dZw6rnGoXi80lBEaok7LeI0QhybopTXQI+CnIbE/RBhzly8Mf8
 1cAVFjrF2gPuaTuheakRBw4LOhegf4a485fadJVEUeEpeF7/p9rDQWAbgohYUnCE
 gHPwkTOJuOZp+BlsTOyspnqxWnDVMtCnmi+q1o7JvEgXqAtzU7+1gz/wDpfsHgHQ
 oze6V2JvD2R3JkHmdqcIzq5yNwk1rOguOY3saNiwSk95JY+A8vhAe/gVykklKDXX
 oX/DPwlVd/0OR+0HCQ3r0pXK8BSRQ9qm/nUZNnLB+Rts9K1peIU=
 =LX+L
 -----END PGP SIGNATURE-----

Merge tag 'gpio-updates-for-v6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux

Pull gpio updates from Bartosz Golaszewski:
 "The biggest feature is the locking overhaul. Up until now the
  synchronization in the GPIO subsystem was broken. There was a single
  spinlock "protecting" multiple data structures but doing it wrong (as
  evidenced by several places where it would be released when a sleeping
  function was called and then reacquired without checking the protected
  state).

  We tried to use an RW semaphore before but the main issue with GPIO is
  that we have drivers implementing the interfaces in both sleeping and
  non-sleeping ways as well as user-facing interfaces that can be called
  both from process as well as atomic contexts. Both ends converge in
  the same code paths that can use neither spinlocks nor mutexes. The
  only reasonable way out is to use SRCU and go mostly lockless. To that
  end: we add several SRCU structs in relevant places and use them to
  assure consistency between API calls together with atomic reads and
  writes of GPIO descriptor flags where it makes sense.

  This code has spent several weeks in next and has received several
  fixes in the first week or two after which it stabilized nicely. The
  GPIO subsystem is now resilient to providers being suddenly unbound.
  We managed to also remove the existing character device RW semaphore
  and the obsolete global spinlock.

  Other than the locking rework we have one new driver (for Chromebook
  EC), much appreciated documentation improvements from Kent and the
  regular driver improvements, DT-bindings updates and GPIOLIB core
  tweaks.

  Serialization rework:
   - use SRCU to serialize access to the global GPIO device list, to
     GPIO device structs themselves and to GPIO descriptors
   - make the GPIO subsystem resilient to the GPIO providers being
     unbound while the API calls are in progress
   - don't dereference the SRCU-protected chip pointer if the
     information we need can be obtained from the GPIO device structure
   - move some of the information contained in struct gpio_chip to
     struct gpio_device to further reduce the need to dereference the
     former
   - pass the GPIO device struct instead of the GPIO chip to sysfs
     callback to, again, reduce the need for accessing the latter
   - get GPIO descriptors from the GPIO device, not from the chip for
     the same reason
   - allow for mostly lockless operation of the GPIO driver API: assure
     consistency with SRCU and atomic operations
   - remove the global GPIO spinlock
   - remove the character device RW semaphore

  Core GPIOLIB:
   - constify pointers in GPIO API where applicable
   - unify the GPIO counting APIs for ACPI and OF
   - provide a macro for iterating over all GPIOs, not only the ones
     that are requested
   - remove leftover typedefs
   - pass the consumer device to GPIO core in
     devm_fwnode_gpiod_get_index() for improved logging
   - constify the GPIO bus type
   - don't warn about removing GPIO chips with descriptors still held by
     users as we can now handle this situation gracefully
   - remove unused logging helpers
   - unexport functions that are only used internally in the GPIO
     subsystem
   - set the device type (assign the relevant struct device_type) for
     GPIO devices

  New drivers:
   - add the ChromeOS EC GPIO driver

  Driver improvements:
   - allow building gpio-vf610 with COMPILE_TEST as well as disabling it
     in menuconfig (before it was always built for i.MX cofigs)
   - count the number of EICs using the device properties instead of
     hard-coding it in gpio-eic-sprd
   - improve the device naming, extend the debugfs output and add
     lockdep asserts to gpio-sim

  DT bindings:
   - document the 'label' property for gpio-pca9570
   - convert aspeed,ast2400-gpio bindings to DT schema
   - disallow unevaluated properties for gpio-mvebu
   - document a new model in renesas,rcar-gpio

  Documentation:
   - improve the character device kerneldocs in user-space headers
   - add proper documentation for the character device uAPI (both v1 and v2)
   - move the sysfs and gpio-mockup docs into the "obsolete" section
   - improve naming consistency for GPIO terms
   - clarify the line values description for sysfs
   - minor docs improvements
   - improve the driver API contract for setting GPIO direction
   - mark unsafe APIs as deprecated in kerneldocs and suggest
     replacements

  Other:
   - remove an obsolete test from selftests"

* tag 'gpio-updates-for-v6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux: (79 commits)
  gpio: sysfs: repair export returning -EPERM on 1st attempt
  selftest: gpio: remove obsolete gpio-mockup test
  gpiolib: Deduplicate cleanup for-loop in gpiochip_add_data_with_key()
  dt-bindings: gpio: aspeed,ast2400-gpio: Convert to DT schema
  gpio: acpi: Make acpi_gpio_count() take firmware node as a parameter
  gpio: of: Make of_gpio_get_count() take firmware node as a parameter
  gpiolib: Pass consumer device through to core in devm_fwnode_gpiod_get_index()
  gpio: sim: use for_each_hwgpio()
  gpio: provide for_each_hwgpio()
  gpio: don't warn about removing GPIO chips with active users anymore
  gpio: sim: delimit the fwnode name with a ":" when generating labels
  gpio: sim: add lockdep asserts
  gpio: Add ChromeOS EC GPIO driver
  gpio: constify of_phandle_args in of_find_gpio_device_by_xlate()
  gpio: fix memory leak in gpiod_request_commit()
  gpio: constify opaque pointer "data" in gpio_device_find()
  gpio: cdev: fix a NULL-pointer dereference with DEBUG enabled
  gpio: uapi: clarify default_values being logical
  gpio: sysfs: fix inverted pointer logic
  gpio: don't let lockdep complain about inherently dangerous RCU usage
  ...
2024-03-13 11:14:55 -07:00
..
configfs-acpi
configfs-iio
configfs-most
configfs-rdma_cm
configfs-spear-pcie-gadget
configfs-stp-policy
configfs-stp-policy-p_sys-t
configfs-tsm configfs-tsm: Introduce a shared ABI for attestation reports 2023-10-19 18:11:38 -07:00
configfs-usb-gadget usb: gadget: add WebUSB landing page support 2023-01-19 14:14:44 +01:00
configfs-usb-gadget-acm
configfs-usb-gadget-ecm
configfs-usb-gadget-eem
configfs-usb-gadget-ffs
configfs-usb-gadget-hid
configfs-usb-gadget-loopback
configfs-usb-gadget-mass-storage USB: docs: fixed table margin in configfs-usb-gadget-mass-storage 2022-07-23 13:03:48 +02:00
configfs-usb-gadget-midi
configfs-usb-gadget-midi2 usb: gadget: midi2: More flexible MIDI 1.0 configuration 2023-07-26 06:38:14 +02:00
configfs-usb-gadget-ncm
configfs-usb-gadget-obex
configfs-usb-gadget-phonet
configfs-usb-gadget-printer
configfs-usb-gadget-rndis
configfs-usb-gadget-serial
configfs-usb-gadget-sourcesink
configfs-usb-gadget-subset
configfs-usb-gadget-tcm
configfs-usb-gadget-uac1 usb: gadget: f_uac1: allow changing interface name via configfs 2022-01-26 14:10:40 +01:00
configfs-usb-gadget-uac1_legacy
configfs-usb-gadget-uac2 usb: gadget: f_uac2: allow changing terminal types through configfs 2023-10-05 09:35:43 +02:00
configfs-usb-gadget-uvc usb: gadget: uvc: Make bmControls attr read/write 2023-03-29 08:51:26 +02:00
debugfs-cec-error-inj
debugfs-cros-ec platform/chrome: cros_ec: Expose suspend_timeout_ms in debugfs 2022-08-24 02:37:07 +00:00
debugfs-cxl cxl/mem: Add debugfs attributes for poison inject and clear 2023-04-23 12:08:39 -07:00
debugfs-dell-wmi-ddv platform/x86: dell-ddv: Update ABI documentation 2023-05-09 11:54:42 +02:00
debugfs-driver-dcc soc: qcom: dcc: rewrite description of dcc sysfs files 2023-01-06 17:51:42 -06:00
debugfs-driver-genwqe
debugfs-driver-habanalabs accel/habanalabs: update debugfs-driver-habanalabs with the device-name directory 2023-12-19 11:09:44 +02:00
debugfs-driver-qat crypto: qat - add cnv_errors debugfs file 2023-10-13 18:31:07 +08:00
debugfs-driver-qat_telemetry crypto: qat - add support for ring pair level telemetry 2023-12-29 11:25:56 +08:00
debugfs-ec
debugfs-hisi-hpre crypto: hisilicon/qm - simplify the status of qm 2023-12-01 18:03:26 +08:00
debugfs-hisi-sec crypto: hisilicon/qm - simplify the status of qm 2023-12-01 18:03:26 +08:00
debugfs-hisi-zip crypto: hisilicon/qm - simplify the status of qm 2023-12-01 18:03:26 +08:00
debugfs-hyperv
debugfs-ideapad
debugfs-intel-iommu iommu/vt-d: Add the document for Intel IOMMU debugfs 2024-03-01 13:51:19 +01:00
debugfs-moxtet
debugfs-olpc
debugfs-pfo-nx-crypto
debugfs-pktcdvd Revert "pktcdvd: remove driver." 2023-01-04 14:44:13 -07:00
debugfs-scmi firmware: arm_scmi: Add debugfs ABI documentation for common entries 2023-01-20 11:41:11 +00:00
debugfs-scmi-raw firmware: arm_scmi: Clarify raw per-channel ABI documentation 2023-01-20 14:11:38 +00:00
debugfs-tpmi doc: TPMI: Add debugfs documentation 2023-07-14 15:24:57 +02:00
debugfs-turris-mox-rwtm
debugfs-vfio Documentation: add debugfs description for vfio 2023-12-04 14:29:39 -07:00
debugfs-wilco-ec
dell-smbios-wmi platform/x86: Update Mario Limonciello's email address in the docs 2021-08-13 13:18:15 +02:00
dev-kmsg
devlink-resource-mlxsw
evm ABI: evm: place a second what at the next line 2021-09-28 12:45:42 +02:00
gpio-cdev Documentation: ABI: update gpio-cdev to reference chardev.rst 2024-01-22 10:47:53 +01:00
ima_policy integrity: Always reference the blacklist keyring with appraisal 2023-08-01 08:17:25 -04:00
ppc-memtrace
procfs-attr-current
procfs-attr-exec
procfs-attr-prev
procfs-diskstats Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
procfs-smaps_rollup mm/smaps: add Pss_Dirty 2022-07-03 18:08:49 -07:00
pstore ABI: pstore: Fix What field 2021-09-21 18:31:16 +02:00
rtc-cdev
securityfs-secrets-coco virt: Add efi_secret module to expose confidential computing secrets 2022-04-13 19:11:20 +02:00
sysfs-amd-pmc platform/x86/amd: pmc: Add sysfs files for SMU 2022-09-19 13:48:38 +02:00
sysfs-amd-pmf Documentation/ABI/testing/sysfs-amd-pmf: Add ABI doc for AMD PMF 2022-09-22 17:42:53 +02:00
sysfs-ata ata: libata-transport: fix {dma|pio|xfer}_mode sysfs files 2022-06-09 09:25:25 +09:00
sysfs-block-aoe
sysfs-block-bcache
sysfs-block-device scsi: core: Allow enabling and disabling command duration limits 2023-05-22 17:05:19 -04:00
sysfs-block-dm
sysfs-block-loop
sysfs-block-rnbd
sysfs-block-rssd
sysfs-block-zram Docs/ABI/zram: document zram recompress sysfs knobs 2022-11-30 15:58:53 -08:00
sysfs-bus-acpi
sysfs-bus-amba
sysfs-bus-bcma Documentation/ABI: correct possessive "its" typos 2022-09-27 13:21:43 -06:00
sysfs-bus-cdx cdx: create sysfs bin files for cdx resources 2024-01-04 17:01:13 +01:00
sysfs-bus-coreboot Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-coresight-devices-cti
sysfs-bus-coresight-devices-etb10
sysfs-bus-coresight-devices-etm3x Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-coresight-devices-etm4x Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-coresight-devices-funnel
sysfs-bus-coresight-devices-stm
sysfs-bus-coresight-devices-tmc coresight: tmc: Make etr buffer mode user configurable from sysfs 2023-11-16 11:35:12 +00:00
sysfs-bus-coresight-devices-tpdm Documentation: ABI: coresight-tpdm: Fix Bit[3] description indentation 2023-11-16 11:35:40 +00:00
sysfs-bus-coresight-devices-trbe
sysfs-bus-coresight-devices-ultra_smb Documentation: Add document for UltraSoc SMB driver 2023-01-16 10:16:15 +00:00
sysfs-bus-counter Documentation: ABI: sysfs-bus-counter: Fix indentation 2023-08-16 09:41:29 -04:00
sysfs-bus-css docs/ABI: use linux-s390 list as the main contact 2023-01-13 14:15:07 +01:00
sysfs-bus-cxl cxl: Export sysfs attributes for memory device QoS class 2023-12-22 15:46:02 -08:00
sysfs-bus-dfl
sysfs-bus-dfl-devices-emif
sysfs-bus-dfl-devices-n3000-nios
sysfs-bus-event_source-devices-caps perf: Add branch stack counters 2023-10-27 15:05:08 +02:00
sysfs-bus-event_source-devices-dfl_fme
sysfs-bus-event_source-devices-dsa
sysfs-bus-event_source-devices-events Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-event_source-devices-format
sysfs-bus-event_source-devices-hv_24x7
sysfs-bus-event_source-devices-hv_gpci docs: ABI: sysfs-bus-event_source-devices-hv_gpci: Document affinity_domain_via_partition sysfs interface file 2023-08-16 23:54:49 +10:00
sysfs-bus-event_source-devices-iommu iommu/vt-d: Support cpumask for IOMMU perfmon 2023-02-03 11:06:08 +01:00
sysfs-bus-event_source-devices-uncore perf/x86/intel/uncore: Add alias PMU name 2021-07-02 15:58:40 +02:00
sysfs-bus-fcoe Documentation/ABI: correct possessive "its" typos 2022-09-27 13:21:43 -06:00
sysfs-bus-fsi
sysfs-bus-fsi-devices-sbefifo Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-fsl-mc
sysfs-bus-hsi
sysfs-bus-i2c-devices-bq32k
sysfs-bus-i2c-devices-fsa9480 Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-i2c-devices-hm6352
sysfs-bus-i2c-devices-lm3533
sysfs-bus-i2c-devices-pca954x
sysfs-bus-i3c i3c: document hotjoin sysfs entry 2024-01-15 00:21:14 +01:00
sysfs-bus-iio iio: ABI: document temperature and humidity peak/trough raw attributes 2023-12-11 19:37:10 +00:00
sysfs-bus-iio-accel-adxl372
sysfs-bus-iio-accel-bmc150
sysfs-bus-iio-adc-ad4130 Documentation: ad4130: format list of in_voltage-voltage_filter_mode_available modes 2022-11-23 19:52:55 +00:00
sysfs-bus-iio-adc-ad7192
sysfs-bus-iio-adc-ad7280a iio:adc:ad7280a: Document ABI for cell balance switches 2022-02-21 19:33:05 +00:00
sysfs-bus-iio-adc-envelope-detector
sysfs-bus-iio-adc-hi8435
sysfs-bus-iio-adc-max9611
sysfs-bus-iio-adc-max11410 Documentation: ABI: testing: add max11410 doc 2022-11-23 19:43:59 +00:00
sysfs-bus-iio-adc-mcp3564 iio: adc: adding support for MCP3564 ADC 2023-09-12 10:42:04 +01:00
sysfs-bus-iio-adc-mt6360
sysfs-bus-iio-adc-stm32
sysfs-bus-iio-bno055 iio: document bno055 private sysfs attributes 2022-09-21 18:42:56 +01:00
sysfs-bus-iio-cdc-ad7746 iio: cdc: ad7746: Add device specific ABI documentation. 2022-08-15 22:30:01 +01:00
sysfs-bus-iio-chemical-sgp40 iio: chemical: Add driver support for sgp40 2021-08-08 15:19:18 +01:00
sysfs-bus-iio-chemical-sunrise-co2 iio: ABI: docs: Document Senseair Sunrise ABI 2021-10-19 08:27:31 +01:00
sysfs-bus-iio-chemical-vz89x
sysfs-bus-iio-cros-ec
sysfs-bus-iio-dac-ad5766
sysfs-bus-iio-dac-dpot-dac
sysfs-bus-iio-dac-ltc2688 iio: ABI: add ABI file for the LTC2688 DAC 2022-03-01 22:13:53 +00:00
sysfs-bus-iio-dfsdm-adc-stm32
sysfs-bus-iio-distance-srf08
sysfs-bus-iio-dma-buffer
sysfs-bus-iio-filter-admv8818 Documentation: ABI: testing: admv8818: add bypass 2023-08-08 09:51:06 +01:00
sysfs-bus-iio-frequency-ad9523
sysfs-bus-iio-frequency-adf4350
sysfs-bus-iio-frequency-adf4371
sysfs-bus-iio-frequency-admv1013 Documentation:ABI:testing:admv1013: add ABI docs 2021-12-23 11:53:48 +00:00
sysfs-bus-iio-frequency-admv1014 Documentation: ABI: testing: admv1014: add ABI docs 2022-02-21 19:33:06 +00:00
sysfs-bus-iio-gyro-bmg160
sysfs-bus-iio-health-afe440x
sysfs-bus-iio-humidity
sysfs-bus-iio-impedance-analyzer-ad5933
sysfs-bus-iio-ina2xx-adc
sysfs-bus-iio-isl29501
sysfs-bus-iio-light-isl29018
sysfs-bus-iio-light-lm3533-als
sysfs-bus-iio-light-si1133
sysfs-bus-iio-light-tsl2583
sysfs-bus-iio-light-tsl2772
sysfs-bus-iio-magnetometer-hmc5843
sysfs-bus-iio-meas-spec
sysfs-bus-iio-mpu6050
sysfs-bus-iio-potentiometer-mcp4531
sysfs-bus-iio-proximity Documentation/ABI: correct possessive "its" typos 2022-09-27 13:21:43 -06:00
sysfs-bus-iio-proximity-as3935
sysfs-bus-iio-resolver-ad2s1210 iio: resolver: ad2s1210: move out of staging 2023-10-12 09:20:50 +01:00
sysfs-bus-iio-sps30
sysfs-bus-iio-sx9310
sysfs-bus-iio-sx9324 iio: proximity: sx9324: add empty line in front of bullet list 2022-07-18 18:55:59 +01:00
sysfs-bus-iio-thermocouple iio: ABI: temperature: Unify documentation for thermocouple fault detection. 2022-07-18 18:38:27 +01:00
sysfs-bus-iio-timer-stm32 iio: ABI: stm32-timer-trigger: Fuse unusual ABI into main doc. 2022-07-18 18:38:34 +01:00
sysfs-bus-iio-trigger-sysfs
sysfs-bus-iio-vf610 iio: adc: vf610: fix conversion mode sysfs node name 2022-06-19 17:22:49 +01:00
sysfs-bus-intel_th-devices-gth
sysfs-bus-intel_th-devices-msc
sysfs-bus-intel_th-devices-pti
sysfs-bus-intel_th-output-devices
sysfs-bus-mcb
sysfs-bus-mdio ABI: sysfs-bus-mdio: add alternate What for mdio symbols 2021-09-28 12:48:15 +02:00
sysfs-bus-media
sysfs-bus-mei
sysfs-bus-mmc
sysfs-bus-most
sysfs-bus-moxtet-devices
sysfs-bus-nfit Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-nvdimm docs: ABI: fix an RST error in sysfs-bus-nvdimm 2023-07-21 14:44:47 -06:00
sysfs-bus-optee-devices tee: optee: Fix supplicant based device enumeration 2023-11-03 09:27:20 +01:00
sysfs-bus-papr-pmem docs: move powerpc under arch 2023-10-10 13:35:55 -06:00
sysfs-bus-pci ABI: sysfs-bus-pci: add documentation for p2pmem allocate 2022-11-09 11:29:21 -07:00
sysfs-bus-pci-devices-aer_stats
sysfs-bus-pci-devices-catpt
sysfs-bus-pci-devices-cciss
sysfs-bus-pci-devices-pvpanic
sysfs-bus-pci-drivers-ehci_hcd
sysfs-bus-pci-drivers-janz-cmodio
sysfs-bus-pci-drivers-xhci_hcd xhci: dbc: Provide sysfs option to configure dbc descriptors 2023-03-23 17:25:22 +01:00
sysfs-bus-peci peci: Add sysfs interface for PECI bus 2022-02-09 08:04:44 +01:00
sysfs-bus-platform ABI: sysfs-bus-platform: add modalias description 2021-09-28 12:48:16 +02:00
sysfs-bus-platform-devices-ampere-smpro misc: smpro-errmon: Add dimm training failure syndrome 2023-03-10 09:47:16 +01:00
sysfs-bus-platform-devices-occ-hwmon docs: ABI: testing: Document the OCC hwmon FFDC binary interface 2021-10-22 09:54:32 +10:30
sysfs-bus-platform-onboard-usb-hub usb: misc: Add onboard_usb_hub driver 2022-07-08 14:53:50 +02:00
sysfs-bus-rapidio ABI: sysfs-bus-rapidio: use wildcards on What definitions 2021-09-21 18:31:15 +02:00
sysfs-bus-rbd
sysfs-bus-rpmsg
sysfs-bus-siox
sysfs-bus-soundwire-master ABI: sysfs-bus-soundwire-master: use wildcards on What definitions 2021-10-01 10:06:01 +05:30
sysfs-bus-soundwire-slave ABI: sysfs-bus-soundwire-slave: use wildcards on What definitions 2021-10-01 10:06:01 +05:30
sysfs-bus-spi-devices-spi-nor mtd: spi-nor: sysfs: hide the flash name if not set 2023-12-19 05:08:23 +02:00
sysfs-bus-surface_aggregator-tabletsw platform/surface: Add KIP/POS tablet-mode switch driver 2022-07-02 11:11:21 +02:00
sysfs-bus-thunderbolt Documentation/ABI: thunderbolt: Replace 01.org in contact 2023-08-08 08:13:22 +03:00
sysfs-bus-typec
sysfs-bus-usb usb: typec: Link enumerated USB devices with Type-C partner 2023-10-16 20:02:36 +02:00
sysfs-bus-usb-devices-usbsevseg
sysfs-bus-usb-lvstest
sysfs-bus-vdpa Documentation: update mailing list addresses 2024-02-21 13:44:21 -07:00
sysfs-bus-vfio-mdev
sysfs-bus-vmbus
sysfs-c2port
sysfs-cfq-target-latency
sysfs-class Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-backlight
sysfs-class-backlight-driver-lm3533
sysfs-class-backlight-lm3639
sysfs-class-bdi mm: document /sys/class/bdi/<bdi>/min_ratio_fine knob 2022-11-30 15:59:06 -08:00
sysfs-class-bsr
sysfs-class-chromeos
sysfs-class-chromeos-driver-cros-ec-lightbar
sysfs-class-chromeos-driver-cros-ec-vbc
sysfs-class-cxl Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-devfreq PM / devfreq: Fix buffer overflow in trans_stat_show 2023-11-13 10:48:49 +09:00
sysfs-class-devfreq-event ABI: sysfs-class-devfreq-event: use the right wildcards on What 2021-09-21 18:31:15 +02:00
sysfs-class-devlink
sysfs-class-extcon ABI: sysfs-class-extcon: use uppercase X for wildcards 2021-10-05 16:25:22 +02:00
sysfs-class-fc scsi: documentation: Document Fibre Channel sysfs node for appid 2021-09-14 23:38:58 -04:00
sysfs-class-fc_host
sysfs-class-fc_remote_ports
sysfs-class-firmware firmware_loader: Update contact emails for ABI docs 2023-10-05 11:20:54 +02:00
sysfs-class-firmware-attributes platform/x86: think-lmi: Add bulk save feature 2023-09-21 18:29:29 +02:00
sysfs-class-fpga-bridge
sysfs-class-fpga-manager
sysfs-class-fpga-region
sysfs-class-gnss ABI: sysfs-class-gnss: use wildcards on What definitions 2021-09-21 18:31:16 +02:00
sysfs-class-hwmon ABI: sysfs-class-hwmon: document emergency/max/min temperature alarms 2023-12-11 06:21:00 -08:00
sysfs-class-intel_pmt
sysfs-class-iommu
sysfs-class-iommu-amd-iommu
sysfs-class-iommu-intel-iommu
sysfs-class-lcd
sysfs-class-led leds: class: Don't expose color sysfs entry 2023-11-22 11:46:03 +00:00
sysfs-class-led-driver-aw200xx leds: Add AW20xx driver 2023-06-01 19:46:35 +01:00
sysfs-class-led-driver-lm3533
sysfs-class-led-driver-turris-omnia leds: turris-omnia: Add support for enabling/disabling HW gamma correction 2023-11-01 11:28:48 +00:00
sysfs-class-led-flash
sysfs-class-led-multicolor
sysfs-class-led-trigger-netdev docs: ABI: sysfs-class-led-trigger-netdev: Add new modes and entry 2023-12-13 11:24:55 +00:00
sysfs-class-led-trigger-oneshot
sysfs-class-led-trigger-pattern
sysfs-class-led-trigger-tty leds: ledtrig-tty: Add additional line state evaluation 2023-12-13 11:28:51 +00:00
sysfs-class-led-trigger-usbport
sysfs-class-leds-gt683r
sysfs-class-mei ABI: sysfs-class-mei: use wildcards on What definitions 2021-09-21 18:31:16 +02:00
sysfs-class-mic ABI: sysfs-class-mic: use the right wildcards on What definitions 2021-09-21 18:31:16 +02:00
sysfs-class-mtd Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-mux ABI: sysfs-class-mux: use wildcards on What definitions 2021-09-21 18:31:16 +02:00
sysfs-class-net Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-net-cdc_ncm
sysfs-class-net-dsa
sysfs-class-net-grcan
sysfs-class-net-janz-ican3
sysfs-class-net-peak_usb can: peak_usb: export PCAN CAN channel ID as sysfs device attribute 2023-02-02 17:39:25 +01:00
sysfs-class-net-phydev
sysfs-class-net-qmi Documentation: ABI: sysfs-class-net-qmi: pass_through contact update 2023-07-03 09:25:50 +01:00
sysfs-class-net-queues net: dqs: add NIC stall detector based on BQL 2024-03-08 10:23:26 +00:00
sysfs-class-net-statistics net: sysfs: Fix /sys/class/net/<iface> path for statistics 2024-02-12 12:13:50 +00:00
sysfs-class-ocxl
sysfs-class-pktcdvd Revert "pktcdvd: remove driver." 2023-01-04 14:44:13 -07:00
sysfs-class-power ABI: testing: sysfs-class-power: Document absence of "present" property 2023-02-25 01:16:50 +01:00
sysfs-class-power-ltc4162l
sysfs-class-power-mp2629
sysfs-class-power-rt9467 Documentation: power: rt9467: Document exported sysfs entries 2023-02-03 17:09:42 +01:00
sysfs-class-power-rt9471 Documentation: power: rt9471: Document exported sysfs entries 2023-02-03 14:39:20 +01:00
sysfs-class-power-surface
sysfs-class-power-twl4030
sysfs-class-power-wilco Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-powercap
sysfs-class-pwm docs: ABI: sysfs-class-pwm: Update Lee Jones' email address 2022-07-14 16:46:53 +02:00
sysfs-class-rapidio ABI: sysfs-class-rapidio: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-class-rc ABI: sysfs-class-rc: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-class-rc-nuvoton ABI: sysfs-class-rc-nuvoton: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-class-regulator regulator: core: Add error flags to sysfs attributes 2022-05-04 15:31:26 +01:00
sysfs-class-remoteproc Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-rnbd-client
sysfs-class-rnbd-server
sysfs-class-rtc
sysfs-class-rtc-rtc0-device-rtc_calibration
sysfs-class-rtrs-client sysfs docs: ABI: Fix typo in comment 2022-07-28 16:32:33 +02:00
sysfs-class-rtrs-server sysfs docs: ABI: Fix typo in comment 2022-07-28 16:32:33 +02:00
sysfs-class-scsi_host
sysfs-class-scsi_tape
sysfs-class-spi-eeprom nvmem: prepare basics for FRAM support 2021-06-11 12:23:10 +02:00
sysfs-class-stm
sysfs-class-stm_source
sysfs-class-switchtec
sysfs-class-thermal Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-typec usb: typec: USB Power Delivery helpers for ports and partners 2022-06-12 06:49:47 +02:00
sysfs-class-usb_power_delivery usb: pd: Exposing the Peak Current value of Fixed Supplies to user space 2023-10-02 16:38:29 +02:00
sysfs-class-usb_role
sysfs-class-vduse Docs/ABI/testing: Add VDUSE sysfs interface ABI document 2022-06-27 16:42:52 +02:00
sysfs-class-wakeup
sysfs-class-watchdog watchdog: report options in sysfs 2023-02-18 15:11:40 +01:00
sysfs-class-zram
sysfs-dev
sysfs-devices
sysfs-devices-consumer
sysfs-devices-coredump
sysfs-devices-edac
sysfs-devices-firmware_node
sysfs-devices-hisi_ptt hwtracing: hisi_ptt: Export available filters through sysfs 2023-06-21 11:52:09 +01:00
sysfs-devices-lpss_ltr
sysfs-devices-mapping perf/x86/intel/uncore: Update sysfs-devices-mapping file 2022-11-24 11:09:24 +01:00
sysfs-devices-memory crash: memory and CPU hotplug sysfs attributes 2023-08-24 16:25:14 -07:00
sysfs-devices-mmc
sysfs-devices-online Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-devices-physical_location driver core: Add sysfs support for physical location of a device 2022-04-27 09:51:57 +02:00
sysfs-devices-platform-_UDC_-gadget
sysfs-devices-platform-ACPI-TAD sysfs docs: ABI: Fix typo in comment 2022-07-28 16:32:33 +02:00
sysfs-devices-platform-docg3
sysfs-devices-platform-dock ABI: sysfs-devices-platform-dock: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-devices-platform-ipmi
sysfs-devices-platform-kunpeng_hccs doc: kunpeng_hccs: Fix incorrect email domain name 2023-12-07 06:16:34 +00:00
sysfs-devices-platform-sh_mobile_lcdc_fb
sysfs-devices-platform-soc-ipa net: ipa: add an endpoint device attribute group 2022-07-20 21:03:26 -07:00
sysfs-devices-platform-stratix10-rsu
sysfs-devices-platform-trackpoint
sysfs-devices-power sysfs docs: ABI: Fix typo in comment 2022-07-28 16:32:33 +02:00
sysfs-devices-power_resources_D0
sysfs-devices-power_resources_D1
sysfs-devices-power_resources_D2
sysfs-devices-power_resources_D3hot
sysfs-devices-power_resources_wakeup
sysfs-devices-power_state
sysfs-devices-real_power_state
sysfs-devices-removable ABI: sysfs-devices-removable: make a table valid as ReST markup 2021-09-28 12:45:22 +02:00
sysfs-devices-resource_in_use
sysfs-devices-soc docs: ABI: sysfs-devices-soc: Update Lee Jones' email address 2022-07-14 16:46:55 +02:00
sysfs-devices-software_node
sysfs-devices-state_synced driver core: Make state_synced device attribute writeable 2023-03-10 09:06:22 +01:00
sysfs-devices-sun
sysfs-devices-supplier
sysfs-devices-system-cpu x86/rfds: Mitigate Register File Data Sampling (RFDS) 2024-03-11 13:13:48 -07:00
sysfs-devices-system-ibm-rtl
sysfs-devices-system-xen_cpu
sysfs-devices-vfio-dev vfio: Add struct device to vfio_device 2022-09-21 14:15:11 -06:00
sysfs-devices-waiting_for_supplier
sysfs-devices-xenbus
sysfs-driver-altera-cvp
sysfs-driver-aspeed-uart-routing docs/ABI: testing: aspeed-uart-routing: Escape asterisk 2022-02-08 09:52:41 +01:00
sysfs-driver-bd9571mwv-regulator dt-bindings: mfd: bd9571mwv: update rohm,bd9571mwv.yaml reference 2022-06-06 12:16:59 -05:00
sysfs-driver-ccp crypto: ccp - Add support for displaying PSP firmware versions 2023-07-20 22:13:16 +12:00
sysfs-driver-chromeos-acpi platform/chrome: chromeos_acpi: print hex string for ACPI_TYPE_BUFFER 2023-08-10 11:10:56 +08:00
sysfs-driver-eud usb: misc: eud: Fix eud sysfs path (use 'qcom_eud') 2023-05-29 15:55:16 +01:00
sysfs-driver-fsi-master-gpio
sysfs-driver-ge-achc Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-driver-genwqe
sysfs-driver-habanalabs accel/habanalabs: add parent_device sysfs attribute 2023-12-19 11:09:44 +02:00
sysfs-driver-hid
sysfs-driver-hid-corsair
sysfs-driver-hid-lenovo
sysfs-driver-hid-logitech-hidpp
sysfs-driver-hid-logitech-lg4ff
sysfs-driver-hid-multitouch
sysfs-driver-hid-ntrig
sysfs-driver-hid-picolcd
sysfs-driver-hid-prodikeys
sysfs-driver-hid-roccat-kone
sysfs-driver-hid-srws1
sysfs-driver-hid-wiimote
sysfs-driver-input-axp-pek
sysfs-driver-input-cros-ec-keyb
sysfs-driver-input-exc3000
sysfs-driver-intc_sar platform/x86: BIOS SAR driver for Intel M.2 Modem 2021-08-20 12:09:41 +02:00
sysfs-driver-intel-i915-hwmon drm/hwmon: Fix abi doc warnings 2024-02-01 12:04:52 +01:00
sysfs-driver-intel-m10-bmc mfd: intel-m10-bmc: Change contact for ABI docs 2023-11-01 10:02:16 +00:00
sysfs-driver-intel-m10-bmc-sec-update fpga: m10bmc-sec: Change contact for secure update driver 2023-10-24 19:32:39 +02:00
sysfs-driver-intel-rapid-start
sysfs-driver-intel-xe-hwmon drm/hwmon: Fix abi doc warnings 2024-02-01 12:04:52 +01:00
sysfs-driver-intel_sdsi platform/x86/intel/sdsi: Add meter certificate support 2022-11-21 10:55:35 +01:00
sysfs-driver-jz4780-efuse
sysfs-driver-pciback
sysfs-driver-ppi
sysfs-driver-qat crypto: qat - add num_rps sysfs attribute 2023-10-27 18:04:28 +08:00
sysfs-driver-qat_ras crypto: qat - add error counters 2023-10-27 18:04:27 +08:00
sysfs-driver-qat_rl crypto: qat - add rate limiting sysfs interface 2023-10-27 18:04:28 +08:00
sysfs-driver-samsung-laptop
sysfs-driver-st
sysfs-driver-tegra-fuse Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-driver-toshiba_acpi
sysfs-driver-toshiba_haps
sysfs-driver-typec-displayport usb: typec: altmodes/displayport: Add hpd sysfs attribute 2023-01-06 16:36:03 +01:00
sysfs-driver-uacce Documentation: add the device isolation feature sysfs nodes for uacce 2023-01-20 12:06:26 +01:00
sysfs-driver-ucsi-ccg
sysfs-driver-ufs Merge patch series "Add UFS RTC support" 2023-12-13 23:17:17 -05:00
sysfs-driver-w1_ds28e17
sysfs-driver-w1_therm
sysfs-driver-wacom
sysfs-driver-xdata
sysfs-driver-xen-blkback xen-blkback: Apply 'feature_persistent' parameter when connect 2022-08-12 12:13:51 +02:00
sysfs-driver-xen-blkfront xen-blkfront: Apply 'feature_persistent' parameter when connect 2022-08-12 12:13:54 +02:00
sysfs-driver-xilinx-tmr-manager drivers: misc: Add Support for TMR Manager 2023-01-20 13:09:30 +01:00
sysfs-driver-zynqmp-fpga fpga: zynqmp-fpga: Adds status interface 2023-03-09 17:33:19 +01:00
sysfs-firmware-acpi Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-firmware-dmi-entries Documentation: Drop or replace remaining mentions of IA64 2023-09-11 08:13:18 +00:00
sysfs-firmware-dmi-tables
sysfs-firmware-efi
sysfs-firmware-efi-esrt ABI: sysfs-firmware-efi-esrt: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-firmware-efi-runtime-map
sysfs-firmware-gsmi
sysfs-firmware-initrd initramfs: Expose retained initrd as sysfs file 2023-12-15 17:23:00 +01:00
sysfs-firmware-lefi-boardinfo
sysfs-firmware-log
sysfs-firmware-memmap docs: ABI: testing: sysfs-firmware-memmap: add some memmap types. 2021-06-24 16:24:51 +02:00
sysfs-firmware-ofw
sysfs-firmware-opal-powercap
sysfs-firmware-opal-psr
sysfs-firmware-opal-sensor-groups
sysfs-firmware-papr-energy-scale-info powerpc/pseries: Interface to represent PAPR firmware attributes 2022-03-08 00:05:00 +11:00
sysfs-firmware-qemu_fw_cfg docs: ABI: correct QEMU fw_cfg spec path 2022-07-20 15:01:43 -06:00
sysfs-firmware-sgi_uv Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-firmware-turris-mox-rwtm
sysfs-fs-erofs Documentation/ABI: sysfs-fs-erofs: update supported features 2023-02-15 08:11:27 +08:00
sysfs-fs-ext4
sysfs-fs-f2fs f2fs: show more discard status by sysfs 2023-12-26 13:07:26 -08:00
sysfs-fs-nilfs2
sysfs-fs-ubifs ubifs: Document sysfs nodes 2021-12-23 20:23:42 +01:00
sysfs-fs-xfs
sysfs-hypervisor-xen
sysfs-ibft
sysfs-kernel-address_bits kernels/ksysfs.c: export kernel address bits 2023-01-20 14:30:45 +01:00
sysfs-kernel-boot_params
sysfs-kernel-btf
sysfs-kernel-cpu_byteorder kernel/ksysfs.c: export kernel cpu byteorder 2022-11-10 19:07:31 +01:00
sysfs-kernel-dmabuf-buffers dma-buf: Delete the DMA-BUF attachment sysfs statistics 2021-07-20 11:06:59 +02:00
sysfs-kernel-fadump
sysfs-kernel-fscaps
sysfs-kernel-iommu_groups iommu: Cleanup iommu_change_dev_def_domain() 2023-03-22 15:45:17 +01:00
sysfs-kernel-irq
sysfs-kernel-livepatch livepatch: add sysfs entry "patched" for each klp_object 2022-09-23 16:06:18 +02:00
sysfs-kernel-mm
sysfs-kernel-mm-cma
sysfs-kernel-mm-damon Docs/ABI/damon: document DAMOS quota goals 2023-12-12 10:57:04 -08:00
sysfs-kernel-mm-hugepages
sysfs-kernel-mm-ksm mm: add new KSM process and sysfs knobs 2023-04-21 14:52:03 -07:00
sysfs-kernel-mm-memory-tiers memory tier, sysfs: rename attribute "nodes" to "nodelist" 2022-10-28 13:37:22 -07:00
sysfs-kernel-mm-numa mm/migrate: add sysfs interface to enable reclaim migration 2021-09-03 09:58:16 -07:00
sysfs-kernel-mm-swap
sysfs-kernel-oops_count exit: Expose "oops_count" to sysfs 2022-12-01 08:50:38 -08:00
sysfs-kernel-reboot
sysfs-kernel-slab docs: rename Documentation/vm to Documentation/mm 2022-06-27 12:52:53 -07:00
sysfs-kernel-vmcoreinfo
sysfs-kernel-warn_count docs: Fix path paste-o for /sys/kernel/warn_count 2022-12-14 14:37:59 -08:00
sysfs-mce x86/mce: Remove the tolerance level control 2022-02-23 11:09:25 +01:00
sysfs-memory-page-offline Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-module xen: speed up grant-table reclaim 2023-07-27 07:53:12 +02:00
sysfs-nvmem-cells nvmem: include bit index in cell sysfs file name 2024-02-14 16:28:16 +01:00
sysfs-ocfs2 docs: update ocfs2-devel mailing list address 2023-07-08 09:29:29 -07:00
sysfs-platform-asus-laptop
sysfs-platform-asus-wmi platform/x86: asus-wmi: expose dGPU and CPU tunables for ROG 2023-07-12 17:17:44 +02:00
sysfs-platform-at91
sysfs-platform-brcmstb-gisb-arb
sysfs-platform-brcmstb-memc Documentation: sysfs: Document Broadcom STB memc sysfs knobs 2022-08-18 09:11:45 +03:00
sysfs-platform-chipidea-usb-otg
sysfs-platform-chipidea-usb2 usb: chipidea: clarify Documentation/ABI text 2022-09-27 13:21:44 -06:00
sysfs-platform-dell-laptop Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-platform-dell-privacy-wmi ABI: sysfs-platform-dell-privacy-wmi: correct ABI entries 2021-10-11 14:52:02 +02:00
sysfs-platform-dell-smbios platform/x86: Update Mario Limonciello's email address in the docs 2021-08-13 13:18:15 +02:00
sysfs-platform-dell-wmi-ddv platform/x86: dell-ddv: Update ABI documentation 2023-05-09 11:54:42 +02:00
sysfs-platform-dfl-fme Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-platform-dfl-port
sysfs-platform-dptf ABI: sysfs-platform-dptf: Add tables markup to a table 2021-09-28 12:45:21 +02:00
sysfs-platform-eeepc-laptop
sysfs-platform-hidma dmaengine: qcom_hidma: Update codeaurora email domain 2023-08-07 00:01:41 +05:30
sysfs-platform-hidma-mgmt dmaengine: qcom_hidma: Update codeaurora email domain 2023-08-07 00:01:41 +05:30
sysfs-platform-i2c-demux-pinctrl
sysfs-platform-ideapad-laptop
sysfs-platform-intel-ifs Documentation/ABI: Update IFS ABI doc 2023-03-27 16:10:20 +02:00
sysfs-platform-intel-pmc ABI: sysfs-platform-intel-pmc: add blank lines to make it valid for ReST 2021-10-11 14:52:02 +02:00
sysfs-platform-intel-wmi-sbl-fw-update
sysfs-platform-intel-wmi-thunderbolt platform/x86: Update Mario Limonciello's email address in the docs 2021-08-13 13:18:15 +02:00
sysfs-platform-kim Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-platform-lg-laptop lg-laptop: Move setting of battery charge limit to common location 2022-02-23 11:36:24 +01:00
sysfs-platform-mellanox-bootctl mlxbf-bootctl: Support sysfs entries for MFG fields 2023-08-23 17:31:27 +02:00
sysfs-platform-msi-laptop
sysfs-platform-phy-rcar-gen3-usb2
sysfs-platform-power-on-reason power: reset: at91-reset: add sysfs interface to the power on reason 2023-07-19 23:15:21 +02:00
sysfs-platform-renesas_usb3
sysfs-platform-silicom platform/x86: silicom-platform: Add missing "Description:" for power_cycle sysfs attr 2024-01-22 11:37:28 +01:00
sysfs-platform-sst-atom Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-platform-tahvo-usb
sysfs-platform-ts5500
sysfs-platform-twl4030-usb
sysfs-platform-usbip-vudc
sysfs-platform-wilco-ec
sysfs-platform_profile ACPI: platform-profile: call sysfs_notify() from platform_profile_store() 2021-08-16 18:32:02 +02:00
sysfs-power PM: Add sysfs files to represent time spent in hardware sleep state 2023-04-20 19:06:12 +02:00
sysfs-pps
sysfs-profiling
sysfs-ptp ABI: sysfs-ptp: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-secvar powerpc/pseries: Implement secvars for dynamic secure boot 2023-02-13 22:34:33 +11:00
sysfs-timecard docs: ABI: Document new timecard sysfs nodes. 2022-03-11 11:54:45 +00:00
sysfs-tty docs: ABI: sysfs-tty: close times are in centiseconds 2023-09-18 11:14:43 +02:00
sysfs-uevent
usb-charger-uevent
usb-uevent