Home
last modified time | relevance | path

Searched full:probed (Results 1 – 25 of 522) sorted by relevance

12345678910>>...21

/linux/Documentation/driver-api/driver-model/
H A Ddriver.rst191 devices of the device have successfully probed. The list of consumers of the
198 point in time have already probed successfully, sync_state() is called right
200 too is considered as "all consumers of the device have probed" and sync_state()
204 still consumers that haven't probed successfully, the sync_state() call is
207 there are one or more consumers of the device that haven't probed yet, then
214 consumers of the device have probed. Once all the consumers of the device have
215 probed, the device's driver can synchronize the hardware state of the device to
224 probed.
229 all the consumers of a device have probed::
/linux/include/soc/fsl/
H A Dbman.h130 * bman_is_probed - Check if bman is probed
132 * Returns 1 if the bman driver successfully probed, -1 if the bman driver
133 * failed to probe or 0 if the bman driver did not probed yet.
137 * bman_portals_probed - Check if all cpu bound bman portals are probed
139 * Returns 1 if all the required cpu bound bman portals successfully probed,
/linux/tools/perf/util/
H A Dcloexec.c83 static bool probed; in perf_event_open_cloexec_flag() local
85 if (!probed) { in perf_event_open_cloexec_flag()
88 probed = true; in perf_event_open_cloexec_flag()
/linux/Documentation/trace/
H A Dkprobes.rst64 When a kprobe is registered, Kprobes makes a copy of the probed
65 instruction and replaces the first byte(s) of the probed instruction
74 Next, Kprobes single-steps its copy of the probed instruction.
111 the entry to the function. When the probed function is called and this
117 When the probed function executes its return instruction, control
123 While the probed function is executing, its return address is
127 function can be probed simultaneously. register_kretprobe()
139 time the probed function is entered but there is no kretprobe_instance
163 In case probed function is entered but there is no kretprobe_instance
228 - Other instructions in the optimized region are probed.
[all …]
/linux/drivers/clk/keystone/
H A DKconfig25 firmware. By default, only the used clocks are probed from DT.
27 increase the boot time of the device. If you want the clocks probed
/linux/drivers/clk/ti/
H A Dclk-dra7-atl.c44 bool probed; /* the driver for the IP has been loaded */ member
76 if (!cdesc->probed) in atl_clk_enable()
98 if (!cdesc->probed) in atl_clk_disable()
275 cdesc->probed = true; in of_dra7_atl_clk_probe()
/linux/Documentation/driver-api/
H A Ddevice_link.rst30 presence on the supplier. The consumer devices are not probed before the
62 driver core known about the device link earlier, it wouldn't have probed the
114 consumer will never be probed.
250 add a device flag causing the parent driver to be probed before the
271 and consumer. If the link is created before any devices are probed, it
279 * Before a consumer device is probed, presence of supplier drivers is
/linux/arch/x86/boot/
H A Dvideo-mode.c34 static u8 probed[2]; in probe_cards() local
36 if (probed[unsafe]) in probe_cards()
39 probed[unsafe] = 1; in probe_cards()
/linux/drivers/clocksource/
H A Drenesas-ostm.c21 * The first OSTM channel probed will be set up as a free running
25 * The second (or more) channel probed will be set up as an interrupt
195 * First probed device will be used as system clocksource. Any in ostm_init()
/linux/drivers/misc/eeprom/
H A Ddigsy_mtc_eeprom.c8 * FIXME: this driver is used on a device-tree probed platform: it
9 * should be defined as a bit-banged SPI device and probed from the device
/linux/drivers/clk/
H A Dclk-fixed-rate_test.c281 struct completion probed; member
337 complete(&ctx->probed); in clk_fixed_rate_of_test_probe()
360 init_completion(&ctx->probed); in clk_fixed_rate_of_init()
363 KUNIT_ASSERT_NE(test, 0, wait_for_completion_timeout(&ctx->probed, HZ)); in clk_fixed_rate_of_init()
/linux/drivers/gpu/drm/vc4/
H A Dvc4_perfmon.c158 DRM_DEBUG("Creating perfmon no VC4 V3D probed\n"); in vc4_perfmon_create_ioctl()
212 DRM_DEBUG("Destroying perfmon no VC4 V3D probed\n"); in vc4_perfmon_destroy_ioctl()
240 DRM_DEBUG("Getting perfmon no VC4 V3D probed\n"); in vc4_perfmon_get_values_ioctl()
/linux/drivers/base/test/
H A Droot-device-test.c41 * Tests that a bus-less, non-probed device will run its device-managed
72 * Tests that a bus-less, non-probed device will run its device-managed
/linux/drivers/soundwire/
H A Dbus_type.c123 /* device is probed so let's read the properties now */ in sdw_drv_probe()
147 slave->probed = true; in sdw_drv_probe()
175 slave->probed = false; in sdw_drv_remove()
/linux/drivers/gpu/drm/clients/
H A Ddrm_log.c58 bool probed; member
242 dlog->probed = true; in drm_log_init_client()
317 dlog->probed = false; in drm_log_client_hotplug()
353 if (!dlog->probed) in drm_log_write_thread()
/linux/samples/kprobes/
H A Dkretprobe_example.c6 * report the return value and total time taken for probed function
18 * whenever the probed function returns. (Some messages may be suppressed
H A Dkprobe_example.c27 /* kprobe pre_handler: called just before the probed instruction is executed */
67 /* kprobe post_handler: called after the probed instruction is executed */
/linux/Documentation/driver-api/cxl/linux/
H A Dcxl-driver.rst129 CXL `Host Bridges` in the fabric are probed during :code:`cxl_acpi_probe` at
130 the time the `CXL Root` is probed. The allows for the immediate logical
142 will be probed at `acpi_probe` time, while similar ports on an actual switch
143 will be probed later. Otherwise, switch and host bridge ports look very
170 A `memdev` is probed and added by the `cxl_pci` driver in :code:`cxl_pci_probe`
487 Auto Decoders are probed automatically as long as the devices and memory
/linux/drivers/mfd/
H A D88pm80x.c101 * workaround: set g_pm80x_chip to the first probed chip. if the in pm80x_init()
102 * second chip is probed, just point to the companion to each in pm80x_init()
/linux/Documentation/hwmon/
H A Docc.rst19 The P8 version of this driver is a client driver of I2C. It may be probed
24 It will be probed automatically by the FSI-based OCC driver.
/linux/samples/fprobe/
H A Dfprobe_example.c28 MODULE_PARM_DESC(symbol, "Probed symbol(s), given by comma separated symbols or a wildcard pattern.…
32 MODULE_PARM_DESC(nosymbol, "Not-probed symbols, given by a wildcard pattern.");
/linux/tools/perf/Documentation/
H A Dperf-probe.txt81 Show source code lines which can be probed. This needs an argument
173 'EVENT' specifies the name of new event, if omitted, it will be set the name of the probed function…
176 'FUNC' specifies a probed function name, and it may have one of the following options; '+OFFS' is t…
247 Display which lines in schedule() can be probed:
/linux/kernel/trace/
H A Dtrace_kprobe_selftest.h5 * can be probed by the selftests.
H A Dtrace_kprobe_selftest.c8 * can be probed by the selftests.
/linux/arch/powerpc/kernel/
H A Duprobes.c33 * @mm: the probed address space.
166 * probed address.

12345678910>>...21