* [RFC v2 00/38] Improve ABI documentation generation
@ 2025-01-28 0:05 Mauro Carvalho Chehab
2025-01-28 0:05 ` [RFC v2 08/38] ABI: sysfs-bus-coresight-*: fix kernelversion tags Mauro Carvalho Chehab
` (3 more replies)
0 siblings, 4 replies; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2025-01-28 0:05 UTC (permalink / raw)
To: Linux Doc Mailing List, Jonathan Corbet, Greg Kroah-Hartman
Cc: Mauro Carvalho Chehab, Mauro Carvalho Chehab, linux-kernel, bpf,
coresight, linux-arm-kernel, linux-block, linux-f2fs-devel,
linux-hardening, linux-iio, linux-media, linux-pm, linux-usb,
linux-wireless, netdev, workflows
Hi Jon/Greg,
That's the second version of my RFC patches meant to modenize the ABI
parser that I wrote in Perl.
I originally started it due to some issues I noticed when searching for
ABI symbols. While I could just go ahead and fix the already existing
script, I noticed that the script maintainance didn't have much care over
all those years, probably because it is easier to find Python programmers
those days.
Also, the code is complex and was not using modules or classes and
were using lots of global variables.
So, I decided to rewrite it in Python. I started with a manual conversion
for each function. Yet, to avoid future maintainership issues, I opted to
divide the code on three classes. One class for the ABI parser, another
one for regex conversion (used when checking symbols from local hardware,
and an extra class for undefined symbols check.
I opted to change the Sphinx integration gradually using different
patch sets on 4 phases:
1. minimal integration: just execute the new script on a similar way as
the perl one;
2. the kernel_abi module was changed to import the ABI parser class,
using it directly;
3. the logic at kernel_abi were rewritten to better integrate. As a bonus,
Sphinx now imports ReST data symbol by symbol. That solves one of
the issues I was discomfortable with the original approach: when lots
of data is sent to Sphinx parser, it stops in the middle of processing.
This was addressed in the past on a hacky way, but it could cause
problems in the future as the number of symbols increase;
4. the ABI parser part is now called either by automarkup and kernel_abi.
This allowed automarkup to solve ABI symbols.
Together with this series, I added some patches fixing issues and warnings
when generating documentation.
Some notes about this new RFC:
- despite being able to generate documentation cross-references with
auto-markup, the documentation build timt didn't increase on my machine
(it was actually 5 seconds faster);
- I rewrote some algorithms at the undefined symbol detection code. With
that, it is now a lot faster than the previous version, at least on my desktop
(wich has 24 CPU threads). I didn't try it on a server yet;
- the undefined parser can optionally use multiple CPUs. This sounds
fancier than it seems: Python (up to version 3.12) is really bad with
multi-CPU support and doesn't have real multi-thread support. Python
3.13 has now an optional way to address that (although I didn't test yet,
as it requires Python manual compilation). When such feature becomes
standard, maybe the undefined symbols detection will be faster.
Btw, I'm opting to send this as an RFC because I'd like to have more
people testing and checking it. In particular, the undefined ABI check
is complex, as it requires lots of tricks to reduce the run time from hours
to seconds.
On this series we have:
patches 1 to 11: several bug fixes addressing issues at ABI symbols;
patch 12: a fix for scripts/documentation-file-ref-check
patches 13-15: create new script with rest and search logic and
minimally integrate with kernel_abi Sphinx extension(phase 1);
patches 16-19: implement phase 2: class integration (phase 2);
patch 20: fix a bug at kernel_abi: the way it splits lines is buggy;
patches 21-24: rewrite kernel_abi logic to make it simpler and more
robust;
patches 25-27: add cross-reference support at automarkup;
patches 28-36: several ABI cleanups to cope with the improvements;
patch 37: implement undefined command;
patch 38: get rid of the old Perl script.
To make it easier to review/apply, I may end breaking the next version
on a couple of different patchsets. Still it would be nice to have more
people testing it and providing some feedback.
---
RFC v2:
- Dropped a patch touching the perl script;
- Implemented phases 2-4 of the script's logic;
- Added ABI cross-references via automarkup;
- Added support for undefined logic;
- Added more ABI and scripts' fixes;
- Added undefined logic;
- Added a patch to remove the old tool.
Mauro Carvalho Chehab (38):
docs: power: video.rst: fix a footnote reference
docs: media: ipu3: fix two footnote references
docs: block: ublk.rst: remove a reference from a dropped text
docs: sphinx: remove kernellog.py file
docs: sphinx/kernel_abi: adjust coding style
docs: admin-guide: abi: add SPDX tags to ABI files
ABI: sysfs-class-rfkill: fix kernelversion tags
ABI: sysfs-bus-coresight-*: fix kernelversion tags
ABI: sysfs-driver-dma-idxd: fix date tags
ABI: sysfs-fs-f2fs: fix date tags
ABI: sysfs-power: fix a what tag
scripts/documentation-file-ref-check: don't check perl/python scripts
scripts/get_abi.py: add a Python tool to generate ReST output
scripts/get_abi.py: add support for symbol search
docs: use get_abi.py for ABI generation
scripts/get_abi.py: optimize parse_abi() function
scripts/get_abi.py: use an interactor for ReST output
docs: sphinx/kernel_abi: use AbiParser directly
docs: sphinx/kernel_abi: reduce buffer usage for ABI messages
docs: sphinx/kernel_abi: properly split lines
scripts/get_abi.pl: Add filtering capabilities to rest output
scripts/get_abi.pl: add support to parse ABI README file
docs: sphinx/kernel_abi: parse ABI files only once
docs: admin-guide/abi: split files from symbols
docs: sphinx/automarkup: add cross-references for ABI
docs: sphinx/kernel_abi: avoid warnings during Sphinx module init
scripts/get_abi.py: Rename title name for ABI files
docs: media: Allow creating cross-references for RC ABI
docs: thunderbolt: Allow creating cross-references for ABI
docs: arm: asymmetric-32bit: Allow creating cross-references for ABI
docs: arm: generic-counter: Allow creating cross-references for ABI
docs: iio: Allow creating cross-references ABI
docs: networking: Allow creating cross-references statistics ABI
docs: submit-checklist: Allow creating cross-references for ABI README
docs: translations: Allow creating cross-references for ABI README
docs: ABI: drop two duplicate symbols
scripts/get_abi.py: add support for undefined ABIs
scripts/get_abi.pl: drop now obsoleted script
Documentation/ABI/removed/sysfs-class-rfkill | 2 +-
Documentation/ABI/stable/sysfs-class-rfkill | 12 +-
.../ABI/stable/sysfs-devices-system-cpu | 10 -
.../ABI/stable/sysfs-driver-dma-idxd | 4 +-
.../testing/sysfs-bus-coresight-devices-cti | 78 +-
.../testing/sysfs-bus-coresight-devices-tpdm | 52 +-
Documentation/ABI/testing/sysfs-fs-f2fs | 4 +-
Documentation/ABI/testing/sysfs-power | 2 +-
.../admin-guide/abi-obsolete-files.rst | 7 +
Documentation/admin-guide/abi-obsolete.rst | 6 +-
Documentation/admin-guide/abi-readme-file.rst | 6 +
.../admin-guide/abi-removed-files.rst | 7 +
Documentation/admin-guide/abi-removed.rst | 6 +-
.../admin-guide/abi-stable-files.rst | 7 +
Documentation/admin-guide/abi-stable.rst | 6 +-
.../admin-guide/abi-testing-files.rst | 7 +
Documentation/admin-guide/abi-testing.rst | 6 +-
Documentation/admin-guide/abi.rst | 17 +
Documentation/admin-guide/media/ipu3.rst | 12 +-
Documentation/admin-guide/thunderbolt.rst | 2 +-
Documentation/arch/arm64/asymmetric-32bit.rst | 2 +-
Documentation/block/ublk.rst | 2 -
Documentation/driver-api/generic-counter.rst | 4 +-
Documentation/driver-api/iio/core.rst | 2 +-
Documentation/iio/iio_devbuf.rst | 2 +-
Documentation/networking/statistics.rst | 2 +-
Documentation/power/video.rst | 2 +-
Documentation/process/submit-checklist.rst | 2 +-
Documentation/sphinx/automarkup.py | 56 +
Documentation/sphinx/kernel_abi.py | 162 +-
Documentation/sphinx/kerneldoc.py | 14 +-
Documentation/sphinx/kernellog.py | 22 -
Documentation/sphinx/kfigure.py | 81 +-
.../it_IT/process/submit-checklist.rst | 2 +-
.../sp_SP/process/submit-checklist.rst | 2 +-
.../zh_CN/process/submit-checklist.rst | 2 +-
.../zh_TW/process/submit-checklist.rst | 2 +-
.../userspace-api/media/rc/rc-sysfs-nodes.rst | 2 +-
scripts/documentation-file-ref-check | 2 +-
scripts/get_abi.pl | 1103 -------------
scripts/get_abi.py | 1437 +++++++++++++++++
41 files changed, 1804 insertions(+), 1354 deletions(-)
create mode 100644 Documentation/admin-guide/abi-obsolete-files.rst
create mode 100644 Documentation/admin-guide/abi-readme-file.rst
create mode 100644 Documentation/admin-guide/abi-removed-files.rst
create mode 100644 Documentation/admin-guide/abi-stable-files.rst
create mode 100644 Documentation/admin-guide/abi-testing-files.rst
delete mode 100644 Documentation/sphinx/kernellog.py
delete mode 100755 scripts/get_abi.pl
create mode 100755 scripts/get_abi.py
--
2.48.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [RFC v2 08/38] ABI: sysfs-bus-coresight-*: fix kernelversion tags
2025-01-28 0:05 [RFC v2 00/38] Improve ABI documentation generation Mauro Carvalho Chehab
@ 2025-01-28 0:05 ` Mauro Carvalho Chehab
2025-02-04 10:30 ` Suzuki K Poulose
2025-01-28 0:06 ` [RFC v2 30/38] docs: arm: asymmetric-32bit: Allow creating cross-references for ABI Mauro Carvalho Chehab
` (2 subsequent siblings)
3 siblings, 1 reply; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2025-01-28 0:05 UTC (permalink / raw)
To: Linux Doc Mailing List, Jonathan Corbet, Greg Kroah-Hartman
Cc: Mauro Carvalho Chehab, Mauro Carvalho Chehab, James Clark,
Mike Leach, Suzuki K Poulose, coresight, linux-arm-kernel,
linux-kernel
Some kernelversion tags are missing colons. Add them to comply with
ABI description and produce right results when converted to html/pdf.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
---
.../testing/sysfs-bus-coresight-devices-cti | 78 +++++++++----------
.../testing/sysfs-bus-coresight-devices-tpdm | 52 ++++++-------
2 files changed, 65 insertions(+), 65 deletions(-)
diff --git a/Documentation/ABI/testing/sysfs-bus-coresight-devices-cti b/Documentation/ABI/testing/sysfs-bus-coresight-devices-cti
index bf2869c413e7..a97b70f588da 100644
--- a/Documentation/ABI/testing/sysfs-bus-coresight-devices-cti
+++ b/Documentation/ABI/testing/sysfs-bus-coresight-devices-cti
@@ -1,241 +1,241 @@
What: /sys/bus/coresight/devices/<cti-name>/enable
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (RW) Enable/Disable the CTI hardware.
What: /sys/bus/coresight/devices/<cti-name>/powered
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) Indicate if the CTI hardware is powered.
What: /sys/bus/coresight/devices/<cti-name>/ctmid
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) Display the associated CTM ID
What: /sys/bus/coresight/devices/<cti-name>/nr_trigger_cons
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) Number of devices connected to triggers on this CTI
What: /sys/bus/coresight/devices/<cti-name>/triggers<N>/name
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) Name of connected device <N>
What: /sys/bus/coresight/devices/<cti-name>/triggers<N>/in_signals
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) Input trigger signals from connected device <N>
What: /sys/bus/coresight/devices/<cti-name>/triggers<N>/in_types
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) Functional types for the input trigger signals
from connected device <N>
What: /sys/bus/coresight/devices/<cti-name>/triggers<N>/out_signals
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) Output trigger signals to connected device <N>
What: /sys/bus/coresight/devices/<cti-name>/triggers<N>/out_types
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) Functional types for the output trigger signals
to connected device <N>
What: /sys/bus/coresight/devices/<cti-name>/regs/inout_sel
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (RW) Select the index for inen and outen registers.
What: /sys/bus/coresight/devices/<cti-name>/regs/inen
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (RW) Read or write the CTIINEN register selected by inout_sel.
What: /sys/bus/coresight/devices/<cti-name>/regs/outen
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (RW) Read or write the CTIOUTEN register selected by inout_sel.
What: /sys/bus/coresight/devices/<cti-name>/regs/gate
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (RW) Read or write CTIGATE register.
What: /sys/bus/coresight/devices/<cti-name>/regs/asicctl
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (RW) Read or write ASICCTL register.
What: /sys/bus/coresight/devices/<cti-name>/regs/intack
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Write) Write the INTACK register.
What: /sys/bus/coresight/devices/<cti-name>/regs/appset
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (RW) Set CTIAPPSET register to activate channel. Read back to
determine current value of register.
What: /sys/bus/coresight/devices/<cti-name>/regs/appclear
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Write) Write APPCLEAR register to deactivate channel.
What: /sys/bus/coresight/devices/<cti-name>/regs/apppulse
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Write) Write APPPULSE to pulse a channel active for one clock
cycle.
What: /sys/bus/coresight/devices/<cti-name>/regs/chinstatus
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) Read current status of channel inputs.
What: /sys/bus/coresight/devices/<cti-name>/regs/choutstatus
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) read current status of channel outputs.
What: /sys/bus/coresight/devices/<cti-name>/regs/triginstatus
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) read current status of input trigger signals
What: /sys/bus/coresight/devices/<cti-name>/regs/trigoutstatus
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) read current status of output trigger signals.
What: /sys/bus/coresight/devices/<cti-name>/channels/trigin_attach
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Write) Attach a CTI input trigger to a CTM channel.
What: /sys/bus/coresight/devices/<cti-name>/channels/trigin_detach
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Write) Detach a CTI input trigger from a CTM channel.
What: /sys/bus/coresight/devices/<cti-name>/channels/trigout_attach
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Write) Attach a CTI output trigger to a CTM channel.
What: /sys/bus/coresight/devices/<cti-name>/channels/trigout_detach
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Write) Detach a CTI output trigger from a CTM channel.
What: /sys/bus/coresight/devices/<cti-name>/channels/chan_gate_enable
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (RW) Enable CTIGATE for single channel (Write) or list enabled
channels through the gate (R).
What: /sys/bus/coresight/devices/<cti-name>/channels/chan_gate_disable
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Write) Disable CTIGATE for single channel.
What: /sys/bus/coresight/devices/<cti-name>/channels/chan_set
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Write) Activate a single channel.
What: /sys/bus/coresight/devices/<cti-name>/channels/chan_clear
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Write) Deactivate a single channel.
What: /sys/bus/coresight/devices/<cti-name>/channels/chan_pulse
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Write) Pulse a single channel - activate for a single clock cycle.
What: /sys/bus/coresight/devices/<cti-name>/channels/trigout_filtered
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) List of output triggers filtered across all connections.
What: /sys/bus/coresight/devices/<cti-name>/channels/trig_filter_enable
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (RW) Enable or disable trigger output signal filtering.
What: /sys/bus/coresight/devices/<cti-name>/channels/chan_inuse
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) show channels with at least one attached trigger signal.
What: /sys/bus/coresight/devices/<cti-name>/channels/chan_free
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) show channels with no attached trigger signals.
What: /sys/bus/coresight/devices/<cti-name>/channels/chan_xtrigs_sel
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (RW) Write channel number to select a channel to view, read to
see selected channel number.
What: /sys/bus/coresight/devices/<cti-name>/channels/chan_xtrigs_in
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) Read to see input triggers connected to selected view
channel.
What: /sys/bus/coresight/devices/<cti-name>/channels/chan_xtrigs_out
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Read) Read to see output triggers connected to selected view
channel.
What: /sys/bus/coresight/devices/<cti-name>/channels/chan_xtrigs_reset
Date: March 2020
-KernelVersion 5.7
+KernelVersion: 5.7
Contact: Mike Leach or Mathieu Poirier
Description: (Write) Clear all channel / trigger programming.
diff --git a/Documentation/ABI/testing/sysfs-bus-coresight-devices-tpdm b/Documentation/ABI/testing/sysfs-bus-coresight-devices-tpdm
index bf710ea6e0ef..53cb454b60d0 100644
--- a/Documentation/ABI/testing/sysfs-bus-coresight-devices-tpdm
+++ b/Documentation/ABI/testing/sysfs-bus-coresight-devices-tpdm
@@ -1,6 +1,6 @@
What: /sys/bus/coresight/devices/<tpdm-name>/integration_test
Date: January 2023
-KernelVersion 6.2
+KernelVersion: 6.2
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(Write) Run integration test for tpdm. Integration test
@@ -14,7 +14,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/reset_dataset
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(Write) Reset the dataset of the tpdm.
@@ -24,7 +24,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_trig_type
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the trigger type of the DSB for tpdm.
@@ -35,7 +35,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_trig_ts
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the trigger timestamp of the DSB for tpdm.
@@ -46,7 +46,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_mode
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the programming mode of the DSB for tpdm.
@@ -60,7 +60,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_edge/ctrl_idx
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the index number of the edge detection for the DSB
@@ -69,7 +69,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_edge/ctrl_val
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
Write a data to control the edge detection corresponding to
@@ -85,7 +85,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_edge/ctrl_mask
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
Write a data to mask the edge detection corresponding to the index
@@ -97,21 +97,21 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_edge/edcr[0:15]
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
Read a set of the edge control value of the DSB in TPDM.
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_edge/edcmr[0:7]
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
Read a set of the edge control mask of the DSB in TPDM.
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_trig_patt/xpr[0:7]
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the value of the trigger pattern for the DSB
@@ -119,7 +119,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_trig_patt/xpmr[0:7]
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the mask of the trigger pattern for the DSB
@@ -127,21 +127,21 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_patt/tpr[0:7]
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the value of the pattern for the DSB subunit TPDM.
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_patt/tpmr[0:7]
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the mask of the pattern for the DSB subunit TPDM.
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_patt/enable_ts
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(Write) Set the pattern timestamp of DSB tpdm. Read
@@ -153,7 +153,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_patt/set_type
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(Write) Set the pattern type of DSB tpdm. Read
@@ -165,7 +165,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_msr/msr[0:31]
Date: March 2023
-KernelVersion 6.7
+KernelVersion: 6.7
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the MSR(mux select register) for the DSB subunit
@@ -173,7 +173,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/cmb_mode
Date: January 2024
-KernelVersion 6.9
+KernelVersion: 6.9
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description: (Write) Set the data collection mode of CMB tpdm. Continuous
change creates CMB data set elements on every CMBCLK edge.
@@ -187,7 +187,7 @@ Description: (Write) Set the data collection mode of CMB tpdm. Continuous
What: /sys/bus/coresight/devices/<tpdm-name>/cmb_trig_patt/xpr[0:1]
Date: January 2024
-KernelVersion 6.9
+KernelVersion: 6.9
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the value of the trigger pattern for the CMB
@@ -195,7 +195,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/cmb_trig_patt/xpmr[0:1]
Date: January 2024
-KernelVersion 6.9
+KernelVersion: 6.9
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the mask of the trigger pattern for the CMB
@@ -203,21 +203,21 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_patt/tpr[0:1]
Date: January 2024
-KernelVersion 6.9
+KernelVersion: 6.9
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the value of the pattern for the CMB subunit TPDM.
What: /sys/bus/coresight/devices/<tpdm-name>/dsb_patt/tpmr[0:1]
Date: January 2024
-KernelVersion 6.9
+KernelVersion: 6.9
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the mask of the pattern for the CMB subunit TPDM.
What: /sys/bus/coresight/devices/<tpdm-name>/cmb_patt/enable_ts
Date: January 2024
-KernelVersion 6.9
+KernelVersion: 6.9
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(Write) Set the pattern timestamp of CMB tpdm. Read
@@ -229,7 +229,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/cmb_trig_ts
Date: January 2024
-KernelVersion 6.9
+KernelVersion: 6.9
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the trigger timestamp of the CMB for tpdm.
@@ -240,7 +240,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/cmb_ts_all
Date: January 2024
-KernelVersion 6.9
+KernelVersion: 6.9
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Read or write the status of timestamp upon all interface.
@@ -252,7 +252,7 @@ Description:
What: /sys/bus/coresight/devices/<tpdm-name>/cmb_msr/msr[0:31]
Date: January 2024
-KernelVersion 6.9
+KernelVersion: 6.9
Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
Description:
(RW) Set/Get the MSR(mux select register) for the CMB subunit
--
2.48.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [RFC v2 30/38] docs: arm: asymmetric-32bit: Allow creating cross-references for ABI
2025-01-28 0:05 [RFC v2 00/38] Improve ABI documentation generation Mauro Carvalho Chehab
2025-01-28 0:05 ` [RFC v2 08/38] ABI: sysfs-bus-coresight-*: fix kernelversion tags Mauro Carvalho Chehab
@ 2025-01-28 0:06 ` Mauro Carvalho Chehab
2025-01-28 22:42 ` [RFC v2 00/38] Improve ABI documentation generation Jonathan Corbet
2025-03-27 21:58 ` [f2fs-dev] " patchwork-bot+f2fs
3 siblings, 0 replies; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2025-01-28 0:06 UTC (permalink / raw)
To: Linux Doc Mailing List, Jonathan Corbet, Greg Kroah-Hartman
Cc: Mauro Carvalho Chehab, Mauro Carvalho Chehab, Catalin Marinas,
Will Deacon, linux-arm-kernel, linux-kernel
Now that Documentation/ABI is processed by automarkup, let it
generate cross-references for the corresponding ABI file.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
---
Documentation/arch/arm64/asymmetric-32bit.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/arch/arm64/asymmetric-32bit.rst b/Documentation/arch/arm64/asymmetric-32bit.rst
index 64a0b505da7d..f15061b1e020 100644
--- a/Documentation/arch/arm64/asymmetric-32bit.rst
+++ b/Documentation/arch/arm64/asymmetric-32bit.rst
@@ -55,7 +55,7 @@ sysfs
The subset of CPUs capable of running 32-bit tasks is described in
``/sys/devices/system/cpu/aarch32_el0`` and is documented further in
-``Documentation/ABI/testing/sysfs-devices-system-cpu``.
+Documentation/ABI/testing/sysfs-devices-system-cpu.
**Note:** CPUs are advertised by this file as they are detected and so
late-onlining of 32-bit-capable CPUs can result in the file contents
--
2.48.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [RFC v2 00/38] Improve ABI documentation generation
2025-01-28 0:05 [RFC v2 00/38] Improve ABI documentation generation Mauro Carvalho Chehab
2025-01-28 0:05 ` [RFC v2 08/38] ABI: sysfs-bus-coresight-*: fix kernelversion tags Mauro Carvalho Chehab
2025-01-28 0:06 ` [RFC v2 30/38] docs: arm: asymmetric-32bit: Allow creating cross-references for ABI Mauro Carvalho Chehab
@ 2025-01-28 22:42 ` Jonathan Corbet
2025-01-29 1:45 ` Mauro Carvalho Chehab
2025-01-29 15:41 ` Mauro Carvalho Chehab
2025-03-27 21:58 ` [f2fs-dev] " patchwork-bot+f2fs
3 siblings, 2 replies; 11+ messages in thread
From: Jonathan Corbet @ 2025-01-28 22:42 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Linux Doc Mailing List, Greg Kroah-Hartman
Cc: Mauro Carvalho Chehab, Mauro Carvalho Chehab, linux-kernel, bpf,
coresight, linux-arm-kernel, linux-block, linux-f2fs-devel,
linux-hardening, linux-iio, linux-media, linux-pm, linux-usb,
linux-wireless, netdev, workflows
Mauro Carvalho Chehab <mchehab+huawei@kernel.org> writes:
> Hi Jon/Greg,
>
> That's the second version of my RFC patches meant to modenize the ABI
> parser that I wrote in Perl.
I have a couple of minor comments on the individual patches, but overall
I do like this direction.
It would be nice, though, if the code were a bit more extensively
commented. Parts of it get into the "twistly maze of regexes" mode that
can be awfully hard to follow.
> On this series we have:
>
> patches 1 to 11: several bug fixes addressing issues at ABI symbols;
1-3 aren't needed - it seems you already upstreamed #2?
For the rest, is there any reason to not apply them right away? They
just seem like worthwhile fixes.
> patch 12: a fix for scripts/documentation-file-ref-check
> patches 13-15: create new script with rest and search logic and
> minimally integrate with kernel_abi Sphinx extension(phase 1);
> patches 16-19: implement phase 2: class integration (phase 2);
> patch 20: fix a bug at kernel_abi: the way it splits lines is buggy;
> patches 21-24: rewrite kernel_abi logic to make it simpler and more
> robust;
> patches 25-27: add cross-reference support at automarkup;
> patches 28-36: several ABI cleanups to cope with the improvements;
> patch 37: implement undefined command;
> patch 38: get rid of the old Perl script.
>
> To make it easier to review/apply, I may end breaking the next version
> on a couple of different patchsets. Still it would be nice to have more
> people testing it and providing some feedback.
I've looked over everything, though with limited depth. My testing
hasn't turned up any problems. I've only tested with current Sphinx,
have you tried this with the more ancient versions we support?
[It's probably time to raise our minimum version again, especially now
that current Sphinx has better performance.]
I don't see a whole lot of reasons not to apply this set shortly after
the merge window; anybody disagree?
Thanks,
jon
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RFC v2 00/38] Improve ABI documentation generation
2025-01-28 22:42 ` [RFC v2 00/38] Improve ABI documentation generation Jonathan Corbet
@ 2025-01-29 1:45 ` Mauro Carvalho Chehab
2025-01-29 14:22 ` Mauro Carvalho Chehab
2025-01-29 15:41 ` Mauro Carvalho Chehab
1 sibling, 1 reply; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2025-01-29 1:45 UTC (permalink / raw)
To: Jonathan Corbet
Cc: Linux Doc Mailing List, Greg Kroah-Hartman, linux-kernel, bpf,
coresight, linux-arm-kernel, linux-block, linux-f2fs-devel,
linux-hardening, linux-iio, linux-media, linux-pm, linux-usb,
linux-wireless, netdev, workflows
Em Tue, 28 Jan 2025 15:42:00 -0700
Jonathan Corbet <corbet@lwn.net> escreveu:
> Mauro Carvalho Chehab <mchehab+huawei@kernel.org> writes:
>
> > Hi Jon/Greg,
> >
> > That's the second version of my RFC patches meant to modenize the ABI
> > parser that I wrote in Perl.
>
> I have a couple of minor comments on the individual patches, but overall
> I do like this direction.
>
> It would be nice, though, if the code were a bit more extensively
> commented. Parts of it get into the "twistly maze of regexes" mode that
> can be awfully hard to follow.
The regex code is indeed complex, but documenting it is not an easy task.
Btw, they are (about) the same that the Perl script does. imported also
the documentation for there. I did some extra cleanups/optimizations there,
though, after checking the results of some expressions.
The big issue is that we don't have an uniform way of defining What:
expressions. So, each subsystem (and/or author) document it in different
ways.
There are even some ABI symbols with:
$(readlink)/sys/...
(I intend to send a patch for those later on)
and:
What: /sys/something/...
What: .../something_else
(I guess ".../" means "/sys/something/...", but I can't be sure, as this
is on one driver for a hardware I don't have - so, if I send a patch,
I may end breaking it)
If you want to understand how the whole set of regexes work, you can
run:
$ ./scripts/get_abi.py -d 16 undefined --dry-run >/dev/null
...
[DEBUG] /sys/kernel/mm/damon/admin/kdamonds/\w+/contexts/\w+/schemes/\w+/quotas/goals/\w+/current_value <== /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/quotas/goals/<G>/current_value
[DEBUG] /sys/kernel/mm/damon/admin/kdamonds/\w+/contexts/\w+/schemes/\w+/quotas/goals/\w+/target_metric <== /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/quotas/goals/<G>/target_metric
[DEBUG] /sys/kernel/mm/damon/admin/kdamonds/\w+/contexts/\w+/schemes/\w+/quotas/goals/\w+/target_value <== /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/quotas/goals/<G>/target_value
[DEBUG] /sys/kernel/mm/damon/admin/kdamonds/\w+/contexts/\w+/schemes/\w+/quotas/goals/nr_goals <== /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/quotas/goals/nr_goals
[DEBUG] /sys/kernel/mm/damon/admin/kdamonds/\w+/contexts/\w+/schemes/\w+/quotas/ms <== /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/quotas/ms
[DEBUG] /sys/kernel/mm/damon/admin/kdamonds/\w+/contexts/\w+/schemes/\w+/quotas/reset_interval_ms <== /sys/kernel/mm/
...
This will place at stderr all regular expressions that are currently
parsed (they're currently used only for /sys symbols).
Yet, instead of spending too much time documenting them, IMO we shold
do the do the reverse: use the AbiRegex class to convert "What:" into
a new tag (like "Regex:") and use it as much as possible (we'll still
need "What:" for some things that aren't devnodes), as, with regular
expressions, symbols can be clearly documented. As on python match groups
can be named with:
(?P<name>...)
this could be used to better describe some arguments, e.g. (picking an
easy case):
What: /sys/module/<MODULENAME>/srcversion
could be described, instead, as:
Regex: /sys/module/(?P<MODULENAME>[\w\-]+)/srcversion
The Kernel_abi extension (actually AbiParser class) can either display it
as-is (my personal preference), or even replace:
(?P<MODULENAME>[\w\-]+)
with:
MODULENAME
and still output this at html/pdf output as before, e. g.:
What: /sys/module/<MODULENAME>/srcversion
Yet, doing it on a consistent way.
This is easier said than done, as if we do some automatic conversion,
subsystem reviewers/maintainers will need to double-check if the
converted expressions make sense.
> > On this series we have:
> >
> > patches 1 to 11: several bug fixes addressing issues at ABI symbols;
>
> 1-3 aren't needed - it seems you already upstreamed #2?
>
> For the rest, is there any reason to not apply them right away? They
> just seem like worthwhile fixes.
>
> > patch 12: a fix for scripts/documentation-file-ref-check
> > patches 13-15: create new script with rest and search logic and
> > minimally integrate with kernel_abi Sphinx extension(phase 1);
> > patches 16-19: implement phase 2: class integration (phase 2);
> > patch 20: fix a bug at kernel_abi: the way it splits lines is buggy;
> > patches 21-24: rewrite kernel_abi logic to make it simpler and more
> > robust;
> > patches 25-27: add cross-reference support at automarkup;
> > patches 28-36: several ABI cleanups to cope with the improvements;
> > patch 37: implement undefined command;
> > patch 38: get rid of the old Perl script.
> >
> > To make it easier to review/apply, I may end breaking the next version
> > on a couple of different patchsets. Still it would be nice to have more
> > people testing it and providing some feedback.
>
> I've looked over everything, though with limited depth.
> My testing hasn't turned up any problems.
Great!
> I've only tested with current Sphinx,
> have you tried this with the more ancient versions we support?
Not yet, but I double-checked at Sphinx documentation to be sure that
I won't be using any newer methods: I just kept using the same Sphinx
API as used by other extensions at the Kernel.
For instance this loop:
def do_parse(self, content, node):
with switch_source_input(self.state, content):
self.state.nested_parse(content, 0, node, match_titles=1)
was changed on Sphinx 7.4[1], and even nested_parse(match_titles=1) is
not the recommended code for versions < 7.4, as there is this
replacement function:
nested_parse_with_titles()
Yet, as they're working fine at least up to version 8.1.3, we can
keep using the old way.
In any case, I'll do a test before sending the final version to see if
it works fine with our minimal version.
[1] See: https://www.sphinx-doc.org/en/master/extdev/markupapi.html
-
On a separate discussion, I noticed one potential compatibility issue
we may have with future Python versions, due to some ascii texts
formatted as unicode. I'll send later a patch fixing them.
Additionally, automarkup has backward-compatible code with Python 2.7.
Can I send patches dropping 2.7 support from Sphinx extensions?
> [It's probably time to raise our minimum version again, especially now
> that current Sphinx has better performance.]
Agreed.
IMO, we should also increase Python's minimal version.
> I don't see a whole lot of reasons not to apply this set shortly after
> the merge window; anybody disagree?
Thanks,
Mauro
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RFC v2 00/38] Improve ABI documentation generation
2025-01-29 1:45 ` Mauro Carvalho Chehab
@ 2025-01-29 14:22 ` Mauro Carvalho Chehab
0 siblings, 0 replies; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2025-01-29 14:22 UTC (permalink / raw)
To: Jonathan Corbet
Cc: Linux Doc Mailing List, Greg Kroah-Hartman, linux-kernel, bpf,
coresight, linux-arm-kernel, linux-block, linux-f2fs-devel,
linux-hardening, linux-iio, linux-media, linux-pm, linux-usb,
linux-wireless, netdev, workflows
Em Wed, 29 Jan 2025 02:45:18 +0100
Mauro Carvalho Chehab <mchehab+huawei@kernel.org> escreveu:
> > I've only tested with current Sphinx,
> > have you tried this with the more ancient versions we support?
>
> Not yet, but I double-checked at Sphinx documentation to be sure that
> I won't be using any newer methods: I just kept using the same Sphinx
> API as used by other extensions at the Kernel.
Just checked it with Python 3.6 and Sphinx 3.4 on Fedora 41 with:
sudo dnf install python3.6.x86_64
python3.6 -m venv Sphinx-3.4
pip install alabaster Sphinx==3.4.3 pyyaml
There were some issues related to problems with early f-string
support, as reported by Akira.
After applying the enclosed patch, it is now working fine. The only
drawback is here:
- print(f"Defined on file{'s'[:len(files) ^ 1]}:\t{", ".join(files)}")
+ print("Defined on file(s):\t" + ", ".join(files))
As I removed the file/files auto-plural logic depending on the files
array length. Not a big deal.
I'll double-check if there's no other diff between old/new version
and add the enclosed patch in the end.
Thanks,
Mauro
[PATCH] scripts/get_abi.py: make it backward-compatible with Python 3.6
Despite being introduced on Python 3.6, the original implementation
was too limited: it doesn't accept anything but the argument.
Even on python 3.10.12, support was still limited, as more complex
operations cause SyntaxError:
Exception occurred:
File ".../linux/Documentation/sphinx/kernel_abi.py", line 48, in <module>
from get_abi import AbiParser
File ".../linux/scripts/get_abi.py", line 525
msg += f"{part}\n{"-" * len(part)}\n\n"
^
SyntaxError: f-string: expecting '}'
Replace f-strings by normal string concatenation when it doesn't
work on Python 3.6.
Reported-by: Akira Yokosawa <akiyks@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
diff --git a/scripts/get_abi.py b/scripts/get_abi.py
index 543bed397c8c..e6e94f721fff 100755
--- a/scripts/get_abi.py
+++ b/scripts/get_abi.py
@@ -522,7 +522,7 @@ class AbiParser:
if cur_part and cur_part != part:
part = cur_part
- msg += f"{part}\n{"-" * len(part)}\n\n"
+ msg += part + "\n"+ "-" * len(part) +"\n\n"
msg += f".. _{key}:\n\n"
@@ -546,7 +546,7 @@ class AbiParser:
msg += f"Defined on file :ref:`{base} <{ref[1]}>`\n\n"
if wtype == "File":
- msg += f"{names[0]}\n{"-" * len(names[0])}\n\n"
+ msg += names[0] +"\n" + "-" * len(names[0]) +"\n\n"
desc = v.get("description")
if not desc and wtype != "File":
@@ -570,7 +570,8 @@ class AbiParser:
users = v.get("users")
if users and users.strip(" \t\n"):
- msg += f"Users:\n\t{users.strip("\n").replace('\n', '\n\t')}\n\n"
+ users = users.strip("\n").replace('\n', '\n\t')
+ msg += f"Users:\n\t{users}\n\n"
ln = v.get("line_no", 1)
@@ -596,7 +597,9 @@ class AbiParser:
elif len(lines) == 1:
f.append(f"{fname}:{lines[0]}")
else:
- f.append(f"{fname} lines {", ".join(str(x) for x in lines)}")
+ m = fname + "lines "
+ m += ", ".join(str(x) for x in lines)
+ f.append(m)
self.log.warning("%s is defined %d times: %s", what, len(f), "; ".join(f))
@@ -644,10 +647,11 @@ class AbiParser:
if users:
print(f"Users:\t\t\t{users}")
- print(f"Defined on file{'s'[:len(files) ^ 1]}:\t{", ".join(files)}")
+ print("Defined on file(s):\t" + ", ".join(files))
if desc:
- print(f"\n{desc.strip("\n")}\n")
+ desc = desc.strip("\n")
+ print(f"\n{desc}\n")
if not found_keys:
print(f"Regular expression /{expr}/ not found.")
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [RFC v2 00/38] Improve ABI documentation generation
2025-01-28 22:42 ` [RFC v2 00/38] Improve ABI documentation generation Jonathan Corbet
2025-01-29 1:45 ` Mauro Carvalho Chehab
@ 2025-01-29 15:41 ` Mauro Carvalho Chehab
2025-01-29 15:58 ` Jonathan Corbet
1 sibling, 1 reply; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2025-01-29 15:41 UTC (permalink / raw)
To: Jonathan Corbet
Cc: Linux Doc Mailing List, Greg Kroah-Hartman, linux-kernel, bpf,
coresight, linux-arm-kernel, linux-block, linux-f2fs-devel,
linux-hardening, linux-iio, linux-media, linux-pm, linux-usb,
linux-wireless, netdev, workflows
Em Tue, 28 Jan 2025 15:42:00 -0700
Jonathan Corbet <corbet@lwn.net> escreveu:
> [It's probably time to raise our minimum version again, especially now
> that current Sphinx has better performance.]
Last change was about one year ago, so it sounds fair to also
change Sphinx minimal version with about one year gap. What we have
currently is:
2.4.4: minimal version
3.4.3: suggested minimal version.
Looking at the relevant release dates, we have:
Release 2.4.0 (released Feb 09, 2020)
Release 2.4.4 (released Mar 05, 2020)
Release 3.4.0 (released Dec 20, 2020)
Release 3.4.3 (released Jan 08, 2021)
So, the ~one year gap is what it takes to raise the bar from 2.4.4 to
3.4.3.
In terms of Python, we're currently at 3.5:
Python Release date
3.5 2015-09-13
3.6 2016-12-23
3.7 2018-06-27
3.8 2019-10-14
3.9 2020-10-05
3.10 2021-10-04
(according with https://en.wikipedia.org/w/index.php?title=History_of_Python)
Python 3.6 is the first one with f-string support, with is something
that most Python programmers use those days. So, IMO, that would
be the absolute minimal version we should pick.
Yet, IMHO, we should aim to be backard-compatible with the tools
available up to a certain date (Jan, 2021) - e. g. we'll aim to
support at least a 4 years old toolset for documentation build.
So, I'm proposing to change the minimal requirements to:
- Sphinx 3.4.3;
- Python 3.9
By setting Sphinx minimal version to 3.4.3, we can get rid of all
Sphinx backward-compatible code.
I have already patches with such changes for it on the top of this RFC.
Will send it shortly as RFC, aiming to send the final version after -rc1.
Thanks,
Mauro
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RFC v2 00/38] Improve ABI documentation generation
2025-01-29 15:41 ` Mauro Carvalho Chehab
@ 2025-01-29 15:58 ` Jonathan Corbet
2025-01-29 16:19 ` Mauro Carvalho Chehab
0 siblings, 1 reply; 11+ messages in thread
From: Jonathan Corbet @ 2025-01-29 15:58 UTC (permalink / raw)
To: Mauro Carvalho Chehab
Cc: Linux Doc Mailing List, Greg Kroah-Hartman, linux-kernel, bpf,
coresight, linux-arm-kernel, linux-block, linux-f2fs-devel,
linux-hardening, linux-iio, linux-media, linux-pm, linux-usb,
linux-wireless, netdev, workflows
Mauro Carvalho Chehab <mchehab+huawei@kernel.org> writes:
> So, I'm proposing to change the minimal requirements to:
> - Sphinx 3.4.3;
> - Python 3.9
>
> By setting Sphinx minimal version to 3.4.3, we can get rid of all
> Sphinx backward-compatible code.
That's certainly a nice thought.
With regard to Python ... are all reasonable distributions at 3.9 at
least? CentOS 9 seems to be there, and Debian beyond it. So probably
that is a reasonable floor to set?
jon
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RFC v2 00/38] Improve ABI documentation generation
2025-01-29 15:58 ` Jonathan Corbet
@ 2025-01-29 16:19 ` Mauro Carvalho Chehab
0 siblings, 0 replies; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2025-01-29 16:19 UTC (permalink / raw)
To: Jonathan Corbet
Cc: Linux Doc Mailing List, Greg Kroah-Hartman, linux-kernel, bpf,
coresight, linux-arm-kernel, linux-block, linux-f2fs-devel,
linux-hardening, linux-iio, linux-media, linux-pm, linux-usb,
linux-wireless, netdev, workflows
Em Wed, 29 Jan 2025 08:58:13 -0700
Jonathan Corbet <corbet@lwn.net> escreveu:
> Mauro Carvalho Chehab <mchehab+huawei@kernel.org> writes:
>
> > So, I'm proposing to change the minimal requirements to:
> > - Sphinx 3.4.3;
> > - Python 3.9
> >
> > By setting Sphinx minimal version to 3.4.3, we can get rid of all
> > Sphinx backward-compatible code.
>
> That's certainly a nice thought.
>
> With regard to Python ... are all reasonable distributions at 3.9 at
> least? CentOS 9 seems to be there, and Debian beyond it. So probably
> that is a reasonable floor to set?
I didn't check, but those are the current minimal versions above 3.5 for
what we have at the Kernel tree[1]:
!2, 3.10 tools/net/sunrpc/xdrgen/generators/__init__.py
!2, 3.10 tools/net/sunrpc/xdrgen/generators/program.py
!2, 3.10 tools/net/sunrpc/xdrgen/subcmds/source.py
!2, 3.10 tools/net/sunrpc/xdrgen/xdr_ast.py
!2, 3.10 tools/power/cpupower/bindings/python/test_raw_pylibcpupower.py
!2, 3.9 tools/testing/selftests/net/rds/test.py
!2, 3.9 tools/net/ynl/ethtool.py
!2, 3.9 tools/net/ynl/cli.py
!2, 3.9 scripts/checktransupdate.py
!2, 3.8 tools/testing/selftests/tc-testing/plugin-lib/nsPlugin.py
!2, 3.8 tools/testing/selftests/hid/tests/base.py
!2, 3.7 tools/testing/selftests/turbostat/smi_aperf_mperf.py
!2, 3.7 tools/testing/selftests/turbostat/defcolumns.py
!2, 3.7 tools/testing/selftests/turbostat/added_perf_counters.py
!2, 3.7 tools/testing/selftests/hid/tests/conftest.py
!2, 3.7 tools/testing/kunit/qemu_config.py
!2, 3.7 tools/testing/kunit/kunit_tool_test.py
!2, 3.7 tools/testing/kunit/kunit.py
!2, 3.7 tools/testing/kunit/kunit_parser.py
!2, 3.7 tools/testing/kunit/kunit_kernel.py
!2, 3.7 tools/testing/kunit/kunit_json.py
!2, 3.7 tools/testing/kunit/kunit_config.py
!2, 3.7 tools/perf/scripts/python/gecko.py
!2, 3.7 scripts/rust_is_available_test.py
!2, 3.7 scripts/bpf_doc.py
!2, 3.6 tools/writeback/wb_monitor.py
!2, 3.6 tools/workqueue/wq_monitor.py
!2, 3.6 tools/workqueue/wq_dump.py
!2, 3.6 tools/usb/p9_fwd.py
!2, 3.6 tools/tracing/rtla/sample/timerlat_load.py
!2, 3.6 tools/testing/selftests/net/openvswitch/ovs-dpctl.py
!2, 3.6 tools/testing/selftests/net/nl_netdev.py
!2, 3.6 tools/testing/selftests/net/lib/py/ynl.py
!2, 3.6 tools/testing/selftests/net/lib/py/utils.py
!2, 3.6 tools/testing/selftests/net/lib/py/nsim.py
!2, 3.6 tools/testing/selftests/net/lib/py/netns.py
!2, 3.6 tools/testing/selftests/net/lib/py/ksft.py
!2, 3.6 tools/testing/selftests/kselftest/ksft.py
!2, 3.6 tools/testing/selftests/hid/tests/test_tablet.py
!2, 3.6 tools/testing/selftests/hid/tests/test_sony.py
!2, 3.6 tools/testing/selftests/hid/tests/test_multitouch.py
!2, 3.6 tools/testing/selftests/hid/tests/test_mouse.py
!2, 3.6 tools/testing/selftests/hid/tests/base_gamepad.py
!2, 3.6 tools/testing/selftests/hid/tests/base_device.py
!2, 3.6 tools/testing/selftests/drivers/net/stats.py
!2, 3.6 tools/testing/selftests/drivers/net/shaper.py
!2, 3.6 tools/testing/selftests/drivers/net/queues.py
!2, 3.6 tools/testing/selftests/drivers/net/ping.py
!2, 3.6 tools/testing/selftests/drivers/net/lib/py/remote_ssh.py
!2, 3.6 tools/testing/selftests/drivers/net/lib/py/load.py
!2, 3.6 tools/testing/selftests/drivers/net/lib/py/__init__.py
!2, 3.6 tools/testing/selftests/drivers/net/lib/py/env.py
!2, 3.6 tools/testing/selftests/drivers/net/hw/rss_ctx.py
!2, 3.6 tools/testing/selftests/drivers/net/hw/pp_alloc_fail.py
!2, 3.6 tools/testing/selftests/drivers/net/hw/nic_performance.py
!2, 3.6 tools/testing/selftests/drivers/net/hw/nic_link_layer.py
!2, 3.6 tools/testing/selftests/drivers/net/hw/lib/py/linkconfig.py
!2, 3.6 tools/testing/selftests/drivers/net/hw/lib/py/__init__.py
!2, 3.6 tools/testing/selftests/drivers/net/hw/devmem.py
!2, 3.6 tools/testing/selftests/drivers/net/hw/devlink_port_split.py
!2, 3.6 tools/testing/selftests/drivers/net/hw/csum.py
!2, 3.6 tools/testing/selftests/devices/probe/test_discoverable_devices.py
!2, 3.6 tools/testing/selftests/bpf/test_bpftool_synctypes.py
!2, 3.6 tools/testing/selftests/bpf/generate_udp_fragments.py
!2, 3.6 tools/testing/kunit/run_checks.py
!2, 3.6 tools/testing/kunit/kunit_printer.py
!2, 3.6 tools/sched_ext/scx_show_state.py
!2, 3.6 tools/perf/tests/shell/lib/perf_metric_validation.py
!2, 3.6 tools/perf/tests/shell/lib/perf_json_output_lint.py
!2, 3.6 tools/perf/scripts/python/parallel-perf.py
!2, 3.6 tools/perf/scripts/python/flamegraph.py
!2, 3.6 tools/perf/scripts/python/arm-cs-trace-disasm.py
!2, 3.6 tools/perf/pmu-events/models.py
!2, 3.6 tools/perf/pmu-events/metric_test.py
!2, 3.6 tools/perf/pmu-events/metric.py
!2, 3.6 tools/perf/pmu-events/jevents.py
!2, 3.6 tools/net/ynl/ynl-gen-rst.py
!2, 3.6 tools/net/ynl/ynl-gen-c.py
!2, 3.6 tools/net/ynl/lib/ynl.py
!2, 3.6 tools/net/ynl/lib/nlspec.py
!2, 3.6 tools/crypto/tcrypt/tcrypt_speed_compare.py
!2, 3.6 tools/cgroup/iocost_monitor.py
!2, 3.6 tools/cgroup/iocost_coef_gen.py
!2, 3.6 scripts/make_fit.py
!2, 3.6 scripts/macro_checker.py
!2, 3.6 scripts/get_abi.py
!2, 3.6 scripts/generate_rust_analyzer.py
!2, 3.6 scripts/gdb/linux/timerlist.py
!2, 3.6 scripts/gdb/linux/pgtable.py
!2, 3.6 scripts/clang-tools/run-clang-tools.py
!2, 3.6 Documentation/sphinx/automarkup.py
[1] Checked with:
vermin -v $(git ls-files *.py)
Please notice that vermin is not perfect: my script passed as version 3.6
because the f-string check there didn't verify f-string improvements over
time. Still, it is a quick way to check that our current minimal version
is not aligned with reality.
Btw, vermin explains what is requiring more at the scripts. For instance:
$ vermin -vv scripts/checktransupdate.py
...
!2, 3.9 /new_devel/v4l/docs/scripts/checktransupdate.py
'argparse' module requires 2.7, 3.2
'argparse.BooleanOptionalAction' member requires !2, 3.9
'datetime' module requires 2.3, 3.0
'datetime.datetime.strptime' member requires 2.5, 3.0
'logging' module requires 2.3, 3.0
'logging.StreamHandler' member requires 2.6, 3.0
'os.path.relpath' member requires 2.6, 3.0
f-strings require !2, 3.6
Thanks,
Mauro
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RFC v2 08/38] ABI: sysfs-bus-coresight-*: fix kernelversion tags
2025-01-28 0:05 ` [RFC v2 08/38] ABI: sysfs-bus-coresight-*: fix kernelversion tags Mauro Carvalho Chehab
@ 2025-02-04 10:30 ` Suzuki K Poulose
0 siblings, 0 replies; 11+ messages in thread
From: Suzuki K Poulose @ 2025-02-04 10:30 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Linux Doc Mailing List, Jonathan Corbet,
Greg Kroah-Hartman
Cc: James Clark, Mike Leach, coresight, linux-arm-kernel,
linux-kernel
On 28/01/2025 00:05, Mauro Carvalho Chehab wrote:
> Some kernelversion tags are missing colons. Add them to comply with
> ABI description and produce right results when converted to html/pdf.
>
> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Acked-by: Suzuki K Poulose <suzuki.poulose@arm.com>
> ---
> .../testing/sysfs-bus-coresight-devices-cti | 78 +++++++++----------
> .../testing/sysfs-bus-coresight-devices-tpdm | 52 ++++++-------
> 2 files changed, 65 insertions(+), 65 deletions(-)
>
> diff --git a/Documentation/ABI/testing/sysfs-bus-coresight-devices-cti b/Documentation/ABI/testing/sysfs-bus-coresight-devices-cti
> index bf2869c413e7..a97b70f588da 100644
> --- a/Documentation/ABI/testing/sysfs-bus-coresight-devices-cti
> +++ b/Documentation/ABI/testing/sysfs-bus-coresight-devices-cti
> @@ -1,241 +1,241 @@
> What: /sys/bus/coresight/devices/<cti-name>/enable
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (RW) Enable/Disable the CTI hardware.
>
> What: /sys/bus/coresight/devices/<cti-name>/powered
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) Indicate if the CTI hardware is powered.
>
> What: /sys/bus/coresight/devices/<cti-name>/ctmid
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) Display the associated CTM ID
>
> What: /sys/bus/coresight/devices/<cti-name>/nr_trigger_cons
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) Number of devices connected to triggers on this CTI
>
> What: /sys/bus/coresight/devices/<cti-name>/triggers<N>/name
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) Name of connected device <N>
>
> What: /sys/bus/coresight/devices/<cti-name>/triggers<N>/in_signals
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) Input trigger signals from connected device <N>
>
> What: /sys/bus/coresight/devices/<cti-name>/triggers<N>/in_types
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) Functional types for the input trigger signals
> from connected device <N>
>
> What: /sys/bus/coresight/devices/<cti-name>/triggers<N>/out_signals
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) Output trigger signals to connected device <N>
>
> What: /sys/bus/coresight/devices/<cti-name>/triggers<N>/out_types
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) Functional types for the output trigger signals
> to connected device <N>
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/inout_sel
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (RW) Select the index for inen and outen registers.
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/inen
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (RW) Read or write the CTIINEN register selected by inout_sel.
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/outen
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (RW) Read or write the CTIOUTEN register selected by inout_sel.
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/gate
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (RW) Read or write CTIGATE register.
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/asicctl
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (RW) Read or write ASICCTL register.
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/intack
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Write) Write the INTACK register.
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/appset
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (RW) Set CTIAPPSET register to activate channel. Read back to
> determine current value of register.
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/appclear
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Write) Write APPCLEAR register to deactivate channel.
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/apppulse
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Write) Write APPPULSE to pulse a channel active for one clock
> cycle.
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/chinstatus
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) Read current status of channel inputs.
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/choutstatus
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) read current status of channel outputs.
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/triginstatus
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) read current status of input trigger signals
>
> What: /sys/bus/coresight/devices/<cti-name>/regs/trigoutstatus
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) read current status of output trigger signals.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/trigin_attach
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Write) Attach a CTI input trigger to a CTM channel.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/trigin_detach
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Write) Detach a CTI input trigger from a CTM channel.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/trigout_attach
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Write) Attach a CTI output trigger to a CTM channel.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/trigout_detach
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Write) Detach a CTI output trigger from a CTM channel.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/chan_gate_enable
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (RW) Enable CTIGATE for single channel (Write) or list enabled
> channels through the gate (R).
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/chan_gate_disable
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Write) Disable CTIGATE for single channel.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/chan_set
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Write) Activate a single channel.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/chan_clear
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Write) Deactivate a single channel.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/chan_pulse
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Write) Pulse a single channel - activate for a single clock cycle.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/trigout_filtered
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) List of output triggers filtered across all connections.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/trig_filter_enable
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (RW) Enable or disable trigger output signal filtering.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/chan_inuse
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) show channels with at least one attached trigger signal.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/chan_free
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) show channels with no attached trigger signals.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/chan_xtrigs_sel
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (RW) Write channel number to select a channel to view, read to
> see selected channel number.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/chan_xtrigs_in
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) Read to see input triggers connected to selected view
> channel.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/chan_xtrigs_out
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Read) Read to see output triggers connected to selected view
> channel.
>
> What: /sys/bus/coresight/devices/<cti-name>/channels/chan_xtrigs_reset
> Date: March 2020
> -KernelVersion 5.7
> +KernelVersion: 5.7
> Contact: Mike Leach or Mathieu Poirier
> Description: (Write) Clear all channel / trigger programming.
> diff --git a/Documentation/ABI/testing/sysfs-bus-coresight-devices-tpdm b/Documentation/ABI/testing/sysfs-bus-coresight-devices-tpdm
> index bf710ea6e0ef..53cb454b60d0 100644
> --- a/Documentation/ABI/testing/sysfs-bus-coresight-devices-tpdm
> +++ b/Documentation/ABI/testing/sysfs-bus-coresight-devices-tpdm
> @@ -1,6 +1,6 @@
> What: /sys/bus/coresight/devices/<tpdm-name>/integration_test
> Date: January 2023
> -KernelVersion 6.2
> +KernelVersion: 6.2
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (Write) Run integration test for tpdm. Integration test
> @@ -14,7 +14,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/reset_dataset
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (Write) Reset the dataset of the tpdm.
> @@ -24,7 +24,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_trig_type
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the trigger type of the DSB for tpdm.
> @@ -35,7 +35,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_trig_ts
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the trigger timestamp of the DSB for tpdm.
> @@ -46,7 +46,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_mode
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the programming mode of the DSB for tpdm.
> @@ -60,7 +60,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_edge/ctrl_idx
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the index number of the edge detection for the DSB
> @@ -69,7 +69,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_edge/ctrl_val
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> Write a data to control the edge detection corresponding to
> @@ -85,7 +85,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_edge/ctrl_mask
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> Write a data to mask the edge detection corresponding to the index
> @@ -97,21 +97,21 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_edge/edcr[0:15]
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> Read a set of the edge control value of the DSB in TPDM.
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_edge/edcmr[0:7]
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> Read a set of the edge control mask of the DSB in TPDM.
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_trig_patt/xpr[0:7]
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the value of the trigger pattern for the DSB
> @@ -119,7 +119,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_trig_patt/xpmr[0:7]
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the mask of the trigger pattern for the DSB
> @@ -127,21 +127,21 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_patt/tpr[0:7]
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the value of the pattern for the DSB subunit TPDM.
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_patt/tpmr[0:7]
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the mask of the pattern for the DSB subunit TPDM.
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_patt/enable_ts
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (Write) Set the pattern timestamp of DSB tpdm. Read
> @@ -153,7 +153,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_patt/set_type
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (Write) Set the pattern type of DSB tpdm. Read
> @@ -165,7 +165,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_msr/msr[0:31]
> Date: March 2023
> -KernelVersion 6.7
> +KernelVersion: 6.7
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the MSR(mux select register) for the DSB subunit
> @@ -173,7 +173,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/cmb_mode
> Date: January 2024
> -KernelVersion 6.9
> +KernelVersion: 6.9
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description: (Write) Set the data collection mode of CMB tpdm. Continuous
> change creates CMB data set elements on every CMBCLK edge.
> @@ -187,7 +187,7 @@ Description: (Write) Set the data collection mode of CMB tpdm. Continuous
>
> What: /sys/bus/coresight/devices/<tpdm-name>/cmb_trig_patt/xpr[0:1]
> Date: January 2024
> -KernelVersion 6.9
> +KernelVersion: 6.9
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the value of the trigger pattern for the CMB
> @@ -195,7 +195,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/cmb_trig_patt/xpmr[0:1]
> Date: January 2024
> -KernelVersion 6.9
> +KernelVersion: 6.9
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the mask of the trigger pattern for the CMB
> @@ -203,21 +203,21 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_patt/tpr[0:1]
> Date: January 2024
> -KernelVersion 6.9
> +KernelVersion: 6.9
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the value of the pattern for the CMB subunit TPDM.
>
> What: /sys/bus/coresight/devices/<tpdm-name>/dsb_patt/tpmr[0:1]
> Date: January 2024
> -KernelVersion 6.9
> +KernelVersion: 6.9
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the mask of the pattern for the CMB subunit TPDM.
>
> What: /sys/bus/coresight/devices/<tpdm-name>/cmb_patt/enable_ts
> Date: January 2024
> -KernelVersion 6.9
> +KernelVersion: 6.9
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (Write) Set the pattern timestamp of CMB tpdm. Read
> @@ -229,7 +229,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/cmb_trig_ts
> Date: January 2024
> -KernelVersion 6.9
> +KernelVersion: 6.9
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the trigger timestamp of the CMB for tpdm.
> @@ -240,7 +240,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/cmb_ts_all
> Date: January 2024
> -KernelVersion 6.9
> +KernelVersion: 6.9
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Read or write the status of timestamp upon all interface.
> @@ -252,7 +252,7 @@ Description:
>
> What: /sys/bus/coresight/devices/<tpdm-name>/cmb_msr/msr[0:31]
> Date: January 2024
> -KernelVersion 6.9
> +KernelVersion: 6.9
> Contact: Jinlong Mao (QUIC) <quic_jinlmao@quicinc.com>, Tao Zhang (QUIC) <quic_taozha@quicinc.com>
> Description:
> (RW) Set/Get the MSR(mux select register) for the CMB subunit
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [f2fs-dev] [RFC v2 00/38] Improve ABI documentation generation
2025-01-28 0:05 [RFC v2 00/38] Improve ABI documentation generation Mauro Carvalho Chehab
` (2 preceding siblings ...)
2025-01-28 22:42 ` [RFC v2 00/38] Improve ABI documentation generation Jonathan Corbet
@ 2025-03-27 21:58 ` patchwork-bot+f2fs
3 siblings, 0 replies; 11+ messages in thread
From: patchwork-bot+f2fs @ 2025-03-27 21:58 UTC (permalink / raw)
To: Mauro Carvalho Chehab
Cc: linux-doc, corbet, gregkh, linux-pm, netdev, coresight, linux-usb,
linux-wireless, linux-kernel, linux-f2fs-devel, linux-block,
linux-iio, linux-hardening, workflows, bpf, linux-arm-kernel,
linux-media
Hello:
This patch was applied to jaegeuk/f2fs.git (dev)
by Jonathan Corbet <corbet@lwn.net>:
On Tue, 28 Jan 2025 01:05:49 +0100 you wrote:
> Hi Jon/Greg,
>
> That's the second version of my RFC patches meant to modenize the ABI
> parser that I wrote in Perl.
>
> I originally started it due to some issues I noticed when searching for
> ABI symbols. While I could just go ahead and fix the already existing
> script, I noticed that the script maintainance didn't have much care over
> all those years, probably because it is easier to find Python programmers
> those days.
>
> [...]
Here is the summary with links:
- [f2fs-dev,RFC,v2,10/38] ABI: sysfs-fs-f2fs: fix date tags
https://git.kernel.org/jaegeuk/f2fs/c/90800df0da78
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-03-27 22:01 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-28 0:05 [RFC v2 00/38] Improve ABI documentation generation Mauro Carvalho Chehab
2025-01-28 0:05 ` [RFC v2 08/38] ABI: sysfs-bus-coresight-*: fix kernelversion tags Mauro Carvalho Chehab
2025-02-04 10:30 ` Suzuki K Poulose
2025-01-28 0:06 ` [RFC v2 30/38] docs: arm: asymmetric-32bit: Allow creating cross-references for ABI Mauro Carvalho Chehab
2025-01-28 22:42 ` [RFC v2 00/38] Improve ABI documentation generation Jonathan Corbet
2025-01-29 1:45 ` Mauro Carvalho Chehab
2025-01-29 14:22 ` Mauro Carvalho Chehab
2025-01-29 15:41 ` Mauro Carvalho Chehab
2025-01-29 15:58 ` Jonathan Corbet
2025-01-29 16:19 ` Mauro Carvalho Chehab
2025-03-27 21:58 ` [f2fs-dev] " patchwork-bot+f2fs
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).