/freebsd/sys/contrib/device-tree/Bindings/hwmon/ |
H A D | ntc-thermistor.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2 --- 3 $id: http://devicetree.org/schemas/hwmon/ntc-thermistor.yaml# 4 $schema: http://devicetree.org/meta-schemas/core.yaml# 9 - Linus Walleij <linus.walleij@linaro.org> 13 vary in resistance in an often non-linear way in relation to temperature. 16 temperature is non-linear, software drivers most often need to use a look 19 When used in practice, a thermistor is often connected between ground, a 20 pull-up resistor or/and a pull-down resistor and a fixed voltage like this: 22 + e.g. 5V = pull-up voltage (puv) [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/mfd/ |
H A D | samsung,s2mps11.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Krzysztof Kozlowski <krzk@kernel.org> 18 sub-blocks. 23 - samsung,s2mps11-pmic 24 - samsung,s2mps13-pmic 25 - samsung,s2mps14-pmic 26 - samsung,s2mps15-pmic 27 - samsung,s2mpu02-pmic [all …]
|
H A D | samsung,sec-core.txt | 1 Binding for Samsung S2M and S5M family multi-function device 4 This is a part of device tree bindings for S2M and S5M family multi-function 8 of multi-function devices which include voltage and current regulators, RTC, 9 charger controller, clock outputs and other sub-blocks. It is interfaced 10 to the host controller using an I2C interface. Each sub-block is usually 14 This document describes bindings for main device node. Optional sub-blocks 15 must be a sub-nodes to it. Bindings for them can be found in: 16 - bindings/regulator/samsung,s2mpa01.txt 17 - bindings/regulator/samsung,s2mps11.txt 18 - bindings/regulator/samsung,s5m8767.txt [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/iio/proximity/ |
H A D | semtech,sx9310.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schema [all...] |
/freebsd/usr.bin/morse/ |
H A D | morse.6 | 50 .Bl -tag -width indent 144 emitter connected to ground, base connected through a resistor 149 base and ground is advisable to keep stray RF away, 156 characters with the high-order bit set 159 .Bl -tag -width ".Li ISO8859-15" -compact 160 .It Li ISO8859-1 161 .It Li ISO8859-15 162 Interpret characters with the high-order bit set as Western European characters. 164 .It Li KOI8-R 165 Interpret characters with the high-order bit set as Cyrillic characters. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/leds/ |
H A D | leds-pwm.txt | 1 LED connected to PWM 4 - compatible : should be "pwm-leds". 6 Each LED is represented as a sub-node of the pwm-leds device. Each 9 LED sub-node properties: 10 - pwms : PWM property to point to the PWM device (phandle)/port (id) and to 12 - pwm-names : (optional) Name to be used by the PWM subsystem for the PWM device 13 For the pwms and pwm-names property please refer to: 15 - max-brightness : Maximum brightness possible for the LED 16 - active-low : (optional) For PWMs where the LED is wired to supply 17 rather than ground. [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
H A D | sc7180-trogdor-lazor.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 8 #include "sc7180-trogdor-clamshell.dtsi" 11 semtech,cs0-ground; 12 semtech,combined-sensors = <3>; 14 semtech,startup-sensor = <0>; 15 semtech,proxraw-strength = <8>; 16 semtech,avg-pos-strength = <64>; 34 clock-frequency = <400000>; 37 compatible = "hid-over-i2c"; 39 pinctrl-names = "default"; [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/gpio/ |
H A D | gpio-pcf857x.txt | 1 * PCF857x-compatible I/O expanders 3 The PCF857x-compatible chips have "quasi-bidirectional" I/O lines that can be 4 driven high by a pull-up current source or driven low to ground. This combines 14 - compatible: should be one of the following. 15 - "maxim,max7328": For the Maxim MAX7378 16 - "maxim,max7329": For the Maxim MAX7329 17 - "nxp,pca8574": For the NXP PCA8574 18 - "nxp,pca8575": For the NXP PCA8575 19 - "nxp,pca9670": For the NXP PCA9670 20 - "nxp,pca9671": For the NXP PCA9671 [all …]
|
/freebsd/share/man/man4/ |
H A D | iicbus.4 | 41 system provides a uniform, modular and architecture-independent 49 easy way to connect a CPU to peripheral chips in a TV-set. 51 The BUS physically consists of 2 active wires and a ground connection. 71 As mentioned before, the IC bus is a Multi-MASTER BUS. 73 connected to it. 77 .Bl -column "Device drivers" -compact 89 8-bit characters they write to the bus according to the I2C protocol. 92 bidirectional communications, thanks to the multi-master capabilities of the 97 .Bl -column "Interface drivers" -compact 100 .It Sy iicbb Ta "generic bit-banging master-only driver" [all …]
|
/freebsd/share/examples/ppi/ |
H A D | ppilcd.c | 43 #define MAX_DRVOPT 10 /* maximum driver-specific options */ 62 " 1 1-line display (default 2)", 108 while ((ch = getopt(argc, argv, "Dd:f:o:v")) != -1) { in main() 129 argc -= optind; in main() 146 debug(1, "Driver selected for %s", driver->l_name); in main() 147 driver->l_prepare(devname, drvopts); in main() 148 atexit(driver->l_finish); in main() 169 … fprintf(stderr, "usage: %s [-v] [-d drivername] [-f device] [-o options] [args...]\n", progname); in usage() 170 fprintf(stderr, " -D Increase debugging\n"); in usage() 171 fprintf(stderr, " -f Specify device, default is '%s'\n", DEFAULT_DEVICE); in usage() [all …]
|
/freebsd/contrib/ntp/html/ |
H A D | audio.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 4 <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> 11 <img src="pic/radio2.jpg" alt="jpg" align="left">ICOM R-72 shortwave receiver and Sure audio mixer 13 <!-- #BeginDate format:En2m -->11-Sep-2010 05:55<!-- #EndDate --> 27 …rectly from a shortwave receiver. In such cases the audio signal can be connected via an ordinary … 31 and decoding techniques, including maximum-likelihood and soft-decision methods. 32 The documentation page for each driver contains an in-depth discussion on 38 …e flag 2</tt> command selects the microphone port if set to zero or the line-in port if set to one… 40 …l shortwave radio with the radio output - speaker or headphone jack - connected to either the micr… 41 …- even 15 feet is enough if it is located outside of a metal frame building, preferably on the roo… [all …]
|
/freebsd/share/dict/ |
H A D | web2a | 12 A-b-c book 13 A-b-c method 14 abdomino-uterotomy 15 Abdul-baha 16 a-be 20 able-bodied 21 able-bodiedness 22 able-minded 23 able-mindedness 27 Abor-miri [all …]
|
H A D | web2 | 41499 connected 80330 ground 99810 Jean-Christophe 99811 Jean-Pierre
|
/freebsd/sys/contrib/device-tree/Bindings/phy/ |
H A D | nvidia,tegra20-usb-phy.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/phy/nvidia,tegra20-usb-phy.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Dmitry Osipenko <digetx@gmail.com> 11 - Jon Hunter <jonathanh@nvidia.com> 12 - Thierry Reding <thierry.reding@gmail.com> 17 - items: 18 - enum: 19 - nvidia,tegra124-usb-phy [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/net/wireless/ |
H A D | mediatek,mt76.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 # Copyright (c) 2018-2019 The Linux Foundation. All rights reserved. 4 --- 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 11 - Felix Fietkau <nbd@nbd.name> 12 - Lorenzo Bianconi <lorenzo@kernel.org> 13 - Ryder Lee <ryder.lee@mediatek.com> 18 node of the PCI controller to which the wireless chip is connected. 25 - mediatek,mt76 26 - mediatek,mt7628-wmac [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/rockchip/ |
H A D | rk3399-gru.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 5 * Copyright 2016-2017 Google, Inc 8 #include <dt-bindings/input/input.h> 9 #include "rk3399-op1.dtsi" 18 stdout-path = "serial2:115200n8"; 27 * - Rails that only connect to the EC (or devices that the EC talks to) 29 * - Rails _are_ included if the rails go to the AP even if the AP 38 * - The EC controls the enable and the EC always enables a rail as 40 * - The rails are actually connected to each other by a jumper and 45 ppvar_sys: ppvar-sys { [all …]
|
H A D | rk3326-gameforce-chi.dts | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 6 /dts-v1/; 7 #include <dt-bindings/gpio/gpio.h> 8 #include <dt-bindings/input/input.h> 9 #include <dt-bindings/leds/common.h> 10 #include <dt-bindings/pinctrl/rockchip.h> 16 chassis-type = "handset"; 24 stdout-path = "serial2:115200n8"; 27 adc_joystick: adc-joystick { 28 compatible = "adc-joystick"; [all …]
|
/freebsd/contrib/ntp/html/drivers/ |
H A D | driver29.html | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 6 <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> 14 <!-- #BeginDate format:En2m -->13-Sep-2019 08:07<!-- #EndDate --> 63 <td><b>9600 baud, 8-bits, 1-stop, odd parity</b></td> 70 <td><b>9600 baud, 8-bits, 1-stop, no parity</b></td> 77 <td><b>38400 baud, 8-bits, 1-stop, no parity</b></td> 123 <td valign="CENTER" width="23%">Hewlett-Packard</td> 125 <td><a href="http://us-support.external.hp.com">http://us-support.external.hp.com</a></td> 138 …The Palisade GPS receiver is an 8-channel smart antenna, housing the GPS receiver, antenna and int… 139 …<p>Palisade generates a PPS synchronized to UTC within +/- 100 ns. The Palisade's external e… [all …]
|
/freebsd/sys/dev/sound/pci/hda/ |
H A D | hdaa.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 6 * Copyright (c) 2008-2012 Alexander Motin <mav@FreeBSD.org> 50 #define hdaa_lock(devinfo) snd_mtxlock((devinfo)->lock) 51 #define hdaa_unlock(devinfo) snd_mtxunlock((devinfo)->lock) 52 #define hdaa_lockassert(devinfo) snd_mtxassert((devinfo)->lock) 82 static const char *HDA_DEVS[16] = {"Line-out", "Speaker", "Headphones", "CD", 83 "SPDIF-out", "Digital-out", "Modem-line", "Modem-handset", "Line-in", 84 "AUX", "Mic", "Telephony", "SPDIF-in", "Digital-in", "Res.E", "Other"}; 90 "DIN", "XLR", "RJ-11", "Combo", "0xc", "0xd", "0xe", "Other" }; [all …]
|
/freebsd/share/doc/smm/01.setup/ |
H A D | 3.t | 52 some \*(Ps-Tahoe features (e.g. networking code). 58 This is a \*(Ps-Tahoe vintage system with Sun's NFS 4.0 filesystem code 60 The instructions for \*(Ps-Tahoe should largely apply. 62 \*(Ps-Reno from CSRG. 93 and use that system to cross-compile and install \*(4B. 102 then site-specific files should be merged into them. 124 filesystem can be an MFS virtual-memory-resident filesystem, 137 Extract kernel and/or user-level sources from the distribution tape 150 Merge site-dependent configuration files from 185 save and suggests directories in which site-specific files should be present. [all …]
|
/freebsd/contrib/sendmail/doc/op/ |
H A D | op.me | 1 .\" Copyright (c) 1998-2013 Proofpoint, Inc. and its suppliers. 12 .\" $Id: op.me,v 8.759 2014-01-13 14:40:05 ca Exp $ 14 .\" eqn op.me | pic | troff -me 51 .eh 'SMM:08-%''Sendmail Installation and Operation Guide' 52 .oh 'Sendmail Installation and Operation Guide''SMM:08-%' 74 .b SENDMAIL\u\s-6TM\s0\d 103 .i Sendmail \u\s-2TM\s0\d 107 It is not tied to any one transport protocol \*- 173 explains the day-to-day information you should know 185 contains the nitty-gritty information about the configuration [all …]
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | funstack.in | 2 %%% BibTeX-file{ 23 %%% (incompletely) 1970 -- 1979. 50 %%% covering 1958--1996 became too large (about 65 %%% Algorithms 1--492. For Algorithms 493--686, 72 %%% cross-referenced in both directions, so 75 %%% Corrigenda. Cross-referenced entries are 77 %%% that each is completely self-contained. 83 %%% ftp://netlib.bell-labs.com/netlib/toms. 88 %%% http://ciir.cs.umass.edu/cgi-bin/web_query_form/public/cacm2.1. 90 %%% The initial draft of entries for 1981 -- [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 1 //===- ASTReaderDecl.cpp - Decl Deserialization ---------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 78 //===----------------------------------------------------------------------===// 80 //===----------------------------------------------------------------------===// 108 return LocalOffset ? Loc.Offset - LocalOffset : 0; in ReadLocalOffset() 272 ASTContext &C = D->getASTContext(); in AddLazySpecializations() 274 auto *&LazySpecializations = D->getCommonPtr()->LazySpecializations; in AddLazySpecializations() 322 Cat->NextClassCategory = Next; in setNextObjCCategory() [all …]
|
/freebsd/sys/dev/sym/ |
H A D | sym_hipd.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 5 * PCI-SCSI controllers. 7 * Copyright (C) 1999-2001 Gerard Roudier <groudier@free.fr> 9 * This driver also supports the following Symbios/LSI PCI-SCSI chips: 14 * This driver for FreeBSD-CAM is derived from the Linux sym53c8xx driver. 15 * Copyright (C) 1998-1999 Gerard Roudier 18 * a port of the FreeBSD ncr driver to Linux-1.2.13. 22 * Stefan Esser <se@mi.Uni-Koeln.de> 26 * FreeBSD-CAM services is based on the aic7xxx driver for FreeBSD-CAM [all …]
|
/freebsd/contrib/ncurses/misc/ |
H A D | terminfo.src | 7 # bug-ncurses@gnu.org 19 # under the ncurses MIT-style license. That was the effect of the agreement 33 # some portions of the data are derivative work under a compatible MIT-style 36 #------------------------------------------------------------------------------ 37 # https://invisible-island.net/ncurses/ncurses.faq.html#terminfo_copying 38 # https://invisible-island.net/personal/copyrights.html#removing_notes 39 #------------------------------------------------------------------------------ 48 # Please e-mail changes to terminfo@thyrsus.com; the old termcap@berkeley.edu 54 # This file describes the capabilities of various character-cell terminals, 55 # as needed by software such as screen-oriented editors. [all …]
|