Home
last modified time | relevance | path

Searched refs:output (Results 276 – 300 of 6206) sorted by relevance

1...<<11121314151617181920>>...249

/openbmc/linux/drivers/clk/
H A Dclk-si5341.c138 ((output)->data->reg_output_offset[(output)->index])
139 #define SI5341_OUT_FORMAT(output) (SI5341_OUT_CONFIG(output) + 1) argument
140 #define SI5341_OUT_CM(output) (SI5341_OUT_CONFIG(output) + 2) argument
141 #define SI5341_OUT_MUX_SEL(output) (SI5341_OUT_CONFIG(output) + 3) argument
143 ((output)->data->reg_rdiv_offset[(output)->index])
769 SI5341_OUT_CONFIG(output), in si5341_output_clk_unprepare()
772 SI5341_OUT_CONFIG(output), in si5341_output_clk_unprepare()
783 SI5341_OUT_CONFIG(output), in si5341_output_clk_prepare()
789 SI5341_OUT_CONFIG(output), in si5341_output_clk_prepare()
888 SI5341_OUT_CONFIG(output), in si5341_output_clk_set_rate()
[all …]
/openbmc/openbmc/meta-arm/scripts/
H A Dmachine-summary.py178 def render(self, context, output: pathlib.Path):
199 def render(self, context, output: pathlib.Path):
200 with open(output, "wt") as f:
206 def render(self, context, output: pathlib.Path):
207 if output.exists() and not output.is_dir():
211 if not output.exists():
212 output.mkdir(parents=True)
214 with open(output / "index.html", "wt") as f:
222 with open(output / f"{machine}.html", "wt") as f:
239 formatter.render(context, args.output)
/openbmc/linux/drivers/media/pci/ivtv/
H A Divtv-routing.c25 u32 input, output = 0; in ivtv_audio_set_io() local
36 output = M52790_OUT_STEREO; in ivtv_audio_set_io()
38 input, output, 0); in ivtv_audio_set_io()
41 output = 0; in ivtv_audio_set_io()
43 output = MSP_OUTPUT(MSP_SC_IN_DSP_SCART1); in ivtv_audio_set_io()
45 input, output, 0); in ivtv_audio_set_io()
/openbmc/linux/Documentation/hwmon/
H A Dtc654.rst22 one (1) PWM output which can be used for fan control.
26 Ordinarily the pwm1_mode ABI is used for controlling the pwm output
27 mode. However, for this chip the output is always pwm, and the
28 pwm1_mode determines if the pwm output is controlled via the pwm1 value
32 Setting pwm1_mode to 1 will cause the pwm output to be driven based on
33 the pwm1 value. Setting pwm1_mode to 0 will cause the pwm output to be
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/Syslog/Destination/Mail/
H A Dmeson.build5 output: [ 'common.hpp', 'server.cpp', 'server.hpp', 'aserver.hpp', 'client.hpp', ],
9 '--output', meson.current_build_dir(),
20 output: [ 'Create.md' ],
24 '--output', meson.current_build_dir(),
35 output: [ 'Entry.md' ],
39 '--output', meson.current_build_dir(),
/openbmc/qemu/ui/shader/
H A Dmeson.build8 output = '@0@-@1@.h'.format(e[0], e[1]) variable
9 genh += custom_target(output,
10 output: output,
/openbmc/linux/lib/
H A Dmemcpy_kunit.c516 strtomem(wrap.output, input); in strtomem_test()
518 KUNIT_EXPECT_EQ(test, wrap.output[0], input[0]); in strtomem_test()
519 KUNIT_EXPECT_EQ(test, wrap.output[1], input[1]); in strtomem_test()
520 for (size_t i = 2; i < sizeof(wrap.output); i++) in strtomem_test()
521 KUNIT_EXPECT_EQ(test, wrap.output[i], 0xFF); in strtomem_test()
526 strtomem(wrap.output, truncate); in strtomem_test()
528 for (size_t i = 0; i < sizeof(wrap.output); i++) in strtomem_test()
534 strtomem_pad(wrap.output, input, 0xAA); in strtomem_test()
536 KUNIT_EXPECT_EQ(test, wrap.output[0], input[0]); in strtomem_test()
539 KUNIT_EXPECT_EQ(test, wrap.output[i], 0xAA); in strtomem_test()
[all …]
H A Ddecompress_unlz4.c34 u8 *output, long *posp, in unlz4() argument
50 if (output) { in unlz4()
51 outp = output; in unlz4()
176 if (output) in unlz4()
200 if (!output) in unlz4()
210 unsigned char *output, long out_len, in __decompress() argument
215 return unlz4(buf, in_len - 4, fill, flush, output, posp, error); in __decompress()
/openbmc/linux/tools/testing/selftests/net/
H A Daltnames.sh17 local output
23 output=$(ip -j -p link show $SHORT_NAME)
26 name=$(echo $output | jq -e -r ".[0].altnames[0]")
38 output=$(ip -j -p link show $LONG_NAME)
41 name=$(echo $output | jq -e -r ".[0].altnames[1]")
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dfor_each_array_map_elem.c23 int output; member
32 data->output = 0; in unused_subprog()
40 data->output += *val; in check_array_elem()
65 data.output = 0; in test_pkt_access()
69 arraymap_output = data.output; in test_pkt_access()
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Dgi.py19 status, output = self.target.run("python3 -c '%s'" % script)
20 self.assertEqual(status, 0, msg="Python failed (%s)" % (output))
21 … self.assertEqual(output, "&lt;testing&amp;testing&gt;", msg="Unexpected output (%s)" % output)
H A Dpython.py16 status, output = self.target.run(cmd)
17 msg = 'Exit status was not 0. Output: %s' % output
20 msg = 'Incorrect output: %s' % output
21 self.assertEqual(output, "Hello, world", msg=msg)
H A Dgo.py16 status, output = self.target.run(cmd)
17 msg = 'Exit status was not 0. Output: %s' % output
20 msg = 'Incorrect output: %s' % output
21 self.assertEqual(output, "Hello, world!", msg=msg)
H A Dweston.py25 status, output = self.target.run(cmd)
31 status, output = self.target.run('pidof %s' % target)
32 …lf.assertEqual(status, 0, msg='Retrieve %s (%s) processes error: %s' % (target, error_msg, output))
33 return output.split(" ")
62 status, output = self.target.run(command)
63 self.assertEqual(status, 0, msg='wayland-info error: %s' % output)
87 status, output = self.target.run(cmd)
/openbmc/linux/Documentation/devicetree/bindings/pinctrl/
H A Dste,nomadik.txt43 - ste,output: <0/1/2>
44 0: output low,
45 1: output high,
46 2: output (value is not specified).
58 - ste,sleep-output: <0/1/2>
59 0: sleep output low,
60 1: sleep output high,
61 2: sleep output (value is not specified).
93 ste,sleep-output = <1>;
100 ste,sleep-output = <2>;
[all …]
/openbmc/linux/Documentation/devicetree/bindings/clock/
H A Dsilabs,si5341.txt12 The Si5341 and Si5340 are programmable i2c clock generators with up to 10 output
42 The second value is the output or synthesizer index.
68 specified output. The driver selects the output VDD_SEL setting based on this
76 The child nodes list the output clocks.
79 If a child node for a clock output is not set, the configuration remains
83 - reg: number of clock output.
91 - silabs,amplitude: Manually override output amplitude, see [2] for values
158 /* Set output 7 to use syntesizer 3 as its parent */
161 /* Set output 7 to 148.5 MHz using a synth frequency of 594 MHz */
169 * since output 0 is a synth-master, the synth will be automatically set
[all …]
/openbmc/u-boot/include/u-boot/
H A Dsha1.h61 void sha1_finish( sha1_context *ctx, unsigned char output[20] );
71 unsigned char *output);
82 unsigned char *output, unsigned int chunk_sz);
95 unsigned char *output);
/openbmc/phosphor-ipmi-flash/bmc/
H A Dfs.cpp30 std::vector<std::string> output; in GetJsonList() local
39 output.push_back(path.string()); in GetJsonList()
48 return output; in GetJsonList()
53 return output; in GetJsonList()
/openbmc/qemu/hw/core/
H A Dqdev-clock.c25 bool output, Clock *clk) in qdev_init_clocklist() argument
41 ncl->output = output; in qdev_init_clocklist()
51 if (output) { in qdev_init_clocklist()
87 if (!ncl->output && !ncl->alias) { in qdev_finalize_clocklist()
172 assert(!ncl->output); in qdev_get_clock_in()
189 assert(ncl->output); in qdev_get_clock_out()
203 qdev_init_clocklist(alias_dev, alias_name, ncl->output, ncl->clock); in qdev_alias_clock()
/openbmc/linux/Documentation/devicetree/bindings/mfd/
H A Dallwinner,sun8i-a23-prcm.yaml63 clock-output-names:
69 - clock-output-names
89 clock-output-names:
96 - clock-output-names
130 clock-output-names = "ar100";
139 clock-output-names = "ahb0";
146 clock-output-names = "apb0";
153 clock-output-names = "apb0_pio", "apb0_timer",
/openbmc/linux/Documentation/devicetree/bindings/power/supply/
H A Drichtek,rt9455.yaml25 richtek,output-charge-current:
27 description: output current from the charger to the battery, in uA.
32 percent of the output charge current. When the current in constant-voltage phase drops
39 richtek,boost-output-voltage:
61 - richtek,output-charge-current
64 - richtek,boost-output-voltage
82 richtek,output-charge-current = <500000>;
85 richtek,boost-output-voltage = <5050000>;
/openbmc/linux/Documentation/admin-guide/
H A Dvideo-output.rst6 The output sysfs class driver provides an abstract video output layer that
7 can be used to hook platform specific methods to enable/disable video output
9 laptop, The ACPI video driver registered its output devices and read/write
10 method for 'state' with output sysfs class. The user interface under sysfs is::
/openbmc/linux/Documentation/devicetree/bindings/iio/dac/
H A Dadi,ad5758.yaml27 In this mode, the AD5758 circuitry senses the output voltage and
29 requirements plus an optimized headroom voltage for the output buffer.
33 that needs to accommodate the maximum output load required.
35 The output of the DAC core is either converted to a current or
36 voltage output at the VIOUT pin. Only one mode can be enabled at
44 Depending on the selected output mode (voltage or current) one of the
49 Voltage output range specified as <minimum, maximum>
63 Current output range specified as <minimum, maximum>
91 The time it takes for the output to reach the full scale [uS]
/openbmc/linux/Documentation/devicetree/bindings/net/can/
H A Dnxp,sja1000.yaml48 nxp,tx-output-mode:
53 operation mode of the TX output control logic. Valid values are:
54 <0> : bi-phase output mode
55 <1> : normal output mode (default)
56 <2> : test output mode
57 <3> : clock output mode
59 nxp,tx-output-config:
63 TX output pin configuration. Valid values are any one of the below
121 nxp,tx-output-config = <0x06>;
/openbmc/linux/drivers/gpu/host1x/
H A Ddebug.c28 void host1x_debug_output(struct output *o, const char *fmt, ...) in host1x_debug_output()
40 void host1x_debug_cont(struct output *o, const char *fmt, ...) in host1x_debug_cont()
55 struct output *o = data; in show_channel()
78 static void show_syncpts(struct host1x *m, struct output *o, bool show_all) in show_syncpts()
126 static void show_all(struct host1x *m, struct output *o, bool show_fifo) in show_all()
146 struct output o = { in host1x_debug_all_show()
159 struct output o = { in host1x_debug_show()
213 struct output o = { in host1x_debug_dump()
222 struct output o = { in host1x_debug_dump_syncpts()

1...<<11121314151617181920>>...249