blob: fb01958cb18e6127ef7e82c8f2ea60bfa6eb30a7 [file] [log] [blame]
Albert Herranz1144ab52009-12-17 15:27:20 -08001/*
2 * drivers/mmc/host/sdhci-of-hlwd.c
3 *
4 * Nintendo Wii Secure Digital Host Controller Interface.
5 * Copyright (C) 2009 The GameCube Linux Team
6 * Copyright (C) 2009 Albert Herranz
7 *
8 * Based on sdhci-of-esdhc.c
9 *
10 * Copyright (c) 2007 Freescale Semiconductor, Inc.
11 * Copyright (c) 2009 MontaVista Software, Inc.
12 *
13 * Authors: Xiaobo Xie <X.Xie@freescale.com>
14 * Anton Vorontsov <avorontsov@ru.mvista.com>
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or (at
19 * your option) any later version.
20 */
21
22#include <linux/delay.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040023#include <linux/module.h>
Albert Herranz1144ab52009-12-17 15:27:20 -080024#include <linux/mmc/host.h>
Shawn Guo38576af2011-05-27 23:48:14 +080025#include "sdhci-pltfm.h"
Albert Herranz1144ab52009-12-17 15:27:20 -080026
27/*
28 * Ops and quirks for the Nintendo Wii SDHCI controllers.
29 */
30
31/*
32 * We need a small delay after each write, or things go horribly wrong.
33 */
34#define SDHCI_HLWD_WRITE_DELAY 5 /* usecs */
35
36static void sdhci_hlwd_writel(struct sdhci_host *host, u32 val, int reg)
37{
38 sdhci_be32bs_writel(host, val, reg);
39 udelay(SDHCI_HLWD_WRITE_DELAY);
40}
41
42static void sdhci_hlwd_writew(struct sdhci_host *host, u16 val, int reg)
43{
44 sdhci_be32bs_writew(host, val, reg);
45 udelay(SDHCI_HLWD_WRITE_DELAY);
46}
47
48static void sdhci_hlwd_writeb(struct sdhci_host *host, u8 val, int reg)
49{
50 sdhci_be32bs_writeb(host, val, reg);
51 udelay(SDHCI_HLWD_WRITE_DELAY);
52}
53
Lars-Peter Clausenc9155682013-03-13 19:26:05 +010054static const struct sdhci_ops sdhci_hlwd_ops = {
Shawn Guoe3071482011-07-20 17:13:36 -040055 .read_l = sdhci_be32bs_readl,
56 .read_w = sdhci_be32bs_readw,
57 .read_b = sdhci_be32bs_readb,
58 .write_l = sdhci_hlwd_writel,
59 .write_w = sdhci_hlwd_writew,
60 .write_b = sdhci_hlwd_writeb,
Russell King2317f562014-04-25 12:57:07 +010061 .set_bus_width = sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +010062 .reset = sdhci_reset,
Shawn Guoe3071482011-07-20 17:13:36 -040063};
64
Lars-Peter Clausen1db5eeb2013-03-13 19:26:03 +010065static const struct sdhci_pltfm_data sdhci_hlwd_pdata = {
Albert Herranz1144ab52009-12-17 15:27:20 -080066 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
67 SDHCI_QUIRK_32BIT_DMA_SIZE,
Shawn Guoe3071482011-07-20 17:13:36 -040068 .ops = &sdhci_hlwd_ops,
Albert Herranz1144ab52009-12-17 15:27:20 -080069};
Shawn Guo38576af2011-05-27 23:48:14 +080070
Bill Pembertonc3be1ef2012-11-19 13:23:06 -050071static int sdhci_hlwd_probe(struct platform_device *pdev)
Shawn Guo38576af2011-05-27 23:48:14 +080072{
Christian Daudt0e748232013-05-29 13:50:05 -070073 return sdhci_pltfm_register(pdev, &sdhci_hlwd_pdata, 0);
Shawn Guo38576af2011-05-27 23:48:14 +080074}
75
Bill Pemberton6e0ee712012-11-19 13:26:03 -050076static int sdhci_hlwd_remove(struct platform_device *pdev)
Shawn Guo38576af2011-05-27 23:48:14 +080077{
78 return sdhci_pltfm_unregister(pdev);
79}
80
81static const struct of_device_id sdhci_hlwd_of_match[] = {
82 { .compatible = "nintendo,hollywood-sdhci" },
83 { }
84};
85MODULE_DEVICE_TABLE(of, sdhci_hlwd_of_match);
86
87static struct platform_driver sdhci_hlwd_driver = {
88 .driver = {
89 .name = "sdhci-hlwd",
90 .owner = THIS_MODULE,
91 .of_match_table = sdhci_hlwd_of_match,
Manuel Lauss29495aa2011-11-03 11:09:45 +010092 .pm = SDHCI_PLTFM_PMOPS,
Shawn Guo38576af2011-05-27 23:48:14 +080093 },
94 .probe = sdhci_hlwd_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -050095 .remove = sdhci_hlwd_remove,
Shawn Guo38576af2011-05-27 23:48:14 +080096};
97
Axel Lind1f81a62011-11-26 12:55:43 +080098module_platform_driver(sdhci_hlwd_driver);
Shawn Guo38576af2011-05-27 23:48:14 +080099
100MODULE_DESCRIPTION("Nintendo Wii SDHCI OF driver");
101MODULE_AUTHOR("The GameCube Linux Team, Albert Herranz");
102MODULE_LICENSE("GPL v2");