mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
b392a6d4b0
As the access to serders protocol unselected PCIe controller will hang. So disable the R/W permission to unselected PCIe controller including its CCSR, IO space and memory space according to the serders protocol field of RCW. Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
18 lines
363 B
C
18 lines
363 B
C
/*
|
|
* Copyright 2015 Freescale Semiconductor, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __FSL_LS102XA_SOC_H
|
|
#define __FSL_LS102XA_SOC_H
|
|
|
|
unsigned int get_soc_major_rev(void);
|
|
int arch_soc_init(void);
|
|
int ls102xa_smmu_stream_id_init(void);
|
|
|
|
#ifdef CONFIG_SYS_FSL_ERRATUM_A010315
|
|
void erratum_a010315(void);
|
|
#endif
|
|
|
|
#endif /* __FSL_LS102XA_SOC_H */
|