/freebsd/sys/contrib/device-tree/Bindings/gpio/ |
H A D | gpio-xilinx.txt | 9 - compatible : Should be "xlnx,xps-gpio-1.00.a" 10 - reg : Address and length of the register set for the device 11 - #gpio-cells : Should be two. The first cell is the pin number and the 13 - gpio-controller : Marks the device node as a GPIO controller. 16 - clocks : Input clock specifier. Refer to common clock bindings. 17 - interrupts : Interrupt mapping for GPIO IRQ. 18 - xlnx,all-inputs : if n-th bit is setup, GPIO-n is input 19 - xlnx,dout-default : if n-th bit is 1, GPIO-n default value is 1 20 - xlnx,gpio-width : gpio width 21 - xlnx,tri-default : if n-th bit is 1, GPIO-n is in tristate mode [all …]
|
H A D | xlnx,gpio-xilinx.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/gpio/xlnx,gpio-xilinx.yaml# 5 $schema: http://devicetree.org/meta-schema [all...] |
/freebsd/sys/contrib/device-tree/Bindings/iio/adc/ |
H A D | avia-hx711.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 4 $id: http://devicetree.org/schemas/iio/adc/avia-hx711.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Andreas Klinger <ak@it-klinger.de> 13 Bit-banging driver using two GPIOs: 14 - sck-gpio gives a clock to the sensor with 24 cycles for data retrieval 17 - dout-gpio is the sensor data the sensor responds to the clock 25 - avia,hx711 27 sck-gpios: [all …]
|
H A D | adi,ad4130.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 4 --- 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 11 - Cosmin Tanislav <cosmin.tanislav@analog.com> 15 https://www.analog.com/media/en/technical-documentation/data-sheets/AD4130-8.pdf 20 - adi,ad4130 29 clock-names: 31 - const: mclk 36 interrupt-names: 40 Default if not supplied is int. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/siox/ |
H A D | eckelmann,siox-gpio.txt | 4 - compatible : "eckelmann,siox-gpio" 5 - din-gpios, dout-gpios, dclk-gpios, dld-gpios: references gpios for the 11 compatible = "eckelmann,siox-gpio"; 12 pinctrl-names = "default"; 13 pinctrl-0 = <&pinctrl_siox>; 15 din-gpios = <&gpio6 11 0>; 16 dout-gpios = <&gpio6 8 0>; 17 dclk-gpios = <&gpio6 9 0>; 18 dld-gpios = <&gpio6 10 0>;
|
/freebsd/crypto/heimdal/appl/ftp/ftpd/ |
H A D | ftpd.c | 78 int pdata = -1; /* for passive mode */ 88 int defumask = CMASK; /* default umask value */ 97 #define AUTH_OTP (1 << 1) /* passwords are one-time */ 100 static int auth_level = 0; /* Only allow kerberos login by default */ 128 if (cnt == (off_t)-1) \ 156 if (getcwd(path, sizeof(path)-1) == NULL) in curdir() 192 warnx("bad value for -a: `%s'", p); in parse_auth_level() 207 int use_builtin_ls = -1; 212 static const char *good_chars = "+-=_,."; 226 { "builtin-ls", 'B', arg_flag, &use_builtin_ls, "use built-in ls to list files" }, [all …]
|
/freebsd/sys/dev/mlx5/mlx5_core/ |
H A D | mlx5_qp.c | 1 /*- 2 * Copyright (c) 2013-2017, Mellanox Technologies, Ltd. All rights reserved. 38 struct mlx5_qp_table *table = &dev->priv.qp_table; in mlx5_get_rsc() 41 spin_lock(&table->lock); in mlx5_get_rsc() 43 common = radix_tree_lookup(&table->tree, rsn); in mlx5_get_rsc() 45 atomic_inc(&common->refcount); in mlx5_get_rsc() 47 spin_unlock(&table->lock); in mlx5_get_rsc() 59 if (atomic_dec_and_test(&common->refcount)) in mlx5_core_put_rsc() 60 complete(&common->free); in mlx5_core_put_rsc() 71 switch (common->res) { in mlx5_rsc_event() [all …]
|
/freebsd/contrib/tnftp/src/ |
H A D | ftp.c | 4 /*- 5 * Copyright (c) 1996-2009 The NetBSD Foundation, Inc. 168 int s = -1, error; in hookup() 186 code = -1; in hookup() 190 if (res0->ai_canonname) in hookup() 191 (void)strlcpy(hostnamebuf, res0->ai_canonname, in hookup() 197 for (res = res0; res; res = res->ai_next) { in hookup() 201 if (getnameinfo(res->ai_addr, res->ai_addrlen, in hookup() 207 if (verbose && res0->ai_next) { in hookup() 211 s = socket(res->ai_family, SOCK_STREAM, res->ai_protocol); in hookup() [all …]
|
/freebsd/libexec/ftpd/ |
H A D | ftpd.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 98 int hostinfo = 1; /* print host-specific info in messages */ 109 int assumeutf8 = 0; /* Assume that server file names are in UTF-8 */ 115 int statfd = -1; 121 int pdata = -1; /* for passive mode */ 136 int defumask = CMASK; /* default umask value */ 165 char *pid_file = NULL; /* means default location to pidfile(3) */ 189 #define LOGCMD(cmd, file) logcmd((cmd), (file), NULL, -1) 190 #define LOGCMD2(cmd, file1, file2) logcmd((cmd), (file1), (file2), -1) [all …]
|
/freebsd/crypto/heimdal/appl/ftp/ftp/ |
H A D | ftp.c | 43 int data = -1; 76 code = -1; in hookup() 82 s = -1; in hookup() 83 for (a = ai; a != NULL; a = a->ai_next) { in hookup() 84 s = socket (a->ai_family, a->ai_socktype, a->ai_protocol); in hookup() 88 if (a->ai_canonname != NULL) in hookup() 89 strlcpy (hostnamebuf, a->ai_canonname, sizeof(hostnamebuf)); in hookup() 91 memcpy (hisctladdr, a->ai_addr, a->ai_addrlen); in hookup() 93 error = connect (s, a->ai_addr, a->ai_addrlen); in hookup() 97 if (getnameinfo (a->ai_addr, a->ai_addrlen, in hookup() [all …]
|
/freebsd/sys/libkern/ |
H A D | iconv.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2000-2001 Boris Popov 88 if (csp->cp_refcount) { in iconv_mod_unload() 114 default: in iconv_mod_handler() 130 dcp->refs++; in iconv_register_converter() 138 dcp->refs--; in iconv_unregister_converter() 139 if (dcp->refs > 1) { in iconv_unregister_converter() 140 ICDEBUG("converter has %d references left\n", dcp->refs); in iconv_unregister_converter() 171 if (strcasecmp(csp->cp_to, to) == 0 && in iconv_lookupcs() [all …]
|
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/ |
H A D | imx6dl-eckelmann-ci4x10.dts | 1 // SPDX-License-Identifier: GPL-2.0 7 /dts-v1/; 9 #include <dt-bindings/gpio/gpio.h> 15 compatible = "eckelmann,imx6dl-ci4x10", "fsl,imx6dl"; 18 stdout-path = &uart3; 26 rmii_clk: clock-rmii { 28 compatible = "fixed-clock"; 29 #clock-cells = <0>; 30 clock-frequency = <50000000>; 31 clock-output-names = "enet_ref_pad"; [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | max9892x.txt | 7 - compatible : should be one of the following 8 - "maxim,max98925" 9 - "maxim,max98926" 10 - "maxim,max98927" 12 - vmon-slot-no : slot number used to send voltage information 15 MAX98925/MAX98926 slot range : 0 ~ 30, Default : 0 16 MAX98927 slot range : 0 ~ 15, Default : 0 18 - imon-slot-no : slot number used to send current information 19 MAX98925/MAX98926 slot range : 0 ~ 30, Default : 0 20 MAX98927 slot range : 0 ~ 15, Default : 0 [all …]
|
H A D | microchip,sama7g5-i2smcc.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/sound/microchip,sama7g5-i2smcc.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Microchip I2S Multi-Channel Controller 10 - Codrin Ciubotariu <codrin.ciubotariu@microchip.com> 13 The I2SMCC complies with the Inter-IC Sound (I2S) bus specification and 15 multi-channel audio codecs. It consists of a receiver, a transmitter and a 19 multi-channel is supported by using multiple data pins, output and 23 "#sound-dai-cells": [all …]
|
H A D | mchp,i2s-mcc.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/sound/mchp,i2s-mcc.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Microchip I2S Multi-Channel Controller 10 - Codrin Ciubotariu <codrin.ciubotariu@microchip.com> 13 The I2SMCC complies with the Inter-IC Sound (I2S) bus specification and 15 multi-channel audio codecs. It consists of a receiver, a transmitter and a 19 multi-channel is supported by using multiple data pins, output and 23 "#sound-dai-cells": [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
H A D | sdm845-wcd9340.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 13 #address-cells = <2>; 14 #size-cells = <0>; 24 slim-ifc-dev = <&wcd9340_ifd>; 26 #sound-dai-cells = <1>; 28 interrupts-extende [all...] |
H A D | sm8450.dtsi | 1 // SPDX-License-Identifier: BSD-3-Clause 6 #include <dt-bindings/interrupt-controller/arm-gic.h> 7 #include <dt-bindings/clock/qcom,gcc-sm8450.h> 8 #include <dt-bindings/clock/qcom,rpmh.h> 9 #include <dt-bindings/clock/qcom,sm8450-camcc.h> 10 #include <dt-bindings/clock/qcom,sm8450-dispcc.h> 11 #include <dt-bindings/clock/qcom,sm8450-gpucc.h> 12 #include <dt-bindings/clock/qcom,sm8450-videocc.h> 13 #include <dt-bindings/dma/qcom-gpi.h> 14 #include <dt-bindings/firmware/qcom,scm.h> [all …]
|
/freebsd/contrib/bearssl/T0/ |
H A D | T0Comp.cs | 38 * Command-line entry point. 52 if (!a.StartsWith("-")) { in Main() 56 if (a == "--") { in Main() 65 while (a.StartsWith("-")) { in Main() 128 default: in Main() 151 .GetManifestResourceStream("t0-kernel"))) in Main() 175 " -o file use 'file' as base for output file name (default: 't0out')"); in Usage() 177 " -r name use 'name' as base for run function (default: same as output)"); in Usage() 179 " -m name[,name...]"); in Usage() 183 " -nf disable flow analysis"); in Usage() [all …]
|
/freebsd/sys/contrib/device-tree/src/mips/xilfpga/ |
H A D | nexys4ddr.dts | 1 // SPDX-License-Identifier: GPL-2.0 2 /dts-v1/; 14 stdout-path = "serial0:115200n8"; 22 cpuintc: interrupt-controller { 23 #address-cells = <0>; 24 #interrupt-cells = <1>; 25 interrupt-controller; 26 compatible = "mti,cpu-interrupt-controller"; 29 axi_intc: interrupt-controller@10200000 { 30 #interrupt-cells = <1>; [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/amlogic/ |
H A D | meson-gxl-s905x-khadas-vim.dts | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 6 /dts-v1/; 8 #include "meson-gxl-s905x-p212.dtsi" 9 #include <dt-bindings/input/input.h> 10 #include <dt-bindings/sound/meson-aiu.h> 13 compatible = "khadas,vim", "amlogic,s905x", "amlogic,meson-gxl"; 16 adc-keys { 17 compatible = "adc-keys"; 18 io-channels = <&saradc 0>; 19 io-channel-names = "buttons"; [all …]
|
H A D | meson-gxbb-nanopi-k2.dts | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 6 /dts-v1/; 8 #include "meson-gxbb.dtsi" 9 #include <dt-bindings/gpio/gpio.h> 10 #include <dt-bindings/sound/meson-aiu.h> 13 compatible = "friendlyarm,nanopi-k2", "amlogic,meson-gxbb"; 22 stdout-path = "serial0:115200n8"; 31 compatible = "gpio-leds"; 33 led-stat { 34 label = "nanopi-k2:blue:stat"; [all …]
|
/freebsd/sys/contrib/device-tree/src/riscv/allwinner/ |
H A D | sun20i-d1-nezha.dts | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 // Copyright (C) 2021-2022 Samuel Holland <samuel@sholland.org> 7 * The Nezha-D1 has a 40-pin IO header. Some of these pins are routed 8 * directly to pads on the SoC, others come from an 8-bit pcf857x IO 12 * Lines which are routed to the 40-pin header are named as follows: 15 * <pin#> is the actual pin number of the 40-pin header 20 * http://dl.linux-sunx [all...] |
/freebsd/sys/contrib/device-tree/Bindings/display/panel/ |
H A D | panel-mipi-dbi-spi.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/display/panel/panel-mipi-dbi-spi.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Noralf Trønnes <noralf@tronnes.org> 23 - Power: 24 - Vdd: Power supply for display module 25 Called power-supply in this binding. 26 - Vddi: Logic level supply for interface signals 27 Called io-supply in this binding. [all …]
|
/freebsd/sys/contrib/device-tree/src/arm/nvidia/ |
H A D | tegra124-apalis-v1.2.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 OR MIT 3 * Copyright 2016-2018 Toradex AG 7 #include "tegra124-apalis-emc.dtsi" 21 avddio-pex-supply = <®_1v05_vdd>; 22 avdd-pex-pl [all...] |
H A D | tegra124-apalis.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 OR X11 3 * Copyright 2016-2019 Toradex AG 7 #include "tegra124-apalis-emc.dtsi" 20 avddio-pex-supply = <®_1v05_vdd>; 21 avdd-pex-pl [all...] |