blob: 8f89bda2331c35c13e51ded41e9d2530874743d2 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +09002/*
Masahiro Yamada4e3d8402016-07-19 21:56:13 +09003 * Copyright (C) 2016 Socionext Inc.
4 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +09005 */
6
7#include <common.h>
8#include <clk.h>
9#include <fdtdec.h>
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090010#include <mmc.h>
Simon Glass9d922452017-05-17 17:18:03 -060011#include <dm.h>
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090012#include <linux/compat.h>
Masahiro Yamadab27af392017-08-26 00:50:17 +090013#include <linux/dma-direction.h>
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090014#include <linux/io.h>
Masahiro Yamada4f805012016-03-24 22:32:42 +090015#include <linux/sizes.h>
Marek Vasut9f130212017-09-15 21:10:54 +020016#include <power/regulator.h>
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090017#include <asm/unaligned.h>
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090018
Marek Vasutcb0b6b02018-04-13 23:51:33 +020019#include "tmio-common.h"
Masahiro Yamada4eb00842016-08-25 14:52:36 +090020
21static const struct dm_mmc_ops uniphier_sd_ops = {
Marek Vasutcb0b6b02018-04-13 23:51:33 +020022 .send_cmd = tmio_sd_send_cmd,
23 .set_ios = tmio_sd_set_ios,
24 .get_cd = tmio_sd_get_cd,
Masahiro Yamada4eb00842016-08-25 14:52:36 +090025};
26
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090027static const struct udevice_id uniphier_sd_match[] = {
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +090028 { .compatible = "socionext,uniphier-sd-v2.91" },
29 { .compatible = "socionext,uniphier-sd-v3.1" },
30 { .compatible = "socionext,uniphier-sd-v3.1.1" },
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090031 { /* sentinel */ }
32};
33
Marek Vasut8ec6a042018-06-13 08:02:55 +020034static ulong uniphier_sd_clk_get_rate(struct tmio_sd_priv *priv)
35{
36#if CONFIG_IS_ENABLED(CLK)
37 return clk_get_rate(&priv->clk);
38#elif CONFIG_SPL_BUILD
39 return 100000000;
40#else
41 return 0;
42#endif
43}
44
Marek Vasutc769e602018-04-08 17:45:23 +020045static int uniphier_sd_probe(struct udevice *dev)
46{
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +090047 struct tmio_sd_priv *priv = dev_get_priv(dev);
Marek Vasut8ec6a042018-06-13 08:02:55 +020048
49 priv->clk_get_rate = uniphier_sd_clk_get_rate;
Marek Vasut992bcf42019-01-11 23:45:54 +010050 priv->read_poll_flag = TMIO_SD_DMA_INFO1_END_RD2;
Marek Vasut8ec6a042018-06-13 08:02:55 +020051
Masahiro Yamadafc2d0302018-04-20 18:14:25 +090052#ifndef CONFIG_SPL_BUILD
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +090053 int ret;
54
Marek Vasut8ec6a042018-06-13 08:02:55 +020055 ret = clk_get_by_index(dev, 0, &priv->clk);
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +090056 if (ret < 0) {
57 dev_err(dev, "failed to get host clock\n");
58 return ret;
59 }
60
61 /* set to max rate */
Marek Vasut8ec6a042018-06-13 08:02:55 +020062 ret = clk_set_rate(&priv->clk, ULONG_MAX);
63 if (ret < 0) {
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +090064 dev_err(dev, "failed to set rate for host clock\n");
Marek Vasut8ec6a042018-06-13 08:02:55 +020065 clk_free(&priv->clk);
66 return ret;
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +090067 }
68
Marek Vasut8ec6a042018-06-13 08:02:55 +020069 ret = clk_enable(&priv->clk);
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +090070 if (ret) {
71 dev_err(dev, "failed to enable host clock\n");
72 return ret;
73 }
Masahiro Yamadafc2d0302018-04-20 18:14:25 +090074#endif
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +090075
Marek Vasutcb0b6b02018-04-13 23:51:33 +020076 return tmio_sd_probe(dev, 0);
Marek Vasutc769e602018-04-08 17:45:23 +020077}
78
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090079U_BOOT_DRIVER(uniphier_mmc) = {
80 .name = "uniphier-mmc",
81 .id = UCLASS_MMC,
82 .of_match = uniphier_sd_match,
Marek Vasutcb0b6b02018-04-13 23:51:33 +020083 .bind = tmio_sd_bind,
Marek Vasutc769e602018-04-08 17:45:23 +020084 .probe = uniphier_sd_probe,
Marek Vasutcb0b6b02018-04-13 23:51:33 +020085 .priv_auto_alloc_size = sizeof(struct tmio_sd_priv),
86 .platdata_auto_alloc_size = sizeof(struct tmio_sd_plat),
Masahiro Yamada39374042016-08-25 14:52:35 +090087 .ops = &uniphier_sd_ops,
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090088};