Home
last modified time | relevance | path

Searched +full:line +full:- +full:name (Results 1 – 25 of 1044) sorted by relevance

12345678910>>...42

/Linux-v6.1/arch/arm/boot/dts/
Dnuvoton-npcm750-runbmc-olympus.dts1 // SPDX-License-Identifier: GPL-2.0
5 /dts-v1/;
6 #include "nuvoton-npcm750.dtsi"
7 #include "nuvoton-npcm750-runbmc-olympus-pincfg.dtsi"
9 #include <dt-bindings/i2c/i2c.h>
10 #include <dt-bindings/gpio/gpio.h>
43 stdout-path = &serial3;
50 iio-hwmon {
51 compatible = "iio-hwmon";
52 io-channels = <&adc 0>, <&adc 1>, <&adc 2>, <&adc 3>,
[all …]
Daspeed-bmc-lenovo-hr855xg2.dts1 // SPDX-License-Identifier: GPL-2.0+
5 * Copyright (C) 2019-present Lenovo
8 /dts-v1/;
10 #include "aspeed-g5.dtsi"
11 #include <dt-bindings/gpio/aspeed-gpio.h>
15 compatible = "lenovo,hr855xg2-bmc", "aspeed,ast2500";
29 stdout-path = &uart5;
38 reserved-memory {
39 #address-cells = <1>;
40 #size-cells = <1>;
[all …]
Daspeed-bmc-opp-palmetto.dts1 // SPDX-License-Identifier: GPL-2.0+
2 /dts-v1/;
4 #include "aspeed-g4.dtsi"
5 #include <dt-bindings/gpio/aspeed-gpio.h>
9 compatible = "tyan,palmetto-bmc", "aspeed,ast2400";
12 stdout-path = &uart5;
20 reserved-memory {
21 #address-cells = <1>;
22 #size-cells = <1>;
26 no-map;
[all …]
Daspeed-bmc-lenovo-hr630.dts1 // SPDX-License-Identifier: GPL-2.0+
5 * Copyright (C) 2019-present Lenovo
8 /dts-v1/;
10 #include "aspeed-g5.dtsi"
11 #include <dt-bindings/gpio/aspeed-gpio.h>
15 compatible = "lenovo,hr630-bmc", "aspeed,ast2500";
29 stdout-path = &uart5;
38 reserved-memory {
39 #address-cells = <1>;
40 #size-cells = <1>;
[all …]
/Linux-v6.1/tools/testing/kunit/
Dkunit_parser.py1 # SPDX-License-Identifier: GPL-2.0
4 # results with reader-friendly format. Stores and returns test results in a
28 status : TestStatus - status of the test
29 name : str - name of the test
30 expected_count : int - expected number of subtests (0 if single
32 subtests : List[Test] - list of subtests
33 log : List[str] - log of KTAP lines that correspond to the test
34 counts : TestCounts - counts of the test statuses and errors of
38 def __init__(self) -> None:
41 self.name = ''
[all …]
Dkunit_config.py1 # SPDX-License-Identifier: GPL-2.0
18 name: str
21 def __str__(self) -> str:
23 return f'# CONFIG_{self.name} is not set'
24 return f'CONFIG_{self.name}={self.value}'
34 def __init__(self) -> None:
37 def __eq__(self, other) -> bool:
42 def __repr__(self) -> str:
45 def as_entries(self) -> Iterable[KconfigEntry]:
46 for name, value in self._entries.items():
[all …]
/Linux-v6.1/usr/
Dgen_init_cpio.c1 // SPDX-License-Identifier: GPL-2.0
34 int (*handler)(const char *line);
37 static void push_string(const char *name) in push_string() argument
39 unsigned int name_len = strlen(name) + 1; in push_string()
41 fputs(name, stdout); in push_string()
54 static void push_rest(const char *name) in push_rest() argument
56 unsigned int name_len = strlen(name) + 1; in push_rest()
59 fputs(name, stdout); in push_rest()
80 const char name[] = "TRAILER!!!"; in cpio_trailer() local
96 (unsigned)strlen(name)+1, /* namesize */ in cpio_trailer()
[all …]
/Linux-v6.1/tools/perf/util/
Ddwarf-aux.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * dwarf-aux.c : libdw auxiliary interfaces
11 #include "dwarf-aux.h"
16 * cu_find_realpath - Find the realpath of the target file
47 * cu_get_comp_dir - Get the path of compilation directory
62 /* Unlike dwarf_getsrc_die(), cu_getsrc_die() only returns statement line */
67 Dwarf_Line *line; in cu_getsrc_die() local
76 l = 0; u = nlines - 1; in cu_getsrc_die()
78 n = u - (u - l) / 2; in cu_getsrc_die()
79 line = dwarf_onesrcline(lines, n); in cu_getsrc_die()
[all …]
/Linux-v6.1/Documentation/arm/samsung/
Dclksrc-change-registers.awk1 #!/usr/bin/awk -f
3 # Copyright 2010 Ben Dooks <ben-linux@fluff.org>
8 # ./clksrc-change-registers.awk arch/arm/plat-s5pc1xx/include/plat/regs-clock.h < src > dst
14 return substr(s, eqat+2, (comat-eqat)-2)
19 return substr(b, 2, length(b)-2)
69 while (getline line < ARGV[1] > 0) {
70 if (line ~ /\#define.*_MASK/ &&
71 !(line ~ /USB_SIG_MASK/)) {
72 splitdefine(line, fields)
73 name = fields[0]
[all …]
/Linux-v6.1/include/uapi/linux/
Dgpio.h1 /* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
3 * <linux/gpio.h> - userspace ABI for the GPIO character devices
19 * The maximum size of name and label arrays.
21 * Must be a multiple of 8 to ensure 32/64-bit alignment of structs.
26 * struct gpiochip_info - Information about a certain GPIO chip
27 * @name: the Linux kernel name of this GPIO chip
28 * @label: a functional name for this GPIO chip, such as a product
33 char name[GPIO_MAX_NAME_SIZE]; member
41 * Must be no greater than 64, as bitmaps are restricted here to 64-bits
42 * for simplicity, and a multiple of 2 to ensure 32/64-bit alignment of
[all …]
/Linux-v6.1/arch/arm64/boot/dts/mediatek/
Dpumpkin-common.dtsi1 // SPDX-License-Identifier: GPL-2.0
7 #include <dt-bindings/gpio/gpio.h>
16 stdout-path = "serial0:921600n8";
21 compatible = "linaro,optee-tz";
26 gpio-keys {
27 compatible = "gpio-keys";
28 pinctrl-names = "default";
29 pinctrl-0 = <&gpio_keys_default>;
31 key-volume-up {
35 wakeup-source;
[all …]
/Linux-v6.1/tools/testing/selftests/gpio/
Dgpio-sim.sh2 # SPDX-License-Identifier: GPL-2.0
6 CONFIGFS_DIR="/sys/kernel/config/gpio-sim"
7 MODULE="gpio-sim"
26 if [ "$BANK" = "live" -o "$BANK" = "dev_name" ]; then
30 LINES=`ls $CONFIGFS_DIR/$CHIP/$BANK/ | egrep ^line`
32 for LINE in $LINES; do
33 if [ -e $CONFIGFS_DIR/$CHIP/$BANK/$LINE/hog ]; then
34 rmdir $CONFIGFS_DIR/$CHIP/$BANK/$LINE/hog || \
38 rmdir $CONFIGFS_DIR/$CHIP/$BANK/$LINE || \
39 fail "Unable to remove the line"
[all …]
/Linux-v6.1/scripts/
Ddecode_stacktrace.sh2 # SPDX-License-Identifier: GPL-2.0
4 #set -x
8 echo " $0 -r <release> | <vmlinux> [<base path>|auto] [<modules path>]"
12 if type llvm-cxxfilt >/dev/null 2>&1 ; then
13 cppfilt=llvm-cxxfilt
16 cppfilt_opts=-i
19 if [[ $1 == "-r" ]] ; then
25 …for fn in {,/usr/lib/debug}/boot/vmlinux-$release{,.debug} /lib/modules/$release{,/build}/vmlinux …
26 if [ -e "$fn" ] ; then
39 basepath=${2-auto}
[all …]
Dbpf_doc.py2 # SPDX-License-Identifier: GPL-2.0-only
4 # Copyright (C) 2018-2019 Netronome Systems, Inc.
24 def __init__(self, line='<line not provided>', reader=None): argument
27 'Error at file offset %d, parsing line: %s' %
28 (reader.tell(), line))
30 BaseException.__init__(self, 'Error parsing line: %s' % line)
60 name, distincts arguments.
69 res['name'] = capture.group(3)
78 'name' : capture.group(6)
89 @filename: name of file to parse, usually include/uapi/linux/bpf.h in the
[all …]
Dget_maintainer.pl2 # SPDX-License-Identifier: GPL-2.0
11 # perl scripts/get_maintainer.pl [OPTIONS] -f <file>
43 my $email_git_since = "1-year-ago";
44 my $email_hg_since = "-365";
83 push(@penguin_chief, "Linus Torvalds:torvalds\@linux-foundation.org");
84 #Andrew wants in on most everything - 2009/01/14
85 #push(@penguin_chief, "Andrew Morton:akpm\@linux-foundation.org");
101 push(@signature_tags, "Signed-off-by:");
102 push(@signature_tags, "Reviewed-by:");
103 push(@signature_tags, "Acked-by:");
[all …]
/Linux-v6.1/Documentation/admin-guide/gpio/
Dgpio-sim.rst1 .. SPDX-License-Identifier: GPL-2.0-or-later
6 The configfs GPIO Simulator (gpio-sim) provides a way to create simulated GPIO
12 ------------------------
14 The gpio-sim module registers a configfs subsystem called ``'gpio-sim'``. For
21 **Group:** ``/config/gpio-sim``
23 This is the top directory of the gpio-sim configfs tree.
25 **Group:** ``/config/gpio-sim/gpio-device``
27 **Attribute:** ``/config/gpio-sim/gpio-device/dev_name``
29 **Attribute:** ``/config/gpio-sim/gpio-device/live``
32 attribute is read-only and allows the user-space to read the platform device
[all …]
/Linux-v6.1/Documentation/firmware-guide/acpi/
Dgpio-properties.rst1 .. SPDX-License-Identifier: GPL-2.0
13 With _DSD we can now query GPIOs using a name instead of an integer
19 Name (_HID, ...)
21 Name (_CRS, ResourceTemplate ()
29 Name (_DSD, Package ()
31 ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
34 Package () { "reset-gpios", Package () { ^BTH, 1, 1, 0 } },
35 Package () { "shutdown-gpios", Package () { ^BTH, 0, 0, 0 } },
42 Package () { "name", Package () { ref, index, pin, active_low }}
61 In our Bluetooth example the "reset-gpios" refers to the second GpioIo()
[all …]
/Linux-v6.1/Documentation/sphinx/
Dmaintainers_include.py2 # SPDX-License-Identifier: GPL-2.0
3 # -*- coding: utf-8; mode: python -*-
7 maintainers-include
10 Implementation of the ``maintainers-include`` reST-directive.
15 The ``maintainers-include`` reST-directive performs extensive parsing
32 app.add_directive("maintainers-include", MaintainersInclude)
40 u"""MaintainersInclude (``maintainers-include``) directive"""
44 """Parse all the MAINTAINERS lines into ReST for human-readability"""
55 # Field letter to field name mapping.
63 for line in open(path):
[all …]
/Linux-v6.1/drivers/gpio/
Dgpio-ts5500.c1 // SPDX-License-Identifier: GPL-2.0
3 * Digital I/O driver for Technologic Systems TS-5500
5 * Copyright (c) 2012 Savoir-faire Linux Inc.
10 * In that sense, the support is not limited to the TS-5500 blocks.
13 * TS-5500:
14 * Documentation: https://docs.embeddedts.com/TS-5500
17 * TS-5600:
18 * Documentation: https://docs.embeddedts.com/TS-5600
19 * Blocks: LCD port (identical to TS-5500 LCD).
102 * TS-5500 DIO1 block
[all …]
Dgpio-sim.c1 // SPDX-License-Identifier: GPL-2.0-or-later
67 gc = &chip->gc; in gpio_sim_apply_pull()
68 desc = &gc->gpiodev->descs[offset]; in gpio_sim_apply_pull()
70 mutex_lock(&chip->lock); in gpio_sim_apply_pull()
72 if (test_bit(FLAG_REQUESTED, &desc->flags) && in gpio_sim_apply_pull()
73 !test_bit(FLAG_IS_OUT, &desc->flags)) { in gpio_sim_apply_pull()
74 if (value == !!test_bit(offset, chip->value_map)) in gpio_sim_apply_pull()
78 * This is fine - it just means, nobody is listening in gpio_sim_apply_pull()
79 * for interrupts on this line, otherwise in gpio_sim_apply_pull()
83 irq = irq_find_mapping(chip->irq_sim, offset); in gpio_sim_apply_pull()
[all …]
/Linux-v6.1/tools/usb/usbip/libsrc/
Dnames.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * names.c -- USB name database manipulation routines
8 * - names_deinit() is added.
28 char name[1]; member
34 char name[1]; member
40 char name[1]; member
46 char name[1]; member
52 char name[1]; member
58 char name[1]; member
73 return num & (HASHSZ-1); in hashnum()
[all …]
/Linux-v6.1/tools/perf/Documentation/
Dperf-probe.txt1 perf-probe(1)
4 NAME
5 ----
6 perf-probe - Define new dynamic tracepoints
9 --------
11 'perf probe' [options] --add='PROBE' [...]
15 'perf probe' [options] --del='[GROUP:]EVENT' [...]
17 'perf probe' --list[=[GROUP:]EVENT]
19 'perf probe' [options] --line='LINE'
21 'perf probe' [options] --vars='PROBEPOINT'
[all …]
/Linux-v6.1/arch/um/drivers/
Dline.c1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
22 struct line *line = chan->line; in line_interrupt() local
24 if (line) in line_interrupt()
25 chan_interrupt(line, irq); in line_interrupt()
31 * Returns the free space inside the ring buffer of this line.
33 * Should be called while holding line->lock (this does not modify data).
35 static unsigned int write_room(struct line *line) in write_room() argument
39 if (line->buffer == NULL) in write_room()
40 return LINE_BUFSIZE - 1; in write_room()
[all …]
/Linux-v6.1/Documentation/admin-guide/
Ddynamic-debug-howto.rst9 debug-print code to obtain additional kernel information.
22 - source filename
23 - function name
24 - line number (including ranges of line numbers)
25 - module name
26 - format string
27 - class name (as known/declared by each module)
34 :#> head -n7 /proc/dynamic_debug/control
43 The 3rd space-delimited column shows the current flags, preceded by
55 :#> ddcmd '-p; module main func run* +p'
[all …]
/Linux-v6.1/scripts/kconfig/
Dconf.c1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
46 static char line[PATH_MAX]; variable
71 p = str + l - 1; in strip()
73 *p-- = 0; in strip()
125 * and if no then no-one. in randomize_choice_values()
128 if (csym->curr.tri != yes) in randomize_choice_values()
135 expr_list_for_each_sym(prop->expr, e, sym) in randomize_choice_values()
145 expr_list_for_each_sym(prop->expr, e, sym) { in randomize_choice_values()
147 sym->def[S_DEF_USER].tri = yes; in randomize_choice_values()
[all …]

12345678910>>...42