-
Notifications
You must be signed in to change notification settings - Fork 102
/
fmc.rs
219 lines (183 loc) · 6.19 KB
/
fmc.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
//! FMC Example
//!
//! Tested on a STM32H747I-DISCO
#![deny(warnings)]
#![no_main]
#![no_std]
use core::mem;
use core::slice;
#[macro_use]
#[allow(dead_code)]
mod utilities;
extern crate cortex_m;
use cortex_m_rt::entry;
use stm32h7xx_hal::gpio::Speed;
use stm32h7xx_hal::{pac, prelude::*};
use stm32_fmc::devices::is42s32800g_6;
/// Configre a pin for the FMC controller
macro_rules! fmc_pins {
($($pin:expr),*) => {
(
$(
$pin.into_push_pull_output()
.speed(Speed::VeryHigh)
.into_alternate::<12>()
.internal_pull_up(true)
),*
)
};
}
#[entry]
fn main() -> ! {
let mut cp = cortex_m::Peripherals::take().unwrap();
let dp = pac::Peripherals::take().unwrap();
// Initialise power...
let pwr = dp.PWR.constrain();
let pwrcfg = example_power!(pwr).freeze();
// Initialise clocks...
let rcc = dp.RCC.constrain();
let ccdr = rcc
.sys_ck(200.MHz())
.hclk(200.MHz()) // FMC clock from HCLK by default
.freeze(pwrcfg, &dp.SYSCFG);
// Get the delay provider.
let mut delay = cp.SYST.delay(ccdr.clocks);
// Initialise system...
cp.SCB.enable_icache();
// See Errata Sheet 2.2.1
//cp.SCB.enable_dcache(&mut cp.CPUID);
cp.DWT.enable_cycle_counter();
// Initialise IO...
let gpiod = dp.GPIOD.split(ccdr.peripheral.GPIOD);
let gpioe = dp.GPIOE.split(ccdr.peripheral.GPIOE);
let gpiof = dp.GPIOF.split(ccdr.peripheral.GPIOF);
let gpiog = dp.GPIOG.split(ccdr.peripheral.GPIOG);
let gpioh = dp.GPIOH.split(ccdr.peripheral.GPIOH);
let gpioi = dp.GPIOI.split(ccdr.peripheral.GPIOI);
// ----------------------------------------------------------
// Configure MPU for external SDRAM
// MPU config for SDRAM write-through
let sdram_size = 32 * 1024 * 1024;
{
let mpu = cp.MPU;
let scb = &mut cp.SCB;
let size = sdram_size;
// Refer to ARM®v7-M Architecture Reference Manual ARM DDI 0403
// Version E.b Section B3.5
const MEMFAULTENA: u32 = 1 << 16;
unsafe {
/* Make sure outstanding transfers are done */
cortex_m::asm::dmb();
scb.shcsr.modify(|r| r & !MEMFAULTENA);
/* Disable the MPU and clear the control register*/
mpu.ctrl.write(0);
}
const REGION_NUMBER0: u32 = 0x00;
const REGION_BASE_ADDRESS: u32 = 0xD000_0000;
const REGION_FULL_ACCESS: u32 = 0x03;
const REGION_CACHEABLE: u32 = 0x01;
const REGION_WRITE_BACK: u32 = 0x01;
const REGION_ENABLE: u32 = 0x01;
assert_eq!(
size & (size - 1),
0,
"SDRAM memory region size must be a power of 2"
);
assert_eq!(
size & 0x1F,
0,
"SDRAM memory region size must be 32 bytes or more"
);
fn log2minus1(sz: u32) -> u32 {
for i in 5..=31 {
if sz == (1 << i) {
return i - 1;
}
}
panic!("Unknown SDRAM memory region size!");
}
//info!("SDRAM Memory Size 0x{:x}", log2minus1(size as u32));
// Configure region 0
//
// Cacheable, outer and inner write-back, no write allocate. So
// reads are cached, but writes always write all the way to SDRAM
unsafe {
mpu.rnr.write(REGION_NUMBER0);
mpu.rbar.write(REGION_BASE_ADDRESS);
mpu.rasr.write(
(REGION_FULL_ACCESS << 24)
| (REGION_CACHEABLE << 17)
| (REGION_WRITE_BACK << 16)
| (log2minus1(size as u32) << 1)
| REGION_ENABLE,
);
}
const MPU_ENABLE: u32 = 0x01;
const MPU_DEFAULT_MMAP_FOR_PRIVILEGED: u32 = 0x04;
// Enable
unsafe {
mpu.ctrl
.modify(|r| r | MPU_DEFAULT_MMAP_FOR_PRIVILEGED | MPU_ENABLE);
scb.shcsr.modify(|r| r | MEMFAULTENA);
// Ensure MPU settings take effect
cortex_m::asm::dsb();
cortex_m::asm::isb();
}
}
// ----------------------------------------------------------
// SDRAM
// Initialise SDRAM...
let sdram_pins = fmc_pins! {
// A0-A11
gpiof.pf0, gpiof.pf1, gpiof.pf2, gpiof.pf3,
gpiof.pf4, gpiof.pf5, gpiof.pf12, gpiof.pf13,
gpiof.pf14, gpiof.pf15, gpiog.pg0, gpiog.pg1,
// BA0-BA1
gpiog.pg4, gpiog.pg5,
// D0-D31
gpiod.pd14, gpiod.pd15, gpiod.pd0, gpiod.pd1,
gpioe.pe7, gpioe.pe8, gpioe.pe9, gpioe.pe10,
gpioe.pe11, gpioe.pe12, gpioe.pe13, gpioe.pe14,
gpioe.pe15, gpiod.pd8, gpiod.pd9, gpiod.pd10,
gpioh.ph8, gpioh.ph9, gpioh.ph10, gpioh.ph11,
gpioh.ph12, gpioh.ph13, gpioh.ph14, gpioh.ph15,
gpioi.pi0, gpioi.pi1, gpioi.pi2, gpioi.pi3,
gpioi.pi6, gpioi.pi7, gpioi.pi9, gpioi.pi10,
// NBL0 - NBL3
gpioe.pe0, gpioe.pe1, gpioi.pi4, gpioi.pi5,
gpioh.ph7, // SDCKE1
gpiog.pg8, // SDCLK
gpiog.pg15, // SDNCAS
gpioh.ph6, // SDNE1 (!CS)
gpiof.pf11, // SDRAS
gpioh.ph5 // SDNWE
};
let mut sdram = dp.FMC.sdram(
sdram_pins,
is42s32800g_6::Is42s32800g {},
ccdr.peripheral.FMC,
&ccdr.clocks,
);
let ram_slice = unsafe {
// Initialise controller and SDRAM
let ram_ptr: *mut u32 = sdram.init(&mut delay);
// Get 16-bit words
let ram_ptr = ram_ptr as *mut u16;
// Convert raw pointer to slice
let ram_slice = slice::from_raw_parts_mut(ram_ptr, sdram_size);
// Return a 4-word slice
let size = mem::size_of::<u16>() * 4usize;
let mut chunks = ram_slice.chunks_exact_mut(size);
chunks.next().unwrap()
};
// ----------------------------------------------------------
// Use memory in SDRAM
ram_slice[0] = 1u16;
ram_slice[1] = 2;
ram_slice[2] = 3;
ram_slice[3] = 4;
assert_eq!(ram_slice[0], 1);
loop {
cortex_m::asm::nop()
}
}