re-enable colors on kernel bound pins
[linux-gpio-pinout] / gpio.pl
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
4 use autodie;
5 use Data::Dump qw(dump);
6 use Getopt::Long;
7
8 my $opt_svg = $ENV{SVG} || 0;
9 my $opt_alt = $ENV{ALT} || 0;
10 my $opt_invert = $ENV{INVERT} = 0;
11 my $opt_vertical = $ENV{VERTICAL} = 0;
12 my $opt_kernel = $ENV{kernel} = 1;
13 GetOptions(
14         'svg!' => \$opt_svg,
15         'alt!' => \$opt_alt,
16         'invert!' => \$opt_invert,
17         'vertical!' => \$opt_vertical,
18         'kernel!' => \$opt_kernel,
19 );
20
21 # svg font hints
22 my $font_w = 1.67; # < 2.54, font is not perfect square
23
24 my $txt_color = '#000000';
25    $txt_color = '#ffffff' if $opt_invert;
26
27 sub slurp {
28         open(my $fh, '<', shift);
29         local $/ = undef;
30         <$fh>;
31 }
32
33 my $pins;
34
35 my $model = slurp('/proc/device-tree/model');
36 $model =~ s/\x00$//; # strip kernel NULL
37 warn "# model [$model]";
38
39 my @lines;
40 my $line_i = 0;
41
42 my $include = 0;
43 while(<DATA>) {
44         chomp;
45         if ( m/^#\s*$model/ ) {
46                 $include = 1;
47         } elsif ( m/^#\s+/ ) {
48                 $include = 0;
49         } elsif ( $include ) {
50                 push @{ $pins->{$1} }, $line_i while ( m/\t(P\w\d+)/g );
51
52                 push @lines, $_;
53
54                 $line_i++;
55         } else {
56                 warn "IGNORE: [$_]\n";
57         }
58 }
59
60 die "add pin definition for # $model" unless $pins;
61
62 warn "# pins ",dump($pins);
63
64 my $pin_function;
65
66 open(my $fh, '<', '/sys/kernel/debug/pinctrl/pinctrl-handles');
67 while(<$fh>) {
68         chomp;
69         if ( m/group: (P\w\d+)\s.+function: (\S+)/ ) {
70                 my ($pin, $function) = ($1,$2);
71                 $pin_function->{$pin} = $function;
72
73                 next unless $opt_kernel;
74
75                 if ( $pins->{$pin} ) {
76                         foreach my $line ( @{$pins->{$pin}} ) {
77 warn "XXX $pin $line";
78                                 my $t = $lines[$line];
79                                 if ( $opt_svg ) {
80                                         $t =~ s/$pin/[$function]/;
81                                 } else {
82                                         $t =~ s/$pin/$pin [$function]/ || die "can't find $pin in [$t]";
83                                 }
84                                 $lines[$line] = $t;
85                                 warn "# $line: $lines[$line]\n";
86                         }
87                 } else {
88                         warn "IGNORED: pin $pin function $function\n";
89                 }
90         }
91 }
92
93 my @max_len = ( 0,0,0,0 );
94 my @line_parts;
95 foreach my $line (@lines) {
96         if ( $line =~ m/^#/ ) {
97                 push @line_parts, [ $line ] unless $opt_svg;
98                 next;
99         }
100         $line =~ s/(\[uart\d)(\]\s[^\t]*(rx|tx))/$1 $3$2/gi;
101         $line =~ s/(\[i2c\d)(\]\s[^\t]*(sck|sda))/$1 $3$2/gi;
102         $line =~ s/\s*\([^\)]+\)//g if ! $opt_alt;
103
104         my @v = split(/\s*\t+\s*/,$line,4);
105         push @line_parts, [ @v ];
106         foreach my $i ( 0 .. 3 ) {
107                 next unless exists $v[$i];
108                 next if $v[$i] =~ m/^#/; # don't calculate comments into max length
109                 my $l = length($v[$i]);
110                 $max_len[$i] = $l if $l > $max_len[$i];
111         }
112 }
113
114 warn "# max_len = ",dump( \@max_len );
115 warn "# line_parts = ",dump( \@line_parts );
116
117 #print "$_\n" foreach @lines;
118
119 my $fmt = "%$max_len[0]s %-$max_len[1]s %$max_len[2]s %-$max_len[3]s\n";
120
121 my $x = 30.00; # mm
122 my $y = 30.00; # mm
123
124 if ( $opt_svg ) {
125         print qq{<?xml version="1.0" encoding="UTF-8" standalone="no"?>
126 <svg
127    xmlns:dc="http://purl.org/dc/elements/1.1/"
128    xmlns:cc="http://creativecommons.org/ns#"
129    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
130    xmlns:svg="http://www.w3.org/2000/svg"
131    xmlns="http://www.w3.org/2000/svg"
132    xmlns:xlink="http://www.w3.org/1999/xlink"
133    id="svg8"
134    version="1.1"
135    viewBox="0 0 210 297"
136    height="297mm"
137    width="210mm">
138
139
140 <g id="layer1">
141
142         }; # svg, insert rest of rect
143
144         print qq{<rect x="0" y="0" width="210" height="297" style="fill:#000000" id="high-contrast"/>} if $opt_invert;
145 }
146
147 my @later;
148
149 my $cols = {    # foreground background
150         txt  => [ '#000000', '#ffffff' ],
151         pins => [ '#ffffff', '#ff00ff' ],
152         vcc  => [ '#ff0000', '#ffff00' ],
153         gnd  => [ '#000000', '#00ffff' ],
154         i2c  => [ '#008888', '#ffcccc' ],
155         uart => [ '#880088', '#ccffcc' ],
156         spi  => [ '#888800', '#ccccff' ],
157 };
158
159 sub svg_style {
160         my ($name,$x,$y,$col) = @_;
161         $y -= 2.10; # shift box overlay to right vertical position based on font baseline
162
163         sub rect {
164                 my ($x,$y,$col,$fill) = @_;
165                 print qq{<rect x="$x" y="$y" height="2.54" width="}, $max_len[$col] * $font_w, qq{" style="opacity:1;fill:$fill;fill-opacity:1;stroke:#ffffff;stroke-width:0.10;stroke-opacity:1" />};
166
167         }
168
169         if ( $name =~ m/^(\d+)$/ ) { # pins
170                 my $pin = $1;
171                 my ( $fg, $bg ) = @{ $cols->{pins} };
172                 if ( $pin == 1 ) {
173                         my $w  = $max_len[$col]*$font_w - 0.1;
174                         my $cx = $x + $w;
175                         my $cy = $y + 2.54;
176                         #print qq{<polygon points="$x,$y $cx,$y $x,$cy $x,$y" stroke="$fg" stroke-width="0.25" fill="$bg" />};
177                         #print qq{<polygon points="$x,$cy $cx,$cy $cx,$y $x,$cy" stroke="$bg" stroke-width="0.25" fill="$fg" />};
178                         print qq{<rect x="$x" y="$y" width="$w" height="2.54" stroke="$fg" stroke-width="0.3" fill="$bg" />};
179                         my ( $fg, $bg ) = @{ $cols->{txt} };
180                         print qq{<rect x="$x" y="$y" width="$w" height="2.54" rx="1" ry="1" stroke="$fg" stroke-width="0.3" fill="$bg" />};
181                 } else {
182                         rect $x,$y,$col,$fg;
183                 }
184                 return qq{ style="fill:$bg"};
185         }
186
187         if ( $name =~ m/(VCC|3V3|3.3V)/i ) {
188                 my ($fg,$bg) = @{ $cols->{vcc} };
189                 rect $x,$y,$col,$bg;
190                 return qq{ style="fill:$fg"};
191         } elsif ( $name =~ m/(G(ND|Round)|VSS)/i ) {
192                 my ($fg,$bg) = @{ $cols->{gnd} };
193                 rect $x,$y,$col,$bg;
194                 return qq{ style="fill:$fg"};
195         } elsif ( $name =~ m/\[(\w+)\d/ ) { # kernel
196                 my $dev = $1;
197                 if ( my ($fg,$bg) = @{ $cols->{$dev} } ) {
198                         rect $x,$y,$col,$bg;
199                         return qq{ style="fill:$fg"};
200                 }
201         } else {
202                 my ( $fg, $bg ) = @{ $cols->{txt} };
203                 rect $x,$y,$col,$bg;
204                 #return qq{ style="fill:$fg"};
205                 return '';
206         }
207 }
208
209 my $alt_col = 0;
210
211 my @cols_order = ( 0,1,2,3 );
212 my @cols_align = ( '','-','','-' ); # sprintf prefix
213
214 @cols_order = ( 0,1,3,2 ); # pins outside on the right
215 @cols_align = ( '','-','-','' );
216
217 foreach my $i ( 0 .. $#line_parts ) {
218         $i = $#line_parts - $i if $opt_vertical;
219         my $line = $line_parts[$i];
220
221         my $pin_color = $alt_col ? '#cccccc' : '#444444';
222         $alt_col = ! $alt_col;
223
224         if ( $opt_svg ) {
225
226                 my ($fg,$bg) = @{ $cols->{txt} };
227                 my $tspan = qq{<tspan x="$x" y="$y" style="line-height:2.54;fill-opacity:1;fill:$fg;stroke:none;">};
228
229                 my $x_pos = $x;
230                 foreach my $i ( @cols_order ) {
231                         next unless $line->[$i];
232                         my $text_anchor = 'middle';
233                         my $x2 = $x_pos + ( $max_len[$i] * $font_w ) / 2;
234                         $tspan .= qq{<tspan x="$x2" text-anchor="$text_anchor"}.svg_style($line->[$i],$x_pos,$y,$i).sprintf( '>%' . $cols_align[$i] . $max_len[$i] . 's</tspan>', $line->[$i]);
235                         $x_pos += $max_len[$i] * $font_w;
236                 }
237
238                 $tspan .= qq{</tspan>};
239                 push @later,sprintf $tspan, @$line;
240                 $y += 2.54;
241
242                 # swap pin colors for line stripes
243                 foreach my $swap (qw( pins txt )) {
244                         my ( $c1, $c2 ) = @{ $cols->{$swap} };
245                         $cols->{$swap} = [ $c2, $c1 ];
246                 };
247
248         } else {
249
250                 if ( $#$line == 0 ) {
251                         print $line->[0], "\n";
252                 } else {
253                         push @$line, '' while ($#$line < 3); # fill-in single row header
254                         printf $fmt, @$line;
255                 }
256
257         }
258 }
259
260 if ( $opt_svg ) {
261         print qq{
262     <text
263        id="text4506"
264        y="$x"
265        x="$y"
266        style="font-size:2.34px;line-height:2.54px;font-family:'Andale Mono';fill-opacity:1;stroke:none;stroke-width:0.10;stroke-opacity:1"
267        xml:space="preserve">
268
269         }; #svg
270
271         print @later, qq{
272 </text>
273 </g>
274 </svg>
275         }; #svg
276
277 }
278
279 __DATA__
280 # Cubietech Cubieboard2
281 ## U14 (Next to SATA connector)
282 ###     SPI0
283 48      PI13 (SPI0-MISO/UART6-RX/EINT25)        47      PI11 (SPI0-CLK/UART5-RX/EINT23)
284 46      PI12 (SPI0-MOSI/UART6-TX/EINT24)        45      PI10 (SPI0-CS/UART5-TX/EINT22)
285 ###     LCD
286 44      3.3V (nc in 2012-08-08)                 43      VCC-5V
287 42      Ground                                  41      SPDIF
288 40      PB10 (LCD0-SCK/LCD-PIO1)                39      PB11 (LCD0-SDA/LCD-PIO2)
289 38      Ground                                  37      PH7 (LCD0-BL-EN/LCD-PIO0/UART5-RX/EINT7)
290 36      XN_TP (TP-X2)                           35      YN_TP (TP-Y2)
291 34      XP_TP (TP-X1)                           33      YP_TP (TP-Y1)
292 32      PD25 (LCDDE)                            31      PB2 (PWM0)
293 30      PD26 (LCDHSYNC/VGA-HSYNC)               29      PD24 (LCDCLK)
294 28      PD23 (LCDD23)                           27      PD27 (LCDVSYNC/VGA-VSYNC)
295 26      PD21 (LCDD21)                           25      PD22 (LCDD22)
296 24      PD19 (LCDD19/LVDS1N3)                   23      PD20 (LCDD20)
297 22      PD17 (LCDD17/LVDS1NC)                   21      PD18 (LCDD18/LVDS1P3)
298 20      Ground                                  19      PD16 (LCDD16/LVDS1PC)
299 18      PD14 (LCDD14/LVDS1P2)                   17      PD15 (LCDD15/LVDS1N2)
300 16      PD12 (LCDD12/LVDS1P1)                   15      PD13 (LCDD13/LVDS1N1)
301 14      PD10 (LCDD10/LVDS1P0)                   13      PD11 (LCDD11/LVDS1N0)
302 12      PD8 (LCDD8/LVDS0P3)                     11      PD9 (LCDD9/LVDS0N3)
303 10      PD7 (LCDD7/LVDS0NC)                     9       Ground
304 8       PD5 (LCDD5/LVDS0N2)                     7       PD6 (LCDD6/LVDS0PC)
305 6       PD3 (LCDD3/LVDS0N1)                     5       PD4 (LCDD4/LNVS0P2)
306 4       PD1 (LCDD1/LVDS0N0)                     3       PD2 (LCDD2/LVDS0P1)
307 2       Ground                                  1       PD0 (LCDD0/LVDSP0)
308
309 # Cubietech Cubieboard2
310 ## U15 (Between Ethernet port and USB ports)
311 ### CSI1/TS
312 1       VCC-5V                                  2       PH15 (CSI1-PWR/EINT15)
313 3       CSI1-IO-2V8                             4       PH14 (CSI1-RST#/EINT14)
314 5       PG0 (CSI1-PCLK/SDC1-CMD)                6       PB18 (TWI1-SCK)
315 7       PB19 (TWI1-SDA)                         8       PG3 (CSI1-VSYNC/SDC1-D1)
316 9       PG2 (CSI1-HSYNC/SDC1-D0)                10      PG1 (CSI1-MCLK/SDC1-CLK)
317 11      PG4 (CSI1-D0/SDC1-D2)                   12      PG5 (CSI1-D1/SDC1-D3)
318 13      PG6 (CSI1-D2/UART3-TX)                  14      PG7 (CSI1-D3/UART3-RX)
319 15      PG8 (CSI1-D4/UART3-RTS)                 16      PG9 (CSI1-D5/UART3-CTS)
320 17      PG10 (CSI1-D6/UART4-TX)                 18      PG11 (CSI1-D7/UART4-RX)
321 19      Ground                                  20      Ground
322 ###     Analog SDIO3
323 21      FMINL                                   22      PI4 (SDC3-CMD)
324 23      FMINR                                   24      PI5 (SDC3-CLK)
325 25      Ground                                  26      PI6 (SDC3-D0)
326 27      VGA-R                                   28      PI7 (SDC3-D1)
327 29      VGA-G                                   30      PI8 (SDC3-D2)
328 31      VGA-B                                   32      PI9 (SDC3-D3)
329 ###     CSI0/TS
330 33      LCD1-VSYNC                              34      PE4 (CSI0-D0)
331 35      LCD1-HSYNC                              36      PE5 (CSI0-D1)
332 37      Ground                                  38      PE6 (CSI0-D2)
333 39      AVCC                                    40      PE7 (CSI0-D3)
334 41      LRADC0                                  42      PE8 (CSI0-D4)
335 43      CVBS                                    44      PE9 (CSI0-D5)
336 45      HPL                                     46      PE10 (CSI0-D6)
337 47      HPR                                     48      PE11 (CSI0-D7)
338
339 ## DEBUG serial (middle of board)
340 4       PB22 (UART0-TX)
341 3       PB23 (UART0-RX)
342 2       VCC-3V3
343 1       GND
344
345
346 # Lamobo R1
347 ## CON3 rpi DIP26-254
348 1       3.3v                    2       5v     
349 3       PB20 SDA.1              4       5V     
350 5       PB21 SCL.1              6       0v     
351 7       PI3 PWM1                8       PH0 UART3_TX
352 9       0v                      10      PH1 UART3_RX
353 11      PI19 UART2_RX           12      PH2
354 13      PI18 UART2_TX           14      0v     
355 15      PI17 UART2_CTS          16      PH21 CAN_RX 
356 17      3.3v                    18      PH20 CAN_TX 
357 19      PI12 SPI0_MOSI          20      0v     
358 21      PI13 SPI0_MISO          22      PI16 UART2_RTS   
359 23      PI11 SPI0_SCLK          24      PI10 SPI0_CS0    
360 25      0v                      26      PI14 SPI0_CS1
361
362 ## J13 DIP2-254
363 2       PB22 UART0_TX
364 1       PB23 UART0_RX
365
366 ## J12 DIP8-254
367 8       GND                     7       GND
368 6       PI20 UART7_TX           5       PH3
369 4       PI21 UART7_RX           3       PH5
370 2       3V3                     1       SATA-5V