/Linux-v6.1/drivers/xen/xen-pciback/ |
D | conf_space_quirks.c | 41 "quirk didn't match any device known\n"); in xen_pcibk_find_quirk() 46 static inline void register_quirk(struct xen_pcibk_config_quirk *quirk) in register_quirk() argument 48 list_add_tail(&quirk->quirks_list, &xen_pcibk_quirks); in register_quirk() 97 struct xen_pcibk_config_quirk *quirk; in xen_pcibk_config_quirks_init() local 100 quirk = kzalloc(sizeof(*quirk), GFP_KERNEL); in xen_pcibk_config_quirks_init() 101 if (!quirk) { in xen_pcibk_config_quirks_init() 106 quirk->devid.vendor = dev->vendor; in xen_pcibk_config_quirks_init() 107 quirk->devid.device = dev->device; in xen_pcibk_config_quirks_init() 108 quirk->devid.subvendor = dev->subsystem_vendor; in xen_pcibk_config_quirks_init() 109 quirk->devid.subdevice = dev->subsystem_device; in xen_pcibk_config_quirks_init() [all …]
|
/Linux-v6.1/sound/soc/intel/boards/ |
D | sof_es8336.c | 27 #define SOF_ES8336_SSP_CODEC(quirk) ((quirk) & GENMASK(3, 0)) argument 36 #define SOF_NO_OF_HDMI_CAPTURE_SSP(quirk) \ argument 37 (((quirk) << SOF_NO_OF_HDMI_CAPTURE_SSP_SHIFT) & SOF_NO_OF_HDMI_CAPTURE_SSP_MASK) 41 #define SOF_HDMI_CAPTURE_1_SSP(quirk) \ argument 42 (((quirk) << SOF_HDMI_CAPTURE_1_SSP_SHIFT) & SOF_HDMI_CAPTURE_1_SSP_MASK) 46 #define SOF_HDMI_CAPTURE_2_SSP(quirk) \ argument 47 (((quirk) << SOF_HDMI_CAPTURE_2_SSP_SHIFT) & SOF_HDMI_CAPTURE_2_SSP_MASK) 54 static unsigned long quirk; variable 57 module_param_named(quirk, quirk_override, int, 0444); 58 MODULE_PARM_DESC(quirk, "Board-specific quirk override"); [all …]
|
D | bytcht_es8316.c | 49 #define BYT_CHT_ES8316_MAP(quirk) ((quirk) & GENMASK(3, 0)) argument 54 static unsigned long quirk; variable 57 module_param_named(quirk, quirk_override, int, 0444); 58 MODULE_PARM_DESC(quirk, "Board-specific quirk override"); 62 if (BYT_CHT_ES8316_MAP(quirk) == BYT_CHT_ES8316_INTMIC_IN1_MAP) in log_quirks() 63 dev_info(dev, "quirk IN1_MAP enabled"); in log_quirks() 64 if (BYT_CHT_ES8316_MAP(quirk) == BYT_CHT_ES8316_INTMIC_IN2_MAP) in log_quirks() 65 dev_info(dev, "quirk IN2_MAP enabled"); in log_quirks() 66 if (quirk & BYT_CHT_ES8316_SSP0) in log_quirks() 67 dev_info(dev, "quirk SSP0 enabled"); in log_quirks() [all …]
|
D | bytcr_rt5651.c | 61 #define BYT_RT5651_MAP(quirk) ((quirk) & GENMASK(3, 0)) argument 62 #define BYT_RT5651_JDSRC(quirk) (((quirk) & GENMASK(7, 4)) >> 4) argument 63 #define BYT_RT5651_OVCD_TH(quirk) (((quirk) & GENMASK(12, 8)) >> 8) argument 64 #define BYT_RT5651_OVCD_SF(quirk) (((quirk) & GENMASK(14, 13)) >> 13) argument 98 module_param_named(quirk, quirk_override, int, 0444); 99 MODULE_PARM_DESC(quirk, "Board-specific quirk override"); 104 dev_info(dev, "quirk DMIC_MAP enabled"); in log_quirks() 106 dev_info(dev, "quirk IN1_MAP enabled"); in log_quirks() 108 dev_info(dev, "quirk IN2_MAP enabled"); in log_quirks() 110 dev_info(dev, "quirk IN1_IN2_MAP enabled"); in log_quirks() [all …]
|
D | bytcr_rt5640.c | 68 #define BYT_RT5640_MAP(quirk) ((quirk) & GENMASK(3, 0)) argument 69 #define BYT_RT5640_JDSRC(quirk) (((quirk) & GENMASK(7, 4)) >> 4) argument 70 #define BYT_RT5640_OVCD_TH(quirk) (((quirk) & GENMASK(12, 8)) >> 8) argument 71 #define BYT_RT5640_OVCD_SF(quirk) (((quirk) & GENMASK(14, 13)) >> 13) argument 109 module_param_named(quirk, quirk_override, int, 0444); 110 MODULE_PARM_DESC(quirk, "Board-specific quirk override"); 124 dev_info(dev, "quirk DMIC1_MAP enabled\n"); in log_quirks() 127 dev_info(dev, "quirk DMIC2_MAP enabled\n"); in log_quirks() 130 dev_info(dev, "quirk IN1_MAP enabled\n"); in log_quirks() 133 dev_info(dev, "quirk IN3_MAP enabled\n"); in log_quirks() [all …]
|
D | sof_sdw_common.h | 40 #define SOF_RT711_JDSRC(quirk) ((quirk) & GENMASK(3, 0)) argument 45 #define SOF_SSP_GET_PORT(quirk) (((quirk) >> 7) & GENMASK(5, 0)) argument 51 #define SOF_BT_OFFLOAD_SSP(quirk) \ argument 52 (((quirk) << SOF_BT_OFFLOAD_SSP_SHIFT) & SOF_BT_OFFLOAD_SSP_MASK)
|
D | sof_ssp_amp.c | 28 #define SOF_AMPLIFIER_SSP(quirk) ((quirk) & GENMASK(3, 0)) argument 35 #define SOF_NO_OF_HDMI_CAPTURE_SSP(quirk) \ argument 36 (((quirk) << SOF_NO_OF_HDMI_CAPTURE_SSP_SHIFT) & SOF_NO_OF_HDMI_CAPTURE_SSP_MASK) 40 #define SOF_HDMI_CAPTURE_1_SSP(quirk) \ argument 41 (((quirk) << SOF_HDMI_CAPTURE_1_SSP_SHIFT) & SOF_HDMI_CAPTURE_1_SSP_MASK) 45 #define SOF_HDMI_CAPTURE_2_SSP(quirk) \ argument 46 (((quirk) << SOF_HDMI_CAPTURE_2_SSP_SHIFT) & SOF_HDMI_CAPTURE_2_SSP_MASK) 52 #define SOF_NO_OF_HDMI_PLAYBACK(quirk) \ argument 53 (((quirk) << SOF_NO_OF_HDMI_PLAYBACK_SHIFT) & SOF_NO_OF_HDMI_PLAYBACK_MASK) 59 #define SOF_BT_OFFLOAD_SSP(quirk) \ argument [all …]
|
/Linux-v6.1/arch/arm/mach-shmobile/ |
D | regulator-quirk-rcar-gen2.c | 3 * R-Car Generation 2 da9063(L)/da9210 regulator quirk 15 * To handle this, install a quirk that masks the interrupts in both the 16 * da9063 and da9210. This quirk has to run after the i2c master driver has 124 dev_info(dev, "IRQ2 is not asserted, removing quirk\n"); in regulator_quirk_notify() 143 struct regulator_quirk *quirk, *pos, *tmp; in rcar_gen2_regulator_quirk() local 167 quirk = kzalloc(sizeof(*quirk), GFP_KERNEL); in rcar_gen2_regulator_quirk() 168 if (!quirk) { in rcar_gen2_regulator_quirk() 174 argsa = &quirk->irq_args; in rcar_gen2_regulator_quirk() 175 memcpy(&quirk->i2c_msg, id->data, sizeof(quirk->i2c_msg)); in rcar_gen2_regulator_quirk() 177 quirk->id = id; in rcar_gen2_regulator_quirk() [all …]
|
/Linux-v6.1/drivers/media/i2c/ccs/ |
D | ccs-quirk.h | 3 * drivers/media/i2c/ccs/ccs-quirk.h 26 * @init: Quirk initialisation, called the last in probe(). This is 28 * @reg_access: Register access quirk. The quirk may divert the access 34 * by the quirk on read 36 * @flags: Quirk flags 68 ((sensor)->minfo.quirk && \ 69 (sensor)->minfo.quirk->_quirk ? \ 70 (sensor)->minfo.quirk->_quirk(sensor, ##__VA_ARGS__) : 0) 73 ((sensor)->minfo.quirk ? \ 74 (sensor)->minfo.quirk->flags & _quirk : 0)
|
D | ccs.h | 21 #include "ccs-quirk.h" 111 const struct ccs_quirk *quirk; member 135 const struct ccs_quirk *quirk; member 144 .quirk = _quirk, } 152 .quirk = _quirk, } 167 .quirk = _quirk, }
|
/Linux-v6.1/drivers/gpu/drm/nouveau/nvkm/subdev/pci/ |
D | agp.c | 106 const struct nvkm_device_agp_quirk *quirk = nvkm_device_agp_quirks; in nvkm_agp_ctor() local 139 while (quirk->hostbridge_vendor) { in nvkm_agp_ctor() 140 if (info.device->vendor == quirk->hostbridge_vendor && in nvkm_agp_ctor() 141 info.device->device == quirk->hostbridge_device && in nvkm_agp_ctor() 142 (quirk->chip_vendor == (u16)PCI_ANY_ID || in nvkm_agp_ctor() 143 pci->pdev->vendor == quirk->chip_vendor) && in nvkm_agp_ctor() 144 (quirk->chip_device == (u16)PCI_ANY_ID || in nvkm_agp_ctor() 145 pci->pdev->device == quirk->chip_device)) { in nvkm_agp_ctor() 148 quirk->mode); in nvkm_agp_ctor() 149 mode = quirk->mode; in nvkm_agp_ctor() [all …]
|
/Linux-v6.1/include/ufs/ |
D | ufs_quirks.h | 22 * ufs_dev_quirk - ufs device quirk info 24 * @quirk: device quirk 29 unsigned int quirk; member 52 * enable this quirk to initiate quick error recovery and also silence related 76 * PA_TACTIVATE, enabling this quirk ensure this. 92 * enabling this quirk ensure this. 98 * the firmware. Enable this quirk to make UFS core driver probe and enable 105 * Enable this quirk to introduce 5ms delays after VCC power-off during
|
/Linux-v6.1/Documentation/devicetree/bindings/usb/ |
D | snps,dwc3.yaml | 111 snps,dis-start-transfer-quirk: 132 description: Set if we want to enable u2exit lfps quirk 136 description: Set if we enable P3 OK for U2/SS Inactive quirk 192 snps,dis-u1-entry-quirk: 196 snps,dis-u2-entry-quirk: 205 snps,dis-u2-freeclk-exists-quirk: 211 snps,dis-del-phy-power-chg-quirk: 216 snps,dis-tx-ipgap-linecheck-quirk: 220 snps,parkmode-disable-ss-quirk: 231 snps,dis-split-quirk: [all …]
|
/Linux-v6.1/drivers/gpu/drm/i915/display/ |
D | intel_quirks.c | 12 static void intel_set_quirk(struct drm_i915_private *i915, enum intel_quirk_id quirk) in intel_set_quirk() argument 14 i915->display.quirks.mask |= BIT(quirk); in intel_set_quirk() 23 drm_info(&i915->drm, "applying lvds SSC disable quirk\n"); in quirk_ssc_force_disable() 33 drm_info(&i915->drm, "applying inverted panel brightness quirk\n"); in quirk_invert_brightness() 40 drm_info(&i915->drm, "applying backlight present quirk\n"); in quirk_backlight_present() 49 drm_info(&i915->drm, "Applying T12 delay quirk\n"); in quirk_increase_t12_delay() 59 drm_info(&i915->drm, "Applying Increase DDI Disabled quirk\n"); in quirk_increase_ddi_disabled_time() 65 drm_info(&i915->drm, "Applying no pps backlight power quirk\n"); in quirk_no_pps_backlight_power_hook() 225 bool intel_has_quirk(struct drm_i915_private *i915, enum intel_quirk_id quirk) in intel_has_quirk() argument 227 return i915->display.quirks.mask & BIT(quirk); in intel_has_quirk()
|
/Linux-v6.1/sound/usb/ |
D | card.c | 100 MODULE_PARM_DESC(quirk_alias, "Quirk aliases, e.g. 0123abcd:5678beef."); 102 MODULE_PARM_DESC(delayed_register, "Quirk for delayed registration, given by id:iface, e.g. 0123abc… 106 MODULE_PARM_DESC(quirk_flags, "Driver quirk bit flags."); 496 const struct snd_usb_audio_quirk *quirk) in usb_audio_make_shortname() argument 505 else if (quirk && quirk->product_name) in usb_audio_make_shortname() 506 s = quirk->product_name; in usb_audio_make_shortname() 527 const struct snd_usb_audio_quirk *quirk) in usb_audio_make_longname() argument 546 else if (quirk && quirk->vendor_name) in usb_audio_make_longname() 547 s = quirk->vendor_name; in usb_audio_make_longname() 597 const struct snd_usb_audio_quirk *quirk, in snd_usb_audio_create() argument [all …]
|
D | implicit.c | 46 /* Implicit feedback quirk table for playback */ 75 /* Implicit feedback quirk table for capture: only FIXED type */ 174 /* capture quirk for Roland device; always full-duplex */ 257 /* More generic quirk: look for the sync EP next to the data EP */ 288 /* Setup an implicit feedback endpoint from a quirk. Returns 0 if no quirk 289 * applies. Returns 1 if a quirk was found. 304 return 0; /* No quirk */ in audioformat_implicit_fb_quirk() 316 return 0; /* no quirk */ in audioformat_implicit_fb_quirk() 354 /* No quirk */ in audioformat_implicit_fb_quirk() 377 return 1; /* skip the quirk, also don't handle generic sync EP */ in audioformat_capture_quirk()
|
/Linux-v6.1/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
D | feature.h | 80 * expand quirk list to enumeration. 113 * brcmf_feat_is_quirk_enabled() - query chip quirk. 116 * @quirk: quirk id to check. 118 * Return: true is quirk is enabled; otherwise false. 121 enum brcmf_feat_quirk quirk);
|
/Linux-v6.1/drivers/usb/host/ |
D | ohci-pci.c | 69 * identify the USB (fn2). This quirk might apply to more or 118 ohci_dbg (ohci, "enabled big endian Toshiba quirk\n"); in ohci_quirk_toshiba_scc() 121 ohci_err (ohci, "unsupported big endian Toshiba quirk\n"); in ohci_quirk_toshiba_scc() 126 /* Check for NEC chip and apply quirk for allegedly lost interrupts. 146 ohci_dbg (ohci, "enabled NEC chipset lost interrupt quirk\n"); in ohci_quirk_nec() 161 ohci_dbg(ohci, "enabled AMD prefetch quirk\n"); in ohci_quirk_amd700() 173 ohci_dbg(ohci, "enabled qemu quirk\n"); in ohci_quirk_qemu() 249 int (*quirk)(struct usb_hcd *ohci); in ohci_pci_reset() local 250 quirk = (void *)quirk_id->driver_data; in ohci_pci_reset() 251 ret = quirk(hcd); in ohci_pci_reset()
|
/Linux-v6.1/drivers/misc/mei/ |
D | hw-me.h | 21 * @quirk_probe: device exclusion quirk 90 * with quirk for Node Manager exclusion. 96 * servers platforms with quirk for 100 * servers platforms with quirk for 103 * servers platforms with quirk for 107 * servers platforms with quirk for
|
/Linux-v6.1/drivers/tty/serial/8250/ |
D | serial_cs.c | 90 const struct serial_quirk *quirk; member 133 * be handled by setting the quirk entry .multi = 0 | 1 ? 300 if (info->quirk && info->quirk->wakeup) in serial_resume() 301 info->quirk->wakeup(link); in serial_resume() 367 if (info->quirk && info->quirk->setup) in setup_serial() 368 info->quirk->setup(handle, &uart); in setup_serial() 481 if (info->quirk && info->quirk->config) in simple_config() 482 info->quirk->config(link); in simple_config() 558 if (info->quirk && info->quirk->config) in multi_config() 559 info->quirk->config(link); in multi_config() [all …]
|
/Linux-v6.1/include/net/bluetooth/ |
D | hci.h | 95 /* When this quirk is set, the HCI Reset command is send when 98 * This quirk must be set before hci_register_dev is called. 102 /* When this quirk is set, the device is turned into a raw-only 105 * This quirk must be set before hci_register_dev is called. 109 /* When this quirk is set, the buffer sizes reported by 112 * This quirk must be set before hci_register_dev is called. 116 /* When this quirk is set, then a controller that does not 124 * This quirk must be set before hci_register_dev is called. 128 /* When this quirk is set, then the HCI Read Local Supported 134 * This quirk must be set before hci_register_dev is called. [all …]
|
/Linux-v6.1/sound/usb/hiface/ |
D | chip.c | 48 const struct hiface_vendor_quirk *quirk, in hiface_chip_create() argument 68 if (quirk && quirk->device_name) in hiface_chip_create() 69 strscpy(card->shortname, quirk->device_name, sizeof(card->shortname)); in hiface_chip_create() 90 const struct hiface_vendor_quirk *quirk = (struct hiface_vendor_quirk *)usb_id->driver_info; in hiface_chip_probe() local 116 ret = hiface_chip_create(intf, device, i, quirk, &chip); in hiface_chip_probe() 120 ret = hiface_pcm_init(chip, quirk ? quirk->extra_freq : 0); in hiface_chip_probe()
|
/Linux-v6.1/arch/arm/kernel/ |
D | smccc-call.S | 34 beq 1f // No quirk structure 37 bne 1f // No quirk present 50 * struct arm_smccc_quirk *quirk) 60 * struct arm_smccc_quirk *quirk)
|
/Linux-v6.1/Documentation/devicetree/bindings/net/nfc/ |
D | ti,trf7970a.yaml | 27 en2-rf-quirk: 35 irq-status-read-quirk: 95 irq-status-read-quirk; 96 en2-rf-quirk;
|
/Linux-v6.1/sound/core/ |
D | misc.c | 99 * snd_pci_quirk_lookup_id - look up a PCI SSID quirk list 102 * @list: quirk list, terminated by a null entry 104 * Look through the given quirk list and finds a matching entry 128 * snd_pci_quirk_lookup - look up a PCI SSID quirk list 130 * @list: quirk list, terminated by a null entry 132 * Look through the given quirk list and finds a matching entry
|