blob: 47379b0328e6208aa37d7bf316091fecf5a4055b [file] [log] [blame]
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +09001/*
Masahiro Yamada4e3d8402016-07-19 21:56:13 +09002 * Copyright (C) 2016 Socionext Inc.
3 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +09004 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9#include <clk.h>
10#include <fdtdec.h>
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090011#include <mmc.h>
Simon Glass9d922452017-05-17 17:18:03 -060012#include <dm.h>
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090013#include <linux/compat.h>
Masahiro Yamadab27af392017-08-26 00:50:17 +090014#include <linux/dma-direction.h>
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090015#include <linux/io.h>
Masahiro Yamada4f805012016-03-24 22:32:42 +090016#include <linux/sizes.h>
Marek Vasut9f130212017-09-15 21:10:54 +020017#include <power/regulator.h>
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090018#include <asm/unaligned.h>
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090019
Marek Vasutcb0b6b02018-04-13 23:51:33 +020020#include "tmio-common.h"
Masahiro Yamada4eb00842016-08-25 14:52:36 +090021
22static const struct dm_mmc_ops uniphier_sd_ops = {
Marek Vasutcb0b6b02018-04-13 23:51:33 +020023 .send_cmd = tmio_sd_send_cmd,
24 .set_ios = tmio_sd_set_ios,
25 .get_cd = tmio_sd_get_cd,
Masahiro Yamada4eb00842016-08-25 14:52:36 +090026};
27
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090028static const struct udevice_id uniphier_sd_match[] = {
Marek Vasut4b26d5e2017-07-21 23:24:35 +020029 { .compatible = "socionext,uniphier-sdhc", .data = 0 },
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090030 { /* sentinel */ }
31};
32
Marek Vasutc769e602018-04-08 17:45:23 +020033static int uniphier_sd_probe(struct udevice *dev)
34{
Marek Vasutcb0b6b02018-04-13 23:51:33 +020035 return tmio_sd_probe(dev, 0);
Marek Vasutc769e602018-04-08 17:45:23 +020036}
37
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090038U_BOOT_DRIVER(uniphier_mmc) = {
39 .name = "uniphier-mmc",
40 .id = UCLASS_MMC,
41 .of_match = uniphier_sd_match,
Marek Vasutcb0b6b02018-04-13 23:51:33 +020042 .bind = tmio_sd_bind,
Marek Vasutc769e602018-04-08 17:45:23 +020043 .probe = uniphier_sd_probe,
Marek Vasutcb0b6b02018-04-13 23:51:33 +020044 .priv_auto_alloc_size = sizeof(struct tmio_sd_priv),
45 .platdata_auto_alloc_size = sizeof(struct tmio_sd_plat),
Masahiro Yamada39374042016-08-25 14:52:35 +090046 .ops = &uniphier_sd_ops,
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090047};