* [PATCH] checkpatch: add DT compatible string documentation checks
@ 2015-04-22 20:39 Antony Pavlov
2015-04-28 7:41 ` Antony Pavlov
2015-04-28 8:34 ` Sascha Hauer
0 siblings, 2 replies; 3+ messages in thread
From: Antony Pavlov @ 2015-04-22 20:39 UTC (permalink / raw)
To: barebox; +Cc: Rob Herring, Florian Vaussard
This adds a simple check that any compatible strings in DeviceTree dts
files are present in Documentation/devicetree/bindings and
in dts/Bindings/.
Vendor prefixes are also checked for existing in vendor-prefixes.txt.
This code is based on linux v4.0-rc6 checkpatch.pl dt-checking code by
Rob Herring & Florian Vaussard:
Rob Herring (2):
checkpatch: add DT compatible string documentation checks
checkpatch: fix wildcard DT compatible string checking
Florian Vaussard (3):
checkpatch: fix spurious vendor compatible warnings
checkpatch: check compatible strings in .c and .h too
checkpatch: improve the compatible vendor match
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Cc: Rob Herring <robh@kernel.org>
Cc: Florian Vaussard <florian.vaussard@epfl.ch>
---
scripts/checkpatch.pl | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index a40d32c..8d96434 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -1466,6 +1466,41 @@ sub process {
#print "is_end<$is_end> length<$length>\n";
}
+# check for DT compatible documentation
+ if (defined $root &&
+ (($realfile =~ /\.dtsi?$/ && $line =~ /^\+\s*compatible\s*=\s*\"/) ||
+ ($realfile =~ /\.[ch]$/ && $line =~ /^\+.*\.compatible\s*=\s*\"/))) {
+
+ my @compats = $rawline =~ /\"([a-zA-Z0-9\-\,\.\+_]+)\"/g;
+
+ # linux device tree files
+ my $dt_path = $root . "/dts/Bindings/";
+ my $vp_file = $dt_path . "vendor-prefixes.txt";
+
+ # barebox-specific bindings
+ $dt_path = $dt_path . " " . $root . "/Documentation/devicetree/bindings/";
+
+ foreach my $compat (@compats) {
+ my $compat2 = $compat;
+ $compat2 =~ s/\,[a-zA-Z0-9]*\-/\,<\.\*>\-/;
+ my $compat3 = $compat;
+ $compat3 =~ s/\,([a-z]*)[0-9]*\-/\,$1<\.\*>\-/;
+ `grep -Erq "$compat|$compat2|$compat3" $dt_path`;
+ if ( $? >> 8 ) {
+ WARN(
+ "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
+ }
+
+ next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
+ my $vendor = $1;
+ `grep -Eq "^$vendor\\b" $vp_file`;
+ if ( $? >> 8 ) {
+ WARN(
+ "DT compatible string vendor \"$vendor\" appears un-documented -- check $vp_file\n" . $herecurr);
+ }
+ }
+ }
+
# check we are in a valid source file if not then ignore this hunk
next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
--
2.1.4
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] checkpatch: add DT compatible string documentation checks
2015-04-22 20:39 [PATCH] checkpatch: add DT compatible string documentation checks Antony Pavlov
@ 2015-04-28 7:41 ` Antony Pavlov
2015-04-28 8:34 ` Sascha Hauer
1 sibling, 0 replies; 3+ messages in thread
From: Antony Pavlov @ 2015-04-28 7:41 UTC (permalink / raw)
To: Sascha Hauer; +Cc: barebox
On Wed, 22 Apr 2015 23:39:18 +0300
Antony Pavlov <antonynpavlov@gmail.com> wrote:
ping
> This adds a simple check that any compatible strings in DeviceTree dts
> files are present in Documentation/devicetree/bindings and
> in dts/Bindings/.
>
> Vendor prefixes are also checked for existing in vendor-prefixes.txt.
>
> This code is based on linux v4.0-rc6 checkpatch.pl dt-checking code by
> Rob Herring & Florian Vaussard:
>
> Rob Herring (2):
> checkpatch: add DT compatible string documentation checks
> checkpatch: fix wildcard DT compatible string checking
>
> Florian Vaussard (3):
> checkpatch: fix spurious vendor compatible warnings
> checkpatch: check compatible strings in .c and .h too
> checkpatch: improve the compatible vendor match
>
> Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
> Cc: Rob Herring <robh@kernel.org>
> Cc: Florian Vaussard <florian.vaussard@epfl.ch>
> ---
> scripts/checkpatch.pl | 35 +++++++++++++++++++++++++++++++++++
> 1 file changed, 35 insertions(+)
>
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index a40d32c..8d96434 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -1466,6 +1466,41 @@ sub process {
> #print "is_end<$is_end> length<$length>\n";
> }
>
> +# check for DT compatible documentation
> + if (defined $root &&
> + (($realfile =~ /\.dtsi?$/ && $line =~ /^\+\s*compatible\s*=\s*\"/) ||
> + ($realfile =~ /\.[ch]$/ && $line =~ /^\+.*\.compatible\s*=\s*\"/))) {
> +
> + my @compats = $rawline =~ /\"([a-zA-Z0-9\-\,\.\+_]+)\"/g;
> +
> + # linux device tree files
> + my $dt_path = $root . "/dts/Bindings/";
> + my $vp_file = $dt_path . "vendor-prefixes.txt";
> +
> + # barebox-specific bindings
> + $dt_path = $dt_path . " " . $root . "/Documentation/devicetree/bindings/";
> +
> + foreach my $compat (@compats) {
> + my $compat2 = $compat;
> + $compat2 =~ s/\,[a-zA-Z0-9]*\-/\,<\.\*>\-/;
> + my $compat3 = $compat;
> + $compat3 =~ s/\,([a-z]*)[0-9]*\-/\,$1<\.\*>\-/;
> + `grep -Erq "$compat|$compat2|$compat3" $dt_path`;
> + if ( $? >> 8 ) {
> + WARN(
> + "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
> + }
> +
> + next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
> + my $vendor = $1;
> + `grep -Eq "^$vendor\\b" $vp_file`;
> + if ( $? >> 8 ) {
> + WARN(
> + "DT compatible string vendor \"$vendor\" appears un-documented -- check $vp_file\n" . $herecurr);
> + }
> + }
> + }
> +
> # check we are in a valid source file if not then ignore this hunk
> next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
>
> --
> 2.1.4
>
--
--
Best regards,
Antony Pavlov
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] checkpatch: add DT compatible string documentation checks
2015-04-22 20:39 [PATCH] checkpatch: add DT compatible string documentation checks Antony Pavlov
2015-04-28 7:41 ` Antony Pavlov
@ 2015-04-28 8:34 ` Sascha Hauer
1 sibling, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2015-04-28 8:34 UTC (permalink / raw)
To: Antony Pavlov; +Cc: barebox, Florian Vaussard, Rob Herring
Hi Antony,
On Wed, Apr 22, 2015 at 11:39:18PM +0300, Antony Pavlov wrote:
> This adds a simple check that any compatible strings in DeviceTree dts
> files are present in Documentation/devicetree/bindings and
> in dts/Bindings/.
>
> Vendor prefixes are also checked for existing in vendor-prefixes.txt.
>
> This code is based on linux v4.0-rc6 checkpatch.pl dt-checking code by
> Rob Herring & Florian Vaussard:
>
> Rob Herring (2):
> checkpatch: add DT compatible string documentation checks
> checkpatch: fix wildcard DT compatible string checking
>
> Florian Vaussard (3):
> checkpatch: fix spurious vendor compatible warnings
> checkpatch: check compatible strings in .c and .h too
> checkpatch: improve the compatible vendor match
Sorry for the delay. The reason I haven't written you back is that I was
unsure if we want to have the compatible checks in barebox. I now think
it's good to have them, so I merged this patch.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-04-28 8:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-22 20:39 [PATCH] checkpatch: add DT compatible string documentation checks Antony Pavlov
2015-04-28 7:41 ` Antony Pavlov
2015-04-28 8:34 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox