diff options
-rw-r--r-- | arch/avr32/boards/atngw100/flash.c | 5 | ||||
-rw-r--r-- | arch/avr32/boards/atstk1000/flash.c | 5 | ||||
-rw-r--r-- | arch/avr32/mach-at32ap/hsmc.c | 129 | ||||
-rw-r--r-- | include/asm-avr32/arch-at32ap/smc.h | 51 |
4 files changed, 161 insertions, 29 deletions
diff --git a/arch/avr32/boards/atngw100/flash.c b/arch/avr32/boards/atngw100/flash.c index f9b32a8eab9b..b07ae63aa548 100644 --- a/arch/avr32/boards/atngw100/flash.c +++ b/arch/avr32/boards/atngw100/flash.c | |||
@@ -15,7 +15,7 @@ | |||
15 | 15 | ||
16 | #include <asm/arch/smc.h> | 16 | #include <asm/arch/smc.h> |
17 | 17 | ||
18 | static struct smc_config flash_config __initdata = { | 18 | static struct smc_timing flash_timing __initdata = { |
19 | .ncs_read_setup = 0, | 19 | .ncs_read_setup = 0, |
20 | .nrd_setup = 40, | 20 | .nrd_setup = 40, |
21 | .ncs_write_setup = 0, | 21 | .ncs_write_setup = 0, |
@@ -28,7 +28,9 @@ static struct smc_config flash_config __initdata = { | |||
28 | 28 | ||
29 | .read_cycle = 120, | 29 | .read_cycle = 120, |
30 | .write_cycle = 120, | 30 | .write_cycle = 120, |
31 | }; | ||
31 | 32 | ||
33 | static struct smc_config flash_config __initdata = { | ||
32 | .bus_width = 2, | 34 | .bus_width = 2, |
33 | .nrd_controlled = 1, | 35 | .nrd_controlled = 1, |
34 | .nwe_controlled = 1, | 36 | .nwe_controlled = 1, |
@@ -82,6 +84,7 @@ static int __init atngw100_flash_init(void) | |||
82 | { | 84 | { |
83 | int ret; | 85 | int ret; |
84 | 86 | ||
87 | smc_set_timing(&flash_config, &flash_timing); | ||
85 | ret = smc_set_configuration(0, &flash_config); | 88 | ret = smc_set_configuration(0, &flash_config); |
86 | if (ret < 0) { | 89 | if (ret < 0) { |
87 | printk(KERN_ERR "atngw100: failed to set NOR flash timing\n"); | 90 | printk(KERN_ERR "atngw100: failed to set NOR flash timing\n"); |
diff --git a/arch/avr32/boards/atstk1000/flash.c b/arch/avr32/boards/atstk1000/flash.c index aac4300cca12..3d0a102ad45e 100644 --- a/arch/avr32/boards/atstk1000/flash.c +++ b/arch/avr32/boards/atstk1000/flash.c | |||
@@ -15,7 +15,7 @@ | |||
15 | 15 | ||
16 | #include <asm/arch/smc.h> | 16 | #include <asm/arch/smc.h> |
17 | 17 | ||
18 | static struct smc_config flash_config __initdata = { | 18 | static struct smc_timing flash_timing __initdata = { |
19 | .ncs_read_setup = 0, | 19 | .ncs_read_setup = 0, |
20 | .nrd_setup = 40, | 20 | .nrd_setup = 40, |
21 | .ncs_write_setup = 0, | 21 | .ncs_write_setup = 0, |
@@ -28,7 +28,9 @@ static struct smc_config flash_config __initdata = { | |||
28 | 28 | ||
29 | .read_cycle = 120, | 29 | .read_cycle = 120, |
30 | .write_cycle = 120, | 30 | .write_cycle = 120, |
31 | }; | ||
31 | 32 | ||
33 | static struct smc_config flash_config __initdata = { | ||
32 | .bus_width = 2, | 34 | .bus_width = 2, |
33 | .nrd_controlled = 1, | 35 | .nrd_controlled = 1, |
34 | .nwe_controlled = 1, | 36 | .nwe_controlled = 1, |
@@ -82,6 +84,7 @@ static int __init atstk1000_flash_init(void) | |||
82 | { | 84 | { |
83 | int ret; | 85 | int ret; |
84 | 86 | ||
87 | smc_set_timing(&flash_config, &flash_timing); | ||
85 | ret = smc_set_configuration(0, &flash_config); | 88 | ret = smc_set_configuration(0, &flash_config); |
86 | if (ret < 0) { | 89 | if (ret < 0) { |
87 | printk(KERN_ERR "atstk1000: failed to set NOR flash timing\n"); | 90 | printk(KERN_ERR "atstk1000: failed to set NOR flash timing\n"); |
diff --git a/arch/avr32/mach-at32ap/hsmc.c b/arch/avr32/mach-at32ap/hsmc.c index 5e22a750632b..704607fbcc69 100644 --- a/arch/avr32/mach-at32ap/hsmc.c +++ b/arch/avr32/mach-at32ap/hsmc.c | |||
@@ -29,16 +29,25 @@ struct hsmc { | |||
29 | 29 | ||
30 | static struct hsmc *hsmc; | 30 | static struct hsmc *hsmc; |
31 | 31 | ||
32 | int smc_set_configuration(int cs, const struct smc_config *config) | 32 | void smc_set_timing(struct smc_config *config, |
33 | const struct smc_timing *timing) | ||
33 | { | 34 | { |
35 | int recover; | ||
36 | int cycle; | ||
37 | |||
34 | unsigned long mul; | 38 | unsigned long mul; |
35 | unsigned long offset; | ||
36 | u32 setup, pulse, cycle, mode; | ||
37 | 39 | ||
38 | if (!hsmc) | 40 | /* Reset all SMC timings */ |
39 | return -ENODEV; | 41 | config->ncs_read_setup = 0; |
40 | if (cs >= NR_CHIP_SELECTS) | 42 | config->nrd_setup = 0; |
41 | return -EINVAL; | 43 | config->ncs_write_setup = 0; |
44 | config->nwe_setup = 0; | ||
45 | config->ncs_read_pulse = 0; | ||
46 | config->nrd_pulse = 0; | ||
47 | config->ncs_write_pulse = 0; | ||
48 | config->nwe_pulse = 0; | ||
49 | config->read_cycle = 0; | ||
50 | config->write_cycle = 0; | ||
42 | 51 | ||
43 | /* | 52 | /* |
44 | * cycles = x / T = x * f | 53 | * cycles = x / T = x * f |
@@ -50,16 +59,102 @@ int smc_set_configuration(int cs, const struct smc_config *config) | |||
50 | 59 | ||
51 | #define ns2cyc(x) ((((x) * mul) + 65535) >> 16) | 60 | #define ns2cyc(x) ((((x) * mul) + 65535) >> 16) |
52 | 61 | ||
53 | setup = (HSMC_BF(NWE_SETUP, ns2cyc(config->nwe_setup)) | 62 | if (timing->ncs_read_setup > 0) |
54 | | HSMC_BF(NCS_WR_SETUP, ns2cyc(config->ncs_write_setup)) | 63 | config->ncs_read_setup = ns2cyc(timing->ncs_read_setup); |
55 | | HSMC_BF(NRD_SETUP, ns2cyc(config->nrd_setup)) | 64 | |
56 | | HSMC_BF(NCS_RD_SETUP, ns2cyc(config->ncs_read_setup))); | 65 | if (timing->nrd_setup > 0) |
57 | pulse = (HSMC_BF(NWE_PULSE, ns2cyc(config->nwe_pulse)) | 66 | config->nrd_setup = ns2cyc(timing->nrd_setup); |
58 | | HSMC_BF(NCS_WR_PULSE, ns2cyc(config->ncs_write_pulse)) | 67 | |
59 | | HSMC_BF(NRD_PULSE, ns2cyc(config->nrd_pulse)) | 68 | if (timing->ncs_write_setup > 0) |
60 | | HSMC_BF(NCS_RD_PULSE, ns2cyc(config->ncs_read_pulse))); | 69 | config->ncs_write_setup = ns2cyc(timing->ncs_write_setup); |
61 | cycle = (HSMC_BF(NWE_CYCLE, ns2cyc(config->write_cycle)) | 70 | |
62 | | HSMC_BF(NRD_CYCLE, ns2cyc(config->read_cycle))); | 71 | if (timing->nwe_setup > 0) |
72 | config->nwe_setup = ns2cyc(timing->nwe_setup); | ||
73 | |||
74 | if (timing->ncs_read_pulse > 0) | ||
75 | config->ncs_read_pulse = ns2cyc(timing->ncs_read_pulse); | ||
76 | |||
77 | if (timing->nrd_pulse > 0) | ||
78 | config->nrd_pulse = ns2cyc(timing->nrd_pulse); | ||
79 | |||
80 | if (timing->ncs_write_pulse > 0) | ||
81 | config->ncs_write_pulse = ns2cyc(timing->ncs_write_pulse); | ||
82 | |||
83 | if (timing->nwe_pulse > 0) | ||
84 | config->nwe_pulse = ns2cyc(timing->nwe_pulse); | ||
85 | |||
86 | if (timing->read_cycle > 0) | ||
87 | config->read_cycle = ns2cyc(timing->read_cycle); | ||
88 | |||
89 | if (timing->write_cycle > 0) | ||
90 | config->write_cycle = ns2cyc(timing->write_cycle); | ||
91 | |||
92 | /* Extend read cycle in needed */ | ||
93 | if (timing->ncs_read_recover > 0) | ||
94 | recover = ns2cyc(timing->ncs_read_recover); | ||
95 | else | ||
96 | recover = 1; | ||
97 | |||
98 | cycle = config->ncs_read_setup + config->ncs_read_pulse + recover; | ||
99 | |||
100 | if (config->read_cycle < cycle) | ||
101 | config->read_cycle = cycle; | ||
102 | |||
103 | /* Extend read cycle in needed */ | ||
104 | if (timing->nrd_recover > 0) | ||
105 | recover = ns2cyc(timing->nrd_recover); | ||
106 | else | ||
107 | recover = 1; | ||
108 | |||
109 | cycle = config->nrd_setup + config->nrd_pulse + recover; | ||
110 | |||
111 | if (config->read_cycle < cycle) | ||
112 | config->read_cycle = cycle; | ||
113 | |||
114 | /* Extend write cycle in needed */ | ||
115 | if (timing->ncs_write_recover > 0) | ||
116 | recover = ns2cyc(timing->ncs_write_recover); | ||
117 | else | ||
118 | recover = 1; | ||
119 | |||
120 | cycle = config->ncs_write_setup + config->ncs_write_pulse + recover; | ||
121 | |||
122 | if (config->write_cycle < cycle) | ||
123 | config->write_cycle = cycle; | ||
124 | |||
125 | /* Extend write cycle in needed */ | ||
126 | if (timing->nwe_recover > 0) | ||
127 | recover = ns2cyc(timing->nwe_recover); | ||
128 | else | ||
129 | recover = 1; | ||
130 | |||
131 | cycle = config->nwe_setup + config->nwe_pulse + recover; | ||
132 | |||
133 | if (config->write_cycle < cycle) | ||
134 | config->write_cycle = cycle; | ||
135 | } | ||
136 | EXPORT_SYMBOL(smc_set_timing); | ||
137 | |||
138 | int smc_set_configuration(int cs, const struct smc_config *config) | ||
139 | { | ||
140 | unsigned long offset; | ||
141 | u32 setup, pulse, cycle, mode; | ||
142 | |||
143 | if (!hsmc) | ||
144 | return -ENODEV; | ||
145 | if (cs >= NR_CHIP_SELECTS) | ||
146 | return -EINVAL; | ||
147 | |||
148 | setup = (HSMC_BF(NWE_SETUP, config->nwe_setup) | ||
149 | | HSMC_BF(NCS_WR_SETUP, config->ncs_write_setup) | ||
150 | | HSMC_BF(NRD_SETUP, config->nrd_setup) | ||
151 | | HSMC_BF(NCS_RD_SETUP, config->ncs_read_setup)); | ||
152 | pulse = (HSMC_BF(NWE_PULSE, config->nwe_pulse) | ||
153 | | HSMC_BF(NCS_WR_PULSE, config->ncs_write_pulse) | ||
154 | | HSMC_BF(NRD_PULSE, config->nrd_pulse) | ||
155 | | HSMC_BF(NCS_RD_PULSE, config->ncs_read_pulse)); | ||
156 | cycle = (HSMC_BF(NWE_CYCLE, config->write_cycle) | ||
157 | | HSMC_BF(NRD_CYCLE, config->read_cycle)); | ||
63 | 158 | ||
64 | switch (config->bus_width) { | 159 | switch (config->bus_width) { |
65 | case 1: | 160 | case 1: |
diff --git a/include/asm-avr32/arch-at32ap/smc.h b/include/asm-avr32/arch-at32ap/smc.h index 07152b7fd9c9..c98eea44a70a 100644 --- a/include/asm-avr32/arch-at32ap/smc.h +++ b/include/asm-avr32/arch-at32ap/smc.h | |||
@@ -15,22 +15,50 @@ | |||
15 | /* | 15 | /* |
16 | * All timing parameters are in nanoseconds. | 16 | * All timing parameters are in nanoseconds. |
17 | */ | 17 | */ |
18 | struct smc_timing { | ||
19 | /* Delay from address valid to assertion of given strobe */ | ||
20 | int ncs_read_setup; | ||
21 | int nrd_setup; | ||
22 | int ncs_write_setup; | ||
23 | int nwe_setup; | ||
24 | |||
25 | /* Pulse length of given strobe */ | ||
26 | int ncs_read_pulse; | ||
27 | int nrd_pulse; | ||
28 | int ncs_write_pulse; | ||
29 | int nwe_pulse; | ||
30 | |||
31 | /* Total cycle length of given operation */ | ||
32 | int read_cycle; | ||
33 | int write_cycle; | ||
34 | |||
35 | /* Minimal recovery times, will extend cycle if needed */ | ||
36 | int ncs_read_recover; | ||
37 | int nrd_recover; | ||
38 | int ncs_write_recover; | ||
39 | int nwe_recover; | ||
40 | }; | ||
41 | |||
42 | /* | ||
43 | * All timing parameters are in clock cycles. | ||
44 | */ | ||
18 | struct smc_config { | 45 | struct smc_config { |
46 | |||
19 | /* Delay from address valid to assertion of given strobe */ | 47 | /* Delay from address valid to assertion of given strobe */ |
20 | u16 ncs_read_setup; | 48 | u8 ncs_read_setup; |
21 | u16 nrd_setup; | 49 | u8 nrd_setup; |
22 | u16 ncs_write_setup; | 50 | u8 ncs_write_setup; |
23 | u16 nwe_setup; | 51 | u8 nwe_setup; |
24 | 52 | ||
25 | /* Pulse length of given strobe */ | 53 | /* Pulse length of given strobe */ |
26 | u16 ncs_read_pulse; | 54 | u8 ncs_read_pulse; |
27 | u16 nrd_pulse; | 55 | u8 nrd_pulse; |
28 | u16 ncs_write_pulse; | 56 | u8 ncs_write_pulse; |
29 | u16 nwe_pulse; | 57 | u8 nwe_pulse; |
30 | 58 | ||
31 | /* Total cycle length of given operation */ | 59 | /* Total cycle length of given operation */ |
32 | u16 read_cycle; | 60 | u8 read_cycle; |
33 | u16 write_cycle; | 61 | u8 write_cycle; |
34 | 62 | ||
35 | /* Bus width in bytes */ | 63 | /* Bus width in bytes */ |
36 | u8 bus_width; | 64 | u8 bus_width; |
@@ -76,6 +104,9 @@ struct smc_config { | |||
76 | unsigned int tdf_mode:1; | 104 | unsigned int tdf_mode:1; |
77 | }; | 105 | }; |
78 | 106 | ||
107 | extern void smc_set_timing(struct smc_config *config, | ||
108 | const struct smc_timing *timing); | ||
109 | |||
79 | extern int smc_set_configuration(int cs, const struct smc_config *config); | 110 | extern int smc_set_configuration(int cs, const struct smc_config *config); |
80 | extern struct smc_config *smc_get_configuration(int cs); | 111 | extern struct smc_config *smc_get_configuration(int cs); |
81 | 112 | ||