diff options
author | Minghuan Lian <Minghuan.Lian@freescale.com> | 2014-10-31 13:43:44 +0800 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2014-12-11 09:35:56 -0800 |
commit | da419027afe8336284f5db9867a880dfb3b3ab26 (patch) | |
tree | cbf4e1e85254b024850df60bc1d7b42f27dd5d54 /board/freescale/ls1021atwr/ls1021atwr.c | |
parent | 306fa012794e68e568bd51b829d1754323e0b8aa (diff) |
arm: ls102xa: Update PCIe dts node status
The patch changes PCIe dts node status to 'disabled' if the
corresponding controller is disabled according to serdes protocol.
Signed-off-by: Minghuan Lian <Minghuan.Lian@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'board/freescale/ls1021atwr/ls1021atwr.c')
-rw-r--r-- | board/freescale/ls1021atwr/ls1021atwr.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/board/freescale/ls1021atwr/ls1021atwr.c b/board/freescale/ls1021atwr/ls1021atwr.c index 3e8c37b05d..269d3e2c51 100644 --- a/board/freescale/ls1021atwr/ls1021atwr.c +++ b/board/freescale/ls1021atwr/ls1021atwr.c @@ -10,6 +10,7 @@ #include <asm/arch/immap_ls102xa.h> #include <asm/arch/clock.h> #include <asm/arch/fsl_serdes.h> +#include <asm/pcie_layerscape.h> #include <mmc.h> #include <fsl_esdhc.h> #include <fsl_ifc.h> @@ -307,6 +308,10 @@ int ft_board_setup(void *blob, bd_t *bd) { ft_cpu_setup(blob, bd); +#ifdef CONFIG_PCIE_LAYERSCAPE + ft_pcie_setup(blob, bd); +#endif + return 0; } |