diff options
author | Aswath Govindraju <a-govindraju@ti.com> | 2022-01-25 20:56:28 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-02-08 09:41:26 -0500 |
commit | 3e3d836f9286e7b28722625d553235f8cb398211 (patch) | |
tree | 22223a01ba2142f2a1bb183c9d17ad0f87a7cd0f /drivers/ram/k3-ddrss | |
parent | 473bd5aee1308d43a3ad9baee9dd8ec1fb6b4a2d (diff) | |
download | u-boot-3e3d836f9286e7b28722625d553235f8cb398211.tar.gz u-boot-3e3d836f9286e7b28722625d553235f8cb398211.tar.bz2 u-boot-3e3d836f9286e7b28722625d553235f8cb398211.zip |
ram: k3-ddrss: lpddr4_structs_if.h: Add a pointer to ddr instance
Add a pointer to ddr instance int the lpddr4_privatedata_s structure for
supporting mutliple instances of DDR in the drivers.
Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
Diffstat (limited to 'drivers/ram/k3-ddrss')
-rw-r--r-- | drivers/ram/k3-ddrss/lpddr4_structs_if.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ram/k3-ddrss/lpddr4_structs_if.h b/drivers/ram/k3-ddrss/lpddr4_structs_if.h index e41cbb7ff4..f2f1210c3c 100644 --- a/drivers/ram/k3-ddrss/lpddr4_structs_if.h +++ b/drivers/ram/k3-ddrss/lpddr4_structs_if.h @@ -24,6 +24,7 @@ struct lpddr4_privatedata_s { lpddr4_infocallback infohandler; lpddr4_ctlcallback ctlinterrupthandler; lpddr4_phyindepcallback phyindepinterrupthandler; + void *ddr_instance; }; struct lpddr4_debuginfo_s { |