Lines Matching full:mps

1996 	int mps, mpss, p_mps, rc;  in pci_configure_mps()  local
2001 /* MPS and MRRS fields are of type 'RsvdP' for VFs, short-circuit out */ in pci_configure_mps()
2011 mps = 128; in pci_configure_mps()
2013 mps = 128 << dev->pcie_mpss; in pci_configure_mps()
2014 rc = pcie_set_mps(dev, mps); in pci_configure_mps()
2017 mps); in pci_configure_mps()
2025 mps = pcie_get_mps(dev); in pci_configure_mps()
2028 if (mps == p_mps) in pci_configure_mps()
2033 mps, pci_name(bridge), p_mps); in pci_configure_mps()
2038 * Fancier MPS configuration is done later by in pci_configure_mps()
2060 p_mps, mps, mpss); in pci_configure_mps()
2697 * We don't have a way to change MPS settings on devices that have in pcie_find_smpss()
2699 * MPS setting (MPS=128). Therefore, if the fabric contains a bridge in pcie_find_smpss()
2700 * where devices may be hot-added, we limit the fabric MPS to 128 so in pcie_find_smpss()
2705 * the port. We don't limit the MPS in this case because we can in pcie_find_smpss()
2706 * reconfigure MPS on both the Root Port and the hot-added device, in pcie_find_smpss()
2721 static void pcie_write_mps(struct pci_dev *dev, int mps) in pcie_write_mps() argument
2726 mps = 128 << dev->pcie_mpss; in pcie_write_mps()
2734 * the MRRS. So, the MPS only needs to be configured in pcie_write_mps()
2736 * walk from the top down and set the MPS of the child in pcie_write_mps()
2739 * Configure the device MPS with the smaller of the in pcie_write_mps()
2740 * device MPSS or the bridge MPS (which is assumed to be in pcie_write_mps()
2742 * allowable MPS based on its parent bus). in pcie_write_mps()
2744 mps = min(mps, pcie_get_mps(dev->bus->self)); in pcie_write_mps()
2747 rc = pcie_set_mps(dev, mps); in pcie_write_mps()
2749 pci_err(dev, "Failed attempting to set the MPS\n"); in pcie_write_mps()
2765 * value. However, it cannot be configured larger than the MPS the in pcie_write_mrrs()
2792 int mps, orig_mps; in pcie_bus_configure_set() local
2801 mps = 128 << *(u8 *)data; in pcie_bus_configure_set()
2804 pcie_write_mps(dev, mps); in pcie_bus_configure_set()
2831 * to be aware of the MPS of the destination. To work around this, in pcie_bus_configure_settings()
2832 * simply force the MPS of the entire system to the smallest possible. in pcie_bus_configure_settings()