| /OK3568_Linux_fs/u-boot/include/dm/ |
| H A D | uclass.h | 61 * @pre_probe: Called before a new device is probed 62 * @post_probe: Called after a new device is probed 144 * The device is probed to activate it ready for use. 158 * The device is probed to activate it ready for use. 175 * The device is probed to activate it ready for use. 190 * The device is probed to activate it ready for use. 206 * The device is probed to activate it ready for use. 221 * The device is probed to activate it ready for use. 237 * The device is probed to activate it ready for use. 256 * The device is probed to activate it ready for use. [all …]
|
| H A D | uclass-internal.h | 20 * @dev: Device that needs to be probed 21 * @ret: Error to return. If non-zero then the device is not probed 70 * The device is NOT probed, it is merely returned. 92 * The device is NOT probed, it is merely returned. 109 * The device is NOT probed, it is merely returned. 125 * The device is NOT probed, it is merely returned. 160 * uclass_pre_probe_device() - Deal with a device that is about to be probed 163 * probed. This includes the uclass' pre-probe() method and the parent 172 * uclass_post_probe_device() - Deal with a device that has just been probed 174 * Perform any post-processing of a probed device that is needed by the
|
| H A D | device.h | 25 /* Driver is active (probed). Cleared when it is removed */ 125 * when the device is probed and will be unique within the device's uclass. 161 /* Returns non-zero if the device is active (probed and not removed) */ 218 * @child_pre_probe: Called before a child device is probed. The device has 219 * memory allocated but it has not yet been probed. 440 * The device is probed to activate it ready for use. 469 * The device is probed to activate it ready for use. 485 * The device is probed to activate it ready for use. 524 * them is active (probed). 545 * this is unnecessary but for probed devices which don't get a useful name
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/driver-model/ |
| H A D | driver.rst | 191 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/sound/soc/ |
| H A D | soc-card.c | 133 * So, set "probed" flag here, because it needs to care in snd_soc_card_probe() 140 card->probed = 1; in snd_soc_card_probe() 158 * This means, we can set "card->probed" flag afer "late_probe" in snd_soc_card_late_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()
|
| /OK3568_Linux_fs/debian/overlay/usr/share/alsa/ucm2/ |
| H A D | ucm.conf | 27 # The probed path for no-hw-card: 41 # The probed path when hw-card is found: 93 # The probed path for no-hw-card: 105 # The ucm v1 probed path when hw-card is found:
|
| /OK3568_Linux_fs/kernel/include/soc/fsl/ |
| H A D | bman.h | 130 * 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,
|
| /OK3568_Linux_fs/kernel/Documentation/trace/ |
| H A D | kprobes.rst | 64 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/kernel/tools/perf/util/ |
| H A D | cloexec.c | 96 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/u-boot/doc/driver-model/ |
| H A D | usb-info.txt | 59 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
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/ |
| H A D | device_link.rst | 30 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/drivers/net/wan/lmc/ |
| H A D | lmc_ioctl.h | 31 #define LMC_CARDTYPE_HSSI 1 /* probed card is a HSSI card */ 32 #define LMC_CARDTYPE_DS3 2 /* probed card is a DS3 card */ 33 #define LMC_CARDTYPE_SSI 3 /* probed card is a SSI card */ 34 #define LMC_CARDTYPE_T1 4 /* probed card is a T1 card */
|
| /OK3568_Linux_fs/kernel/drivers/clk/ti/ |
| H A D | clk-dra7-atl.c | 52 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/include/linux/mfd/pcf50633/ |
| H A D | backlight.h | 13 * Brightness to be used after the driver has been probed. 18 * Brightness limit to be used after the driver has been probed. This is useful
|
| /OK3568_Linux_fs/kernel/drivers/clk/keystone/ |
| H A D | Kconfig | 25 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/drivers/gpu/drm/vc4/ |
| H A D | vc4_perfmon.c | 111 DRM_DEBUG("Creating perfmon no VC4 V3D probed\n"); in vc4_perfmon_create_ioctl() 161 DRM_DEBUG("Destroying perfmon no VC4 V3D probed\n"); in vc4_perfmon_destroy_ioctl() 186 DRM_DEBUG("Getting perfmon no VC4 V3D probed\n"); in vc4_perfmon_get_values_ioctl()
|
| /OK3568_Linux_fs/kernel/drivers/clocksource/ |
| H A D | renesas-ostm.c | 19 * The first OSTM channel probed will be set up as a free running 23 * The second (or more) channel probed will be set up as an interrupt 184 * First probed device will be used as system clocksource. Any in ostm_init()
|
| /OK3568_Linux_fs/kernel/samples/kprobes/ |
| H A D | kprobe_example.c | 27 /* kprobe pre_handler: called just before the probed instruction is executed */ 56 /* kprobe post_handler: called after the probed instruction is executed */ 85 * single-steps the probed instruction.
|
| /OK3568_Linux_fs/kernel/arch/x86/boot/ |
| H A D | video-mode.c | 34 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/u-boot/drivers/pci/ |
| H A D | pci_internal.h | 40 * If the device is a bridge, downstream devices will be probed. 53 * This looks up a PCI bus based on its bus number. The bus is probed if
|
| /OK3568_Linux_fs/kernel/include/media/ |
| H A D | v4l2-async.h | 73 * probed, to a notifier->waiting list 102 * @bound: a subdevice driver has successfully probed one of the subdevices 103 * @complete: All subdevices have been probed successfully. The complete 126 * @done: list of struct v4l2_subdev, already probed
|
| /OK3568_Linux_fs/kernel/drivers/misc/eeprom/ |
| H A D | digsy_mtc_eeprom.c | 8 * 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
|
| /OK3568_Linux_fs/u-boot/doc/device-tree-bindings/ |
| H A D | chosen.txt | 50 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/mips/kernel/ |
| H A D | uprobes.c | 22 * @mm: the probed address space. 186 * probed address for the potential restart or for post mortem analysis. 212 * @mm: the probed process address space.
|
| /OK3568_Linux_fs/u-boot/drivers/core/ |
| H A D | device.c | 133 * resolved (and ->seq updated) when the device is probed. in device_bind_common() 438 /* Ensure all parents are probed */ in device_probe() 458 * The device might have already been probed during in device_probe() 480 * probed. in device_probe() 648 * We didn't find it in probed devices. See if there is one in device_get_child_by_seq() 649 * that will request this seq if probed. in device_get_child_by_seq()
|