Home
last modified time | relevance | path

Searched refs:descriptor (Results 1 – 25 of 667) sorted by relevance

12345678910>>...27

/Linux-v4.19/include/linux/
Ddynamic_debug.h56 void __dynamic_pr_debug(struct _ddebug *descriptor, const char *fmt, ...);
64 void __dynamic_dev_dbg(struct _ddebug *descriptor, const struct device *dev,
70 void __dynamic_netdev_dbg(struct _ddebug *descriptor,
95 #define DYNAMIC_DEBUG_BRANCH(descriptor) \ argument
96 static_branch_likely(&descriptor.key.dd_key_true)
102 #define DYNAMIC_DEBUG_BRANCH(descriptor) \ argument
103 static_branch_unlikely(&descriptor.key.dd_key_false)
114 #define DYNAMIC_DEBUG_BRANCH(descriptor) \ argument
115 likely(descriptor.flags & _DPRINTK_FLAGS_PRINT)
117 #define DYNAMIC_DEBUG_BRANCH(descriptor) \ argument
[all …]
/Linux-v4.19/drivers/net/ethernet/aquantia/atlantic/hw_atl/
Dhw_atl_llh_internal.h150 #define HW_ATL_RDM_DESCDDATA_SIZE_ADR(descriptor) \ argument
151 (0x00005b18 + (descriptor) * 0x20)
189 #define HW_ATL_RDM_DESCDEN_ADR(descriptor) (0x00005b08 + (descriptor) * 0x20) argument
208 #define HW_ATL_RDM_DESCDHDR_SIZE_ADR(descriptor) \ argument
209 (0x00005b18 + (descriptor) * 0x20)
228 #define HW_ATL_RDM_DESCDHDR_SPLIT_ADR(descriptor) \ argument
229 (0x00005b08 + (descriptor) * 0x20)
248 #define HW_ATL_RDM_DESCDHD_ADR(descriptor) (0x00005b0c + (descriptor) * 0x20) argument
265 #define HW_ATL_RDM_DESCDLEN_ADR(descriptor) (0x00005b08 + (descriptor) * 0x20) argument
284 #define HW_ATL_RDM_DESCDRESET_ADR(descriptor) (0x00005b08 + (descriptor) * 0x20) argument
[all …]
Dhw_atl_llh.c341 u32 descriptor) in hw_atl_rdm_rx_desc_data_buff_size_set() argument
343 aq_hw_write_reg_bit(aq_hw, HW_ATL_RDM_DESCDDATA_SIZE_ADR(descriptor), in hw_atl_rdm_rx_desc_data_buff_size_set()
359 u32 descriptor) in hw_atl_rdm_rx_desc_en_set() argument
361 aq_hw_write_reg_bit(aq_hw, HW_ATL_RDM_DESCDEN_ADR(descriptor), in hw_atl_rdm_rx_desc_en_set()
369 u32 descriptor) in hw_atl_rdm_rx_desc_head_buff_size_set() argument
371 aq_hw_write_reg_bit(aq_hw, HW_ATL_RDM_DESCDHDR_SIZE_ADR(descriptor), in hw_atl_rdm_rx_desc_head_buff_size_set()
379 u32 descriptor) in hw_atl_rdm_rx_desc_head_splitting_set() argument
381 aq_hw_write_reg_bit(aq_hw, HW_ATL_RDM_DESCDHDR_SPLIT_ADR(descriptor), in hw_atl_rdm_rx_desc_head_splitting_set()
387 u32 hw_atl_rdm_rx_desc_head_ptr_get(struct aq_hw_s *aq_hw, u32 descriptor) in hw_atl_rdm_rx_desc_head_ptr_get() argument
389 return aq_hw_read_reg_bit(aq_hw, HW_ATL_RDM_DESCDHD_ADR(descriptor), in hw_atl_rdm_rx_desc_head_ptr_get()
[all …]
Dhw_atl_llh.h169 u32 descriptor);
177 u32 descriptor);
182 u32 descriptor);
185 u32 hw_atl_rdm_rx_desc_head_ptr_get(struct aq_hw_s *aq_hw, u32 descriptor);
189 u32 descriptor);
206 u32 descriptor);
210 u32 descriptor);
234 u32 descriptor);
239 u32 descriptor);
242 u32 hw_atl_reg_rx_dma_desc_status_get(struct aq_hw_s *aq_hw, u32 descriptor);
[all …]
/Linux-v4.19/drivers/usb/core/
Dotg_whitelist.h50 if ((le16_to_cpu(dev->descriptor.idVendor) == 0x1a0a && in is_targeted()
51 le16_to_cpu(dev->descriptor.idProduct) == 0xbadd)) in is_targeted()
55 if ((le16_to_cpu(dev->descriptor.idVendor) == 0x1a0a && in is_targeted()
56 le16_to_cpu(dev->descriptor.idProduct) == 0x0200)) in is_targeted()
64 id->idVendor != le16_to_cpu(dev->descriptor.idVendor)) in is_targeted()
68 id->idProduct != le16_to_cpu(dev->descriptor.idProduct)) in is_targeted()
74 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice))) in is_targeted()
78 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice))) in is_targeted()
82 (id->bDeviceClass != dev->descriptor.bDeviceClass)) in is_targeted()
86 (id->bDeviceSubClass != dev->descriptor.bDeviceSubClass)) in is_targeted()
[all …]
Dhub.h52 struct usb_hub_descriptor *descriptor; /* class descriptor */ member
128 hcs = hub->descriptor->wHubCharacteristics; in hub_is_port_power_switchable()
134 return hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS; in hub_is_superspeed()
139 return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS && in hub_is_superspeedplus()
140 le16_to_cpu(hdev->descriptor.bcdUSB) >= 0x0310 && in hub_is_superspeedplus()
146 unsigned delay = hub->descriptor->bPwrOn2PwrGood * 2; in hub_power_on_good_delay()
/Linux-v4.19/drivers/staging/greybus/
Dmanifest.c45 static void release_manifest_descriptor(struct manifest_desc *descriptor) in release_manifest_descriptor() argument
47 list_del(&descriptor->links); in release_manifest_descriptor()
48 kfree(descriptor); in release_manifest_descriptor()
53 struct manifest_desc *descriptor; in release_manifest_descriptors() local
56 list_for_each_entry_safe(descriptor, next, &intf->manifest_descs, links) in release_manifest_descriptors()
57 release_manifest_descriptor(descriptor); in release_manifest_descriptors()
78 struct manifest_desc *descriptor; in get_next_bundle_desc() local
81 list_for_each_entry_safe(descriptor, next, &intf->manifest_descs, links) in get_next_bundle_desc()
82 if (descriptor->type == GREYBUS_TYPE_BUNDLE) in get_next_bundle_desc()
83 return descriptor; in get_next_bundle_desc()
[all …]
/Linux-v4.19/fs/jbd2/
Drevoke.c520 struct buffer_head *descriptor; in jbd2_journal_write_revoke_records() local
526 descriptor = NULL; in jbd2_journal_write_revoke_records()
541 &descriptor, &offset, record); in jbd2_journal_write_revoke_records()
547 if (descriptor) in jbd2_journal_write_revoke_records()
548 flush_descriptor(journal, descriptor, offset); in jbd2_journal_write_revoke_records()
565 struct buffer_head *descriptor; in write_one_revoke_record() local
575 descriptor = *descriptorp; in write_one_revoke_record()
588 if (descriptor) { in write_one_revoke_record()
590 flush_descriptor(journal, descriptor, offset); in write_one_revoke_record()
591 descriptor = NULL; in write_one_revoke_record()
[all …]
/Linux-v4.19/Documentation/ABI/testing/
Dsysfs-driver-ufs19 device descriptor parameters. The full information about
20 the descriptor could be found at UFS specifications 2.1.
27 device descriptor parameters. The full information about
28 the descriptor could be found at UFS specifications 2.1.
35 the UFS device descriptor parameters. The full information
36 about the descriptor could be found at UFS specifications 2.1.
43 This is one of the UFS device descriptor parameters.
44 The full information about the descriptor could be found
52 the UFS device descriptor parameters. The full information
53 about the descriptor could be found at UFS specifications 2.1.
[all …]
/Linux-v4.19/sound/soc/intel/atom/sst/
Dsst_drv_interface.c401 .descriptor[0].max_ch = 2,
402 .descriptor[0].sample_rates[0] = 48000,
403 .descriptor[0].sample_rates[1] = 44100,
404 .descriptor[0].sample_rates[2] = 32000,
405 .descriptor[0].sample_rates[3] = 16000,
406 .descriptor[0].sample_rates[4] = 8000,
407 .descriptor[0].num_sample_rates = 5,
408 .descriptor[0].bit_rate[0] = 320,
409 .descriptor[0].bit_rate[1] = 192,
410 .descriptor[0].num_bitrates = 2,
[all …]
/Linux-v4.19/Documentation/devicetree/bindings/fsi/
Dfsi-master-gpio.txt6 - clock-gpios = <gpio-descriptor>; : GPIO for FSI clock
7 - data-gpios = <gpio-descriptor>; : GPIO for FSI data signal
10 - enable-gpios = <gpio-descriptor>; : GPIO for enable signal
11 - trans-gpios = <gpio-descriptor>; : GPIO for voltage translator enable
12 - mux-gpios = <gpio-descriptor>; : GPIO for pin multiplexing with other
Dfsi-master-ast-cf.txt10 - clock-gpios = <gpio-descriptor>; : GPIO for FSI clock
11 - data-gpios = <gpio-descriptor>; : GPIO for FSI data signal
12 - enable-gpios = <gpio-descriptor>; : GPIO for enable signal
13 - trans-gpios = <gpio-descriptor>; : GPIO for voltage translator enable
14 - mux-gpios = <gpio-descriptor>; : GPIO for pin multiplexing with other
/Linux-v4.19/drivers/acpi/acpica/
Duttrack.c543 union acpi_descriptor *descriptor; in acpi_ut_dump_allocations() local
569 descriptor = in acpi_ut_dump_allocations()
577 descriptor, element->size, in acpi_ut_dump_allocations()
582 if (ACPI_GET_DESCRIPTOR_TYPE(descriptor) != in acpi_ut_dump_allocations()
586 descriptor, element->size, in acpi_ut_dump_allocations()
589 (descriptor)); in acpi_ut_dump_allocations()
596 (descriptor)) { in acpi_ut_dump_allocations()
642 (descriptor->object.common. in acpi_ut_dump_allocations()
644 descriptor->object.common. in acpi_ut_dump_allocations()
652 descriptor->op.asl. in acpi_ut_dump_allocations()
[all …]
/Linux-v4.19/drivers/media/usb/dvb-usb/
Ddibusb-mc-common.c88 if (le16_to_cpu(adap->dev->udev->descriptor.idVendor) == USB_VID_LITEON && in dibusb_dib3000mc_frontend_attach()
89 le16_to_cpu(adap->dev->udev->descriptor.idProduct) == in dibusb_dib3000mc_frontend_attach()
127 if (le16_to_cpu(adap->dev->udev->descriptor.idVendor) == USB_VID_LITEON && in dibusb_dib3000mc_tuner_attach()
128 le16_to_cpu(adap->dev->udev->descriptor.idProduct) == USB_PID_LITEON_DVB_T_WARM) { in dibusb_dib3000mc_tuner_attach()
140 } else if (le16_to_cpu(adap->dev->udev->descriptor.idVendor) == USB_VID_DIBCOM && in dibusb_dib3000mc_tuner_attach()
141 le16_to_cpu(adap->dev->udev->descriptor.idProduct) == USB_PID_DIBCOM_MOD3001_WARM) { in dibusb_dib3000mc_tuner_attach()
/Linux-v4.19/drivers/usb/misc/
Dlvstest.c31 struct usb_hub_descriptor descriptor; member
260 struct usb_device_descriptor *descriptor; in get_dev_desc_store() local
263 descriptor = kmalloc(sizeof(*descriptor), GFP_KERNEL); in get_dev_desc_store()
264 if (!descriptor) in get_dev_desc_store()
276 0, descriptor, sizeof(*descriptor), in get_dev_desc_store()
284 kfree(descriptor); in get_dev_desc_store()
335 struct usb_hub_descriptor *descriptor = &lvs->descriptor; in lvs_rh_work() local
341 for (i = 1; i <= descriptor->bNbrPorts; i++) { in lvs_rh_work()
413 if (hdev->descriptor.bDeviceProtocol != USB_HUB_PR_SS || hdev->parent) { in lvs_rh_probe()
428 USB_DT_SS_HUB << 8, 0, &lvs->descriptor, in lvs_rh_probe()
/Linux-v4.19/Documentation/devicetree/bindings/crypto/
Dfsl-sec2.txt14 descriptor pointers each channel fetch fifo can hold.
33 - fsl,descriptor-types-mask : The bitmask representing what descriptors
39 bit 1 = set if SEC supports the ipsec_esp descriptor type
43 bit 5 = set if SEC supports the srtp descriptor type
45 bit 7 = set if SEC supports the pkeu_assemble descriptor type
47 bit 9 = set if SEC supports the pkeu_ptmul descriptor type
49 bit 11 = set if SEC supports the pkeu_ptadd_dbl descriptor type
64 fsl,descriptor-types-mask = <0x12b0ebf>;
/Linux-v4.19/include/linux/usb/
Dinput.h21 id->vendor = le16_to_cpu(dev->descriptor.idVendor); in usb_to_input_id()
22 id->product = le16_to_cpu(dev->descriptor.idProduct); in usb_to_input_id()
23 id->version = le16_to_cpu(dev->descriptor.bcdDevice); in usb_to_input_id()
/Linux-v4.19/arch/x86/math-emu/
Dget_address.c140 struct desc_struct descriptor; in pm_address() local
162 descriptor = FPU_get_ldt_descriptor(addr->selector); in pm_address()
163 base_address = seg_get_base(&descriptor); in pm_address()
165 limit = seg_get_limit(&descriptor) + 1; in pm_address()
166 limit *= seg_get_granularity(&descriptor); in pm_address()
171 if (seg_expands_down(&descriptor)) { in pm_address()
172 if (descriptor.g) { in pm_address()
187 if (seg_execute_only(&descriptor) || in pm_address()
188 (!seg_writable(&descriptor) && (FPU_modrm & FPU_WRITE_BIT))) { in pm_address()
/Linux-v4.19/Documentation/security/
DIMA-templates.rst25 definition of two new data structures: a template descriptor, to determine
32 measurement entries. Defining a new template descriptor requires
35 parameter. At boot time, IMA initializes the chosen template descriptor
42 descriptor chosen through the kernel configuration or through the newly
47 fields associated to the chosen template descriptor and store the result
52 the template descriptor used to produce that entry and call the show()
86 To specify the template descriptor to be used to generate measurement entries,
89 - select a template descriptor among those supported in the kernel
91 - specify a template descriptor name from the kernel command line through
93 - register a new template descriptor with custom format through the kernel
/Linux-v4.19/Documentation/virtual/kvm/devices/
Dvfio.txt19 kvm_device_attr.addr points to an int32_t file descriptor
22 kvm_device_attr.addr points to an int32_t file descriptor
34 @groupfd is a file descriptor for a VFIO group;
35 @tablefd is a file descriptor for a TCE table allocated via
/Linux-v4.19/drivers/usb/storage/
Duas-detect.h98 if (le16_to_cpu(udev->descriptor.idVendor) == 0x174c && in uas_use_uas_driver()
99 (le16_to_cpu(udev->descriptor.idProduct) == 0x5106 || in uas_use_uas_driver()
100 le16_to_cpu(udev->descriptor.idProduct) == 0x55aa)) { in uas_use_uas_driver()
116 if (le16_to_cpu(udev->descriptor.idVendor) == 0x0bc2) in uas_use_uas_driver()
/Linux-v4.19/Documentation/media/uapi/mediactl/
Dmedia-func-close.rst30 File descriptor returned by :c:func:`open() <mc-open>`.
36 Closes the media device. Resources associated with the file descriptor
47 ``fd`` is not a valid open file descriptor.
/Linux-v4.19/Documentation/media/uapi/cec/
Dcec-func-close.rst30 File descriptor returned by :c:func:`open() <cec-open>`.
36 Closes the cec device. Resources associated with the file descriptor are
47 ``fd`` is not a valid open file descriptor.
/Linux-v4.19/Documentation/media/uapi/v4l/
Dfunc-close.rst30 File descriptor returned by :ref:`open() <func-open>`.
37 associated with the file descriptor are freed. However data format
49 ``fd`` is not a valid open file descriptor.
/Linux-v4.19/Documentation/filesystems/ext4/ondisk/
Dgroup_descr.rst10 the block group descriptor table unless the sparse\_super feature flag
13 Notice how the group descriptor records the location of both bitmaps and
16 and the group descriptor table. The flex\_bg mechanism uses this
30 block group descriptor was only 32 bytes long and therefore ends at
32 block group descriptor expands to at least the 64 bytes described below;
37 descriptor structure. If metadata\_csum is set, then the block group
39 number, and the group descriptor structure. Both block and inode bitmap
43 The block group descriptor is laid out in ``struct ext4_group_desc``.
102 - Group descriptor checksum; crc16(sb\_uuid+group+desc) if the

12345678910>>...27