stm32_fmc/devices/
is42s32400f.rs1#[allow(unused)]
3
4pub mod is42s32400f_6 {
6 use crate::sdram::{SdramChip, SdramConfiguration, SdramTiming};
7
8 const BURST_LENGTH_1: u16 = 0x0000;
9 const BURST_LENGTH_2: u16 = 0x0001;
10 const BURST_LENGTH_4: u16 = 0x0002;
11 const BURST_LENGTH_8: u16 = 0x0004;
12 const BURST_TYPE_SEQUENTIAL: u16 = 0x0000;
13 const BURST_TYPE_INTERLEAVED: u16 = 0x0008;
14 const CAS_LATENCY_2: u16 = 0x0020;
15 const CAS_LATENCY_3: u16 = 0x0030;
16 const OPERATING_MODE_STANDARD: u16 = 0x0000;
17 const WRITEBURST_MODE_PROGRAMMED: u16 = 0x0000;
18 const WRITEBURST_MODE_SINGLE: u16 = 0x0200;
19
20 #[derive(Clone, Copy, Debug, PartialEq)]
22 pub struct Is42s32400f6 {}
23
24 impl SdramChip for Is42s32400f6 {
25 const MODE_REGISTER: u16 = BURST_LENGTH_1
27 | BURST_TYPE_SEQUENTIAL
28 | CAS_LATENCY_3
29 | OPERATING_MODE_STANDARD
30 | WRITEBURST_MODE_SINGLE;
31
32 const TIMING: SdramTiming = SdramTiming {
34 startup_delay_ns: 100_000, max_sd_clock_hz: 100_000_000, refresh_period_ns: 15_625, mode_register_to_active: 2, exit_self_refresh: 7, active_to_precharge: 4, row_cycle: 6, row_precharge: 2, row_to_column: 2, };
44
45 const CONFIG: SdramConfiguration = SdramConfiguration {
47 column_bits: 8,
48 row_bits: 12,
49 memory_data_width: 32, internal_banks: 4, cas_latency: 3, write_protection: false,
53 read_burst: true,
54 read_pipe_delay_cycles: 0,
55 };
56 }
57}