mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 18:14:24 +00:00

This patch is used to implement sdmmc/nand/combo-phy driver to support Cadence IP for Agilex5 SoC FPGA. 1. Added SDMMC/NAND/COMBO-PHY support. 2. Updated product name -> Agilex5 3. Updated QSPI base address Signed-off-by: Jit Loon Lim <jit.loon.lim@intel.com> Change-Id: I6db689d2b784c9f59a25701ab34517f6f6b0a0e6
22 lines
425 B
C
22 lines
425 B
C
/*
|
|
* Copyright (c) 2022-2023, Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef DDR_H
|
|
#define DDR_H
|
|
|
|
#include <lib/mmio.h>
|
|
#include "socfpga_handoff.h"
|
|
|
|
/* FUNCTION DEFINATION */
|
|
/*
|
|
* @brief Nand controller initialization function
|
|
*
|
|
* @hoff_ptr: Pointer to the hand-off data
|
|
* Return: 0 on success, a negative errno on failure
|
|
*/
|
|
int nand_init(handoff *hoff_ptr);
|
|
|
|
#endif
|