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.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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>
|
2014-12-07 13:34:27 +00:00
|
|
|
#elif defined(CONFIG_MACH_SUN8I)
|
|
|
|
#include <asm/arch/dram_sun8i.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);
|
|
|
|
|
2014-12-08 12:38:21 +00:00
|
|
|
/*
|
|
|
|
* Wait up to 1s for value to be set in given part of reg.
|
|
|
|
*/
|
|
|
|
static inline void mctl_await_completion(u32 *reg, u32 mask, u32 val)
|
|
|
|
{
|
|
|
|
unsigned long tmo = timer_get_us() + 1000000;
|
|
|
|
|
|
|
|
while ((readl(reg) & mask) != val) {
|
|
|
|
if (timer_get_us() > tmo)
|
|
|
|
panic("Timeout initialising DRAM\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-08 12:58:53 +00:00
|
|
|
/*
|
|
|
|
* Test if memory at offset offset matches memory at begin of DRAM
|
|
|
|
*/
|
|
|
|
static inline bool mctl_mem_matches(u32 offset)
|
|
|
|
{
|
2014-12-24 16:58:17 +00:00
|
|
|
/* Try to write different values to RAM at two addresses */
|
|
|
|
writel(0, CONFIG_SYS_SDRAM_BASE);
|
|
|
|
writel(0xaa55aa55, CONFIG_SYS_SDRAM_BASE + offset);
|
|
|
|
/* Check if the same value is actually observed when reading back */
|
|
|
|
return readl(CONFIG_SYS_SDRAM_BASE) ==
|
|
|
|
readl(CONFIG_SYS_SDRAM_BASE + offset);
|
2014-12-08 12:58:53 +00:00
|
|
|
}
|
|
|
|
|
2014-05-05 10:52:25 +00:00
|
|
|
#endif /* _SUNXI_DRAM_H */
|