blob: 42eb9c2c84e5efb00ce118f17960f1fce51bbe4f [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 Vasute94cad92018-04-08 15:22:58 +020020#include "matsushita-common.h"
Masahiro Yamada4eb00842016-08-25 14:52:36 +090021
22static const struct dm_mmc_ops uniphier_sd_ops = {
Marek Vasute94cad92018-04-08 15:22:58 +020023 .send_cmd = matsu_sd_send_cmd,
24 .set_ios = matsu_sd_set_ios,
25 .get_cd = matsu_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{
35 return matsu_sd_probe(dev, 0);
36}
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 Vasute94cad92018-04-08 15:22:58 +020042 .bind = matsu_sd_bind,
Marek Vasutc769e602018-04-08 17:45:23 +020043 .probe = uniphier_sd_probe,
Marek Vasute94cad92018-04-08 15:22:58 +020044 .priv_auto_alloc_size = sizeof(struct matsu_sd_priv),
45 .platdata_auto_alloc_size = sizeof(struct matsu_sd_plat),
Masahiro Yamada39374042016-08-25 14:52:35 +090046 .ops = &uniphier_sd_ops,
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090047};