pcie_layerscape_fixup_common.h 583 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright 2019-2020 NXP
  4. *
  5. * PCIe DT fixup for NXP Layerscape SoCs
  6. * Author: Wasim Khan <wasim.khan@nxp.com>
  7. *
  8. */
  9. #ifndef _PCIE_LAYERSCAPE_FIXUP_COMMON_H_
  10. #define _PCIE_LAYERSCAPE_FIXUP_COMMON_H_
  11. #include <common.h>
  12. void ft_pci_setup_ls(void *blob, struct bd_info *bd);
  13. #ifdef CONFIG_PCIE_LAYERSCAPE_GEN4
  14. void ft_pci_setup_ls_gen4(void *blob, struct bd_info *bd);
  15. #endif /* CONFIG_PCIE_LAYERSCAPE_GEN4 */
  16. int pcie_next_streamid(int currentid, int id);
  17. int pcie_board_fix_fdt(void *fdt);
  18. #endif //_PCIE_LAYERSCAPE_FIXUP_COMMON_H_