1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-26 13:01:17 +02:00

armv8: lx2160a: Add FSL_PEX_STREAM_ID_END for LX2160A

Add FSL_PEX_STREAM_ID_END and remove FSL_PEX_STREAM_ID_NUM
for lx2160a.

Signed-off-by: Wasim Khan <wasim.khan@nxp.com>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
Wasim Khan
2019-11-15 09:23:39 +00:00
committed by Priyanka Jain
parent 0b964b03b0
commit 7cd4272821
2 changed files with 4 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0+ */ /* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* Copyright 2015-2018 NXP * Copyright 2015-2019 NXP
* Copyright 2014 Freescale Semiconductor, Inc. * Copyright 2014 Freescale Semiconductor, Inc.
* *
*/ */
@@ -87,14 +87,12 @@
/* PCI - programmed in PEXn_LUT */ /* PCI - programmed in PEXn_LUT */
#define FSL_PEX_STREAM_ID_START 7 #define FSL_PEX_STREAM_ID_START 7
#ifdef CONFIG_ARCH_LX2160A
#define FSL_PEX_STREAM_ID_NUM (0x100)
#endif
#if defined(CONFIG_ARCH_LS2080A) || defined(CONFIG_ARCH_LS1028A) #if defined(CONFIG_ARCH_LS2080A) || defined(CONFIG_ARCH_LS1028A)
#define FSL_PEX_STREAM_ID_END 22 #define FSL_PEX_STREAM_ID_END 22
#elif defined(CONFIG_ARCH_LS1088A) #elif defined(CONFIG_ARCH_LS1088A)
#define FSL_PEX_STREAM_ID_END 18 #define FSL_PEX_STREAM_ID_END 18
#elif defined(CONFIG_ARCH_LX2160A)
#define FSL_PEX_STREAM_ID_END (0x100)
#endif #endif

View File

@@ -37,7 +37,7 @@ static int ls_pcie_g4_next_streamid(struct ls_pcie_g4 *pcie)
{ {
int stream_id = pcie->stream_id_cur; int stream_id = pcie->stream_id_cur;
if (stream_id > FSL_PEX_STREAM_ID_NUM) if (stream_id > FSL_PEX_STREAM_ID_END)
return -EINVAL; return -EINVAL;
pcie->stream_id_cur++; pcie->stream_id_cur++;