| 123456789101112131415161718192021 |
- /*
- * Copyright 2018 NXP
- * All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
- #ifndef __EVKMIMXRT1064_DCD_SDRAM_INIT__
- #define __EVKMIMXRT1064_DCD_SDRAM_INIT__
- #include <stdint.h>
- /*************************************
- * DCD Data
- *************************************/
- #define DCD_TAG_HEADER (0xD2)
- #define DCD_TAG_HEADER_SHIFT (24)
- #define DCD_VERSION (0x40)
- #define DCD_ARRAY_SIZE 1
- #endif /* __EVKMIMXRT1064_DCD_SDRAM_INIT__ */
|