| 
									
										
										
										
											2009-12-17 15:27:20 -08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * drivers/mmc/host/sdhci-of-hlwd.c | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Nintendo Wii Secure Digital Host Controller Interface. | 
					
						
							|  |  |  |  * Copyright (C) 2009 The GameCube Linux Team | 
					
						
							|  |  |  |  * Copyright (C) 2009 Albert Herranz | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Based on sdhci-of-esdhc.c | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2007 Freescale Semiconductor, Inc. | 
					
						
							|  |  |  |  * Copyright (c) 2009 MontaVista Software, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Authors: Xiaobo Xie <X.Xie@freescale.com> | 
					
						
							|  |  |  |  *	    Anton Vorontsov <avorontsov@ru.mvista.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation; either version 2 of the License, or (at | 
					
						
							|  |  |  |  * your option) any later version. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/delay.h>
 | 
					
						
							| 
									
										
										
										
											2011-07-03 15:15:51 -04:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2009-12-17 15:27:20 -08:00
										 |  |  | #include <linux/mmc/host.h>
 | 
					
						
							| 
									
										
										
										
											2011-05-27 23:48:14 +08:00
										 |  |  | #include "sdhci-pltfm.h"
 | 
					
						
							| 
									
										
										
										
											2009-12-17 15:27:20 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Ops and quirks for the Nintendo Wii SDHCI controllers. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * We need a small delay after each write, or things go horribly wrong. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define SDHCI_HLWD_WRITE_DELAY	5 /* usecs */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void sdhci_hlwd_writel(struct sdhci_host *host, u32 val, int reg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	sdhci_be32bs_writel(host, val, reg); | 
					
						
							|  |  |  | 	udelay(SDHCI_HLWD_WRITE_DELAY); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void sdhci_hlwd_writew(struct sdhci_host *host, u16 val, int reg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	sdhci_be32bs_writew(host, val, reg); | 
					
						
							|  |  |  | 	udelay(SDHCI_HLWD_WRITE_DELAY); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void sdhci_hlwd_writeb(struct sdhci_host *host, u8 val, int reg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	sdhci_be32bs_writeb(host, val, reg); | 
					
						
							|  |  |  | 	udelay(SDHCI_HLWD_WRITE_DELAY); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-13 19:26:05 +01:00
										 |  |  | static const struct sdhci_ops sdhci_hlwd_ops = { | 
					
						
							| 
									
										
										
										
											2011-07-20 17:13:36 -04:00
										 |  |  | 	.read_l = sdhci_be32bs_readl, | 
					
						
							|  |  |  | 	.read_w = sdhci_be32bs_readw, | 
					
						
							|  |  |  | 	.read_b = sdhci_be32bs_readb, | 
					
						
							|  |  |  | 	.write_l = sdhci_hlwd_writel, | 
					
						
							|  |  |  | 	.write_w = sdhci_hlwd_writew, | 
					
						
							|  |  |  | 	.write_b = sdhci_hlwd_writeb, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-13 19:26:03 +01:00
										 |  |  | static const struct sdhci_pltfm_data sdhci_hlwd_pdata = { | 
					
						
							| 
									
										
										
										
											2009-12-17 15:27:20 -08:00
										 |  |  | 	.quirks = SDHCI_QUIRK_32BIT_DMA_ADDR | | 
					
						
							|  |  |  | 		  SDHCI_QUIRK_32BIT_DMA_SIZE, | 
					
						
							| 
									
										
										
										
											2011-07-20 17:13:36 -04:00
										 |  |  | 	.ops = &sdhci_hlwd_ops, | 
					
						
							| 
									
										
										
										
											2009-12-17 15:27:20 -08:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2011-05-27 23:48:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-19 13:23:06 -05:00
										 |  |  | static int sdhci_hlwd_probe(struct platform_device *pdev) | 
					
						
							| 
									
										
										
										
											2011-05-27 23:48:14 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-05-29 13:50:05 -07:00
										 |  |  | 	return sdhci_pltfm_register(pdev, &sdhci_hlwd_pdata, 0); | 
					
						
							| 
									
										
										
										
											2011-05-27 23:48:14 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-19 13:26:03 -05:00
										 |  |  | static int sdhci_hlwd_remove(struct platform_device *pdev) | 
					
						
							| 
									
										
										
										
											2011-05-27 23:48:14 +08:00
										 |  |  | { | 
					
						
							|  |  |  | 	return sdhci_pltfm_unregister(pdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct of_device_id sdhci_hlwd_of_match[] = { | 
					
						
							|  |  |  | 	{ .compatible = "nintendo,hollywood-sdhci" }, | 
					
						
							|  |  |  | 	{ } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | MODULE_DEVICE_TABLE(of, sdhci_hlwd_of_match); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_driver sdhci_hlwd_driver = { | 
					
						
							|  |  |  | 	.driver = { | 
					
						
							|  |  |  | 		.name = "sdhci-hlwd", | 
					
						
							|  |  |  | 		.owner = THIS_MODULE, | 
					
						
							|  |  |  | 		.of_match_table = sdhci_hlwd_of_match, | 
					
						
							| 
									
										
										
										
											2011-11-03 11:09:45 +01:00
										 |  |  | 		.pm = SDHCI_PLTFM_PMOPS, | 
					
						
							| 
									
										
										
										
											2011-05-27 23:48:14 +08:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	.probe = sdhci_hlwd_probe, | 
					
						
							| 
									
										
										
										
											2012-11-19 13:20:26 -05:00
										 |  |  | 	.remove = sdhci_hlwd_remove, | 
					
						
							| 
									
										
										
										
											2011-05-27 23:48:14 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-26 12:55:43 +08:00
										 |  |  | module_platform_driver(sdhci_hlwd_driver); | 
					
						
							| 
									
										
										
										
											2011-05-27 23:48:14 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | MODULE_DESCRIPTION("Nintendo Wii SDHCI OF driver"); | 
					
						
							|  |  |  | MODULE_AUTHOR("The GameCube Linux Team, Albert Herranz"); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL v2"); |