mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
ee31be429b
The new 32bit DDR controller for TI's am62a family of SoCs shares much of the same functionality with the existing 16bit (am64) and 32bit (j721e) controllers, so this patch reorganizes the existing auto-generated macros for the 16bit and 32bit controllers to make room for the macros for the am62a's controller This patch consists mostly of header/macro renames and additions with a new Kconfig option (K3_AM62A_DDRSS) allowing us to select these new macros during compilation. Signed-off-by: Bryan Brattlof <bb@ti.com>
52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
/*
|
|
* Cadence DDR Driver
|
|
*
|
|
* Copyright (C) 2012-2022 Cadence Design Systems, Inc.
|
|
* Copyright (C) 2018-2022 Texas Instruments Incorporated - https://www.ti.com/
|
|
*/
|
|
|
|
#ifndef LPDDR4_STRUCTS_IF_H
|
|
#define LPDDR4_STRUCTS_IF_H
|
|
|
|
#include <linux/types.h>
|
|
#include "lpddr4_if.h"
|
|
|
|
struct lpddr4_config_s {
|
|
struct lpddr4_ctlregs_s *ctlbase;
|
|
lpddr4_infocallback infohandler;
|
|
lpddr4_ctlcallback ctlinterrupthandler;
|
|
lpddr4_phyindepcallback phyindepinterrupthandler;
|
|
};
|
|
|
|
struct lpddr4_privatedata_s {
|
|
struct lpddr4_ctlregs_s *ctlbase;
|
|
lpddr4_infocallback infohandler;
|
|
lpddr4_ctlcallback ctlinterrupthandler;
|
|
lpddr4_phyindepcallback phyindepinterrupthandler;
|
|
void *ddr_instance;
|
|
};
|
|
|
|
struct lpddr4_debuginfo_s {
|
|
u8 pllerror;
|
|
u8 iocaliberror;
|
|
u8 rxoffseterror;
|
|
u8 catraingerror;
|
|
u8 wrlvlerror;
|
|
u8 gatelvlerror;
|
|
u8 readlvlerror;
|
|
u8 dqtrainingerror;
|
|
};
|
|
|
|
struct lpddr4_fspmoderegs_s {
|
|
u8 mr1data_fn[LPDDR4_INTR_MAX_CS];
|
|
u8 mr2data_fn[LPDDR4_INTR_MAX_CS];
|
|
u8 mr3data_fn[LPDDR4_INTR_MAX_CS];
|
|
u8 mr11data_fn[LPDDR4_INTR_MAX_CS];
|
|
u8 mr12data_fn[LPDDR4_INTR_MAX_CS];
|
|
u8 mr13data_fn[LPDDR4_INTR_MAX_CS];
|
|
u8 mr14data_fn[LPDDR4_INTR_MAX_CS];
|
|
u8 mr22data_fn[LPDDR4_INTR_MAX_CS];
|
|
};
|
|
|
|
#endif /* LPDDR4_STRUCTS_IF_H */
|