Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Peter Griffin | 447da58 | 2015-07-30 18:55:22 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2015 Linaro |
| 4 | * peter.griffin <peter.griffin@linaro.org> |
Peter Griffin | 447da58 | 2015-07-30 18:55:22 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <dwmmc.h> |
| 9 | #include <malloc.h> |
Masahiro Yamada | 5d97dff | 2016-09-21 11:28:57 +0900 | [diff] [blame] | 10 | #include <linux/errno.h> |
Peter Griffin | 447da58 | 2015-07-30 18:55:22 +0100 | [diff] [blame] | 11 | |
| 12 | #define DWMMC_MAX_CH_NUM 4 |
| 13 | |
| 14 | #define DWMMC_MAX_FREQ 50000000 |
| 15 | #define DWMMC_MIN_FREQ 400000 |
| 16 | |
| 17 | /* Source clock is configured to 100MHz by ATF bl1*/ |
| 18 | #define MMC0_DEFAULT_FREQ 100000000 |
| 19 | |
| 20 | static int hi6220_dwmci_core_init(struct dwmci_host *host, int index) |
| 21 | { |
Jorge Ramirez-Ortiz | fc50a6c | 2017-06-26 15:52:48 +0200 | [diff] [blame] | 22 | host->name = "Hisilicon DWMMC"; |
Peter Griffin | 447da58 | 2015-07-30 18:55:22 +0100 | [diff] [blame] | 23 | |
| 24 | host->dev_index = index; |
| 25 | |
| 26 | /* Add the mmc channel to be registered with mmc core */ |
| 27 | if (add_dwmci(host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ)) { |
| 28 | printf("DWMMC%d registration failed\n", index); |
| 29 | return -1; |
| 30 | } |
| 31 | return 0; |
| 32 | } |
| 33 | |
| 34 | /* |
| 35 | * This function adds the mmc channel to be registered with mmc core. |
| 36 | * index - mmc channel number. |
| 37 | * regbase - register base address of mmc channel specified in 'index'. |
| 38 | * bus_width - operating bus width of mmc channel specified in 'index'. |
| 39 | */ |
| 40 | int hi6220_dwmci_add_port(int index, u32 regbase, int bus_width) |
| 41 | { |
| 42 | struct dwmci_host *host = NULL; |
| 43 | |
| 44 | host = calloc(1, sizeof(struct dwmci_host)); |
| 45 | if (!host) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 46 | pr_err("dwmci_host calloc failed!\n"); |
Peter Griffin | 447da58 | 2015-07-30 18:55:22 +0100 | [diff] [blame] | 47 | return -ENOMEM; |
| 48 | } |
| 49 | |
Prabhakar Kushwaha | 41f7be3 | 2015-10-25 13:18:25 +0530 | [diff] [blame] | 50 | host->ioaddr = (void *)(ulong)regbase; |
Peter Griffin | 447da58 | 2015-07-30 18:55:22 +0100 | [diff] [blame] | 51 | host->buswidth = bus_width; |
| 52 | host->bus_hz = MMC0_DEFAULT_FREQ; |
| 53 | |
| 54 | return hi6220_dwmci_core_init(host, index); |
| 55 | } |