Lines Matching full:mch
340 /* Device IDs of parts that have 32KB MCH space */
367 struct resource mch; in quirk_intel_mch() local
376 * MCHBAR is not an architected PCI BAR, so MCH space is usually in quirk_intel_mch()
377 * reported as a PNP0C02 resource. The MCH space was originally in quirk_intel_mch()
380 * MCH space is consumed but unreported. in quirk_intel_mch()
394 memset(&mch, 0, sizeof(mch)); in quirk_intel_mch()
395 mch.flags = IORESOURCE_MEM; in quirk_intel_mch()
396 pcibios_bus_to_resource(host->bus, &mch, ®ion); in quirk_intel_mch()
400 if (res->end < mch.start || res->start > mch.end) in quirk_intel_mch()
402 if (res->start == mch.start && res->end == mch.end) in quirk_intel_mch()
405 …dev_info(&dev->dev, FW_BUG "PNP resource %pR covers only part of %s Intel MCH; extending to %pR\n", in quirk_intel_mch()
406 res, pci_name(host), &mch); in quirk_intel_mch()
407 res->start = mch.start; in quirk_intel_mch()
408 res->end = mch.end; in quirk_intel_mch()