blob: 826315af6d11c4bde262fbf44e92aefba20f2e90 [file] [log] [blame]
Andrew Victor67810022008-10-13 20:28:13 +01001/*
2 * linux/arch/arm/mach-at91/sam9_smc.c
3 *
4 * Copyright (C) 2008 Andrew Victor
Jean-Christophe PLAGNIOL-VILLARD59594e132011-11-27 19:29:57 +08005 * Copyright (C) 2011 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Andrew Victor67810022008-10-13 20:28:13 +01006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/module.h>
13#include <linux/io.h>
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080014#include <linux/of.h>
15#include <linux/of_address.h>
Andrew Victor67810022008-10-13 20:28:13 +010016
17#include <mach/at91sam9_smc.h>
18
19#include "sam9_smc.h"
20
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080021
22#define AT91_SMC_CS(id, n) (smc_base_addr[id] + ((n) * 0x10))
23
24static void __iomem *smc_base_addr[2];
25
Jean-Christophe PLAGNIOL-VILLARD59594e132011-11-27 19:29:57 +080026static void sam9_smc_cs_write_mode(void __iomem *base,
27 struct sam9_smc_config *config)
28{
29 __raw_writel(config->mode
30 | AT91_SMC_TDF_(config->tdf_cycles),
31 base + AT91_SMC_MODE);
32}
33
34void sam9_smc_write_mode(int id, int cs,
35 struct sam9_smc_config *config)
36{
37 sam9_smc_cs_write_mode(AT91_SMC_CS(id, cs), config);
38}
Arnd Bergmannc85fc989f2014-03-13 17:42:15 +010039EXPORT_SYMBOL_GPL(sam9_smc_write_mode);
Jean-Christophe PLAGNIOL-VILLARD59594e132011-11-27 19:29:57 +080040
41static void sam9_smc_cs_configure(void __iomem *base,
42 struct sam9_smc_config *config)
Andrew Victor67810022008-10-13 20:28:13 +010043{
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080044
Andrew Victor67810022008-10-13 20:28:13 +010045 /* Setup register */
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080046 __raw_writel(AT91_SMC_NWESETUP_(config->nwe_setup)
47 | AT91_SMC_NCS_WRSETUP_(config->ncs_write_setup)
48 | AT91_SMC_NRDSETUP_(config->nrd_setup)
49 | AT91_SMC_NCS_RDSETUP_(config->ncs_read_setup),
50 base + AT91_SMC_SETUP);
Andrew Victor67810022008-10-13 20:28:13 +010051
52 /* Pulse register */
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080053 __raw_writel(AT91_SMC_NWEPULSE_(config->nwe_pulse)
54 | AT91_SMC_NCS_WRPULSE_(config->ncs_write_pulse)
55 | AT91_SMC_NRDPULSE_(config->nrd_pulse)
56 | AT91_SMC_NCS_RDPULSE_(config->ncs_read_pulse),
57 base + AT91_SMC_PULSE);
Andrew Victor67810022008-10-13 20:28:13 +010058
59 /* Cycle register */
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080060 __raw_writel(AT91_SMC_NWECYCLE_(config->write_cycle)
61 | AT91_SMC_NRDCYCLE_(config->read_cycle),
62 base + AT91_SMC_CYCLE);
Andrew Victor67810022008-10-13 20:28:13 +010063
64 /* Mode register */
Jean-Christophe PLAGNIOL-VILLARD59594e132011-11-27 19:29:57 +080065 sam9_smc_cs_write_mode(base, config);
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080066}
67
Jean-Christophe PLAGNIOL-VILLARD59594e132011-11-27 19:29:57 +080068void sam9_smc_configure(int id, int cs,
69 struct sam9_smc_config *config)
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080070{
71 sam9_smc_cs_configure(AT91_SMC_CS(id, cs), config);
72}
Arnd Bergmannc85fc989f2014-03-13 17:42:15 +010073EXPORT_SYMBOL_GPL(sam9_smc_configure);
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080074
Jean-Christophe PLAGNIOL-VILLARD59594e132011-11-27 19:29:57 +080075static void sam9_smc_cs_read_mode(void __iomem *base,
76 struct sam9_smc_config *config)
77{
78 u32 val = __raw_readl(base + AT91_SMC_MODE);
79
80 config->mode = (val & ~AT91_SMC_NWECYCLE);
81 config->tdf_cycles = (val & AT91_SMC_NWECYCLE) >> 16 ;
82}
83
84void sam9_smc_read_mode(int id, int cs,
85 struct sam9_smc_config *config)
86{
87 sam9_smc_cs_read_mode(AT91_SMC_CS(id, cs), config);
88}
Arnd Bergmannc85fc989f2014-03-13 17:42:15 +010089EXPORT_SYMBOL_GPL(sam9_smc_read_mode);
Jean-Christophe PLAGNIOL-VILLARD59594e132011-11-27 19:29:57 +080090
91static void sam9_smc_cs_read(void __iomem *base,
92 struct sam9_smc_config *config)
93{
94 u32 val;
95
96 /* Setup register */
97 val = __raw_readl(base + AT91_SMC_SETUP);
98
99 config->nwe_setup = val & AT91_SMC_NWESETUP;
100 config->ncs_write_setup = (val & AT91_SMC_NCS_WRSETUP) >> 8;
101 config->nrd_setup = (val & AT91_SMC_NRDSETUP) >> 16;
102 config->ncs_read_setup = (val & AT91_SMC_NCS_RDSETUP) >> 24;
103
104 /* Pulse register */
105 val = __raw_readl(base + AT91_SMC_PULSE);
106
Jean-Jacques Hiblot1588c512014-01-09 16:01:54 +0100107 config->nwe_pulse = val & AT91_SMC_NWEPULSE;
Jean-Christophe PLAGNIOL-VILLARD59594e132011-11-27 19:29:57 +0800108 config->ncs_write_pulse = (val & AT91_SMC_NCS_WRPULSE) >> 8;
109 config->nrd_pulse = (val & AT91_SMC_NRDPULSE) >> 16;
110 config->ncs_read_pulse = (val & AT91_SMC_NCS_RDPULSE) >> 24;
111
112 /* Cycle register */
113 val = __raw_readl(base + AT91_SMC_CYCLE);
114
115 config->write_cycle = val & AT91_SMC_NWECYCLE;
116 config->read_cycle = (val & AT91_SMC_NRDCYCLE) >> 16;
117
118 /* Mode register */
119 sam9_smc_cs_read_mode(base, config);
120}
121
122void sam9_smc_read(int id, int cs, struct sam9_smc_config *config)
123{
124 sam9_smc_cs_read(AT91_SMC_CS(id, cs), config);
125}
126
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +0800127void __init at91sam9_ioremap_smc(int id, u32 addr)
128{
129 if (id > 1) {
130 pr_warn("%s: id > 2\n", __func__);
131 return;
132 }
133 smc_base_addr[id] = ioremap(addr, 512);
134 if (!smc_base_addr[id])
135 pr_warn("Impossible to ioremap smc.%d 0x%x\n", id, addr);
Andrew Victor67810022008-10-13 20:28:13 +0100136}