/openbmc/linux/drivers/xen/xen-pciback/ |
H A 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 …]
|
/openbmc/qemu/hw/vfio/ |
H A D | pci-quirks.c | 188 * The generic mirror quirk handles devices which expose PCI config space 281 VFIOQuirk *quirk = g_new0(VFIOQuirk, 1); in vfio_quirk_alloc() local 282 QLIST_INIT(&quirk->ioeventfds); in vfio_quirk_alloc() 283 quirk->mem = g_new0(MemoryRegion, nr_mem); in vfio_quirk_alloc() 284 quirk->nr_mem = nr_mem; in vfio_quirk_alloc() 286 return quirk; in vfio_quirk_alloc() 323 static void vfio_drop_dynamic_eventfds(VFIOPCIDevice *vdev, VFIOQuirk *quirk) in vfio_drop_dynamic_eventfds() argument 327 QLIST_FOREACH_SAFE(ioeventfd, &quirk->ioeventfds, next, tmp) { in vfio_drop_dynamic_eventfds() 411 VFIOQuirk *quirk; in vfio_vga_probe_ati_3c3_quirk() local 422 quirk = vfio_quirk_alloc(1); in vfio_vga_probe_ati_3c3_quirk() [all …]
|
H A D | igd.c | 448 VFIOQuirk *quirk; in vfio_probe_igd_bar0_quirk() local 472 quirk = vfio_quirk_alloc(1); in vfio_probe_igd_bar0_quirk() 473 quirk->data = vdev; in vfio_probe_igd_bar0_quirk() 475 memory_region_init_io(&quirk->mem[0], OBJECT(vdev), &vfio_igd_bdsm_quirk, in vfio_probe_igd_bar0_quirk() 476 vdev, "vfio-igd-bdsm-quirk", 8); in vfio_probe_igd_bar0_quirk() 478 IGD_BDSM_MMIO_OFFSET, &quirk->mem[0], in vfio_probe_igd_bar0_quirk() 481 QLIST_INSERT_HEAD(&vdev->bars[nr].quirks, quirk, next); in vfio_probe_igd_bar0_quirk() 514 VFIOQuirk *quirk; in vfio_probe_igd_bar4_quirk() local 563 * there's no ROM, there's no point in setting up this quirk. in vfio_probe_igd_bar4_quirk() 653 /* Setup our quirk to munge GTT addresses to the VM allocated buffer */ in vfio_probe_igd_bar4_quirk() [all …]
|
/openbmc/linux/sound/soc/intel/boards/ |
H A 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 …]
|
H A 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 …]
|
H A 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 …]
|
H A D | bytcr_rt5640.c | 71 #define BYT_RT5640_MAP(quirk) ((quirk) & GENMASK(3, 0)) argument 72 #define BYT_RT5640_JDSRC(quirk) (((quirk) & GENMASK(7, 4)) >> 4) argument 73 #define BYT_RT5640_OVCD_TH(quirk) (((quirk) & GENMASK(12, 8)) >> 8) argument 74 #define BYT_RT5640_OVCD_SF(quirk) (((quirk) & GENMASK(14, 13)) >> 13) argument 113 module_param_named(quirk, quirk_override, int, 0444); 114 MODULE_PARM_DESC(quirk, "Board-specific quirk override"); 128 dev_info(dev, "quirk DMIC1_MAP enabled\n"); in log_quirks() 131 dev_info(dev, "quirk DMIC2_MAP enabled\n"); in log_quirks() 134 dev_info(dev, "quirk IN1_MAP enabled\n"); in log_quirks() 137 dev_info(dev, "quirk IN3_MAP enabled\n"); in log_quirks() [all …]
|
H A 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 …]
|
H A D | sof_sdw_common.h | 44 #define SOF_JACK_JDSRC(quirk) ((quirk) & GENMASK(3, 0)) argument 49 #define SOF_SSP_GET_PORT(quirk) (((quirk) >> 7) & GENMASK(5, 0)) argument 55 #define SOF_BT_OFFLOAD_SSP(quirk) \ argument 56 (((quirk) << SOF_BT_OFFLOAD_SSP_SHIFT) & SOF_BT_OFFLOAD_SSP_MASK)
|
/openbmc/linux/arch/arm/mach-shmobile/ |
H A 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 …]
|
/openbmc/linux/drivers/media/i2c/ccs/ |
H A 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 38 * @flags: Quirk flags 66 ((sensor)->minfo.quirk && \ 67 (sensor)->minfo.quirk->_quirk ? \ 68 (sensor)->minfo.quirk->_quirk(sensor, ##__VA_ARGS__) : 0) 71 ((sensor)->minfo.quirk ? \ 72 (sensor)->minfo.quirk->flags & _quirk : 0)
|
/openbmc/u-boot/include/linux/ |
H A D | arm-smccc.h | 70 * struct arm_smccc_quirk - Contains quirk information 71 * @id: quirk identification 72 * @state: quirk specific information 73 * @a6: Qualcomm quirk entry for returning post-smc call contents of a6 86 * @quirk: points to an arm_smccc_quirk, or NULL when no quirks are required. 92 * quirk structure provides vendor specific behavior. 97 struct arm_smccc_res *res, struct arm_smccc_quirk *quirk); 103 * @quirk: points to an arm_smccc_quirk, or NULL when no quirks are required. 109 * optional quirk structure provides vendor specific behavior. 114 struct arm_smccc_res *res, struct arm_smccc_quirk *quirk);
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/pci/ |
H A 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 …]
|
/openbmc/linux/include/ufs/ |
H A 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
|
/openbmc/linux/include/net/bluetooth/ |
H A D | hci.h | 73 /* When this quirk is set, the HCI Reset command is send when 76 * This quirk must be set before hci_register_dev is called. 80 /* When this quirk is set, the device is turned into a raw-only 83 * This quirk must be set before hci_register_dev is called. 87 /* When this quirk is set, the buffer sizes reported by 90 * This quirk must be set before hci_register_dev is called. 94 /* When this quirk is set, then a controller that does not 102 * This quirk must be set before hci_register_dev is called. 106 /* When this quirk is set, then the HCI Read Local Supported 112 * This quirk must be set before hci_register_dev is called. [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/usb/ |
H A D | snps,dwc3.yaml | 125 snps,dis-start-transfer-quirk: 146 description: Set if we want to enable u2exit lfps quirk 150 description: Set if we enable P3 OK for U2/SS Inactive quirk 206 snps,dis-u1-entry-quirk: 210 snps,dis-u2-entry-quirk: 219 snps,dis-u2-freeclk-exists-quirk: 225 snps,dis-del-phy-power-chg-quirk: 230 snps,dis-tx-ipgap-linecheck-quirk: 234 snps,parkmode-disable-ss-quirk: 239 snps,parkmode-disable-hs-quirk: [all …]
|
/openbmc/linux/drivers/gpu/drm/i915/display/ |
H A 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() 227 bool intel_has_quirk(struct drm_i915_private *i915, enum intel_quirk_id quirk) in intel_has_quirk() argument 229 return i915->display.quirks.mask & BIT(quirk); in intel_has_quirk()
|
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
H A D | feature.h | 86 * expand quirk list to enumeration. 119 * brcmf_feat_is_quirk_enabled() - query chip quirk. 122 * @quirk: quirk id to check. 124 * Return: true is quirk is enabled; otherwise false. 127 enum brcmf_feat_quirk quirk);
|
/openbmc/linux/sound/usb/ |
H A D | card.c | 101 MODULE_PARM_DESC(quirk_alias, "Quirk aliases, e.g. 0123abcd:5678beef."); 103 MODULE_PARM_DESC(delayed_register, "Quirk for delayed registration, given by id:iface, e.g. 0123abc… 107 MODULE_PARM_DESC(quirk_flags, "Driver quirk bit flags."); 503 const struct snd_usb_audio_quirk *quirk) in usb_audio_make_shortname() argument 512 else if (quirk && quirk->product_name) in usb_audio_make_shortname() 513 s = quirk->product_name; in usb_audio_make_shortname() 534 const struct snd_usb_audio_quirk *quirk) in usb_audio_make_longname() argument 553 else if (quirk && quirk->vendor_name) in usb_audio_make_longname() 554 s = quirk->vendor_name; in usb_audio_make_longname() 604 const struct snd_usb_audio_quirk *quirk, in snd_usb_audio_create() argument [all …]
|
/openbmc/linux/drivers/usb/host/ |
H A 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()
|
/openbmc/linux/drivers/misc/mei/ |
H A 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
|
/openbmc/linux/drivers/tty/serial/8250/ |
H A 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 …]
|
/openbmc/linux/sound/usb/hiface/ |
H A 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()
|
/openbmc/linux/arch/arm/kernel/ |
H A 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)
|
/openbmc/linux/drivers/soundwire/ |
H A D | dmi-quirks.c | 110 /* quirk used for NUC15 'Bishop County' LAPBC510 and LAPBC710 skews */ 118 /* quirk used for NUC15 LAPBC710 skew */ 126 /* quirk used for NUC15 'Rooks County' LAPRC510 and LAPRC710 skews */ 134 /* quirk used for NUC15 LAPRC710 skew */ 163 /* check if any address remap quirk applies */ in sdw_dmi_override_adr()
|