blob: 72f0d4675826d62b20753dbfae8c2543da3a54ba [file] [log] [blame]
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +09001/*
Masahiro Yamadafa1f73f2016-07-19 21:56:13 +09002 * Copyright (C) 2016 Socionext Inc.
3 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamadaa0cfcc02016-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 Yamadaa0cfcc02016-02-18 19:52:48 +090011#include <mmc.h>
Simon Glass11c89f32017-05-17 17:18:03 -060012#include <dm.h>
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +090013#include <linux/compat.h>
Masahiro Yamadaef205ea2017-08-26 00:50:17 +090014#include <linux/dma-direction.h>
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +090015#include <linux/io.h>
Masahiro Yamadadc158ef2016-03-24 22:32:42 +090016#include <linux/sizes.h>
Marek Vasut10f0c3c2017-09-15 21:10:54 +020017#include <power/regulator.h>
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +090018#include <asm/unaligned.h>
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +090019
Marek Vasut06485cf2018-04-08 15:22:58 +020020#include "matsushita-common.h"
Masahiro Yamadab29afb92016-08-25 14:52:36 +090021
22static const struct dm_mmc_ops uniphier_sd_ops = {
Marek Vasut06485cf2018-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 Yamadab29afb92016-08-25 14:52:36 +090026};
27
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +090028static const struct udevice_id uniphier_sd_match[] = {
Marek Vasutcd36d412017-07-21 23:24:35 +020029 { .compatible = "socionext,uniphier-sdhc", .data = 0 },
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +090030 { /* sentinel */ }
31};
32
33U_BOOT_DRIVER(uniphier_mmc) = {
34 .name = "uniphier-mmc",
35 .id = UCLASS_MMC,
36 .of_match = uniphier_sd_match,
Marek Vasut06485cf2018-04-08 15:22:58 +020037 .bind = matsu_sd_bind,
38 .probe = matsu_sd_probe,
39 .priv_auto_alloc_size = sizeof(struct matsu_sd_priv),
40 .platdata_auto_alloc_size = sizeof(struct matsu_sd_plat),
Masahiro Yamadab26daaa2016-08-25 14:52:35 +090041 .ops = &uniphier_sd_ops,
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +090042};