mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
7d7bb99e22
Add support for the Allecat5/Alleycat5X SoC. These are L3 switches with an integrated CPU (referred to as the CnM block in Marvell's documentation). These have dual ARMv8.2 CPUs (Cortex-A55). This support has been ported from Marvell's SDK which is based on a much older version of U-Boot. Signed-off-by: Chris Packham <judge.packham@gmail.com>
7 lines
188 B
C
7 lines
188 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
#ifndef _ALLEYCAT5_SOC_H
|
|
#define _ALLEYCAT5_SOC_H
|
|
void soc_print_device_info(void);
|
|
void soc_print_clock_info(void);
|
|
#endif /* _ALLEYCAT5_SOC_H */
|