blob: 9187e7af74617a8efc313f3d2c7c6da6efc9fe29 [file] [log] [blame]
Hou Zhiqiang25ff98c2019-04-24 22:33:02 +08001// SPDX-License-Identifier: GPL-2.0+ OR X11
2/*
3 * Copyright 2019 NXP
4 *
5 * PCIe Kernel DT fixup of DM U-Boot driver for Freescale PowerPC SoCs
6 * Author: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
7 */
8
Hou Zhiqiang25ff98c2019-04-24 22:33:02 +08009#ifdef CONFIG_OF_BOARD_SETUP
10#include <dm.h>
11#include <fdt_support.h>
12#include <asm/fsl_pci.h>
13#include <linux/libfdt.h>
14#include "pcie_fsl.h"
15
16static void ft_fsl_pcie_setup(void *blob, struct fsl_pcie *pcie)
17{
18 struct pci_controller *hose = dev_get_uclass_priv(pcie->bus);
19 fdt_addr_t regs_addr;
20 int off;
21
22 regs_addr = dev_read_addr(pcie->bus);
23 off = fdt_node_offset_by_compat_reg(blob, FSL_PCIE_COMPAT, regs_addr);
24 if (off < 0) {
25 printf("%s: Fail to find PCIe node@0x%pa\n",
26 FSL_PCIE_COMPAT, &regs_addr);
27 return;
28 }
29
30 if (!hose || !pcie->enabled)
31 fdt_del_node(blob, off);
32 else
33 fdt_pci_dma_ranges(blob, off, hose);
34}
35
36/* Fixup Kernel DT for PCIe */
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090037void pci_of_setup(void *blob, struct bd_info *bd)
Hou Zhiqiang25ff98c2019-04-24 22:33:02 +080038{
39 struct fsl_pcie *pcie;
40
41 list_for_each_entry(pcie, &fsl_pcie_list, list)
42 ft_fsl_pcie_setup(blob, pcie);
43}
44
45#else
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090046void pci_of_setup(void *blob, struct bd_info *bd)
Hou Zhiqiang25ff98c2019-04-24 22:33:02 +080047{
48}
49#endif