Home
last modified time | relevance | path

Searched full:inputs (Results 1 – 25 of 1457) sorted by relevance

12345678910>>...59

/openbmc/phosphor-pid-control/test/
H A Dpid_thermalcontroller_unittest.cpp29 std::vector<pid_control::conf::SensorInput> inputs = {{"fleeting0"}}; in TEST() local
34 &z, "therm1", inputs, setpoint, initial, ThermalType::margin); in TEST()
45 std::vector<pid_control::conf::SensorInput> inputs = {}; in TEST() local
52 &z, "therm1", inputs, setpoint, initial, ThermalType::margin); in TEST()
64 std::vector<pid_control::conf::SensorInput> inputs = {{"fleeting0"}}; in TEST() local
69 &z, "therm1", inputs, setpoint, initial, ThermalType::margin); in TEST()
83 std::vector<pid_control::conf::SensorInput> inputs = {{"fleeting0"}}; in TEST() local
88 &z, "therm1", inputs, setpoint, initial, ThermalType::margin); in TEST()
100 std::vector<pid_control::conf::SensorInput> inputs = {{"fleeting0"}}; in TEST() local
105 &z, "therm1", inputs, setpoint, initial, ThermalType::margin); in TEST()
[all …]
H A Dpid_fancontroller_unittest.cpp35 std::vector<std::string> inputs = {"fan0"}; in TEST() local
39 FanController::createFanPid(&z, "fan1", inputs, initial); in TEST()
50 std::vector<std::string> inputs = {}; in TEST() local
54 FanController::createFanPid(&z, "fan1", inputs, initial); in TEST()
60 // If all your inputs are 0, return 0. in TEST()
64 std::vector<std::string> inputs = {"fan0", "fan1"}; in TEST() local
68 FanController::createFanPid(&z, "fan1", inputs, initial); in TEST()
82 std::vector<std::string> inputs = {"fan0", "fan1"}; in TEST() local
86 FanController::createFanPid(&z, "fan1", inputs, initial); in TEST()
97 // Verify it selects the minimum value from its inputs. in TEST()
[all …]
H A Dpid_json_unittest.cpp48 "inputs": ["fan1", "fan5"], in TEST()
95 "inputs": ["absolute0", "absolute1", "margin0", "margin1"], in TEST()
126 EXPECT_EQ(pidConfig[1]["myPid"].inputs[0].name, "absolute0"); in TEST()
127 EXPECT_DOUBLE_EQ(pidConfig[1]["myPid"].inputs[0].convertMarginZero, 85.0); in TEST()
128 EXPECT_EQ(pidConfig[1]["myPid"].inputs[0].convertTempToMargin, true); in TEST()
130 EXPECT_EQ(pidConfig[1]["myPid"].inputs[1].name, "absolute1"); in TEST()
131 EXPECT_DOUBLE_EQ(pidConfig[1]["myPid"].inputs[1].convertMarginZero, 100.0); in TEST()
132 EXPECT_EQ(pidConfig[1]["myPid"].inputs[1].convertTempToMargin, true); in TEST()
134 EXPECT_EQ(pidConfig[1]["myPid"].inputs[2].name, "margin0"); in TEST()
135 EXPECT_EQ(pidConfig[1]["myPid"].inputs[2].convertTempToMargin, false); in TEST()
[all …]
/openbmc/linux/Documentation/hwmon/
H A Dpcf8591.rst25 The PCF8591 is an 8-bit A/D and D/A converter (4 analog inputs and one
29 The PCF8591 has 4 analog inputs programmable as single-ended or
30 differential inputs:
32 - mode 0 : four single ended inputs
33 Pins AIN0 to AIN3 are single ended inputs for channels 0 to 3
35 - mode 1 : three differential inputs
37 Pins AIN0 to AIN2 are positive differential inputs for channels 0 to 2
40 Pins AIN0 and AIN1 are single ended inputs for channels 0 and 1
44 - mode 3 : two differential inputs
59 - 0 = four single ended inputs
[all …]
H A Dadm1026.rst23 List of GPIO pins (0-16) to program as inputs
50 sensor inputs and one internal sensor. Each sensor has a high and low
68 measurements. Several inputs have integrated attenuators so they can measure
70 dedicated inputs. There are several inputs scaled to 0-3V full-scale range
71 for SCSI terminator power. The remaining inputs are not scaled and have
82 The ADM1026 measures continuously. Analog inputs are measured about 4
87 temperature sensor inputs. Both the PWM output and the DAC output can be
/openbmc/linux/Documentation/userspace-api/ioctl/
H A Dcdrom.rst108 inputs:
129 inputs:
153 inputs:
184 inputs:
213 inputs:
238 inputs:
268 inputs:
293 inputs:
319 inputs:
346 inputs:
[all …]
/openbmc/phosphor-pid-control/pid/
H A Dbuilder.cpp87 std::vector<pid_control::conf::SensorInput> inputs; in buildZones() local
96 for (const auto& i : info.inputs) in buildZones()
98 inputs.push_back(i); in buildZones()
103 zone.get(), name, splitNames(inputs), info.pidInfo); in buildZones()
105 zone->addPidFailSafePercent(splitNames(inputs), in buildZones()
110 for (const auto& i : info.inputs) in buildZones()
112 inputs.push_back(i); in buildZones()
117 zone.get(), name, inputs, info.setpoint, info.pidInfo, in buildZones()
124 zone->addPidFailSafePercent(splitNames(inputs), in buildZones()
129 for (const auto& i : info.inputs) in buildZones()
[all …]
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Daudio.rst6 Audio Inputs and Outputs
9 Audio inputs and outputs are physical connectors of a device. Video
10 capture devices have inputs, output devices have outputs, zero or more
11 each. Radio devices have no audio inputs or outputs. They have exactly
13 tuners with video inputs or outputs only, and radio devices have none of
17 Audio and video inputs and outputs are associated. Selecting a video
20 more than one video input or output. Assumed two composite video inputs
21 and two audio inputs exist, there may be up to four valid combinations.
28 To learn about the number and attributes of the available inputs and
53 multiple selectable audio inputs, all audio output ioctls when the
[all …]
H A Dvideo.rst6 Video Inputs and Outputs
9 Video inputs and outputs are physical connectors of a device. These can
12 be a video input. Video and VBI capture devices have inputs. Video and
14 no video inputs or outputs.
16 To learn about the number and attributes of the available inputs and
29 implement all the input ioctls when the device has one or more inputs,
/openbmc/openbmc/meta-raspberrypi/.github/actions/docker-build/
H A Daction.yml7 inputs:
18 - name: Build the ${{ inputs.docker_image }} docker image
34 echo "Building the docker image ${{ inputs.docker_image }}-${{ inputs.id }}... try $n..."
35 …if docker build . -f "${{ inputs.docker_image }}/Dockerfile" -t "${{ inputs.docker_image }}-${{ in…
47 echo "Temporary image built in ${{ inputs.docker_image }}."
/openbmc/openbmc/meta-quanta/meta-gbs/recipes-phosphor/fans/phosphor-pid-control/
H A Dconfig.json.in324 "inputs": [ array
345 "inputs": [ array
366 "inputs": [ array
389 "inputs": [ array
417 "inputs": [ array
440 "inputs": [ array
463 "inputs": [ array
493 "inputs": [ array
514 "inputs": [ array
535 "inputs": [ array
[all …]
/openbmc/entity-manager/configurations/
H A Dgenesis3_chassis.json298 "Inputs": [ array
325 "Inputs": [ array
352 "Inputs": [ array
379 "Inputs": [ array
406 "Inputs": [ array
433 "Inputs": [ array
460 "Inputs": [ array
487 "Inputs": [ array
514 "Inputs": [ array
541 "Inputs": [ array
[all …]
H A Dsbp1_chassis.json970 "Inputs": [ array
997 "Inputs": [ array
1024 "Inputs": [ array
1051 "Inputs": [ array
1078 "Inputs": [ array
1105 "Inputs": [ array
1132 "Inputs": [ array
1159 "Inputs": [ array
1186 "Inputs": [ array
1213 "Inputs": [ array
[all …]
/openbmc/linux/include/media/drv-intf/
H A Dmsp3400.h3 msp3400.h - definition for msp3400 inputs and outputs
19 Inputs
22 There are 1) tuner inputs, 2) I2S inputs, 3) SCART inputs. You will have
24 selected tuner input, the selected SCART input and all I2S inputs go to
38 SCART2 output from the DSP, or the msp3400 SCART inputs, thus completely
56 ignore or mute certain inputs or outputs.
58 Also, depending on the msp version only a subset of the inputs or
63 /* Inputs to the DSP unit: two independent selections have to be made:
93 There are up to 16 DSP inputs to choose from, so each output is
96 Note: the 44x8G can mix two inputs and feed the result back to the
[all …]
/openbmc/openbmc/meta-nuvoton/recipes-bsp/images/npcm7xx-igps/
H A D0001-Adjust-paths-for-use-with-Bitbake.patch10 ImageGeneration/inputs/mergedBootBlockAndUboot.xml | 10 +++++-----
17 diff --git a/ImageGeneration/inputs/mergedBootBlockAndUboot.xml b/ImageGeneration/inputs/mergedBoot…
19 --- a/ImageGeneration/inputs/mergedBootBlockAndUboot.xml
20 +++ b/ImageGeneration/inputs/mergedBootBlockAndUboot.xml
53 - <content format='FileSize'>inputs/Poleg_bootblock.bin</content> <!-- content the user should fil…
62 - <size format='FileSize'>inputs/Poleg_bootblock.bin</size> <!-- size in the head…
65 - <content format='FileContent'>inputs/Poleg_bootblock.bin</content> <!-- content the user should…
78 - <content format='FileSize'>inputs/Poleg_bootblock.bin</content> <!-- content the user should fil…
87 - <size format='FileSize'>inputs/Poleg_bootblock.bin</size> <!-- size in the head…
90 - <content format='FileContent'>inputs/Poleg_bootblock.bin</content> <!-- content the user should…
[all …]
/openbmc/entity-manager/configurations/meta/
H A Dyosemite4_sentineldome_t2_retimer.json12 "Inputs": [ array
39 "Inputs": [ array
77 "Inputs": [ array
104 "Inputs": [ array
131 "Inputs": [ array
158 "Inputs": [ array
182 "Inputs": [ array
203 "Inputs": [ array
237 "Inputs": [ array
257 "Inputs": [ array
[all …]
H A Dyosemite4_sentineldome_t1_retimer.json12 "Inputs": [ array
39 "Inputs": [ array
75 "Inputs": [ array
102 "Inputs": [ array
129 "Inputs": [ array
153 "Inputs": [ array
174 "Inputs": [ array
208 "Inputs": [ array
228 "Inputs": [ array
276 "Inputs": [ array
[all …]
H A Dyosemite4_sentineldome_t2.json13 "Inputs": [ array
51 "Inputs": [ array
78 "Inputs": [ array
105 "Inputs": [ array
132 "Inputs": [ array
156 "Inputs": [ array
177 "Inputs": [ array
197 "Inputs": [ array
237 "Inputs": [ array
296 "Inputs": [ array
[all …]
H A Dyosemite4_sentineldome_t1.json13 "Inputs": [ array
49 "Inputs": [ array
76 "Inputs": [ array
103 "Inputs": [ array
127 "Inputs": [ array
148 "Inputs": [ array
168 "Inputs": [ array
216 "Inputs": [ array
255 "Inputs": [ array
291 "Inputs": [ array
[all …]
H A Dyosemite4_wailuafalls.json13 "Inputs": [ array
47 "Inputs": [ array
81 "Inputs": [ array
108 "Inputs": [ array
129 "Inputs": [ array
166 "Inputs": [ array
203 "Inputs": [ array
233 "Inputs": [ array
264 "Inputs": [ array
/openbmc/openbmc/meta-quanta/meta-olympus-nuvoton/recipes-phosphor/fans/phosphor-pid-control/
H A Dconfig-olympus-nuvoton.json129 "inputs": ["fan1"], array
148 "inputs": ["Core_0_CPU0"], array
169 "inputs": ["Core_0_CPU1"], array
190 "inputs": ["Core_1_CPU0"], array
211 "inputs": ["Core_1_CPU1"], array
232 "inputs": ["Core_2_CPU0"], array
253 "inputs": ["Core_2_CPU1"], array
274 "inputs": ["Core_3_CPU0"], array
295 "inputs": ["Core_3_CPU1"], array
316 "inputs": ["Core_4_CPU0"], array
[all …]
/openbmc/linux/drivers/comedi/drivers/
H A Dpcl730.c45 * BASE+0 Isolated outputs 0-7 (write) / inputs 0-7 (read)
46 * BASE+1 Isolated outputs 8-15 (write) / inputs 8-15 (read)
47 * BASE+2 TTL outputs 0-7 (write) / inputs 0-7 (read)
48 * BASE+3 TTL outputs 8-15 (write) / inputs 8-15 (read)
55 * BASE+1 Isolated inputs 0-7 (read)
61 * BASE+2 Isolated inputs 0-7 (read)
62 * BASE+3 Isolated inputs 8-15 (read)
66 * BASE+0 Isolated outputs 0-7 (write) or inputs 0-7 (read)
67 * BASE+1 Isolated outputs 8-15 (write) or inputs 8-15 (read)
68 * BASE+2 Isolated outputs 16-23 (write) or inputs 16-23 (read)
[all …]
/openbmc/linux/drivers/media/pci/saa7134/
H A Dsaa7134-cards.c64 .inputs = {{
79 .inputs = {{
107 .inputs = {{
154 .inputs = {{
195 .inputs = {{
224 .inputs = {{
272 .inputs = { {
319 .inputs = {{
348 .inputs = {{
373 .inputs = {{
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/
H A Dtest_layerdetails_page.py84 # Wait for the inputs to become visible after animation
90 for inputs in self.find_all("#layer-git input[type=text]") + \
92 # ignore the tt inputs (twitter typeahead input)
93 if "tt-" in inputs.get_attribute("class"):
96 value = inputs.get_attribute("value")
104 inputs.send_keys("-edited")
123 for inputs in self.find_all('#layer-git input[type="text"]') + \
125 # ignore the tt inputs (twitter typeahead input)
126 if "tt-" in inputs.get_attribute("class"):
129 value = inputs.get_attribute("value")
/openbmc/linux/include/media/i2c/
H A Dcs53l32a.h3 cs53l32a.h - definition for cs53l32a inputs and outputs
12 /* There are 2 physical inputs, but the second input can be
15 possible inputs to choose from. */
17 /* CS53L32A HW inputs */

12345678910>>...59