diff options
| author | Chin Liang See <clsee@altera.com> | 2013-12-30 18:26:14 -0600 | 
|---|---|---|
| committer | Pantelis Antoniou <panto@antoniou-consulting.com> | 2014-01-09 11:53:55 +0200 | 
| commit | c5c1af21764d9423b45c1d03e835c4547a8bc5cb (patch) | |
| tree | 9677624d4c2471a0e9b4c623d8ad982964c7fd50 /arch/arm/include/asm/arch-socfpga/dwmmc.h | |
| parent | ab71188ce87ebb66192a5bdbbb9d58052bd32d93 (diff) | |
| download | olio-uboot-2014.01-c5c1af21764d9423b45c1d03e835c4547a8bc5cb.tar.xz olio-uboot-2014.01-c5c1af21764d9423b45c1d03e835c4547a8bc5cb.zip | |
socfpga/dwmmc: Adding DesignWare MMC driver support for SOCFPGA
To add the DesignWare MMC driver support for Altera SOCFPGA. It
required information such as clocks and bus width from platform
specific files (SOCFPGA handoff files)
Signed-off-by: Chin Liang See <clsee@altera.com>
Cc: Rajeshwari Shinde <rajeshwari.s@samsung.com>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Cc: Pantelis Antoniou <panto@antoniou-consulting.com>
Cc: Wolfgang Denk <wd@denx.de>
Acked-by: Pantelis Antoniou <panto@antoniou-consulting.com>
Diffstat (limited to 'arch/arm/include/asm/arch-socfpga/dwmmc.h')
| -rw-r--r-- | arch/arm/include/asm/arch-socfpga/dwmmc.h | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/arch/arm/include/asm/arch-socfpga/dwmmc.h b/arch/arm/include/asm/arch-socfpga/dwmmc.h new file mode 100644 index 000000000..945eb646c --- /dev/null +++ b/arch/arm/include/asm/arch-socfpga/dwmmc.h @@ -0,0 +1,12 @@ +/* + * (C) Copyright 2013 Altera Corporation <www.altera.com> + * + * SPDX-License-Identifier:	GPL-2.0+ + */ + +#ifndef	_SOCFPGA_DWMMC_H_ +#define	_SOCFPGA_DWMMC_H_ + +extern int socfpga_dwmmc_init(u32 regbase, int bus_width, int index); + +#endif /* _SOCFPGA_SDMMC_H_ */ |