mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 17:28:15 +00:00
a08b1921b4
The initialization for smmu and stream id is moved into the common soc code. Signed-off-by: Alison Wang <alison.wang@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
14 lines
289 B
C
14 lines
289 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);
|
|
|
|
#endif /* __FSL_LS102XA_SOC_H */
|