diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2015-03-16 15:13:39 +0100 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2015-05-20 16:37:49 +0200 |
commit | 09099f1942e993b1c63408b5a385883876e3e35e (patch) | |
tree | dfa9ed5c14bbaedda1e6e8e671e8da14dfe6631f /arch/arm/mach-at91/pm.h | |
parent | d7d45f25557e70c467ffd10d59f99e37463bb833 (diff) | |
download | linux-stable-09099f1942e993b1c63408b5a385883876e3e35e.tar.gz linux-stable-09099f1942e993b1c63408b5a385883876e3e35e.tar.bz2 linux-stable-09099f1942e993b1c63408b5a385883876e3e35e.zip |
ARM: at91: remove mach/at91_ramc.h and mach/at91rm9200_mc.h
mach/at91_ramc.h and mach/at91rm9200_mc.h aren't necessary anymore, remove them.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91/pm.h')
-rw-r--r-- | arch/arm/mach-at91/pm.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/arch/arm/mach-at91/pm.h b/arch/arm/mach-at91/pm.h index ecd875a91d52..3fcf8810f14e 100644 --- a/arch/arm/mach-at91/pm.h +++ b/arch/arm/mach-at91/pm.h @@ -13,7 +13,19 @@ #include <asm/proc-fns.h> -#include <mach/at91_ramc.h> +#include <linux/mfd/syscon/atmel-mc.h> +#include <soc/at91/at91sam9_ddrsdr.h> +#include <soc/at91/at91sam9_sdramc.h> + +#ifndef __ASSEMBLY__ +extern void __iomem *at91_ramc_base[]; + +#define at91_ramc_read(id, field) \ + __raw_readl(at91_ramc_base[id] + field) + +#define at91_ramc_write(id, field, value) \ + __raw_writel(value, at91_ramc_base[id] + field) +#endif #define AT91_MEMCTRL_MC 0 #define AT91_MEMCTRL_SDRAMC 1 |