Vikas Manocha | fd198ee | 2017-04-10 15:02:53 -0700 | [diff] [blame] | 1 | ST, stm32 flexible memory controller Drive |
| 2 | Required properties: |
| 3 | - compatible : "st,stm32-fmc" |
| 4 | - reg : fmc controller base address |
| 5 | - clocks : fmc controller clock |
| 6 | u-boot,dm-pre-reloc: flag to initialize memory before relocation. |
| 7 | |
| 8 | on-board sdram memory attributes: |
| 9 | - st,sdram-control : parameters for sdram configuration, in this order: |
| 10 | number of columns |
| 11 | number of rows |
| 12 | memory width |
| 13 | number of intenal banks in memory |
| 14 | cas latency |
| 15 | read burst enable or disable |
| 16 | read pipe delay |
| 17 | |
| 18 | - st,sdram-timing: timings for sdram, in this order: |
| 19 | tmrd |
| 20 | txsr |
| 21 | tras |
| 22 | trc |
| 23 | trp |
| 24 | trcd |
| 25 | |
| 26 | There is device tree include file at : |
| 27 | include/dt-bindings/memory/stm32-sdram.h to define sdram control and timing |
| 28 | parameters as MACROS. |
| 29 | |
| 30 | Example: |
| 31 | fmc: fmc@A0000000 { |
| 32 | compatible = "st,stm32-fmc"; |
| 33 | reg = <0xA0000000 0x1000>; |
| 34 | clocks = <&rcc 0 64>; |
| 35 | u-boot,dm-pre-reloc; |
| 36 | }; |
| 37 | |
| 38 | &fmc { |
| 39 | pinctrl-0 = <&fmc_pins>; |
| 40 | pinctrl-names = "default"; |
| 41 | status = "okay"; |
| 42 | |
Vikas Manocha | fd198ee | 2017-04-10 15:02:53 -0700 | [diff] [blame] | 43 | /* sdram memory configuration from sdram datasheet */ |
Patrice Chotard | f303aaf | 2017-07-18 17:37:27 +0200 | [diff] [blame] | 44 | bank1: bank@0 { |
| 45 | st,sdram-control = /bits/ 8 <NO_COL_8 NO_ROW_12 MWIDTH_16 BANKS_2 |
Vikas Manocha | fd198ee | 2017-04-10 15:02:53 -0700 | [diff] [blame] | 46 | CAS_3 RD_BURST_EN RD_PIPE_DL_0>; |
Patrice Chotard | f303aaf | 2017-07-18 17:37:27 +0200 | [diff] [blame] | 47 | st,sdram-timing = /bits/ 8 <TMRD_1 TXSR_60 TRAS_42 TRC_60 TRP_18 |
Vikas Manocha | fd198ee | 2017-04-10 15:02:53 -0700 | [diff] [blame] | 48 | TRCD_18>; |
Patrice Chotard | f303aaf | 2017-07-18 17:37:27 +0200 | [diff] [blame] | 49 | }; |
| 50 | |
| 51 | /* sdram memory configuration from sdram datasheet */ |
| 52 | bank2: bank@1 { |
| 53 | st,sdram-control = /bits/ 8 <NO_COL_8 NO_ROW_12 MWIDTH_16 BANKS_2 |
| 54 | CAS_3 RD_BURST_EN RD_PIPE_DL_0>; |
| 55 | st,sdram-timing = /bits/ 8 <TMRD_1 TXSR_60 TRAS_42 TRC_60 TRP_18 |
| 56 | TRCD_18>; |
| 57 | }; |
| 58 | } |