2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-05-05 11:52:25 +01: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 13:38:21 +01:00
|
|
|
#include <asm/io.h>
|
2014-05-05 11:52:25 +01:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2014-11-02 20:31:16 +01:00
|
|
|
/* dram regs definition */
|
2014-10-25 20:27:23 +02:00
|
|
|
#if defined(CONFIG_MACH_SUN6I)
|
|
|
|
#include <asm/arch/dram_sun6i.h>
|
2015-04-06 20:55:39 +02:00
|
|
|
#elif defined(CONFIG_MACH_SUN8I_A23)
|
|
|
|
#include <asm/arch/dram_sun8i_a23.h>
|
2015-03-01 23:49:39 +05:30
|
|
|
#elif defined(CONFIG_MACH_SUN8I_A33)
|
|
|
|
#include <asm/arch/dram_sun8i_a33.h>
|
2015-11-29 01:07:25 +08:00
|
|
|
#elif defined(CONFIG_MACH_SUN8I_A83T)
|
|
|
|
#include <asm/arch/dram_sun8i_a83t.h>
|
2017-06-03 17:10:14 +08:00
|
|
|
#elif defined(CONFIG_SUNXI_DRAM_DW)
|
|
|
|
#include <asm/arch/dram_sunxi_dw.h>
|
2016-10-28 18:21:28 +08:00
|
|
|
#elif defined(CONFIG_MACH_SUN9I)
|
|
|
|
#include <asm/arch/dram_sun9i.h>
|
2018-07-23 06:13:34 +08:00
|
|
|
#elif defined(CONFIG_MACH_SUN50I_H6)
|
|
|
|
#include <asm/arch/dram_sun50i_h6.h>
|
2014-10-25 20:27:23 +02:00
|
|
|
#else
|
2014-11-02 20:31:16 +01:00
|
|
|
#include <asm/arch/dram_sun4i.h>
|
2014-10-25 20:27:23 +02:00
|
|
|
#endif
|
2014-05-05 11:52:25 +01:00
|
|
|
|
|
|
|
unsigned long sunxi_dram_init(void);
|
2015-02-04 12:14:56 +01:00
|
|
|
void mctl_await_completion(u32 *reg, u32 mask, u32 val);
|
|
|
|
bool mctl_mem_matches(u32 offset);
|
2014-12-08 13:58:53 +01:00
|
|
|
|
2014-05-05 11:52:25 +01:00
|
|
|
#endif /* _SUNXI_DRAM_H */
|