2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-05-05 10:52:25 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007-2012
|
|
|
|
* Allwinner Technology Co., Ltd. <www.allwinnertech.com>
|
|
|
|
* Berg Xing <bergxing@allwinnertech.com>
|
|
|
|
* Tom Cubie <tangliang@allwinnertech.com>
|
|
|
|
*
|
|
|
|
* Sunxi platform dram register definition.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SUNXI_DRAM_H
|
|
|
|
#define _SUNXI_DRAM_H
|
|
|
|
|
2014-12-08 12:38:21 +00:00
|
|
|
#include <asm/io.h>
|
2014-05-05 10:52:25 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2014-11-02 19:31:16 +00:00
|
|
|
/* dram regs definition */
|
2014-10-25 18:27:23 +00:00
|
|
|
#if defined(CONFIG_MACH_SUN6I)
|
|
|
|
#include <asm/arch/dram_sun6i.h>
|
2015-04-06 18:55:39 +00:00
|
|
|
#elif defined(CONFIG_MACH_SUN8I_A23)
|
|
|
|
#include <asm/arch/dram_sun8i_a23.h>
|
2015-03-01 18:19:39 +00:00
|
|
|
#elif defined(CONFIG_MACH_SUN8I_A33)
|
|
|
|
#include <asm/arch/dram_sun8i_a33.h>
|
2015-11-28 17:07:25 +00:00
|
|
|
#elif defined(CONFIG_MACH_SUN8I_A83T)
|
|
|
|
#include <asm/arch/dram_sun8i_a83t.h>
|
2017-06-03 09:10:14 +00:00
|
|
|
#elif defined(CONFIG_SUNXI_DRAM_DW)
|
|
|
|
#include <asm/arch/dram_sunxi_dw.h>
|
2016-10-28 10:21:28 +00:00
|
|
|
#elif defined(CONFIG_MACH_SUN9I)
|
|
|
|
#include <asm/arch/dram_sun9i.h>
|
2018-07-22 22:13:34 +00:00
|
|
|
#elif defined(CONFIG_MACH_SUN50I_H6)
|
|
|
|
#include <asm/arch/dram_sun50i_h6.h>
|
2014-10-25 18:27:23 +00:00
|
|
|
#else
|
2014-11-02 19:31:16 +00:00
|
|
|
#include <asm/arch/dram_sun4i.h>
|
2014-10-25 18:27:23 +00:00
|
|
|
#endif
|
2014-05-05 10:52:25 +00:00
|
|
|
|
|
|
|
unsigned long sunxi_dram_init(void);
|
2015-02-04 11:14:56 +00:00
|
|
|
void mctl_await_completion(u32 *reg, u32 mask, u32 val);
|
|
|
|
bool mctl_mem_matches(u32 offset);
|
2014-12-08 12:58:53 +00:00
|
|
|
|
2014-05-05 10:52:25 +00:00
|
|
|
#endif /* _SUNXI_DRAM_H */
|