blob: ad5dbb3433aecfd3d0b2b055b5df706d0c8689e5 [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[] = {
Marek Vasut4b26d5e2017-07-21 23:24:35 +020028 { .compatible = "socionext,uniphier-sdhc", .data = 0 },
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090029 { /* sentinel */ }
30};
31
Marek Vasutc769e602018-04-08 17:45:23 +020032static int uniphier_sd_probe(struct udevice *dev)
33{
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +090034 struct tmio_sd_priv *priv = dev_get_priv(dev);
Masahiro Yamadafc2d0302018-04-20 18:14:25 +090035#ifndef CONFIG_SPL_BUILD
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +090036 struct clk clk;
37 int ret;
38
39 ret = clk_get_by_index(dev, 0, &clk);
40 if (ret < 0) {
41 dev_err(dev, "failed to get host clock\n");
42 return ret;
43 }
44
45 /* set to max rate */
46 priv->mclk = clk_set_rate(&clk, ULONG_MAX);
47 if (IS_ERR_VALUE(priv->mclk)) {
48 dev_err(dev, "failed to set rate for host clock\n");
49 clk_free(&clk);
50 return priv->mclk;
51 }
52
53 ret = clk_enable(&clk);
54 clk_free(&clk);
55 if (ret) {
56 dev_err(dev, "failed to enable host clock\n");
57 return ret;
58 }
Masahiro Yamadafc2d0302018-04-20 18:14:25 +090059#else
60 priv->mclk = 100000000;
61#endif
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +090062
Marek Vasutcb0b6b02018-04-13 23:51:33 +020063 return tmio_sd_probe(dev, 0);
Marek Vasutc769e602018-04-08 17:45:23 +020064}
65
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090066U_BOOT_DRIVER(uniphier_mmc) = {
67 .name = "uniphier-mmc",
68 .id = UCLASS_MMC,
69 .of_match = uniphier_sd_match,
Marek Vasutcb0b6b02018-04-13 23:51:33 +020070 .bind = tmio_sd_bind,
Marek Vasutc769e602018-04-08 17:45:23 +020071 .probe = uniphier_sd_probe,
Marek Vasutcb0b6b02018-04-13 23:51:33 +020072 .priv_auto_alloc_size = sizeof(struct tmio_sd_priv),
73 .platdata_auto_alloc_size = sizeof(struct tmio_sd_plat),
Masahiro Yamada39374042016-08-25 14:52:35 +090074 .ops = &uniphier_sd_ops,
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090075};