File: README.socfpga

package info (click to toggle)
u-boot 2016.11%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 104,408 kB
  • ctags: 428,706
  • sloc: ansic: 1,260,674; asm: 33,807; python: 10,106; perl: 8,014; makefile: 7,111; sh: 1,975; cpp: 1,829; yacc: 604; lex: 363; tcl: 28; sed: 24; awk: 6
file content (53 lines) | stat: -rw-r--r-- 1,860 bytes parent folder | download | duplicates (2)
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

--------------------------------------------
SOCFPGA Documentation for U-Boot and SPL
--------------------------------------------

This README is about U-Boot and SPL support for Altera's ARM Cortex-A9MPCore
based SOCFPGA. To know more about the hardware itself, please refer to
www.altera.com.


--------------------------------------------
socfpga_dw_mmc
--------------------------------------------
Here are macro and detailed configuration required to enable DesignWare SDMMC
controller support within SOCFPGA

#define CONFIG_MMC
-> To enable the SD MMC framework support

#define CONFIG_SDMMC_BASE		(SOCFPGA_SDMMC_ADDRESS)
-> The base address of CSR register for DesignWare SDMMC controller

#define CONFIG_GENERIC_MMC
-> Enable the generic MMC driver

#define CONFIG_SYS_MMC_MAX_BLK_COUNT	256
-> Using smaller max blk cnt to avoid flooding the limited stack in OCRAM

#define CONFIG_DWMMC
-> Enable the common DesignWare SDMMC controller framework

#define CONFIG_SOCFPGA_DWMMC
-> Enable the SOCFPGA specific driver for DesignWare SDMMC controller

#define CONFIG_SOCFPGA_DWMMC_FIFO_DEPTH		1024
-> The FIFO depth for SOCFPGA DesignWare SDMMC controller

#define CONFIG_SOCFPGA_DWMMC_DRVSEL	3
-> Phase-shifted clock of sdmmc_clk for controller to drive command and data to
the card to meet hold time requirements. SD clock is running at 50MHz and
drvsel is set to shift 135 degrees (3 * 45 degrees). With that, the hold time
is 135 / 360 * 20ns = 7.5ns.

#define CONFIG_SOCFPGA_DWMMC_SMPSEL	0
-> Phase-shifted clock of sdmmc_clk used to sample the command and data from
the card

#define CONFIG_SOCFPGA_DWMMC_BUS_WIDTH	4
-> Bus width of data line which either 1, 4 or 8 and based on board routing.

#define CONFIG_SOCFPGA_DWMMC_BUS_HZ	50000000
-> The clock rate to controller. Do note the controller have a wrapper which
divide the clock from PLL by 4.