mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-28 11:15:22 +00:00
This commit updates the `xilinx_zynqmp` SoC initialisation code to use the CMSIS-Core(R) features. In addition, it also defines the Core IP revision value for the SoC as specified in the Zynq UltraScale+ Device Technical Reference Manual. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
15 lines
222 B
C
15 lines
222 B
C
/*
|
|
* Copyright (c) 2019 Lexmark International, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
*/
|
|
|
|
#ifndef _BOARD__H_
|
|
#define _BOARD__H_
|
|
|
|
/* Define CMSIS configurations */
|
|
#define __CR_REV 1U
|
|
|
|
#endif /* _BOARD__H_ */
|