-
Notifications
You must be signed in to change notification settings - Fork 0
/
numa_node
8419 lines (8419 loc) · 679 KB
/
numa_node
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
匹配到二进制文件 .git/index
Documentation/acpi/gpio-properties.txt: Package () {"reset-gpios", Package() {^BTH, 1, 1, 0 }},
Documentation/acpi/gpio-properties.txt:In our Bluetooth example the "reset-gpios" refers to the second GpioIo()
Documentation/acpi/gpio-properties.txt: { "reset-gpios", &reset_gpio, 1 },
Documentation/admin-guide/bcache.rst:You can also control them through /sys/fs//bcache/<cset-uuid>/ .
Documentation/admin-guide/bcache.rst:(if attached) /sys/fs/bcache/<cset-uuid>/bdev*
Documentation/admin-guide/bcache.rst:Available at /sys/fs/bcache/<cset-uuid>
Documentation/admin-guide/cgroup-v2.rst: cpuset-enabled cgroups.
Documentation/admin-guide/cgroup-v2.rst: cpuset-enabled cgroups.
Documentation/admin-guide/cgroup-v2.rst: cpuset-enabled cgroups.
Documentation/admin-guide/cgroup-v2.rst: cpuset-enabled cgroups.
Documentation/admin-guide/cgroup-v2.rst: cpuset-enabled cgroups. This flag is owned by the parent cgroup
Documentation/admin-guide/ras.rst: reset-counters writing ANY thing to this control will
Documentation/arm/sti/stih407-overview.txt: The STiH407 is the new generation of SoC for Multi-HD, AVC set-top boxes
Documentation/arm/sti/stih415-overview.txt: The STiH415 is the next generation of HD, AVC set-top box processors
Documentation/arm/sti/stih416-overview.txt: The STiH416 is the next generation of HD, AVC set-top box processors
Documentation/arm/sti/stih418-overview.txt: The STiH418 is the new generation of SoC for UHDp60 set-top boxes
Documentation/cgroup-v1/cgroups.txt: css_set->tasks.
Documentation/device-mapper/unstriped.txt: echo "0 1 unstriped ${NUM} ${CHUNK} ${i} /dev/mapper/raid0 0" | dmsetup create set-${i}
Documentation/device-mapper/unstriped.txt: dd if=/dev/urandom of=/dev/mapper/set-${i} bs=${BS} count=${COUNT} oflag=direct
Documentation/device-mapper/unstriped.txt: diff /dev/mapper/set-${i} member-${i}
Documentation/device-mapper/unstriped.txt: dmsetup remove set-${i}
Documentation/devicetree/bindings/arm/gemini.txt: - #reset-cells: should be set to <1> - the system controller is also a
Documentation/devicetree/bindings/arm/gemini.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/arm/mediatek/mediatek,ethsys.txt:- #reset-cells: Must be 1
Documentation/devicetree/bindings/arm/mediatek/mediatek,ethsys.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/arm/mediatek/mediatek,g3dsys.txt:- #reset-cells: Must be 1
Documentation/devicetree/bindings/arm/mediatek/mediatek,g3dsys.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/arm/mediatek/mediatek,hifsys.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/arm/mediatek/mediatek,infracfg.txt:- #reset-cells: Must be 1
Documentation/devicetree/bindings/arm/mediatek/mediatek,infracfg.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/arm/mediatek/mediatek,pciesys.txt:- #reset-cells: Must be 1
Documentation/devicetree/bindings/arm/mediatek/mediatek,pciesys.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/arm/mediatek/mediatek,pericfg.txt:- #reset-cells: Must be 1
Documentation/devicetree/bindings/arm/mediatek/mediatek,pericfg.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/arm/mediatek/mediatek,ssusbsys.txt:- #reset-cells: Must be 1
Documentation/devicetree/bindings/arm/mediatek/mediatek,ssusbsys.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/arm/omap/omap.txt:- ti,no-reset-on-init: When present, the module should not be reset at init
Documentation/devicetree/bindings/arm/tegra/nvidia,nvec.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/arm/tegra/nvidia,nvec.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/arm/tegra/nvidia,tegra30-actmon.txt:- resets: Must contain an entry for each entry in reset-names. See
Documentation/devicetree/bindings/arm/tegra/nvidia,tegra30-actmon.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/arm/tegra/nvidia,tegra30-actmon.txt: reset-names = "actmon";
Documentation/devicetree/bindings/ata/ahci-mtk.txt: - resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/ata/ahci-mtk.txt: - reset-names : Associated names must be: "axi", "sw", "reg".
Documentation/devicetree/bindings/ata/ahci-mtk.txt: reset-names = "axi", "sw", "reg";
Documentation/devicetree/bindings/ata/ahci-st.txt: - reset-names : Associated names must be; "pwr-dwn", "sw-rst" and "pwr-rst"
Documentation/devicetree/bindings/ata/ahci-st.txt: reset-names = "pwr-dwn", "sw-rst", "pwr-rst";
Documentation/devicetree/bindings/ata/cortina,gemini-sata-bridge.txt:- reset-names: must be "sata0", "sata1"
Documentation/devicetree/bindings/ata/cortina,gemini-sata-bridge.txt: reset-names = "sata0", "sata1";
Documentation/devicetree/bindings/ata/nvidia,tegra124-ahci.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/ata/nvidia,tegra124-ahci.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/bus/nvidia,tegra20-gmi.txt: - resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/bus/nvidia,tegra20-gmi.txt: - reset-names : Must include the following entries: "gmi"
Documentation/devicetree/bindings/bus/nvidia,tegra20-gmi.txt: reset-names = "gmi";
Documentation/devicetree/bindings/bus/nvidia,tegra20-gmi.txt: reset-names = "gmi";
Documentation/devicetree/bindings/bus/ti-sysc.txt:- ti,no-reset-on-init interconnect target module should not be reset at init
Documentation/devicetree/bindings/c6x/clocks.txt:- ti,c64x+pll-reset-delay: CPU cycles to delay after PLL reset
Documentation/devicetree/bindings/c6x/clocks.txt: ti,c64x+pll-reset-delay = <12000>;
Documentation/devicetree/bindings/clock/amlogic,gxbb-aoclkc.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/amlogic,gxbb-aoclkc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/amlogic,meson8b-clkc.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/amlogic,meson8b-clkc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/csr,atlas7-car.txt:- #reset-cells: Should be <1>
Documentation/devicetree/bindings/clock/csr,atlas7-car.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/hisi-crg.txt:- #reset-cells: should be 2.
Documentation/devicetree/bindings/clock/hisi-crg.txt:CRG: clock-reset-controller@12010000 {
Documentation/devicetree/bindings/clock/hisi-crg.txt: #reset-cells = <2>;
Documentation/devicetree/bindings/clock/marvell,mmp2.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/marvell,pxa168.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/marvell,pxa1928.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/marvell,pxa910.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/nvidia,tegra114-car.txt:- #reset-cells : Should be 1.
Documentation/devicetree/bindings/clock/nvidia,tegra114-car.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/nvidia,tegra124-car.txt:- #reset-cells : Should be 1.
Documentation/devicetree/bindings/clock/nvidia,tegra124-car.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/nvidia,tegra124-dfll.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/clock/nvidia,tegra124-dfll.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/clock/nvidia,tegra124-dfll.txt: reset-names = "dvco";
Documentation/devicetree/bindings/clock/nvidia,tegra20-car.txt:- #reset-cells : Should be 1.
Documentation/devicetree/bindings/clock/nvidia,tegra20-car.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/nvidia,tegra210-car.txt:- #reset-cells : Should be 1.
Documentation/devicetree/bindings/clock/nvidia,tegra210-car.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/nvidia,tegra30-car.txt:- #reset-cells : Should be 1.
Documentation/devicetree/bindings/clock/nvidia,tegra30-car.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/qcom,gcc.txt:- #reset-cells : shall contain 1
Documentation/devicetree/bindings/clock/qcom,gcc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/qcom,gcc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/qcom,lcc.txt:- #reset-cells : shall contain 1
Documentation/devicetree/bindings/clock/qcom,lcc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/qcom,mmcc.txt:- #reset-cells : shall contain 1
Documentation/devicetree/bindings/clock/qcom,mmcc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/qcom,videocc.txt:- #reset-cells : from common reset binding, shall contain 1.
Documentation/devicetree/bindings/clock/renesas,cpg-mssr.txt: - #reset-cells: Must be 1
Documentation/devicetree/bindings/clock/renesas,cpg-mssr.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/rockchip,rk3036-cru.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/rockchip,rk3036-cru.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/rockchip,rk3128-cru.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/rockchip,rk3128-cru.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/rockchip,rk3188-cru.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/rockchip,rk3188-cru.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/rockchip,rk3228-cru.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/rockchip,rk3228-cru.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/rockchip,rk3288-cru.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/rockchip,rk3288-cru.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/rockchip,rk3328-cru.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/rockchip,rk3328-cru.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/rockchip,rk3368-cru.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/rockchip,rk3368-cru.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/rockchip,rk3399-cru.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/rockchip,rk3399-cru.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/rockchip,rk3399-cru.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/rockchip,rv1108-cru.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/clock/rockchip,rv1108-cru.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/st,stm32-rcc.txt:- #reset-cells: 1, see below
Documentation/devicetree/bindings/clock/st,stm32-rcc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/st,stm32h7-rcc.txt:- #reset-cells: 1, see below
Documentation/devicetree/bindings/clock/st,stm32h7-rcc.txt: rcc: reset-clock-controller@58024400 {
Documentation/devicetree/bindings/clock/st,stm32h7-rcc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.txt:- #reset-cells: Shall be 1
Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.txt:include/dt-bindings/reset-controller/stm32mp1-resets.h
Documentation/devicetree/bindings/clock/sun8i-de2.txt:- #reset-cells : must contain 1
Documentation/devicetree/bindings/clock/sun8i-de2.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/sun9i-de.txt:- #reset-cells : must contain 1
Documentation/devicetree/bindings/clock/sun9i-de.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/sun9i-usb.txt:- #reset-cells : must contain 1
Documentation/devicetree/bindings/clock/sun9i-usb.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/sunxi-ccu.txt:- #reset-cells : must contain 1
Documentation/devicetree/bindings/clock/sunxi-ccu.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/sunxi-ccu.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/sunxi.txt:- reset-cells : shall be set to 1
Documentation/devicetree/bindings/clock/sunxi.txt:- reset-cells : shall be set to 0
Documentation/devicetree/bindings/clock/sunxi.txt:- #reset-cells : shall be set to 1
Documentation/devicetree/bindings/clock/sunxi.txt: reset-names = "ahb";
Documentation/devicetree/bindings/clock/sunxi.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/ti/davinci/psc.txt:- #reset-cells: from reset binding; shall be set to 1 - only applicable when
Documentation/devicetree/bindings/clock/ti/davinci/psc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/clock/ti/divider.txt:- ti,set-rate-parent : clk_set_rate is propagated to parent
Documentation/devicetree/bindings/clock/ti/fixed-factor-clock.txt:- ti,set-rate-parent: clk_set_rate is propagated to parent
Documentation/devicetree/bindings/clock/ti/gate.txt:- ti,set-bit-to-disable : inverts default gate programming. Setting the bit
Documentation/devicetree/bindings/clock/ti/gate.txt: ti,set-bit-to-disable;
Documentation/devicetree/bindings/clock/ti/mux.txt:- ti,set-rate-parent : clk_set_rate is propagated to parent clock,
Documentation/devicetree/bindings/clock/ux500.txt: PRCC (programmable reset- and clock controller) peripheral clocks.
Documentation/devicetree/bindings/clock/ux500.txt: PRCC (programmable reset- and clock controller) kernel clocks
Documentation/devicetree/bindings/crypto/rockchip-crypto.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/crypto/rockchip-crypto.txt:- reset-names: Must include the name "crypto-rst".
Documentation/devicetree/bindings/crypto/rockchip-crypto.txt: reset-names = "crypto-rst";
Documentation/devicetree/bindings/crypto/sun4i-ss.txt: - reset-names : must contain "ahb"
Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt: the reset-names should be "hdmitx_apb", "hdmitx", "hdmitx_phy"
Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt: reset-names = "hdmitx_apb", "hdmitx", "hdmitx_phy";
Documentation/devicetree/bindings/display/bridge/anx7814.txt: - reset-gpios : Which GPIO to use for reset
Documentation/devicetree/bindings/display/bridge/anx7814.txt: reset-gpios = <&pio 98 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/display/bridge/cdns,dsi.txt:- reset-names: can contain "dsi_p_rst".
Documentation/devicetree/bindings/display/bridge/dw_mipi_dsi.txt:- resets: References to all the resets specified in the reset-names property
Documentation/devicetree/bindings/display/bridge/dw_mipi_dsi.txt:- reset-names: string reset name, must be "apb" if used. (optional)
Documentation/devicetree/bindings/display/bridge/ps8622.txt: - reset-gpios: OF device-tree gpio specification for RST_ pin.
Documentation/devicetree/bindings/display/bridge/ps8622.txt: reset-gpios = <&gpc3 1 1 0 0>;
Documentation/devicetree/bindings/display/bridge/ptn3460.txt: - reset-gpio: OF device-tree gpio specification for RST_N pin.
Documentation/devicetree/bindings/display/bridge/ptn3460.txt: reset-gpio = <&gpx1 5 1 0 0>;
Documentation/devicetree/bindings/display/bridge/sii902x.txt: - reset-gpios: OF device-tree gpio specification for RST_N pin.
Documentation/devicetree/bindings/display/bridge/sii902x.txt: reset-gpios = <&pioA 1 0>;
Documentation/devicetree/bindings/display/bridge/sii9234.txt: - reset-gpios: gpio specifier of RESET pin (active low)
Documentation/devicetree/bindings/display/bridge/sii9234.txt: reset-gpios = <&gpf3 4 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/display/bridge/sil-sii8620.txt: - reset-gpios: gpio specifier of RESET pin
Documentation/devicetree/bindings/display/bridge/sil-sii8620.txt: reset-gpio = <&gpv7 0 0>;
Documentation/devicetree/bindings/display/bridge/toshiba,tc358767.txt: - reset-gpios: OF device-tree gpio specification for RSTX pin
Documentation/devicetree/bindings/display/bridge/toshiba,tc358767.txt: reset-gpios = <&gpio3 24 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/display/ilitek,ili9225.txt:- reset-gpios: Reset pin
Documentation/devicetree/bindings/display/ilitek,ili9225.txt: reset-gpios = <&gpio0 8 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt:- reset-gpios: Reset pin
Documentation/devicetree/bindings/display/panel/ilitek,ili9322.txt: - reset-gpios: a GPIO spec for the reset pin, see gpio/gpio.txt
Documentation/devicetree/bindings/display/panel/jdi,lt070me05000.txt:- reset-gpios: phandle of gpio for reset line
Documentation/devicetree/bindings/display/panel/jdi,lt070me05000.txt: reset-gpios = <&tlmm_pinmux 54 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/display/panel/orisetech,otm8009a.txt: - reset-gpios: a GPIO spec for the reset pin (active low).
Documentation/devicetree/bindings/display/panel/orisetech,otm8009a.txt: reset-gpios = <&gpioh 7 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/display/panel/panel-common.txt:- reset-gpios: Specifier for a GPIO coonnected to the panel reset control
Documentation/devicetree/bindings/display/panel/panel-dpi.txt:- reset-gpios: GPIO to control the RESET pin
Documentation/devicetree/bindings/display/panel/panel-dsi-cm.txt:- reset-gpios: panel reset gpio
Documentation/devicetree/bindings/display/panel/panel-dsi-cm.txt: reset-gpios = <&gpio4 6 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/display/panel/raydium,rm68200.txt: - reset-gpios: a GPIO spec for the reset pin (active low).
Documentation/devicetree/bindings/display/panel/raydium,rm68200.txt: reset-gpios = <&gpiof 15 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/display/panel/samsung,ld9040.txt: - reset-gpios: a GPIO spec for the reset pin
Documentation/devicetree/bindings/display/panel/samsung,ld9040.txt: - reset-delay: delay after reset sequence [ms]
Documentation/devicetree/bindings/display/panel/samsung,ld9040.txt: reset-gpios = <&gpy4 5 0>;
Documentation/devicetree/bindings/display/panel/samsung,ld9040.txt: reset-delay = <10>;
Documentation/devicetree/bindings/display/panel/samsung,s6e3ha2.txt: - reset-gpios: a GPIO spec for the reset pin (active low)
Documentation/devicetree/bindings/display/panel/samsung,s6e3ha2.txt: reset-gpios = <&gpg0 0 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/display/panel/samsung,s6e63j0x03.txt: - reset-gpios: a GPIO spec for the reset pin (active low)
Documentation/devicetree/bindings/display/panel/samsung,s6e63j0x03.txt: reset-gpios = <&gpe0 1 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/display/panel/samsung,s6e8aa0.txt: - reset-gpios: a GPIO spec for the reset pin
Documentation/devicetree/bindings/display/panel/samsung,s6e8aa0.txt: - reset-delay: delay after reset sequence [ms]
Documentation/devicetree/bindings/display/panel/samsung,s6e8aa0.txt: reset-gpios = <&gpy4 5 0>;
Documentation/devicetree/bindings/display/panel/samsung,s6e8aa0.txt: reset-delay = <100>;
Documentation/devicetree/bindings/display/panel/sharp,ls037v7dw01.txt:- reset-gpios: a GPIO spec for the optional reset pin.
Documentation/devicetree/bindings/display/panel/sharp,ls037v7dw01.txt: reset-gpios = <&gpio5 27 GPIO_ACTIVE_HIGH>; /* gpio155, lcd RESB */
Documentation/devicetree/bindings/display/panel/sharp,ls043t1le01.txt:- reset-gpios: a GPIO spec for the reset pin
Documentation/devicetree/bindings/display/panel/sharp,ls043t1le01.txt: reset-gpios = <&pm8941_gpios 19 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/display/panel/sitronix,st7789v.txt: - reset-gpios: a GPIO phandle for the reset pin
Documentation/devicetree/bindings/display/panel/sitronix,st7789v.txt: reset-gpios = <&pio 6 11 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/display/panel/sony,acx565akm.txt:- reset-gpios: panel reset gpio
Documentation/devicetree/bindings/display/panel/sony,acx565akm.txt: reset-gpios = <&gpio3 26 GPIO_ACTIVE_HIGH>; /* 90 */
Documentation/devicetree/bindings/display/panel/tpo,td043mtea1.txt:- reset-gpios: panel reset gpio
Documentation/devicetree/bindings/display/panel/tpo,td043mtea1.txt: reset-gpios = <&gpio7 7 0>;
Documentation/devicetree/bindings/display/repaper.txt:- reset-gpios: RESET pin
Documentation/devicetree/bindings/display/repaper.txt: reset-gpios = <&gpio 24 0>;
Documentation/devicetree/bindings/display/rockchip/analogix_dp-rockchip.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/rockchip/analogix_dp-rockchip.txt:- reset-names: Must include the name "dp"
Documentation/devicetree/bindings/display/rockchip/analogix_dp-rockchip.txt: reset-names = "dp";
Documentation/devicetree/bindings/display/rockchip/cdn-dp-rockchip.txt:- reset-names : string of reset names
Documentation/devicetree/bindings/display/rockchip/cdn-dp-rockchip.txt: reset-names = "spdif";
Documentation/devicetree/bindings/display/rockchip/dw_mipi_dsi_rockchip.txt:- reset-names: string reset name, must be "apb".
Documentation/devicetree/bindings/display/rockchip/dw_mipi_dsi_rockchip.txt: reset-names = "apb";
Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt: reset-names = "axi", "ahb", "dclk";
Documentation/devicetree/bindings/display/sitronix,st7586.txt:- reset-gpios: Reset pin
Documentation/devicetree/bindings/display/sitronix,st7586.txt: reset-gpios = <&gpio 80 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/display/sitronix,st7735r.txt:- reset-gpios: Reset signal (RSTX)
Documentation/devicetree/bindings/display/sitronix,st7735r.txt: reset-gpios = <&gpio 80 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/display/ssd1307fb.txt: - reset-gpios: The GPIO used to reset the OLED display, if available. See
Documentation/devicetree/bindings/display/ssd1307fb.txt: reset-gpios = <&gpio2 7>;
Documentation/devicetree/bindings/display/ssd1307fb.txt: reset-active-low;
Documentation/devicetree/bindings/display/ssd1307fb.txt: reset-gpios = <&gpio2 7>;
Documentation/devicetree/bindings/display/ssd1307fb.txt: reset-active-low;
Documentation/devicetree/bindings/display/st,stih4xx.txt: - reset-names: names of the resets listed in resets property in the same
Documentation/devicetree/bindings/display/st,stih4xx.txt: - reset-names: names of the resets listed in resets property in the same
Documentation/devicetree/bindings/display/st,stih4xx.txt: - reset-names: names of the resets listed in resets property in the same
Documentation/devicetree/bindings/display/st,stih4xx.txt: reset-names = "compo-main", "compo-aux";
Documentation/devicetree/bindings/display/st,stih4xx.txt: reset-names = "tvout";
Documentation/devicetree/bindings/display/st,stih4xx.txt: reset-names = "hqvdp";
Documentation/devicetree/bindings/display/st,stm32-ltdc.txt:- reset-names: see [5].
Documentation/devicetree/bindings/display/st,stm32-ltdc.txt: reset-names = "apb";
Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt: - reset-names: must be "ctrl"
Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt: - reset-names: must be "phy"
Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt: - reset-names: the reset names mentioned above
Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt: - resets and reset-names need to have a phandle to the SAT bus
Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt: reset-names = "lcd";
Documentation/devicetree/bindings/display/sunxi/sun6i-dsi.txt: reset-gpios = <&r_pio 0 5 GPIO_ACTIVE_LOW>; /* PL05 */
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: - reset-names: Must include the following entries:
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: reset-names = "host1x";
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: reset-names = "mpe";
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: reset-names = "vi";
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: reset-names = "epp";
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: reset-names = "isp";
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: reset-names = "2d";
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: reset-names = "3d";
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: reset-names = "dc";
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: reset-names = "dc";
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: reset-names = "hdmi";
Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt: reset-names = "dsi";
Documentation/devicetree/bindings/dma/nvidia,tegra20-apbdma.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/dma/nvidia,tegra20-apbdma.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/dma/nvidia,tegra20-apbdma.txt: reset-names = "dma";
Documentation/devicetree/bindings/dma/qcom_adm.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/dma/qcom_adm.txt: reset-names = "clk", "c0", "c1", "c2";
Documentation/devicetree/bindings/dma/qcom_hidma_mgmt.txt:- channel-reset-timeout-cycles: Channel reset timeout in cycles for this SOC.
Documentation/devicetree/bindings/dma/qcom_hidma_mgmt.txt: channel-reset-timeout-cycles = <0x500>;
Documentation/devicetree/bindings/firmware/nvidia,tegra186-bpmp.txt:- #reset-cells : Should be 1.
Documentation/devicetree/bindings/firmware/nvidia,tegra186-bpmp.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/fpga/lattice-ice40-fpga-mgr.txt:- reset-gpios: Active-low GPIO output connected to CRESET_B pin. Note
Documentation/devicetree/bindings/fpga/lattice-ice40-fpga-mgr.txt: reset-gpios = <&gpio 22 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/fuse/nvidia,tegra20-fuse.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/fuse/nvidia,tegra20-fuse.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/fuse/nvidia,tegra20-fuse.txt: reset-names = "fuse";
Documentation/devicetree/bindings/gpio/gpio-pca953x.txt: - reset-gpios: GPIO specification for the RESET input. This is an
Documentation/devicetree/bindings/gpio/gpio-uniphier.txt: reset-gpios = <&gpio UNIPHIER_GPIO_PORT(29, 4) GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/gpio/gpio-xra1403.txt: - reset-gpios: in case available used to control the device reset line.
Documentation/devicetree/bindings/gpio/gpio-xra1403.txt: reset-gpios = <&gpio3 6 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/gpio/nvidia,tegra186-gpio.txt:interrupt signals generated by a set-of-ports. The intent is for each generated
Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt: reset-names = "gpu";
Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt: reset-names = "gpu";
Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt: reset-names = "gpu";
Documentation/devicetree/bindings/i2c/i2c-mux-gpio.txt: reset-gpios = <&gpio2 7 1>;
Documentation/devicetree/bindings/i2c/i2c-mux-gpio.txt: reset-active-low;
Documentation/devicetree/bindings/i2c/i2c-mux-gpmux.txt: reset-gpios = <&gpio2 7 1>;
Documentation/devicetree/bindings/i2c/i2c-mux-gpmux.txt: reset-active-low;
Documentation/devicetree/bindings/i2c/i2c-mux-pca954x.txt: - reset-gpios: Reference to the GPIO connected to the reset input.
Documentation/devicetree/bindings/i2c/i2c-pca-platform.txt: - reset-gpios : gpio specifier for gpio connected to RESET_N pin. As the line
Documentation/devicetree/bindings/i2c/i2c-pca-platform.txt: reset-gpios = <&gpio1 0 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/i2c/nvidia,tegra20-i2c.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/i2c/nvidia,tegra20-i2c.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/i2c/nvidia,tegra20-i2c.txt: reset-names = "i2c";
Documentation/devicetree/bindings/iio/adc/rockchip-saradc.txt:- resets: Must contain an entry for each entry in reset-names if need support
Documentation/devicetree/bindings/iio/adc/rockchip-saradc.txt:- reset-names: Must include the name "saradc-apb".
Documentation/devicetree/bindings/iio/adc/rockchip-saradc.txt: reset-names = "saradc-apb";
Documentation/devicetree/bindings/iio/dac/ad5592r.txt: - reset-gpios : GPIO spec for the RESET pin. If specified, it will be
Documentation/devicetree/bindings/iio/dac/ad5592r.txt: reset-gpios = <&gpio0 86 0>; /* optional */
Documentation/devicetree/bindings/iio/health/afe4403.txt: - reset-gpios : GPIO used to reset the device.
Documentation/devicetree/bindings/iio/health/afe4403.txt: reset-gpios = <&gpio1 16 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/iio/health/afe4404.txt: - reset-gpios : GPIO used to reset the device.
Documentation/devicetree/bindings/iio/health/afe4404.txt: reset-gpios = <&gpio1 16 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/iio/light/cm3605.txt:- aset-gpios: GPIO line controlling the ASET line (drive low
Documentation/devicetree/bindings/iio/light/cm3605.txt:- capella,aset-resistance-ohms: the sensitivity calibration resistance,
Documentation/devicetree/bindings/iio/light/cm3605.txt: aset-gpios = <&foo_gpio 1 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/iio/light/cm3605.txt: capella,aset-resistance-ohms = <100000>;
Documentation/devicetree/bindings/iio/potentiometer/ad5272.txt: - reset-gpios: GPIO specification for the RESET input. This is an
Documentation/devicetree/bindings/iio/potentiometer/ad5272.txt: reset-gpios = <&gpio3 6 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/iio/pressure/bmp085.txt:- reset-gpios: a GPIO line handling reset of the sensor: as the line is
Documentation/devicetree/bindings/iio/pressure/bmp085.txt: reset-gpios = <&gpio0 26 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/iio/proximity/sx9500.txt: - reset-gpios: Reference to the GPIO connected to the device's active
Documentation/devicetree/bindings/iio/proximity/sx9500.txt: reset-gpios = <&gpio2 10 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/iio/sensorhub.txt:- mcu-reset-gpios: [out] sensorhub reset
Documentation/devicetree/bindings/iio/sensorhub.txt: mcu-reset-gpios = <&gpx0 5 0>;
Documentation/devicetree/bindings/input/atmel,maxtouch.txt:- reset-gpios: GPIO specifier for the touchscreen's reset pin (active low)
Documentation/devicetree/bindings/input/elants_i2c.txt:- reset-gpios: reset gpio the chip is connected to.
Documentation/devicetree/bindings/input/input-reset.txt:The /chosen node should contain a 'linux,sysrq-reset-seq' child node to define
Documentation/devicetree/bindings/input/input-reset.txt:sysrq-reset-seq: array of Linux keycodes, one keycode per cell.
Documentation/devicetree/bindings/input/input-reset.txt: linux,sysrq-reset-seq {
Documentation/devicetree/bindings/input/nvidia,tegra20-kbc.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/input/nvidia,tegra20-kbc.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/input/nvidia,tegra20-kbc.txt: reset-names = "kbc";
Documentation/devicetree/bindings/input/raydium_i2c_ts.txt:- reset-gpios: reset gpio the chip is connected to.
Documentation/devicetree/bindings/input/rmi4/rmi_2d_sensor.txt:- syna,offset-x: Add an offset to X.
Documentation/devicetree/bindings/input/rmi4/rmi_2d_sensor.txt:- syna,offset-y: Add an offset to Y.
Documentation/devicetree/bindings/input/rmi4/rmi_i2c.txt:- syna,reset-delay-ms: The number of milliseconds to wait after resetting the
Documentation/devicetree/bindings/input/touchscreen/cyttsp.txt: - reset-gpios : the reset gpio the chip is connected to
Documentation/devicetree/bindings/input/touchscreen/cyttsp.txt: reset-gpios = <&gpio3 4 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/input/touchscreen/cyttsp.txt: reset-gpios = <&gpio3 4 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.txt: - reset-gpios: GPIO specification for the RESET input
Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.txt: reset-gpios = <&gpio2 6 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/input/touchscreen/goodix.txt: - reset-gpios : GPIO pin used for reset
Documentation/devicetree/bindings/input/touchscreen/goodix.txt: reset-gpios = <&gpio1 1 0>;
Documentation/devicetree/bindings/input/touchscreen/hideep.txt:- reset-gpios : Define for reset gpio pin.
Documentation/devicetree/bindings/input/touchscreen/hideep.txt: reset-gpios = <&gpx1 5 0>;
Documentation/devicetree/bindings/input/touchscreen/pixcir_i2c_ts.txt:- reset-gpios: GPIO connected to the RESET line of the chip
Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt:- reset-gpios: the gpio pin used to reset the controller
Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt: reset-gpios = <&gpio2 30 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/input/touchscreen/tsc2005.txt: - reset-gpios : GPIO specifier for the controller reset line
Documentation/devicetree/bindings/input/touchscreen/tsc2005.txt: reset-gpios = <&gpio4 8 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/input/touchscreen/tsc2005.txt: reset-gpios = <&gpio4 8 GPIO_ACTIVE_HIGH>; /* 104 */
Documentation/devicetree/bindings/input/touchscreen/zforce_ts.txt:- reset-gpios: reset gpio the chip is connected to
Documentation/devicetree/bindings/input/touchscreen/zforce_ts.txt: reset-gpios = <&gpio5 9 0>; /* RST */
Documentation/devicetree/bindings/interrupt-controller/brcm,bcm7038-l1-intc.txt:directly to one of the HW INT lines on each CPU. Every BCM7xxx set-top chip
Documentation/devicetree/bindings/leds/leds-aat1290.txt:- enset-gpios : Must be device tree identifier of the flash device EN_SET pin.
Documentation/devicetree/bindings/leds/leds-aat1290.txt: enset-gpios = <&gpj1 2 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/media/i2c/adv7604.txt: - reset-gpios: Reference to the GPIO connected to the device's reset pin.
Documentation/devicetree/bindings/media/i2c/adv7604.txt: reset-gpios = <&ioexp 0 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/media/i2c/imx274.txt:- reset-gpios: Sensor reset GPIO
Documentation/devicetree/bindings/media/i2c/imx274.txt: reset-gpios = <&gpio_sensor 0 0>;
Documentation/devicetree/bindings/media/i2c/mt9p031.txt:- reset-gpios: Chip reset GPIO
Documentation/devicetree/bindings/media/i2c/mt9p031.txt: reset-gpios = <&gpio3 30 0>;
Documentation/devicetree/bindings/media/i2c/mt9v032.txt:- reset-gpios: GPIO handle which is connected to the reset pin of the chip.
Documentation/devicetree/bindings/media/i2c/nokia,smia.txt:- reset-gpios: XSHUTDOWN GPIO
Documentation/devicetree/bindings/media/i2c/nokia,smia.txt: reset-gpios = <&gpio3 20 0>;
Documentation/devicetree/bindings/media/i2c/ov2685.txt:- reset-gpios: Low active reset gpio
Documentation/devicetree/bindings/media/i2c/ov2685.txt: reset-gpios = <&gpio2 3 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/media/i2c/ov5640.txt:- reset-gpios: reference to the GPIO connected to the reset pin, if any.
Documentation/devicetree/bindings/media/i2c/ov5640.txt: reset-gpios = <&gpio1 20 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/media/i2c/ov5645.txt:- reset-gpios: Chip reset GPIO. Polarity is GPIO_ACTIVE_LOW. This corresponds to
Documentation/devicetree/bindings/media/i2c/ov5645.txt: reset-gpios = <&gpio5 20 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/media/i2c/ov5695.txt:- reset-gpios: Low active reset gpio
Documentation/devicetree/bindings/media/i2c/ov5695.txt: reset-gpios = <&gpio2 5 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/media/i2c/ov7670.txt:- reset-gpios: reference to the GPIO connected to the resetb pin, if any.
Documentation/devicetree/bindings/media/i2c/ov7670.txt: reset-gpios = <&pioE 11 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/media/i2c/ov772x.txt:- reset-gpios: reference to the GPIO connected to the RSTB pin which is
Documentation/devicetree/bindings/media/i2c/ov772x.txt: reset-gpios = <&axi_gpio_0 0 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/media/i2c/ov7740.txt:- reset-gpios: Rreference to the GPIO connected to the reset_b pin,
Documentation/devicetree/bindings/media/i2c/ov7740.txt: reset-gpios = <&pioA 43 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/media/i2c/ov9650.txt:- reset-gpios: reference to the GPIO connected to the resetb pin, if any.
Documentation/devicetree/bindings/media/i2c/ov9650.txt: reset-gpios = <&axi_gpio_0 0 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/media/i2c/tc358743.txt:- reset-gpios: gpio phandle GPIO connected to the reset pin
Documentation/devicetree/bindings/media/i2c/tc358743.txt: reset-gpios = <&gpio6 9 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/media/i2c/ths8200.txt:recorders, set-top boxes.
Documentation/devicetree/bindings/media/i2c/toshiba,et8ek8.txt:- reset-gpios: XSHUTDOWN GPIO. The XSHUTDOWN signal is active low. The sensor
Documentation/devicetree/bindings/media/i2c/toshiba,et8ek8.txt: reset-gpio = <&gpio4 6 GPIO_ACTIVE_HIGH>; /* 102 */
Documentation/devicetree/bindings/media/i2c/tvp5150.txt:- reset-gpios: phandle for the GPIO connected to the RESETB pin, if any.
Documentation/devicetree/bindings/media/i2c/tvp5150.txt: reset-gpios = <&gpio6 7 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/media/renesas,ceu.txt: reset-gpios = <&port3 11 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/media/rockchip-rga.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/media/rockchip-rga.txt:- reset-names: should be "core", "axi" and "ahb"
Documentation/devicetree/bindings/media/rockchip-rga.txt: reset-names = "core, "axi", "ahb";
Documentation/devicetree/bindings/media/samsung-s5c73m3.txt: reset-gpios = <&gpf1 3 1>;
Documentation/devicetree/bindings/media/si4713.txt:- reset-gpios: GPIO specifier for the chips reset line
Documentation/devicetree/bindings/media/si4713.txt: reset-gpios = <&gpio6 3 GPIO_ACTIVE_HIGH>; /* 163 */
Documentation/devicetree/bindings/media/stih407-c8sectpfe.txt:- reset-gpios : reset gpio for this tsin channel.
Documentation/devicetree/bindings/media/stih407-c8sectpfe.txt: reset-gpios = <&pio15 4 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/media/stih407-c8sectpfe.txt: reset-gpios = <&pio15 7 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/memory-controllers/exynos-srom.txt: Tcos : Chip selection set-up before OEn (0 - 15)
Documentation/devicetree/bindings/memory-controllers/exynos-srom.txt: Tacs : Address set-up before CSn (0 - 15)
Documentation/devicetree/bindings/memory-controllers/nvidia,tegra20-mc.txt:- #reset-cells : Should be 1. This cell represents memory client module ID.
Documentation/devicetree/bindings/memory-controllers/nvidia,tegra20-mc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/memory-controllers/nvidia,tegra30-mc.txt:- #reset-cells : Should be 1. This cell represents memory client module ID.
Documentation/devicetree/bindings/memory-controllers/nvidia,tegra30-mc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/mfd/altera-a10sr.txt:- #reset-cells : Should be one.
Documentation/devicetree/bindings/mfd/altera-a10sr.txt: a10sr_rst: reset-controller {
Documentation/devicetree/bindings/mfd/altera-a10sr.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/mfd/arizona.txt: - reset-gpios : GPIO specifier for the GPIO controlling /RESET
Documentation/devicetree/bindings/mfd/as3722.txt: watchdog-in, soft-reset-in
Documentation/devicetree/bindings/mfd/aspeed-lpc.txt: - #reset-controller indicates the number of reset cells expected
Documentation/devicetree/bindings/mfd/aspeed-lpc.txt:lpc_reset: reset-controller@18 {
Documentation/devicetree/bindings/mfd/aspeed-lpc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/mfd/aspeed-scu.txt:- #reset-cells: should be set to <1> - the system controller is also a
Documentation/devicetree/bindings/mfd/aspeed-scu.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt:- allow-set-time:
Documentation/devicetree/bindings/mfd/sun6i-prcm.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/mips/lantiq/fpi-bus.txt:- lantiq,offset-endianness : Offset of the endianness configuration
Documentation/devicetree/bindings/mips/lantiq/fpi-bus.txt: lantiq,offset-endianness = <0x4c>;
Documentation/devicetree/bindings/mips/lantiq/rcu-gphy.txt:- reset-names : One entry, value must be "gphy" or optional "gphy2"
Documentation/devicetree/bindings/mips/lantiq/rcu-gphy.txt: reset-names = "gphy", "gphy2";
Documentation/devicetree/bindings/mips/lantiq/rcu.txt: reset-names = "gphy", "gphy2";
Documentation/devicetree/bindings/mips/lantiq/rcu.txt: reset-names = "gphy", "gphy2";
Documentation/devicetree/bindings/mips/lantiq/rcu.txt: reset0: reset-controller@10 {
Documentation/devicetree/bindings/mips/lantiq/rcu.txt: #reset-cells = <2>;
Documentation/devicetree/bindings/mips/lantiq/rcu.txt: reset1: reset-controller@48 {
Documentation/devicetree/bindings/mips/lantiq/rcu.txt: #reset-cells = <2>;
Documentation/devicetree/bindings/mips/lantiq/rcu.txt: reset-names = "phy", "ctrl";
Documentation/devicetree/bindings/mips/lantiq/rcu.txt: reset-names = "phy", "ctrl";
Documentation/devicetree/bindings/mmc/mmc-pwrseq-emmc.txt:- reset-gpios : contains a GPIO specifier. The reset GPIO is asserted
Documentation/devicetree/bindings/mmc/mmc-pwrseq-emmc.txt: reset-gpios = <&gpio1 12 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/mmc/mmc-pwrseq-sd8787.txt:- reset-gpios: contains a reset GPIO specifier with the default
Documentation/devicetree/bindings/mmc/mmc-pwrseq-sd8787.txt: reset-gpios = <&twl_gpio 1 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/mmc/mmc-pwrseq-simple.txt:- reset-gpios : contains a list of GPIO specifiers. The reset GPIOs are asserted
Documentation/devicetree/bindings/mmc/mmc-pwrseq-simple.txt: de-asserting the reset-gpios (if any)
Documentation/devicetree/bindings/mmc/mmc-pwrseq-simple.txt:- power-off-delay-us : Delay in us after asserting the reset-gpios (if any)
Documentation/devicetree/bindings/mmc/mmc-pwrseq-simple.txt: reset-gpios = <&gpio1 12 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt: reset-names = "sdhci";
Documentation/devicetree/bindings/mmc/sunxi-mmc.txt: - reset-names : must contain "ahb"
Documentation/devicetree/bindings/mmc/synopsys-dw-mshc.txt:* reset-names: request name for using "resets" property. Must be "reset".
Documentation/devicetree/bindings/mmc/synopsys-dw-mshc.txt: reset-names = "reset";
Documentation/devicetree/bindings/mtd/sunxi-nand.txt:- reset-names : must contain "ahb"
Documentation/devicetree/bindings/net/arc_emac.txt:- phy-reset-gpios : Should specify the gpio for phy reset
Documentation/devicetree/bindings/net/arc_emac.txt:- phy-reset-duration : Reset duration in milliseconds. Should present
Documentation/devicetree/bindings/net/arc_emac.txt: only if property "phy-reset-gpios" is available. Missing the property
Documentation/devicetree/bindings/net/davicom-dm9000.txt:- reset-gpios : phandle of gpio that will be used to reset chip during probe
Documentation/devicetree/bindings/net/davicom-dm9000.txt: reset-gpios = <&gpf 12 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/net/dsa/dsa.txt: reset-gpios = <&gpio5 1 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/net/dsa/lan9303.txt:- reset-gpios: GPIO to be used to reset the whole device
Documentation/devicetree/bindings/net/dsa/lan9303.txt:- reset-duration: reset duration in milliseconds, defaults to 200 ms
Documentation/devicetree/bindings/net/dsa/lan9303.txt: reset-gpios = <&gpio7 6 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/net/dsa/lan9303.txt: reset-duration = <200>;
Documentation/devicetree/bindings/net/dsa/lan9303.txt: reset-gpios = <&gpio7 6 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/net/dsa/lan9303.txt: reset-duration = <100>;
Documentation/devicetree/bindings/net/dsa/marvell.txt:- reset-gpios : Should be a gpio specifier for a reset line
Documentation/devicetree/bindings/net/dsa/marvell.txt: reset-gpios = <&gpio5 1 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/net/dsa/marvell.txt: reset-gpios = <&gpio5 1 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/net/dsa/mt7530.txt:- reset-gpios: Should be a gpio specifier for a reset line.
Documentation/devicetree/bindings/net/dsa/mt7530.txt:- reset-names : Should be set to "mcm".
Documentation/devicetree/bindings/net/dsa/mt7530.txt: reset-gpios = <&pio 33 0>;
Documentation/devicetree/bindings/net/dwmac-sun8i.txt:- reset-names: must be "stmmaceth"
Documentation/devicetree/bindings/net/dwmac-sun8i.txt: reset-names = "stmmaceth";
Documentation/devicetree/bindings/net/dwmac-sun8i.txt: reset-names = "stmmaceth";
Documentation/devicetree/bindings/net/dwmac-sun8i.txt: reset-names = "stmmaceth";
Documentation/devicetree/bindings/net/fsl-fec.txt:- phy-reset-gpios : Should specify the gpio for phy reset
Documentation/devicetree/bindings/net/fsl-fec.txt:- phy-reset-duration : Reset duration in milliseconds. Should present
Documentation/devicetree/bindings/net/fsl-fec.txt: only if property "phy-reset-gpios" is available. Missing the property
Documentation/devicetree/bindings/net/fsl-fec.txt:- phy-reset-active-high : If present then the reset sequence using the GPIO
Documentation/devicetree/bindings/net/fsl-fec.txt: specified in the "phy-reset-gpios" property is reversed (H=reset state,
Documentation/devicetree/bindings/net/fsl-fec.txt:- phy-reset-post-delay : Post reset delay in milliseconds. If present then
Documentation/devicetree/bindings/net/fsl-fec.txt: a delay of phy-reset-post-delay milliseconds will be observed after the
Documentation/devicetree/bindings/net/fsl-fec.txt: phy-reset-gpios has been toggled. Can be omitted thus no delay is
Documentation/devicetree/bindings/net/fsl-fec.txt: phy-reset-gpios = <&gpio2 14 GPIO_ACTIVE_LOW>; /* GPIO2_14 */
Documentation/devicetree/bindings/net/fsl-fec.txt: phy-reset-gpios = <&gpio2 14 GPIO_ACTIVE_LOW>; /* GPIO2_14 */
Documentation/devicetree/bindings/net/hisilicon-femac.txt:- reset-names: should contain the reset signal name "mac"(required)
Documentation/devicetree/bindings/net/hisilicon-femac.txt:- hisilicon,phy-reset-delays-us: triplet of delays if PHY reset signal given.
Documentation/devicetree/bindings/net/hisilicon-femac.txt: reset-names = "mac","phy";
Documentation/devicetree/bindings/net/hisilicon-femac.txt: hisilicon,phy-reset-delays-us = <10000 20000 20000>;
Documentation/devicetree/bindings/net/hisilicon-hix5hd2-gmac.txt:- reset-names: contain the reset signal name "mac_core"(optional),
Documentation/devicetree/bindings/net/hisilicon-hix5hd2-gmac.txt:- hisilicon,phy-reset-delays-us: triplet of delays if PHY reset signal given.
Documentation/devicetree/bindings/net/hisilicon-hix5hd2-gmac.txt: reset-names = "mac_core", "mac_ifc", "phy";
Documentation/devicetree/bindings/net/hisilicon-hix5hd2-gmac.txt: hisilicon,phy-reset-delays-us = <10000 10000 30000>;
Documentation/devicetree/bindings/net/hisilicon-hns-dsaf.txt:- reset-field-offset: is offset of reset field. Its value depends on the hardware
Documentation/devicetree/bindings/net/hisilicon-hns-dsaf.txt: reset-field-offset = 0;
Documentation/devicetree/bindings/net/ieee802154/at86rf230.txt: - reset-gpio: GPIO spec for the rstn pin
Documentation/devicetree/bindings/net/ieee802154/ca8210.txt: - reset-gpio: GPIO attached to reset
Documentation/devicetree/bindings/net/ieee802154/ca8210.txt: reset-gpio = <&gpio1 1 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/net/ieee802154/cc2520.txt: - reset-gpio: GPIO spec for the RESET pin
Documentation/devicetree/bindings/net/ieee802154/cc2520.txt: reset-gpio = <&gpio1 12 0>;
Documentation/devicetree/bindings/net/ipq806x-dwmac.txt: reset-names = "stmmaceth";
Documentation/devicetree/bindings/net/macb.txt:- reset-gpios : Should specify the gpio for phy reset
Documentation/devicetree/bindings/net/macb.txt: reset-gpios = <&pioE 6 1>;
Documentation/devicetree/bindings/net/mdio.txt:- reset-gpios: One GPIO that control the RESET lines of all PHYs on that MDIO
Documentation/devicetree/bindings/net/mdio.txt:- reset-delay-us: RESET pulse width in microseconds.
Documentation/devicetree/bindings/net/mdio.txt:The 'reset-delay-us' indicates the RESET signal pulse width in microseconds and
Documentation/devicetree/bindings/net/mdio.txt: reset-gpios = <&gpio2 5 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/net/mdio.txt: reset-delay-us = <2>;
Documentation/devicetree/bindings/net/mediatek,mt7620-gsw.txt:- reset-names: Should contain the reset names "gsw"
Documentation/devicetree/bindings/net/mediatek,mt7620-gsw.txt: reset-names = "gsw";
Documentation/devicetree/bindings/net/mediatek-net.txt:- reset-names: Should contain the names of reset signal listed in the resets
Documentation/devicetree/bindings/net/mediatek-net.txt: reset-names = "eth";
Documentation/devicetree/bindings/net/micrel-ks8851.txt:- reset-gpios: reset_n input pin
Documentation/devicetree/bindings/net/micrel-ks8995.txt:- reset-gpios : phandle of gpio that will be used to reset chip during probe
Documentation/devicetree/bindings/net/micrel-ks8995.txt: reset-gpios = <&gpio0 46 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/net/nfc/nfcmrvl.txt:- reset-n-io: Output GPIO pin used to reset the chip (active low).
Documentation/devicetree/bindings/net/nfc/nfcmrvl.txt: reset-n-io = <&gpio3 16 0>;
Documentation/devicetree/bindings/net/nfc/nfcmrvl.txt: reset-n-io = <&gpio3 19 0>;
Documentation/devicetree/bindings/net/nfc/nfcmrvl.txt: reset-n-io = <&gpio3 19 0>;
Documentation/devicetree/bindings/net/nfc/st-nci-i2c.txt:- reset-gpios: Output GPIO pin used to reset the ST21NFCB
Documentation/devicetree/bindings/net/nfc/st-nci-i2c.txt: reset-gpios = <&gpio5 29 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/net/nfc/st-nci-spi.txt:- reset-gpios: Output GPIO pin used to reset the ST21NFCB
Documentation/devicetree/bindings/net/nfc/st-nci-spi.txt: reset-gpios = <&gpio5 29 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/net/nokia-bluetooth.txt: - reset-gpios: GPIO specifier, used to reset the BT module (active low)
Documentation/devicetree/bindings/net/nokia-bluetooth.txt: reset-gpios = <&gpio1 26 GPIO_ACTIVE_LOW>; /* gpio26 */
Documentation/devicetree/bindings/net/nxp,lpc1850-dwmac.txt: reset-names = "stmmaceth";
Documentation/devicetree/bindings/net/phy.txt:- reset-gpios: The GPIO phandle and specifier for the PHY reset signal.
Documentation/devicetree/bindings/net/phy.txt:- reset-assert-us: Delay after the reset was asserted in microseconds.
Documentation/devicetree/bindings/net/phy.txt:- reset-deassert-us: Delay after the reset was deasserted in microseconds.
Documentation/devicetree/bindings/net/phy.txt: reset-gpios = <&gpio1 4 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/net/phy.txt: reset-assert-us = <1000>;
Documentation/devicetree/bindings/net/phy.txt: reset-deassert-us = <2000>;
Documentation/devicetree/bindings/net/ralink,rt2880-net.txt:- reset-names: Should contain the reset names "fe". If a switch is present
Documentation/devicetree/bindings/net/ralink,rt2880-net.txt: reset-names = "fe";
Documentation/devicetree/bindings/net/ralink,rt3050-esw.txt:- reset-names: Should contain the reset names "esw"
Documentation/devicetree/bindings/net/ralink,rt3050-esw.txt: reset-names = "esw";
Documentation/devicetree/bindings/net/rockchip-dwmac.txt: - snps,reset-gpio gpio number for phy reset.
Documentation/devicetree/bindings/net/rockchip-dwmac.txt: - snps,reset-active-low boolean flag to indicate if phy reset is active low.
Documentation/devicetree/bindings/net/rockchip-dwmac.txt: snps,reset-gpio = <&gpio4 7 0>;
Documentation/devicetree/bindings/net/rockchip-dwmac.txt: snps,reset-active-low;
Documentation/devicetree/bindings/net/smsc-lan91c111.txt:- reset-gpios: GPIO to control the RESET pin
Documentation/devicetree/bindings/net/smsc911x.txt:- reset-gpios : a GPIO line connected to the RESET (active low) signal
Documentation/devicetree/bindings/net/smsc911x.txt: reset-gpios = <&gpio1 30 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt:- resets: Phandle and reset specifiers for each entry in reset-names, in the
Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt:- reset-names: May contain any/all of the following depending on the IP
Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt:- phy-reset-gpios: Phandle and specifier for any GPIO used to reset the PHY.
Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt: phy-reset-gpios = <&gpioctlr 43 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt: - reset-names: Should contain
Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt: reset-names = "ether";
Documentation/devicetree/bindings/net/sti-dwmac.txt: reset-names = "stmmaceth";
Documentation/devicetree/bindings/net/stmmac.txt:- snps,reset-gpio gpio number for phy reset.
Documentation/devicetree/bindings/net/stmmac.txt:- snps,reset-active-low boolean flag to indicate if phy reset is active low.
Documentation/devicetree/bindings/net/stmmac.txt:- snps,reset-delays-us is triplet of delays
Documentation/devicetree/bindings/net/stmmac.txt:- reset-names: Should contain the reset signal name "stmmaceth", if a
Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt:- reset-names: Must include the list of following reset names,
Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt: reset-names = "wifi_cpu_init",
Documentation/devicetree/bindings/nios2/nios2.txt:- altr,tlb-num-ways: Specifies the number of set-associativity ways in the TLB.
Documentation/devicetree/bindings/nios2/nios2.txt:- altr,reset-addr: Specifies CPU reset address
Documentation/devicetree/bindings/nios2/nios2.txt: altr,reset-addr = <0xc2800000>;
Documentation/devicetree/bindings/pci/designware-pcie.txt:- reset-gpio: GPIO pin number of power good signal
Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt:- reset-gpio: Should specify the GPIO for controlling the PCI bus device reset
Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt:- reset-gpio-active-high: If present then the reset sequence using the GPIO
Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt: specified in the "reset-gpio" property is reversed (H=reset state,
Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt:- reset-names: Must contain the following entires:
Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt:- resets: List of phandle and reset specifier pairs as listed in reset-names
Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt:- reset-gpios: The gpio to generate PCIe PERST# assert and deassert signal.
Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt: reset-names = "soft", "sys", "bus";
Documentation/devicetree/bindings/pci/kirin-pcie.txt:- reset-gpios: The GPIO to generate PCIe PERST# assert and deassert signal.
Documentation/devicetree/bindings/pci/kirin-pcie.txt: reset-gpios = <&gpio11 1 0 >;
Documentation/devicetree/bindings/pci/mediatek-pcie.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/pci/mediatek-pcie.txt:- reset-names: Must be "pcie-rst0", "pcie-rst1", "pcie-rstN".. based on the
Documentation/devicetree/bindings/pci/mediatek-pcie.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/pci/mediatek-pcie.txt: reset-names = "pcie-rst0", "pcie-rst1", "pcie-rst2";
Documentation/devicetree/bindings/pci/mvebu-pci.txt:- reset-gpios: optional GPIO to PERST#
Documentation/devicetree/bindings/pci/mvebu-pci.txt:- reset-delay-us: delay in us to wait after reset de-assertion, if not
Documentation/devicetree/bindings/pci/mvebu-pci.txt: reset-gpios = <&gpio0 25 1>;
Documentation/devicetree/bindings/pci/mvebu-pci.txt: reset-delay-us = <20000>;
Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt: reset-names = "pex", "afi", "pcie_x";
Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt: reset-names = "pex", "afi", "pcie_x";
Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt: reset-names = "pex", "afi", "pcie_x";
Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt: reset-names = "pex", "afi", "pcie_x";
Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt: reset-names = "afi", "pex", "pcie_x";
Documentation/devicetree/bindings/pci/qcom,pcie.txt: in reset-names property
Documentation/devicetree/bindings/pci/qcom,pcie.txt:- reset-names:
Documentation/devicetree/bindings/pci/qcom,pcie.txt:- reset-names:
Documentation/devicetree/bindings/pci/qcom,pcie.txt:- reset-names:
Documentation/devicetree/bindings/pci/qcom,pcie.txt:- reset-names:
Documentation/devicetree/bindings/pci/qcom,pcie.txt: reset-names = "axi", "ahb", "por", "pci", "phy";
Documentation/devicetree/bindings/pci/qcom,pcie.txt: reset-names = "core";
Documentation/devicetree/bindings/pci/rockchip-pcie-ep.txt:- resets: Must contain seven entries for each entry in reset-names.
Documentation/devicetree/bindings/pci/rockchip-pcie-ep.txt:- reset-names: Must include the following names
Documentation/devicetree/bindings/pci/rockchip-pcie-ep.txt: reset-names = "core", "mgmt", "mgmt-sticky", "pipe",
Documentation/devicetree/bindings/pci/rockchip-pcie-host.txt:- resets: Must contain seven entries for each entry in reset-names.
Documentation/devicetree/bindings/pci/rockchip-pcie-host.txt:- reset-names: Must include the following names
Documentation/devicetree/bindings/pci/rockchip-pcie-host.txt: reset-names = "core", "mgmt", "mgmt-sticky", "pipe",
Documentation/devicetree/bindings/pci/samsung,exynos5440-pcie.txt: reset-gpio = <&pin_ctrl 5 0>;
Documentation/devicetree/bindings/pci/samsung,exynos5440-pcie.txt: reset-gpio = <&pin_ctrl 22 0>;
Documentation/devicetree/bindings/phy/meson-gxl-usb2-phy.txt:- reset-names: must be "phy"
Documentation/devicetree/bindings/phy/meson-gxl-usb3-phy.txt:- reset-names: must contain "phy" and "peripheral"
Documentation/devicetree/bindings/phy/meson-gxl-usb3-phy.txt: reset-names = "phy", "peripheral";
Documentation/devicetree/bindings/phy/nvidia,tegra124-xusb-padctl.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/phy/nvidia,tegra124-xusb-padctl.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/phy/nvidia,tegra124-xusb-padctl.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/phy/nvidia,tegra124-xusb-padctl.txt:- reset-names: Must contain the following entries:
Documentation/devicetree/bindings/phy/nvidia,tegra124-xusb-padctl.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/phy/nvidia,tegra124-xusb-padctl.txt:- reset-names: Must contain the following entries:
Documentation/devicetree/bindings/phy/nvidia,tegra124-xusb-padctl.txt: reset-names = "padctl";
Documentation/devicetree/bindings/phy/nvidia,tegra124-xusb-padctl.txt: reset-names = "padctl";
Documentation/devicetree/bindings/phy/nvidia,tegra124-xusb-padctl.txt: reset-names = "phy";
Documentation/devicetree/bindings/phy/nvidia,tegra124-xusb-padctl.txt: reset-names = "phy";
Documentation/devicetree/bindings/phy/nvidia,tegra20-usb-phy.txt: - resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/phy/nvidia,tegra20-usb-phy.txt: - reset-names : Must include the following entries:
Documentation/devicetree/bindings/phy/nvidia,tegra20-usb-phy.txt: - nvidia,phy-reset-gpio : The GPIO used to reset the PHY.
Documentation/devicetree/bindings/phy/phy-ath79-usb.txt:- reset-names: "usb-phy"[, "usb-suspend-override"]
Documentation/devicetree/bindings/phy/phy-ath79-usb.txt: reset-names = "usb-phy", "usb-suspend-override";
Documentation/devicetree/bindings/phy/phy-lantiq-rcu-usb2.txt:- reset-names : Must be one of the following:
Documentation/devicetree/bindings/phy/phy-lantiq-rcu-usb2.txt: reset-names = "phy", "ctrl";
Documentation/devicetree/bindings/phy/phy-mapphone-mdm6600.txt:- reset-gpios GPIO to reset the device
Documentation/devicetree/bindings/phy/phy-mapphone-mdm6600.txt: reset-gpios = <&gpio2 17 GPIO_ACTIVE_HIGH>;
Documentation/devicetree/bindings/phy/phy-miphy28lp.txt:- reset-names : Associated name must be "miphy-sw-rst".
Documentation/devicetree/bindings/phy/phy-miphy28lp.txt: reset-names = "miphy-sw-rst";
Documentation/devicetree/bindings/phy/phy-miphy28lp.txt: reset-names = "miphy-sw-rst";
Documentation/devicetree/bindings/phy/phy-miphy28lp.txt: reset-names = "miphy-sw-rst";
Documentation/devicetree/bindings/phy/phy-rockchip-typec.txt: - reset-names : string reset name, must be:
Documentation/devicetree/bindings/phy/phy-rockchip-typec.txt: reset-names = "uphy", "uphy-pipe", "uphy-tcphy";
Documentation/devicetree/bindings/phy/phy-rockchip-typec.txt: reset-names = "uphy", "uphy-pipe", "uphy-tcphy";
Documentation/devicetree/bindings/phy/phy-stih407-usb.txt:- reset-names : list of reset signal names. Should be "global" and "port"
Documentation/devicetree/bindings/phy/phy-stih407-usb.txt: reset-names = "global", "port";
Documentation/devicetree/bindings/phy/qcom,usb-8x16-phy.txt:- reset-names:
Documentation/devicetree/bindings/phy/qcom,usb-8x16-phy.txt: reset-names = "phy";
Documentation/devicetree/bindings/phy/qcom,usb-hs-phy.txt:- reset-names:
Documentation/devicetree/bindings/phy/qcom,usb-hs-phy.txt: reset-names = "phy", "por";
Documentation/devicetree/bindings/phy/qcom-qmp-phy.txt: one for each entry in reset-names.
Documentation/devicetree/bindings/phy/qcom-qmp-phy.txt: - reset-names: "phy" for reset of phy block,
Documentation/devicetree/bindings/phy/qcom-qmp-phy.txt: one for each entry in reset-names.
Documentation/devicetree/bindings/phy/qcom-qmp-phy.txt: - reset-names: Must contain following for pcie qmp phys:
Documentation/devicetree/bindings/phy/qcom-qmp-phy.txt: reset-names = "phy", "common", "cfg";
Documentation/devicetree/bindings/phy/qcom-qmp-phy.txt: reset-names = "lane0";
Documentation/devicetree/bindings/phy/qcom-qusb2-phy.txt: - qcom,imp-res-offset-value: It is a 6 bit value that specifies offset to be
Documentation/devicetree/bindings/phy/ralink-usb-phy.txt: - reset-names: the names of the 2 reset controllers
Documentation/devicetree/bindings/phy/ralink-usb-phy.txt: reset-names = "host", "device";
Documentation/devicetree/bindings/phy/rockchip-pcie-phy.txt: - resets: Must contain an entry in reset-names.
Documentation/devicetree/bindings/phy/rockchip-pcie-phy.txt: - reset-names: Must be "phy"
Documentation/devicetree/bindings/phy/rockchip-pcie-phy.txt: reset-names = "phy";
Documentation/devicetree/bindings/phy/rockchip-usb-phy.txt:- reset-names: Only allow the following entries:
Documentation/devicetree/bindings/phy/rockchip-usb-phy.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/phy/sun4i-usb-phy.txt:- reset-names :
Documentation/devicetree/bindings/phy/sun4i-usb-phy.txt: reset-names = "usb0_reset", "usb1_reset", "usb2_reset";
Documentation/devicetree/bindings/phy/sun9i-usb-phy.txt:- reset-names : depending on the "phy_type" property,
Documentation/devicetree/bindings/phy/sun9i-usb-phy.txt: reset-names = "hsic", "phy";
Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt:Subnodes of the pin controller contain pin control multiplexing set-up
Documentation/devicetree/bindings/pinctrl/nvidia,tegra124-xusb-padctl.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/pinctrl/nvidia,tegra124-xusb-padctl.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/pinctrl/nvidia,tegra124-xusb-padctl.txt: reset-names = "padctl";
Documentation/devicetree/bindings/pinctrl/ste,nomadik.txt: set-up.
Documentation/devicetree/bindings/power/reset/keystone-reset.txt:rstctrl: reset-controller {
Documentation/devicetree/bindings/power/reset/keystone-reset.txt:rstctrl: reset-controller {
Documentation/devicetree/bindings/power/supply/qcom,coincell-charger.txt:- qcom,rset-ohms:
Documentation/devicetree/bindings/power/supply/qcom,coincell-charger.txt:- qcom,vset-millivolts:
Documentation/devicetree/bindings/power/supply/qcom,coincell-charger.txt: qcom,rset-ohms = <2100>;
Documentation/devicetree/bindings/power/supply/qcom,coincell-charger.txt: qcom,vset-millivolts = <3000>;
Documentation/devicetree/bindings/powerpc/4xx/reboot.txt: reset-type = <2>; /* Use chip-reset */
Documentation/devicetree/bindings/pwm/nvidia,tegra20-pwm.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/pwm/nvidia,tegra20-pwm.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/pwm/nvidia,tegra20-pwm.txt: reset-names = "pwm";
Documentation/devicetree/bindings/regulator/regulator.txt:- regulator-allow-set-load: allow the regulator performance level to be configured
Documentation/devicetree/bindings/regulator/ti-abb-regulator.txt:- ti,ldovbb-vset-mask - Required if ldo-address is set, mask for LDO override
Documentation/devicetree/bindings/regulator/ti-abb-regulator.txt: efuse the value to set in 'ti,ldovbb-vset-mask' at ldo-address.
Documentation/devicetree/bindings/regulator/ti-abb-regulator.txt: ti,ldovbb-vset-mask = <0x1F>;
Documentation/devicetree/bindings/remoteproc/qcom,q6v5.txt: Definition: reference to the reset-controller for the modem sub-system
Documentation/devicetree/bindings/remoteproc/qcom,q6v5.txt:- reset-names:
Documentation/devicetree/bindings/remoteproc/qcom,q6v5.txt: reset-names = "mss_restart";
Documentation/devicetree/bindings/remoteproc/st-rproc.txt:- reset-names Must be "sw_reset" and "pwr_reset"
Documentation/devicetree/bindings/remoteproc/st-rproc.txt: reset-names = "sw_reset";
Documentation/devicetree/bindings/reset/allwinner,sunxi-clock-reset.txt:- #reset-cells: 1, see below
Documentation/devicetree/bindings/reset/allwinner,sunxi-clock-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/amlogic,meson-reset.txt:- #reset-cells: 1, see below
Documentation/devicetree/bindings/reset/amlogic,meson-reset.txt:reset: reset-controller {
Documentation/devicetree/bindings/reset/amlogic,meson-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/ath79-reset.txt:- #reset-cells : Specifies the number of cells needed to encode reset
Documentation/devicetree/bindings/reset/ath79-reset.txt: reset-controller@1806001c {
Documentation/devicetree/bindings/reset/ath79-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/berlin,reset.txt:- #reset-cells: must be set to 2
Documentation/devicetree/bindings/reset/berlin,reset.txt: #reset-cells = <2>;
Documentation/devicetree/bindings/reset/brcm,bcm63138-pmb.txt:- #reset-cells: must be 2 first cell is the address within the bus instance designated
Documentation/devicetree/bindings/reset/brcm,bcm63138-pmb.txt: pmb0: reset-controller@4800c0 {
Documentation/devicetree/bindings/reset/brcm,bcm63138-pmb.txt: #reset-cells = <2>;
Documentation/devicetree/bindings/reset/fsl,imx-src.txt:- #reset-cells: 1, see below
Documentation/devicetree/bindings/reset/fsl,imx-src.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/fsl,imx7-src.txt:- #reset-cells: 1, see below
Documentation/devicetree/bindings/reset/fsl,imx7-src.txt:src: reset-controller@30390000 {
Documentation/devicetree/bindings/reset/fsl,imx7-src.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/fsl,imx7-src.txt: reset-names = "pciephy", "apps";
Documentation/devicetree/bindings/reset/hisilicon,hi3660-reset.txt:- #reset-cells : Specifies the number of cells needed to encode a
Documentation/devicetree/bindings/reset/hisilicon,hi3660-reset.txt: #reset-cells = <2>;
Documentation/devicetree/bindings/reset/hisilicon,hi6220-reset.txt:- #reset-cells: 1, see below
Documentation/devicetree/bindings/reset/hisilicon,hi6220-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/img,pistachio-reset.txt:- #reset-cells: Contains 1
Documentation/devicetree/bindings/reset/img,pistachio-reset.txt: pistachio_reset: reset-controller {
Documentation/devicetree/bindings/reset/img,pistachio-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/img,pistachio-reset.txt: reset-names = "rst";
Documentation/devicetree/bindings/reset/lantiq,reset.txt:This binding describes a reset-controller found on the RCU module on Lantiq
Documentation/devicetree/bindings/reset/lantiq,reset.txt:- #reset-cells : Specifies the number of cells needed to encode the
Documentation/devicetree/bindings/reset/lantiq,reset.txt:Example for the reset-controllers on the xRX200 SoCs:
Documentation/devicetree/bindings/reset/lantiq,reset.txt: reset0: reset-controller@10 {
Documentation/devicetree/bindings/reset/lantiq,reset.txt: #reset-cells = <2>;
Documentation/devicetree/bindings/reset/nxp,lpc1850-rgu.txt:- #reset-cells: should be 1
Documentation/devicetree/bindings/reset/nxp,lpc1850-rgu.txt:rgu: reset-controller@40053000 {
Documentation/devicetree/bindings/reset/nxp,lpc1850-rgu.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/nxp,lpc1850-rgu.txt: reset-names = "stmmaceth";
Documentation/devicetree/bindings/reset/oxnas,reset.txt:- #reset-cells: 1, see below
Documentation/devicetree/bindings/reset/oxnas,reset.txt: reset: reset-controller {
Documentation/devicetree/bindings/reset/oxnas,reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/renesas,rst.txt: - "renesas,<soctype>-reset-wdt" for R-Car Gen1,
Documentation/devicetree/bindings/reset/renesas,rst.txt: - "renesas,r8a7778-reset-wdt" (R-Car M1A)
Documentation/devicetree/bindings/reset/renesas,rst.txt: - "renesas,r8a7779-reset-wdt" (R-Car H1)
Documentation/devicetree/bindings/reset/renesas,rst.txt: rst: reset-controller@e6160000 {
Documentation/devicetree/bindings/reset/reset.txt:#reset-cells: Number of cells in a reset specifier; Typically 0 for nodes
Documentation/devicetree/bindings/reset/reset.txt: rst: reset-controller {
Documentation/devicetree/bindings/reset/reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/reset.txt: #reset-cells, then only the phandle portion of the pair will
Documentation/devicetree/bindings/reset/reset.txt:reset-names: List of reset signal name strings sorted in the same order as
Documentation/devicetree/bindings/reset/reset.txt: the resets property. Consumers drivers will use reset-names to
Documentation/devicetree/bindings/reset/reset.txt: reset-names = "reset";
Documentation/devicetree/bindings/reset/reset.txt: reset-names = "i2s1", "i2s2", "dma", "mixer";
Documentation/devicetree/bindings/reset/sirf,rstc.txt:- #reset-cells: 1, see below
Documentation/devicetree/bindings/reset/sirf,rstc.txt:rstc: reset-controller@88010000 {
Documentation/devicetree/bindings/reset/sirf,rstc.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt:- #reset-cells: from common reset binding; Should always be set to 1.
Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt: reset: reset-controller@11220 {
Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt:- #reset-cells: from common reset binding; Should always be set to 1.
Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/socfpga-reset.txt:- #reset-cells: 1
Documentation/devicetree/bindings/reset/socfpga-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/st,sti-picophyreset.txt:- #reset-cells: 1, see below
Documentation/devicetree/bindings/reset/st,sti-picophyreset.txt: picophyreset: picophyreset-controller {
Documentation/devicetree/bindings/reset/st,sti-picophyreset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/st,sti-powerdown.txt:- #reset-cells: 1, see below
Documentation/devicetree/bindings/reset/st,sti-powerdown.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/st,sti-softreset.txt:- #reset-cells: 1, see below
Documentation/devicetree/bindings/reset/st,sti-softreset.txt: softreset: softreset-controller {
Documentation/devicetree/bindings/reset/st,sti-softreset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/ti,sci-reset.txt: - #reset-cells : Should be 2. Please see the reset consumer node below for
Documentation/devicetree/bindings/reset/ti,sci-reset.txt: k2g_reset: reset-controller {
Documentation/devicetree/bindings/reset/ti,sci-reset.txt: #reset-cells = <2>;
Documentation/devicetree/bindings/reset/ti-syscon-reset.txt: - #reset-cells : Should be 1. Please see the reset consumer node below
Documentation/devicetree/bindings/reset/ti-syscon-reset.txt: - ti,reset-bits : Contains the reset control register information
Documentation/devicetree/bindings/reset/ti-syscon-reset.txt: pscrst: reset-controller {
Documentation/devicetree/bindings/reset/ti-syscon-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/ti-syscon-reset.txt: ti,reset-bits = <
Documentation/devicetree/bindings/reset/uniphier-reset.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/reset/uniphier-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/uniphier-reset.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/reset/uniphier-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/uniphier-reset.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/reset/uniphier-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/uniphier-reset.txt:- #reset-cells: should be 1.
Documentation/devicetree/bindings/reset/uniphier-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt:- #reset-cells: must be 1.
Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt: reset: reset-controller@1461060 {
Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/reset/zynq-reset.txt:- #reset-cells: Must be 1
Documentation/devicetree/bindings/reset/zynq-reset.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/rtc/ingenic,jz4740-rtc.txt:- reset-pin-assert-time-ms: Reset pin low-level assertion
Documentation/devicetree/bindings/rtc/ingenic,jz4740-rtc.txt: reset-pin-assert-time-ms = <60>;
Documentation/devicetree/bindings/scsi/hisilicon-sas.txt: - ctrl-reset-reg : offset to controller reset register in ctrl reg
Documentation/devicetree/bindings/scsi/hisilicon-sas.txt: - ctrl-reset-sts-reg : offset to controller reset status register in ctrl reg
Documentation/devicetree/bindings/scsi/hisilicon-sas.txt: ctrl-reset-reg = <0xa60>;
Documentation/devicetree/bindings/scsi/hisilicon-sas.txt: ctrl-reset-sts-reg = <0x5a30>;
Documentation/devicetree/bindings/serial/nvidia,tegra20-hsuart.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/serial/nvidia,tegra20-hsuart.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/serial/nvidia,tegra20-hsuart.txt: reset-names = "serial";
Documentation/devicetree/bindings/soc/dove/pmu.txt: - #reset-cells: must be 1.
Documentation/devicetree/bindings/soc/dove/pmu.txt: #reset-cells = <1>;
Documentation/devicetree/bindings/soc/mediatek/pwrap.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/soc/mediatek/pwrap.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/soc/mediatek/pwrap.txt: reset-names = "pwrap", "pwrap-bridge";
Documentation/devicetree/bindings/sound/adi,adau1701.txt: - reset-gpio: A GPIO spec to define which pin is connected to the
Documentation/devicetree/bindings/sound/adi,adau1701.txt: reset-gpio = <&gpio 23 0>;
Documentation/devicetree/bindings/sound/ak4104.txt: - reset-gpio : a GPIO spec for the reset pin. If specified, it will be
Documentation/devicetree/bindings/sound/ak4458.txt:- reset-gpios: A GPIO specifier for the power down & reset pin
Documentation/devicetree/bindings/sound/ak4458.txt: reset-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>
Documentation/devicetree/bindings/sound/ak5386.txt: - reset-gpio : a GPIO spec for the reset/power down pin.
Documentation/devicetree/bindings/sound/ak5386.txt: reset-gpio = <&gpio0 23>;
Documentation/devicetree/bindings/sound/ak5558.txt:- reset-gpios: A GPIO specifier for the power down & reset pin.
Documentation/devicetree/bindings/sound/ak5558.txt: reset-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/sound/cs35l32.txt: - reset-gpios : a GPIO spec for the reset pin. If specified, it will be
Documentation/devicetree/bindings/sound/cs35l32.txt: reset-gpios = <&gpio 10 0>;
Documentation/devicetree/bindings/sound/cs35l33.txt: - reset-gpios : gpio used to reset the amplifier
Documentation/devicetree/bindings/sound/cs35l33.txt: reset-gpios = <&cs47l91 34 0>;
Documentation/devicetree/bindings/sound/cs35l34.txt: - reset-gpios: GPIO used to reset the amplifier.
Documentation/devicetree/bindings/sound/cs35l34.txt: reset-gpios = <&gpio 10 0>;
Documentation/devicetree/bindings/sound/cs35l35.txt: - reset-gpios : gpio used to reset the amplifier
Documentation/devicetree/bindings/sound/cs35l35.txt: reset-gpios = <&axi_gpio 54 0>;
Documentation/devicetree/bindings/sound/cs4265.txt: - reset-gpios : a GPIO spec for the reset pin. If specified, it will be
Documentation/devicetree/bindings/sound/cs4270.txt: - reset-gpio : a GPIO spec for the reset pin. If specified, it will be
Documentation/devicetree/bindings/sound/cs4271.txt: - reset-gpio: a GPIO spec to define which pin is connected to the chip's
Documentation/devicetree/bindings/sound/cs4271.txt: reset-gpio = <&gpio 23 0>;
Documentation/devicetree/bindings/sound/cs4271.txt: reset-gpio = <&gpio 23 0>;
Documentation/devicetree/bindings/sound/cs42l42.txt: - reset-gpios : a GPIO spec for the reset pin. If specified, it will be
Documentation/devicetree/bindings/sound/cs42l42.txt: reset-gpios = <&axi_gpio_0 1 0>;
Documentation/devicetree/bindings/sound/cs42l52.txt: - cirrus,reset-gpio : GPIO controller's phandle and the number
Documentation/devicetree/bindings/sound/cs42l52.txt: reset-gpio = <&gpio 10 0>;
Documentation/devicetree/bindings/sound/cs43130.txt: - reset-gpios : Active low GPIO used to reset the device
Documentation/devicetree/bindings/sound/cs43130.txt: reset-gpios = <&axi_gpio 54 0>;
Documentation/devicetree/bindings/sound/cs4349.txt: - reset-gpios : a GPIO spec for the reset pin.
Documentation/devicetree/bindings/sound/cs4349.txt: reset-gpios = <&gpio 54 0>;
Documentation/devicetree/bindings/sound/cs53l30.txt: - reset-gpios : a GPIO spec for the reset pin.
Documentation/devicetree/bindings/sound/cs53l30.txt: reset-gpios = <&gpio 54 0>;
Documentation/devicetree/bindings/sound/img,i2s-in.txt: - reset-names: Contains the reset signal name "rst"
Documentation/devicetree/bindings/sound/img,i2s-out.txt: - reset-names: Contains the reset signal name "rst"
Documentation/devicetree/bindings/sound/img,i2s-out.txt: reset-names = "rst";
Documentation/devicetree/bindings/sound/img,parallel-out.txt: - reset-names: Contains the reset signal name "rst"
Documentation/devicetree/bindings/sound/img,parallel-out.txt: reset-names = "rst";
Documentation/devicetree/bindings/sound/img,spdif-in.txt: - reset-names: Should contain the reset signal name "rst", if a
Documentation/devicetree/bindings/sound/img,spdif-out.txt: - reset-names: Contains the reset signal name "rst"
Documentation/devicetree/bindings/sound/img,spdif-out.txt: reset-names = "rst";
Documentation/devicetree/bindings/sound/nvidia,tegra20-ac97.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/sound/nvidia,tegra20-ac97.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/sound/nvidia,tegra20-ac97.txt:- nvidia,codec-reset-gpio : The Tegra GPIO controller's phandle and the number
Documentation/devicetree/bindings/sound/nvidia,tegra20-ac97.txt: nvidia,codec-reset-gpio = <&gpio 170 0>;
Documentation/devicetree/bindings/sound/nvidia,tegra20-ac97.txt: reset-names = "ac97";
Documentation/devicetree/bindings/sound/nvidia,tegra20-i2s.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/sound/nvidia,tegra20-i2s.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/sound/nvidia,tegra20-i2s.txt: reset-names = "i2s";
Documentation/devicetree/bindings/sound/nvidia,tegra30-ahub.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/sound/nvidia,tegra30-ahub.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/sound/nvidia,tegra30-ahub.txt: reset-names = "d_audio", "apbif", "i2s0", "i2s1", "i2s2",
Documentation/devicetree/bindings/sound/nvidia,tegra30-hda.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/sound/nvidia,tegra30-hda.txt:- reset-names : Must include the following entries: hda, hda2hdmi, hda2codec_2x
Documentation/devicetree/bindings/sound/nvidia,tegra30-hda.txt: reset-names = "hda", "hda2hdmi", "hda2codec_2x";
Documentation/devicetree/bindings/sound/nvidia,tegra30-i2s.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/sound/nvidia,tegra30-i2s.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/sound/nvidia,tegra30-i2s.txt: reset-names = "i2s";
Documentation/devicetree/bindings/sound/pcm1789.txt: - reset-gpios: GPIO to control the RESET pin
Documentation/devicetree/bindings/sound/pcm1789.txt: reset-gpios = <&gpio2 14 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/sound/renesas,rsnd.txt:- reset-names : List of valid reset names.
Documentation/devicetree/bindings/sound/rockchip-max98090.txt:- rockchip,headset-codec: The phandle of Ext chip for jack detection
Documentation/devicetree/bindings/sound/rockchip-max98090.txt: rockchip,headset-codec = <&headsetcodec>;
Documentation/devicetree/bindings/sound/rohm,bd28623.txt:- reset-gpios : GPIO specifier for the active low reset line
Documentation/devicetree/bindings/sound/rohm,bd28623.txt: reset-gpios = <&gpio 0 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/sound/rt5659.txt:- realtek,reset-gpios : The GPIO that controls the CODEC's RESET pin.
Documentation/devicetree/bindings/sound/rt5677.txt:- realtek,reset-gpio : The GPIO that controls the CODEC's RESET pin. Active low.
Documentation/devicetree/bindings/sound/rt5677.txt: realtek,reset-gpio = <&gpio TEGRA_GPIO(BB, 3) GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/sound/st,sta32x.txt: - reset-gpios: a GPIO spec for the reset pin. If specified, it will be
Documentation/devicetree/bindings/sound/st,sta32x.txt: reset-gpios = <&gpio1 19 0>;
Documentation/devicetree/bindings/sound/st,sta350.txt: - reset-gpios: a GPIO spec for the reset pin. If specified, it will be
Documentation/devicetree/bindings/sound/st,sta350.txt: reset-gpios = <&gpio1 19 0>;
Documentation/devicetree/bindings/sound/tas571x.txt:- reset-gpios: GPIO specifier for the TAS571x's active low reset line
Documentation/devicetree/bindings/sound/tas571x.txt: reset-gpios = <&gpio5 1 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/sound/ti,tas5086.txt: - reset-gpio: A GPIO spec to define which pin is connected to the
Documentation/devicetree/bindings/sound/ti,tas5086.txt: reset-gpio = <&gpio 23 0>;
Documentation/devicetree/bindings/sound/tlv320aic31xx.txt:- reset-gpios - GPIO specification for the active low RESET input.
Documentation/devicetree/bindings/sound/tlv320aic31xx.txt: reset-gpios = <&gpio1 17 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/sound/tlv320aic32x4.txt: - reset-gpios: Reset-GPIO phandle with args as described in gpio/gpio.txt
Documentation/devicetree/bindings/sound/tlv320aic3x.txt:- reset-gpios - GPIO specification for the active low RESET input.
Documentation/devicetree/bindings/sound/tlv320aic3x.txt: reset-gpios = <&gpio1 17 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/sound/uniphier,aio.txt:- reset-names : should include following entries:
Documentation/devicetree/bindings/sound/uniphier,aio.txt: entry in reset-names.
Documentation/devicetree/bindings/sound/uniphier,aio.txt: reset-names = "aio";
Documentation/devicetree/bindings/sound/uniphier,evea.txt:- reset-names : should include following entries:
Documentation/devicetree/bindings/sound/uniphier,evea.txt: reset-names.
Documentation/devicetree/bindings/sound/uniphier,evea.txt: reset-names = "evea", "exiv", "adamv";
Documentation/devicetree/bindings/sound/wm8804.txt: - wlf,reset-gpio: A GPIO specifier for the GPIO controlling the reset pin
Documentation/devicetree/bindings/spi/nvidia,tegra114-spi.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/spi/nvidia,tegra114-spi.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/spi/nvidia,tegra114-spi.txt: reset-names = "spi";
Documentation/devicetree/bindings/spi/nvidia,tegra20-sflash.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/spi/nvidia,tegra20-sflash.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/spi/nvidia,tegra20-sflash.txt: reset-names = "spi";
Documentation/devicetree/bindings/spi/nvidia,tegra20-slink.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/spi/nvidia,tegra20-slink.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/spi/nvidia,tegra20-slink.txt: reset-names = "spi";
Documentation/devicetree/bindings/thermal/mediatek-thermal.txt: reset-names = "therm";
Documentation/devicetree/bindings/thermal/nvidia,tegra124-soctherm.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/thermal/nvidia,tegra124-soctherm.txt:- reset-names : Must include the following entries:
Documentation/devicetree/bindings/thermal/nvidia,tegra124-soctherm.txt: reset-names = "soctherm";
Documentation/devicetree/bindings/thermal/rockchip-thermal.txt:- resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/thermal/rockchip-thermal.txt:- reset-names : Must include the name "tsadc-apb".
Documentation/devicetree/bindings/thermal/rockchip-thermal.txt: reset-names = "tsadc-apb";
Documentation/devicetree/bindings/usb/amlogic,dwc3.txt:- reset-names: must be "usb_otg"
Documentation/devicetree/bindings/usb/amlogic,dwc3.txt: reset-names = "usb_otg";
Documentation/devicetree/bindings/usb/dwc3-st.txt: - reset-names : list of reset signal names. Names should be "powerdown" and "softreset"
Documentation/devicetree/bindings/usb/dwc3-st.txt: reset-names = "powerdown", "softreset";
Documentation/devicetree/bindings/usb/ehci-st.txt: - reset-names : should be "power" and "softreset"
Documentation/devicetree/bindings/usb/ehci-st.txt: reset-names = "power", "softreset";
Documentation/devicetree/bindings/usb/hisilicon,histb-xhci.txt: reset-names property.
Documentation/devicetree/bindings/usb/hisilicon,histb-xhci.txt: - reset-names: must contain
Documentation/devicetree/bindings/usb/hisilicon,histb-xhci.txt: reset-names = "soft";
Documentation/devicetree/bindings/usb/msm-hsusb.txt:- resets: A list of phandle + reset-specifier pairs for the
Documentation/devicetree/bindings/usb/msm-hsusb.txt: resets listed in reset-names
Documentation/devicetree/bindings/usb/msm-hsusb.txt:- reset-names: Should contain the following:
Documentation/devicetree/bindings/usb/msm-hsusb.txt: reset-names = "phy", "link";
Documentation/devicetree/bindings/usb/nvidia,tegra124-xusb.txt:- resets: Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/usb/nvidia,tegra124-xusb.txt:- reset-names: Must include the following entries:
Documentation/devicetree/bindings/usb/nvidia,tegra124-xusb.txt: reset-names = "xusb_host", "xusb_ss", "xusb_src";
Documentation/devicetree/bindings/usb/nvidia,tegra20-ehci.txt: - resets : Must contain an entry for each entry in reset-names.
Documentation/devicetree/bindings/usb/nvidia,tegra20-ehci.txt: - reset-names : Must include the following entries:
Documentation/devicetree/bindings/usb/ohci-st.txt: - reset-names : should be "power" and "softreset".
Documentation/devicetree/bindings/usb/ohci-st.txt: reset-names = "power", "softreset";
Documentation/devicetree/bindings/usb/qcom,dwc3.txt: reset-names = "core_reset";
Documentation/devicetree/bindings/usb/usb-ehci.txt: - needs-reset-on-resume : boolean, set this to force EHCI reset after resume
Documentation/devicetree/bindings/usb/usb-nop-xceiv.txt:- reset-gpios: Should specify the GPIO for reset.
Documentation/devicetree/bindings/usb/usb-nop-xceiv.txt: reset-gpios = <&gpio1 7 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/usb/usb251xb.txt: - reset-gpios : Should specify the gpio for hub reset
Documentation/devicetree/bindings/usb/usb251xb.txt: reset-gpios = <&gpio1 4 GPIO_ACTIVE_LOW>;
Documentation/devicetree/bindings/usb/usb3503.txt:- reset-gpios: Should specify GPIO for reset.
Documentation/devicetree/bindings/usb/usb3503.txt: reset-gpios = <&gpx3 5 1>;
Documentation/devicetree/bindings/usb/usb4604.txt:- reset-gpios: Should specify GPIO for reset.
Documentation/devicetree/bindings/usb/usb4604.txt: reset-gpios = <&gpx3 5 1>;
Documentation/devicetree/bindings/watchdog/alphascale-asm9260.txt:- reset-names : should be set to "wdt_rst".
Documentation/devicetree/bindings/watchdog/alphascale-asm9260.txt: reset-names = "wdt_rst";
Documentation/devicetree/bindings/watchdog/aspeed-wdt.txt: - aspeed,reset-type = "cpu|soc|system|none"
Documentation/devicetree/bindings/watchdog/aspeed-wdt.txt: If 'aspeed,reset-type=' is not specfied the default is to enable system
Documentation/devicetree/bindings/watchdog/aspeed-wdt.txt: aspeed,reset-type = "system";
Documentation/devicetree/bindings/watchdog/atmel-wdt.txt:- atmel,reset-type : Should be "proc" or "all".
Documentation/devicetree/bindings/watchdog/atmel-wdt.txt: atmel,reset-type = "all";
Documentation/devicetree/bindings/watchdog/cadence-wdt.txt:- reset-on-timeout : If this property exists, then a reset is done
Documentation/devicetree/bindings/watchdog/cadence-wdt.txt: reset-on-timeout;
Documentation/devicetree/bindings/watchdog/fsl-imx-wdt.txt:- fsl,ext-reset-output: If present the watchdog device is configured to
Documentation/devicetree/bindings/watchdog/ziirave-wdt.txt:- reset-duration-ms: Duration of the pulse generated when the watchdog times
Documentation/devicetree/bindings/watchdog/ziirave-wdt.txt: reset-duration-ms = <30>;
Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt:- zte,wdt-reset-sysctrl : Directs how to reset system by the watchdog.
Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt: zte,wdt-reset-sysctrl = <&aon_sysctrl 0xb0 1 0x115>;
Documentation/driver-api/gpio/driver.rst:To help out in handling the set-up and management of GPIO irqchips and the
Documentation/driver-api/usb/power-management.rst: child device can suspend (autosuspend-delay) and resume (reset-resume
Documentation/fb/fbcon.txt:always be available. However, using a chipset-specific driver will give you
Documentation/filesystems/hfs.txt: o You can't modify the set-uid, set-gid, sticky or executable bits or the uid
Documentation/isdn/README.gigaset: configuration files and chat scripts in the gigaset-VERSION/ppp directory
Documentation/kbuild/makefiles.txt: KBUILD_CFLAGS += $(call cc-disable-warning, unused-but-set-variable)
Documentation/kbuild/makefiles.txt: In the above example, -Wno-unused-but-set-variable will be added to
Documentation/kobject.txt:samples/kobject/kset-example.c file in the kernel tree.
Documentation/kobject.txt:example programs samples/kobject/{kobject-example.c,kset-example.c},
Documentation/media/uapi/dvb/audio_function_calls.rst: audio-set-mute
Documentation/media/uapi/dvb/audio_function_calls.rst: audio-set-av-sync
Documentation/media/uapi/dvb/audio_function_calls.rst: audio-set-bypass-mode
Documentation/media/uapi/dvb/audio_function_calls.rst: audio-set-id
Documentation/media/uapi/dvb/audio_function_calls.rst: audio-set-mixer
Documentation/media/uapi/dvb/audio_function_calls.rst: audio-set-streamtype
Documentation/media/uapi/dvb/audio_function_calls.rst: audio-set-ext-id
Documentation/media/uapi/dvb/audio_function_calls.rst: audio-set-attributes
Documentation/media/uapi/dvb/audio_function_calls.rst: audio-set-karaoke
Documentation/media/uapi/dvb/ca_function_calls.rst: ca-set-descr
Documentation/media/uapi/dvb/dmx-set-filter.rst::ref:`DMX_START` ioctl call). If a filter was previously set-up, this
Documentation/media/uapi/dvb/dmx_fcalls.rst: dmx-set-filter
Documentation/media/uapi/dvb/dmx_fcalls.rst: dmx-set-pes-filter
Documentation/media/uapi/dvb/dmx_fcalls.rst: dmx-set-buffer-size
Documentation/media/uapi/dvb/frontend_fcalls.rst: fe-diseqc-reset-overload
Documentation/media/uapi/dvb/frontend_fcalls.rst: fe-set-tone
Documentation/media/uapi/dvb/frontend_fcalls.rst: fe-set-voltage
Documentation/media/uapi/dvb/frontend_fcalls.rst: fe-set-frontend-tune-mode
Documentation/media/uapi/dvb/frontend_legacy_api.rst: fe-set-frontend
Documentation/media/uapi/dvb/intro.rst:A Digital TV card or set-top-box (STB) usually consists of the
Documentation/media/uapi/dvb/video_function_calls.rst: video-set-blank
Documentation/media/uapi/dvb/video_function_calls.rst: video-set-display-format
Documentation/media/uapi/dvb/video_function_calls.rst: video-set-id
Documentation/media/uapi/dvb/video_function_calls.rst: video-set-streamtype
Documentation/media/uapi/dvb/video_function_calls.rst: video-set-format
Documentation/media/uapi/dvb/video_function_calls.rst: video-set-system
Documentation/media/uapi/dvb/video_function_calls.rst: video-set-highlight
Documentation/media/uapi/dvb/video_function_calls.rst: video-set-spu
Documentation/media/uapi/dvb/video_function_calls.rst: video-set-spu-palette
Documentation/media/uapi/dvb/video_function_calls.rst: video-set-attributes
Documentation/media/uapi/rc/lirc-func.rst: lirc-set-send-duty-cycle
Documentation/media/uapi/rc/lirc-func.rst: lirc-set-rec-timeout
Documentation/media/uapi/rc/lirc-func.rst: lirc-set-rec-carrier
Documentation/media/uapi/rc/lirc-func.rst: lirc-set-rec-carrier-range
Documentation/media/uapi/rc/lirc-func.rst: lirc-set-send-carrier
Documentation/media/uapi/rc/lirc-func.rst: lirc-set-transmitter-mask
Documentation/media/uapi/rc/lirc-func.rst: lirc-set-rec-timeout-reports
Documentation/media/uapi/rc/lirc-func.rst: lirc-set-measure-carrier-mode
Documentation/media/uapi/rc/lirc-func.rst: lirc-set-wideband-receiver
Documentation/media/uapi/v4l/extended-controls.rst:.. _v4l2-auto-n-preset-white-balance:
Documentation/media/uapi/v4l/hist-v4l2.rst:4. All the different get- and set-format commands were swept into one
Documentation/media/v4l-drivers/si470x.rst: v4l2-ctl -d /dev/radio0 --set-ctrl=volume=10,mute=0 --set-freq=95.21 --all
Documentation/media/v4l-drivers/si4713.rst: # v4l2-ctl -d /dev/radio0 --set-ctrl=rds_ps_name="Dummy"
Documentation/media/v4l-drivers/vivid.rst: $ sudo v4l2-ctl -d2 --set-fbuf fb=1
Documentation/media/v4l-drivers/vivid.rst: $ v4l2-ctl -d1 --set-fbuf fb=1
Documentation/media/v4l-drivers/vivid.rst: $ v4l2-ctl -d0 --set-fmt-video=pixelformat='AR15'
Documentation/media/v4l-drivers/vivid.rst: $ v4l2-ctl -d1 --set-fmt-video-out=pixelformat='AR15'
Documentation/media/v4l-drivers/vivid.rst: $ v4l2-ctl -d2 --set-fmt-video=pixelformat='AR15'
Documentation/networking/scaling.txt:commands (--show-rxfh-indir and --set-rxfh-indir). Modifying the
Documentation/networking/tproxy.txt:# iptables -t mangle -A DIVERT -j MARK --set-mark 1
Documentation/powerpc/eeh-pci-error-recovery.txt: kset->uevent_ops->uevent() // which is really just
Documentation/process/coding-style.rst: (c-set-style "linux-tabs-only")))))
Documentation/process/maintainer-pgp-guide.rst: $ gpg --quick-set-expire [fpr] 1y
Documentation/process/maintainer-pgp-guide.rst: $ gpg --quick-set-expire [fpr] 2020-07-01
Documentation/s390/Debugging390.txt:This is a pointer to the global-offset-table in ELF
Documentation/scsi/ChangeLog.ncr53c8xx: - Remove nvram layouts and driver set-up structures from the C source,
Documentation/scsi/ChangeLog.ncr53c8xx: - Print out the whole driver set-up. Some options were missing and
Documentation/scsi/ChangeLog.sym53c8xx: - Move some data structures (nvram layouts and driver set-up) to
Documentation/scsi/ChangeLog.sym53c8xx: - Add 'recovery' option to driver set-up.
Documentation/scsi/bnx2fc.txt:lldptool set-lldp -i <interface_name> adminStatus=disabled
Documentation/security/keys/core.rst: execve, even when the latter executes a set-UID or set-GID binary. A
Documentation/sound/designs/procfile.rst:- set-up of PCM, shown in hw_parms, sw_params, and status in the PCM
Documentation/sound/hd-audio/models.rst:headset-mic
Documentation/sound/hd-audio/models.rst:headset-mode
Documentation/sound/hd-audio/models.rst:headset-mode-no-hp-mic