aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/drivers/ram/k3-ddrss/lpddr4_obj_if.c
blob: 370242f5bd23e1329069dc211d1a04d301280d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// SPDX-License-Identifier: BSD-3-Clause
/*
 * Cadence DDR Driver
 *
 * Copyright (C) 2012-2021 Cadence Design Systems, Inc.
 * Copyright (C) 2018-2021 Texas Instruments Incorporated - https://www.ti.com/
 */

#include "lpddr4_obj_if.h"

lpddr4_obj *lpddr4_getinstance(void)
{
	static lpddr4_obj driver = {
		.probe				= lpddr4_probe,
		.init				= lpddr4_init,
		.start				= lpddr4_start,
		.readreg			= lpddr4_readreg,
		.writereg			= lpddr4_writereg,
		.getmmrregister			= lpddr4_getmmrregister,
		.setmmrregister			= lpddr4_setmmrregister,
		.writectlconfig			= lpddr4_writectlconfig,
		.writephyconfig			= lpddr4_writephyconfig,
		.writephyindepconfig		= lpddr4_writephyindepconfig,
		.readctlconfig			= lpddr4_readctlconfig,
		.readphyconfig			= lpddr4_readphyconfig,
		.readphyindepconfig		= lpddr4_readphyindepconfig,
		.getctlinterruptmask		= lpddr4_getctlinterruptmask,
		.setctlinterruptmask		= lpddr4_setctlinterruptmask,
		.checkctlinterrupt		= lpddr4_checkctlinterrupt,
		.ackctlinterrupt		= lpddr4_ackctlinterrupt,
		.getphyindepinterruptmask	= lpddr4_getphyindepinterruptmask,
		.setphyindepinterruptmask	= lpddr4_setphyindepinterruptmask,
		.checkphyindepinterrupt		= lpddr4_checkphyindepinterrupt,
		.ackphyindepinterrupt		= lpddr4_ackphyindepinterrupt,
		.getdebuginitinfo		= lpddr4_getdebuginitinfo,
		.getlpiwakeuptime		= lpddr4_getlpiwakeuptime,
		.setlpiwakeuptime		= lpddr4_setlpiwakeuptime,
		.geteccenable			= lpddr4_geteccenable,
		.seteccenable			= lpddr4_seteccenable,
		.getreducmode			= lpddr4_getreducmode,
		.setreducmode			= lpddr4_setreducmode,
		.getdbireadmode			= lpddr4_getdbireadmode,
		.getdbiwritemode		= lpddr4_getdbiwritemode,
		.setdbimode			= lpddr4_setdbimode,
		.getrefreshrate			= lpddr4_getrefreshrate,
		.setrefreshrate			= lpddr4_setrefreshrate,
		.refreshperchipselect		= lpddr4_refreshperchipselect,
	};

	return &driver;
}