Merge branch 'develop' of /home/rockchip/kernel into develop
[firefly-linux-kernel-4.4.55.git] / drivers / mmc / core / host.c
1 /*
2  *  linux/drivers/mmc/core/host.c
3  *
4  *  Copyright (C) 2003 Russell King, All Rights Reserved.
5  *  Copyright (C) 2007-2008 Pierre Ossman
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  *  MMC host class device management
12  */
13
14 #include <linux/device.h>
15 #include <linux/err.h>
16 #include <linux/idr.h>
17 #include <linux/pagemap.h>
18 #include <linux/leds.h>
19 #if defined(CONFIG_SDMMC_RK29) && defined(CONFIG_SDMMC_RK29_OLD)  
20 #include <linux/suspend.h>
21 #endif
22 #include <linux/mmc/host.h>
23
24 #include "core.h"
25 #include "host.h"
26
27 #define cls_dev_to_mmc_host(d)  container_of(d, struct mmc_host, class_dev)
28
29 static void mmc_host_classdev_release(struct device *dev)
30 {
31         struct mmc_host *host = cls_dev_to_mmc_host(dev);
32         kfree(host);
33 }
34
35 static struct class mmc_host_class = {
36         .name           = "mmc_host",
37         .dev_release    = mmc_host_classdev_release,
38 };
39
40 int mmc_register_host_class(void)
41 {
42         return class_register(&mmc_host_class);
43 }
44
45 void mmc_unregister_host_class(void)
46 {
47         class_unregister(&mmc_host_class);
48 }
49
50 static DEFINE_IDR(mmc_host_idr);
51 static DEFINE_SPINLOCK(mmc_host_lock);
52
53 /**
54  *      mmc_alloc_host - initialise the per-host structure.
55  *      @extra: sizeof private data structure
56  *      @dev: pointer to host device model structure
57  *
58  *      Initialise the per-host structure.
59  */
60 struct mmc_host *mmc_alloc_host(int extra, struct device *dev)
61 {
62         int err;
63         struct mmc_host *host;
64
65         if (!idr_pre_get(&mmc_host_idr, GFP_KERNEL))
66                 return NULL;
67
68         host = kzalloc(sizeof(struct mmc_host) + extra, GFP_KERNEL);
69         if (!host)
70                 return NULL;
71
72         spin_lock(&mmc_host_lock);
73         err = idr_get_new(&mmc_host_idr, host, &host->index);
74         spin_unlock(&mmc_host_lock);
75         if (err)
76                 goto free;
77
78         dev_set_name(&host->class_dev, "mmc%d", host->index);
79
80         host->parent = dev;
81         host->class_dev.parent = dev;
82         host->class_dev.class = &mmc_host_class;
83         device_initialize(&host->class_dev);
84
85         spin_lock_init(&host->lock);
86         init_waitqueue_head(&host->wq);
87         INIT_DELAYED_WORK(&host->detect, mmc_rescan);
88         INIT_DELAYED_WORK_DEFERRABLE(&host->disable, mmc_host_deeper_disable);
89 #if defined(CONFIG_SDMMC_RK29) && defined(CONFIG_SDMMC_RK29_OLD)  // old driver, add pm reform to kernel2.6.38  
90 #ifdef CONFIG_PM
91         host->pm_notify.notifier_call = mmc_pm_notify;
92 #endif
93 #endif
94
95         /*
96          * By default, hosts do not support SGIO or large requests.
97          * They have to set these according to their abilities.
98          */
99         host->max_hw_segs = 1;
100         host->max_phys_segs = 1;
101         host->max_seg_size = PAGE_CACHE_SIZE;
102
103         host->max_req_size = PAGE_CACHE_SIZE;
104         host->max_blk_size = 512;
105         host->max_blk_count = PAGE_CACHE_SIZE / 512;
106
107         return host;
108
109 free:
110         kfree(host);
111         return NULL;
112 }
113
114 EXPORT_SYMBOL(mmc_alloc_host);
115
116 /**
117  *      mmc_add_host - initialise host hardware
118  *      @host: mmc host
119  *
120  *      Register the host with the driver model. The host must be
121  *      prepared to start servicing requests before this function
122  *      completes.
123  */
124 int mmc_add_host(struct mmc_host *host)
125 {
126         int err;
127
128         WARN_ON((host->caps & MMC_CAP_SDIO_IRQ) &&
129                 !host->ops->enable_sdio_irq);
130
131         led_trigger_register_simple(dev_name(&host->class_dev), &host->led);
132
133         err = device_add(&host->class_dev);
134         if (err)
135                 return err;
136
137 #ifdef CONFIG_DEBUG_FS
138         mmc_add_host_debugfs(host);
139 #endif
140
141         mmc_start_host(host);
142
143 #if defined(CONFIG_SDMMC_RK29) && defined(CONFIG_SDMMC_RK29_OLD)  // old driver, add pm reform to kernel2.6.38          
144         if (!(host->pm_flags & MMC_PM_IGNORE_PM_NOTIFY))
145            register_pm_notifier(&host->pm_notify);
146 #endif
147
148         return 0;
149 }
150
151 EXPORT_SYMBOL(mmc_add_host);
152
153 /**
154  *      mmc_remove_host - remove host hardware
155  *      @host: mmc host
156  *
157  *      Unregister and remove all cards associated with this host,
158  *      and power down the MMC bus. No new requests will be issued
159  *      after this function has returned.
160  */
161 void mmc_remove_host(struct mmc_host *host)
162 {
163 #if defined(CONFIG_SDMMC_RK29) && defined(CONFIG_SDMMC_RK29_OLD)  // old driver, add pm reform to kernel2.6.38  
164         if (!(host->pm_flags & MMC_PM_IGNORE_PM_NOTIFY))        
165            unregister_pm_notifier(&host->pm_notify);
166  #endif
167  
168         mmc_stop_host(host);
169
170 #ifdef CONFIG_DEBUG_FS
171         mmc_remove_host_debugfs(host);
172 #endif
173
174         device_del(&host->class_dev);
175
176         led_trigger_unregister_simple(host->led);
177 }
178
179 EXPORT_SYMBOL(mmc_remove_host);
180
181 /**
182  *      mmc_free_host - free the host structure
183  *      @host: mmc host
184  *
185  *      Free the host once all references to it have been dropped.
186  */
187 void mmc_free_host(struct mmc_host *host)
188 {
189         spin_lock(&mmc_host_lock);
190         idr_remove(&mmc_host_idr, host->index);
191         spin_unlock(&mmc_host_lock);
192
193         put_device(&host->class_dev);
194 }
195
196 EXPORT_SYMBOL(mmc_free_host);
197