Home
last modified time | relevance | path

Searched refs:probed (Results 1 – 25 of 145) sorted by relevance

123456

/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dcloexec.c96 static bool probed; in perf_event_open_cloexec_flag() local
98 if (!probed) { in perf_event_open_cloexec_flag()
101 probed = true; in perf_event_open_cloexec_flag()
/OK3568_Linux_fs/kernel/sound/soc/
H A Dsoc-card.c140 card->probed = 1; in snd_soc_card_probe()
165 card->probed = 1; in snd_soc_card_late_probe()
174 if (card->probed && in snd_soc_card_remove()
178 card->probed = 0; in snd_soc_card_remove()
H A Dsoc-dai.c494 dai->probed = 1; in snd_soc_pcm_dai_probe()
509 if (dai->probed && in snd_soc_pcm_dai_remove()
516 dai->probed = 0; in snd_soc_pcm_dai_remove()
/OK3568_Linux_fs/kernel/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()
/OK3568_Linux_fs/kernel/drivers/clk/ti/
H A Dclk-dra7-atl.c52 bool probed; /* the driver for the IP has been loaded */ member
84 if (!cdesc->probed) in atl_clk_enable()
106 if (!cdesc->probed) in atl_clk_disable()
288 cdesc->probed = true; in of_dra7_atl_clk_probe()
/OK3568_Linux_fs/kernel/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::
/OK3568_Linux_fs/kernel/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
/OK3568_Linux_fs/kernel/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()
140 time the probed function is entered but there is no kretprobe_instance
164 In case probed function is entered but there is no kretprobe_instance
229 - Other instructions in the optimized region are probed.
[all …]
/OK3568_Linux_fs/u-boot/doc/device-tree-bindings/
H A Dchosen.txt50 device may be probed by reading the image and verifying an image
55 Each list element of the property should specify a device to be probed
/OK3568_Linux_fs/kernel/arch/sparc/mm/
H A Dsrmmu.c774 unsigned long probed; in srmmu_inherit_prom_mappings() local
788 probed = srmmu_probe(start); in srmmu_inherit_prom_mappings()
789 if (!probed) { in srmmu_inherit_prom_mappings()
800 if (srmmu_probe(addr + PMD_SIZE) == probed) in srmmu_inherit_prom_mappings()
805 if (srmmu_probe(addr + PGDIR_SIZE) == probed) in srmmu_inherit_prom_mappings()
813 *(pgd_t *)__nocache_fix(pgdp) = __pgd(probed); in srmmu_inherit_prom_mappings()
827 *(pmd_t *)__nocache_fix(pmdp) = __pmd(probed); in srmmu_inherit_prom_mappings()
839 *(pte_t *)__nocache_fix(ptep) = __pte(probed); in srmmu_inherit_prom_mappings()
/OK3568_Linux_fs/u-boot/doc/driver-model/
H A Dusb-info.txt59 exists when the device is probed (not when it is bound) and is removed when
73 each controller will be probed and its bus scanned.
133 Enumeration in U-Boot takes a long time since devices are probed one at a
198 - The controller is probed(). This does no enumeration.
226 since that will not exist until the device is probed.
249 any hub is probed, the uclass gets to do some processing. In this case
272 - hub scanning happens automatically after a hub is probed
395 - breadth-first search would allow devices to be reset and probed in
H A Dpci-info.txt26 The call to uclass_get_device() will cause the PCI bus to be probed.
35 touched on PCI (eg: a call to pci_find_devices()) it will not be probed.
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-class-mux16 probed MUX chip where N is a simple enumeration.
H A Dsysfs-devices-state_synced20 and have probed successfully. Resources that were left disabled
/OK3568_Linux_fs/buildroot/package/util-linux/
H A D0002-libblkid-don-t-mark-cache-as-probed-if-sys-not-available.patch4 Subject: [PATCH] libblkid: don't mark cache as "probed" if /sys not available
65 + /* Don't mark the change as "probed" if /sys not avalable */
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mips/img/
H A Dpistachio.txt14 be probed via CPS, it is not necessary to specify secondary CPUs. Required
/OK3568_Linux_fs/kernel/tools/testing/selftests/net/
H A Drtnetlink.sh748 probed=false
758 probed=true
838 $probed && rmmod netdevsim
1187 probed=false
1196 probed=true
1219 $probed && rmmod netdevsim
/OK3568_Linux_fs/kernel/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
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/openrisc/opencores/
H A Dor1ksim.txt19 be probed via CPS, it is not necessary to specify secondary CPUs. Required
/OK3568_Linux_fs/kernel/Documentation/networking/device_drivers/ethernet/netronome/
H A Dnfp.rst42 firmware from flash when the host driver gets probed. The firmware loading
125 the driver is probed, either 'Disk' (0) if firmware was found on disk,
127 reset on driver unload if firmware was loaded when the driver was probed.
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/reserved-memory/
H A Dqcom,cmd-db.txt10 resource properties may change. These properties are dynamically probed by the
/OK3568_Linux_fs/u-boot/board/boundary/nitrogen6x/
H A D6x_upgrade.txt8 echo "probed SPI ROM" ;
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/
H A Dbrcm,mdio-mux-iproc.txt13 Every non-ethernet PHY requires a compatible so that it could be probed based
/OK3568_Linux_fs/kernel/drivers/i2c/busses/
H A Di2c-amd-mp2.h185 unsigned int probed; member
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/gpio/
H A Dsodaville.txt10 There is no compatible property for now because the driver is probed via

123456