Masahiro Yamada | a0cfcc0 | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 1 | /* |
Masahiro Yamada | fa1f73f | 2016-07-19 21:56:13 +0900 | [diff] [blame] | 2 | * Copyright (C) 2016 Socionext Inc. |
| 3 | * Author: Masahiro Yamada <yamada.masahiro@socionext.com> |
Masahiro Yamada | a0cfcc0 | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <clk.h> |
| 10 | #include <fdtdec.h> |
Masahiro Yamada | a0cfcc0 | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 11 | #include <mmc.h> |
Simon Glass | 11c89f3 | 2017-05-17 17:18:03 -0600 | [diff] [blame] | 12 | #include <dm.h> |
Masahiro Yamada | a0cfcc0 | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 13 | #include <linux/compat.h> |
Masahiro Yamada | ef205ea | 2017-08-26 00:50:17 +0900 | [diff] [blame] | 14 | #include <linux/dma-direction.h> |
Masahiro Yamada | a0cfcc0 | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 15 | #include <linux/io.h> |
Masahiro Yamada | dc158ef | 2016-03-24 22:32:42 +0900 | [diff] [blame] | 16 | #include <linux/sizes.h> |
Marek Vasut | 10f0c3c | 2017-09-15 21:10:54 +0200 | [diff] [blame] | 17 | #include <power/regulator.h> |
Masahiro Yamada | a0cfcc0 | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 18 | #include <asm/unaligned.h> |
Masahiro Yamada | a0cfcc0 | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 19 | |
Marek Vasut | fd83e76 | 2018-04-13 23:51:33 +0200 | [diff] [blame] | 20 | #include "tmio-common.h" |
Masahiro Yamada | b29afb9 | 2016-08-25 14:52:36 +0900 | [diff] [blame] | 21 | |
| 22 | static const struct dm_mmc_ops uniphier_sd_ops = { |
Marek Vasut | fd83e76 | 2018-04-13 23:51:33 +0200 | [diff] [blame] | 23 | .send_cmd = tmio_sd_send_cmd, |
| 24 | .set_ios = tmio_sd_set_ios, |
| 25 | .get_cd = tmio_sd_get_cd, |
Masahiro Yamada | b29afb9 | 2016-08-25 14:52:36 +0900 | [diff] [blame] | 26 | }; |
| 27 | |
Masahiro Yamada | a0cfcc0 | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 28 | static const struct udevice_id uniphier_sd_match[] = { |
Marek Vasut | cd36d41 | 2017-07-21 23:24:35 +0200 | [diff] [blame] | 29 | { .compatible = "socionext,uniphier-sdhc", .data = 0 }, |
Masahiro Yamada | a0cfcc0 | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 30 | { /* sentinel */ } |
| 31 | }; |
| 32 | |
Marek Vasut | abe3e95 | 2018-04-08 17:45:23 +0200 | [diff] [blame] | 33 | static int uniphier_sd_probe(struct udevice *dev) |
| 34 | { |
Marek Vasut | fd83e76 | 2018-04-13 23:51:33 +0200 | [diff] [blame] | 35 | return tmio_sd_probe(dev, 0); |
Marek Vasut | abe3e95 | 2018-04-08 17:45:23 +0200 | [diff] [blame] | 36 | } |
| 37 | |
Masahiro Yamada | a0cfcc0 | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 38 | U_BOOT_DRIVER(uniphier_mmc) = { |
| 39 | .name = "uniphier-mmc", |
| 40 | .id = UCLASS_MMC, |
| 41 | .of_match = uniphier_sd_match, |
Marek Vasut | fd83e76 | 2018-04-13 23:51:33 +0200 | [diff] [blame] | 42 | .bind = tmio_sd_bind, |
Marek Vasut | abe3e95 | 2018-04-08 17:45:23 +0200 | [diff] [blame] | 43 | .probe = uniphier_sd_probe, |
Marek Vasut | fd83e76 | 2018-04-13 23:51:33 +0200 | [diff] [blame] | 44 | .priv_auto_alloc_size = sizeof(struct tmio_sd_priv), |
| 45 | .platdata_auto_alloc_size = sizeof(struct tmio_sd_plat), |
Masahiro Yamada | b26daaa | 2016-08-25 14:52:35 +0900 | [diff] [blame] | 46 | .ops = &uniphier_sd_ops, |
Masahiro Yamada | a0cfcc0 | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 47 | }; |