15b2a600d77b30f931797f852c41699c3e372408
[cascardo/linux.git] / drivers / hsi / controllers / omap_ssi_core.c
1 /* OMAP SSI driver.
2  *
3  * Copyright (C) 2010 Nokia Corporation. All rights reserved.
4  * Copyright (C) 2014 Sebastian Reichel <sre@kernel.org>
5  *
6  * Contact: Carlos Chinea <carlos.chinea@nokia.com>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * version 2 as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA
21  */
22
23 #include <linux/compiler.h>
24 #include <linux/err.h>
25 #include <linux/ioport.h>
26 #include <linux/io.h>
27 #include <linux/clk.h>
28 #include <linux/device.h>
29 #include <linux/platform_device.h>
30 #include <linux/dma-mapping.h>
31 #include <linux/dmaengine.h>
32 #include <linux/delay.h>
33 #include <linux/seq_file.h>
34 #include <linux/scatterlist.h>
35 #include <linux/interrupt.h>
36 #include <linux/spinlock.h>
37 #include <linux/debugfs.h>
38 #include <linux/pm_runtime.h>
39 #include <linux/of_platform.h>
40 #include <linux/hsi/hsi.h>
41 #include <linux/idr.h>
42
43 #include "omap_ssi_regs.h"
44 #include "omap_ssi.h"
45
46 /* For automatically allocated device IDs */
47 static DEFINE_IDA(platform_omap_ssi_ida);
48
49 #ifdef CONFIG_DEBUG_FS
50 static int ssi_debug_show(struct seq_file *m, void *p __maybe_unused)
51 {
52         struct hsi_controller *ssi = m->private;
53         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
54         void __iomem *sys = omap_ssi->sys;
55
56         pm_runtime_get_sync(ssi->device.parent);
57         seq_printf(m, "REVISION\t: 0x%08x\n",  readl(sys + SSI_REVISION_REG));
58         seq_printf(m, "SYSCONFIG\t: 0x%08x\n", readl(sys + SSI_SYSCONFIG_REG));
59         seq_printf(m, "SYSSTATUS\t: 0x%08x\n", readl(sys + SSI_SYSSTATUS_REG));
60         pm_runtime_put_sync(ssi->device.parent);
61
62         return 0;
63 }
64
65 static int ssi_debug_gdd_show(struct seq_file *m, void *p __maybe_unused)
66 {
67         struct hsi_controller *ssi = m->private;
68         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
69         void __iomem *gdd = omap_ssi->gdd;
70         void __iomem *sys = omap_ssi->sys;
71         int lch;
72
73         pm_runtime_get_sync(ssi->device.parent);
74
75         seq_printf(m, "GDD_MPU_STATUS\t: 0x%08x\n",
76                 readl(sys + SSI_GDD_MPU_IRQ_STATUS_REG));
77         seq_printf(m, "GDD_MPU_ENABLE\t: 0x%08x\n\n",
78                 readl(sys + SSI_GDD_MPU_IRQ_ENABLE_REG));
79         seq_printf(m, "HW_ID\t\t: 0x%08x\n",
80                                 readl(gdd + SSI_GDD_HW_ID_REG));
81         seq_printf(m, "PPORT_ID\t: 0x%08x\n",
82                                 readl(gdd + SSI_GDD_PPORT_ID_REG));
83         seq_printf(m, "MPORT_ID\t: 0x%08x\n",
84                                 readl(gdd + SSI_GDD_MPORT_ID_REG));
85         seq_printf(m, "TEST\t\t: 0x%08x\n",
86                                 readl(gdd + SSI_GDD_TEST_REG));
87         seq_printf(m, "GCR\t\t: 0x%08x\n",
88                                 readl(gdd + SSI_GDD_GCR_REG));
89
90         for (lch = 0; lch < SSI_MAX_GDD_LCH; lch++) {
91                 seq_printf(m, "\nGDD LCH %d\n=========\n", lch);
92                 seq_printf(m, "CSDP\t\t: 0x%04x\n",
93                                 readw(gdd + SSI_GDD_CSDP_REG(lch)));
94                 seq_printf(m, "CCR\t\t: 0x%04x\n",
95                                 readw(gdd + SSI_GDD_CCR_REG(lch)));
96                 seq_printf(m, "CICR\t\t: 0x%04x\n",
97                                 readw(gdd + SSI_GDD_CICR_REG(lch)));
98                 seq_printf(m, "CSR\t\t: 0x%04x\n",
99                                 readw(gdd + SSI_GDD_CSR_REG(lch)));
100                 seq_printf(m, "CSSA\t\t: 0x%08x\n",
101                                 readl(gdd + SSI_GDD_CSSA_REG(lch)));
102                 seq_printf(m, "CDSA\t\t: 0x%08x\n",
103                                 readl(gdd + SSI_GDD_CDSA_REG(lch)));
104                 seq_printf(m, "CEN\t\t: 0x%04x\n",
105                                 readw(gdd + SSI_GDD_CEN_REG(lch)));
106                 seq_printf(m, "CSAC\t\t: 0x%04x\n",
107                                 readw(gdd + SSI_GDD_CSAC_REG(lch)));
108                 seq_printf(m, "CDAC\t\t: 0x%04x\n",
109                                 readw(gdd + SSI_GDD_CDAC_REG(lch)));
110                 seq_printf(m, "CLNK_CTRL\t: 0x%04x\n",
111                                 readw(gdd + SSI_GDD_CLNK_CTRL_REG(lch)));
112         }
113
114         pm_runtime_put_sync(ssi->device.parent);
115
116         return 0;
117 }
118
119 static int ssi_regs_open(struct inode *inode, struct file *file)
120 {
121         return single_open(file, ssi_debug_show, inode->i_private);
122 }
123
124 static int ssi_gdd_regs_open(struct inode *inode, struct file *file)
125 {
126         return single_open(file, ssi_debug_gdd_show, inode->i_private);
127 }
128
129 static const struct file_operations ssi_regs_fops = {
130         .open           = ssi_regs_open,
131         .read           = seq_read,
132         .llseek         = seq_lseek,
133         .release        = single_release,
134 };
135
136 static const struct file_operations ssi_gdd_regs_fops = {
137         .open           = ssi_gdd_regs_open,
138         .read           = seq_read,
139         .llseek         = seq_lseek,
140         .release        = single_release,
141 };
142
143 static int ssi_debug_add_ctrl(struct hsi_controller *ssi)
144 {
145         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
146         struct dentry *dir;
147
148         /* SSI controller */
149         omap_ssi->dir = debugfs_create_dir(dev_name(&ssi->device), NULL);
150         if (!omap_ssi->dir)
151                 return -ENOMEM;
152
153         debugfs_create_file("regs", S_IRUGO, omap_ssi->dir, ssi,
154                                                                 &ssi_regs_fops);
155         /* SSI GDD (DMA) */
156         dir = debugfs_create_dir("gdd", omap_ssi->dir);
157         if (!dir)
158                 goto rback;
159         debugfs_create_file("regs", S_IRUGO, dir, ssi, &ssi_gdd_regs_fops);
160
161         return 0;
162 rback:
163         debugfs_remove_recursive(omap_ssi->dir);
164
165         return -ENOMEM;
166 }
167
168 static void ssi_debug_remove_ctrl(struct hsi_controller *ssi)
169 {
170         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
171
172         debugfs_remove_recursive(omap_ssi->dir);
173 }
174 #endif /* CONFIG_DEBUG_FS */
175
176 /*
177  * FIXME: Horrible HACK needed until we remove the useless wakeline test
178  * in the CMT. To be removed !!!!
179  */
180 void ssi_waketest(struct hsi_client *cl, unsigned int enable)
181 {
182         struct hsi_port *port = hsi_get_port(cl);
183         struct omap_ssi_port *omap_port = hsi_port_drvdata(port);
184         struct hsi_controller *ssi = to_hsi_controller(port->device.parent);
185         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
186
187         omap_port->wktest = !!enable;
188         if (omap_port->wktest) {
189                 pm_runtime_get_sync(ssi->device.parent);
190                 writel_relaxed(SSI_WAKE(0),
191                                 omap_ssi->sys + SSI_SET_WAKE_REG(port->num));
192         } else {
193                 writel_relaxed(SSI_WAKE(0),
194                                 omap_ssi->sys + SSI_CLEAR_WAKE_REG(port->num));
195                 pm_runtime_put_sync(ssi->device.parent);
196         }
197 }
198 EXPORT_SYMBOL_GPL(ssi_waketest);
199
200 static void ssi_gdd_complete(struct hsi_controller *ssi, unsigned int lch)
201 {
202         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
203         struct hsi_msg *msg = omap_ssi->gdd_trn[lch].msg;
204         struct hsi_port *port = to_hsi_port(msg->cl->device.parent);
205         struct omap_ssi_port *omap_port = hsi_port_drvdata(port);
206         unsigned int dir;
207         u32 csr;
208         u32 val;
209
210         spin_lock(&omap_ssi->lock);
211
212         val = readl(omap_ssi->sys + SSI_GDD_MPU_IRQ_ENABLE_REG);
213         val &= ~SSI_GDD_LCH(lch);
214         writel_relaxed(val, omap_ssi->sys + SSI_GDD_MPU_IRQ_ENABLE_REG);
215
216         if (msg->ttype == HSI_MSG_READ) {
217                 dir = DMA_FROM_DEVICE;
218                 val = SSI_DATAAVAILABLE(msg->channel);
219                 pm_runtime_put_sync(ssi->device.parent);
220         } else {
221                 dir = DMA_TO_DEVICE;
222                 val = SSI_DATAACCEPT(msg->channel);
223                 /* Keep clocks reference for write pio event */
224         }
225         dma_unmap_sg(&ssi->device, msg->sgt.sgl, msg->sgt.nents, dir);
226         csr = readw(omap_ssi->gdd + SSI_GDD_CSR_REG(lch));
227         omap_ssi->gdd_trn[lch].msg = NULL; /* release GDD lch */
228         dev_dbg(&port->device, "DMA completed ch %d ttype %d\n",
229                                 msg->channel, msg->ttype);
230         spin_unlock(&omap_ssi->lock);
231         if (csr & SSI_CSR_TOUR) { /* Timeout error */
232                 msg->status = HSI_STATUS_ERROR;
233                 msg->actual_len = 0;
234                 spin_lock(&omap_port->lock);
235                 list_del(&msg->link); /* Dequeue msg */
236                 spin_unlock(&omap_port->lock);
237                 msg->complete(msg);
238                 return;
239         }
240         spin_lock(&omap_port->lock);
241         val |= readl(omap_ssi->sys + SSI_MPU_ENABLE_REG(port->num, 0));
242         writel_relaxed(val, omap_ssi->sys + SSI_MPU_ENABLE_REG(port->num, 0));
243         spin_unlock(&omap_port->lock);
244
245         msg->status = HSI_STATUS_COMPLETED;
246         msg->actual_len = sg_dma_len(msg->sgt.sgl);
247 }
248
249 static void ssi_gdd_tasklet(unsigned long dev)
250 {
251         struct hsi_controller *ssi = (struct hsi_controller *)dev;
252         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
253         void __iomem *sys = omap_ssi->sys;
254         unsigned int lch;
255         u32 status_reg;
256
257         pm_runtime_get_sync(ssi->device.parent);
258
259         status_reg = readl(sys + SSI_GDD_MPU_IRQ_STATUS_REG);
260         for (lch = 0; lch < SSI_MAX_GDD_LCH; lch++) {
261                 if (status_reg & SSI_GDD_LCH(lch))
262                         ssi_gdd_complete(ssi, lch);
263         }
264         writel_relaxed(status_reg, sys + SSI_GDD_MPU_IRQ_STATUS_REG);
265         status_reg = readl(sys + SSI_GDD_MPU_IRQ_STATUS_REG);
266
267         pm_runtime_put_sync(ssi->device.parent);
268
269         if (status_reg)
270                 tasklet_hi_schedule(&omap_ssi->gdd_tasklet);
271         else
272                 enable_irq(omap_ssi->gdd_irq);
273
274 }
275
276 static irqreturn_t ssi_gdd_isr(int irq, void *ssi)
277 {
278         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
279
280         tasklet_hi_schedule(&omap_ssi->gdd_tasklet);
281         disable_irq_nosync(irq);
282
283         return IRQ_HANDLED;
284 }
285
286 static unsigned long ssi_get_clk_rate(struct hsi_controller *ssi)
287 {
288         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
289         unsigned long rate = clk_get_rate(omap_ssi->fck);
290         return rate;
291 }
292
293 static int ssi_clk_event(struct notifier_block *nb, unsigned long event,
294                                                                 void *data)
295 {
296         struct omap_ssi_controller *omap_ssi = container_of(nb,
297                                         struct omap_ssi_controller, fck_nb);
298         struct hsi_controller *ssi = to_hsi_controller(omap_ssi->dev);
299         struct clk_notifier_data *clk_data = data;
300         struct omap_ssi_port *omap_port;
301         int i;
302
303         switch (event) {
304         case PRE_RATE_CHANGE:
305                 dev_dbg(&ssi->device, "pre rate change\n");
306
307                 for (i = 0; i < ssi->num_ports; i++) {
308                         omap_port = omap_ssi->port[i];
309
310                         if (!omap_port)
311                                 continue;
312
313                         /* Workaround for SWBREAK + CAwake down race in CMT */
314                         tasklet_disable(&omap_port->wake_tasklet);
315
316                         /* stop all ssi communication */
317                         pinctrl_pm_select_idle_state(omap_port->pdev);
318                         udelay(1); /* wait for racing frames */
319                 }
320
321                 break;
322         case ABORT_RATE_CHANGE:
323                 dev_dbg(&ssi->device, "abort rate change\n");
324                 /* Fall through */
325         case POST_RATE_CHANGE:
326                 dev_dbg(&ssi->device, "post rate change (%lu -> %lu)\n",
327                         clk_data->old_rate, clk_data->new_rate);
328                 omap_ssi->fck_rate = DIV_ROUND_CLOSEST(clk_data->new_rate, 1000); /* KHz */
329
330                 for (i = 0; i < ssi->num_ports; i++) {
331                         omap_port = omap_ssi->port[i];
332
333                         if (!omap_port)
334                                 continue;
335
336                         omap_ssi_port_update_fclk(ssi, omap_port);
337
338                         /* resume ssi communication */
339                         pinctrl_pm_select_default_state(omap_port->pdev);
340                         tasklet_enable(&omap_port->wake_tasklet);
341                 }
342
343                 break;
344         default:
345                 break;
346         }
347
348         return NOTIFY_DONE;
349 }
350
351 static int ssi_get_iomem(struct platform_device *pd,
352                 const char *name, void __iomem **pbase, dma_addr_t *phy)
353 {
354         struct resource *mem;
355         void __iomem *base;
356         struct hsi_controller *ssi = platform_get_drvdata(pd);
357
358         mem = platform_get_resource_byname(pd, IORESOURCE_MEM, name);
359         base = devm_ioremap_resource(&ssi->device, mem);
360         if (IS_ERR(base))
361                 return PTR_ERR(base);
362
363         *pbase = base;
364
365         if (phy)
366                 *phy = mem->start;
367
368         return 0;
369 }
370
371 static int ssi_add_controller(struct hsi_controller *ssi,
372                                                 struct platform_device *pd)
373 {
374         struct omap_ssi_controller *omap_ssi;
375         int err;
376
377         omap_ssi = devm_kzalloc(&ssi->device, sizeof(*omap_ssi), GFP_KERNEL);
378         if (!omap_ssi) {
379                 dev_err(&pd->dev, "not enough memory for omap ssi\n");
380                 return -ENOMEM;
381         }
382
383         err = ida_simple_get(&platform_omap_ssi_ida, 0, 0, GFP_KERNEL);
384         if (err < 0)
385                 goto out_err;
386         ssi->id = err;
387
388         ssi->owner = THIS_MODULE;
389         ssi->device.parent = &pd->dev;
390         dev_set_name(&ssi->device, "ssi%d", ssi->id);
391         hsi_controller_set_drvdata(ssi, omap_ssi);
392         omap_ssi->dev = &ssi->device;
393         err = ssi_get_iomem(pd, "sys", &omap_ssi->sys, NULL);
394         if (err < 0)
395                 goto out_err;
396         err = ssi_get_iomem(pd, "gdd", &omap_ssi->gdd, NULL);
397         if (err < 0)
398                 goto out_err;
399         err = platform_get_irq_byname(pd, "gdd_mpu");
400         if (err < 0) {
401                 dev_err(&pd->dev, "GDD IRQ resource missing\n");
402                 goto out_err;
403         }
404         omap_ssi->gdd_irq = err;
405         tasklet_init(&omap_ssi->gdd_tasklet, ssi_gdd_tasklet,
406                                                         (unsigned long)ssi);
407         err = devm_request_irq(&ssi->device, omap_ssi->gdd_irq, ssi_gdd_isr,
408                                                 0, "gdd_mpu", ssi);
409         if (err < 0) {
410                 dev_err(&ssi->device, "Request GDD IRQ %d failed (%d)",
411                                                         omap_ssi->gdd_irq, err);
412                 goto out_err;
413         }
414
415         omap_ssi->port = devm_kzalloc(&ssi->device,
416                 sizeof(struct omap_ssi_port *) * ssi->num_ports, GFP_KERNEL);
417         if (!omap_ssi->port) {
418                 err = -ENOMEM;
419                 goto out_err;
420         }
421
422         omap_ssi->fck = devm_clk_get(&ssi->device, "ssi_ssr_fck");
423         if (IS_ERR(omap_ssi->fck)) {
424                 dev_err(&pd->dev, "Could not acquire clock \"ssi_ssr_fck\": %li\n",
425                         PTR_ERR(omap_ssi->fck));
426                 err = -ENODEV;
427                 goto out_err;
428         }
429
430         omap_ssi->fck_nb.notifier_call = ssi_clk_event;
431         omap_ssi->fck_nb.priority = INT_MAX;
432         clk_notifier_register(omap_ssi->fck, &omap_ssi->fck_nb);
433
434         /* TODO: find register, which can be used to detect context loss */
435         omap_ssi->get_loss = NULL;
436
437         omap_ssi->max_speed = UINT_MAX;
438         spin_lock_init(&omap_ssi->lock);
439         err = hsi_register_controller(ssi);
440
441         if (err < 0)
442                 goto out_err;
443
444         return 0;
445
446 out_err:
447         ida_simple_remove(&platform_omap_ssi_ida, ssi->id);
448         return err;
449 }
450
451 static int ssi_hw_init(struct hsi_controller *ssi)
452 {
453         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
454         unsigned int i;
455         u32 val;
456         int err;
457
458         err = pm_runtime_get_sync(ssi->device.parent);
459         if (err < 0) {
460                 dev_err(&ssi->device, "runtime PM failed %d\n", err);
461                 return err;
462         }
463         /* Reseting SSI controller */
464         writel_relaxed(SSI_SOFTRESET, omap_ssi->sys + SSI_SYSCONFIG_REG);
465         val = readl(omap_ssi->sys + SSI_SYSSTATUS_REG);
466         for (i = 0; ((i < 20) && !(val & SSI_RESETDONE)); i++) {
467                 msleep(20);
468                 val = readl(omap_ssi->sys + SSI_SYSSTATUS_REG);
469         }
470         if (!(val & SSI_RESETDONE)) {
471                 dev_err(&ssi->device, "SSI HW reset failed\n");
472                 pm_runtime_put_sync(ssi->device.parent);
473                 return -EIO;
474         }
475         /* Reseting GDD */
476         writel_relaxed(SSI_SWRESET, omap_ssi->gdd + SSI_GDD_GRST_REG);
477         /* Get FCK rate in KHz */
478         omap_ssi->fck_rate = DIV_ROUND_CLOSEST(ssi_get_clk_rate(ssi), 1000);
479         dev_dbg(&ssi->device, "SSI fck rate %lu KHz\n", omap_ssi->fck_rate);
480         /* Set default PM settings */
481         val = SSI_AUTOIDLE | SSI_SIDLEMODE_SMART | SSI_MIDLEMODE_SMART;
482         writel_relaxed(val, omap_ssi->sys + SSI_SYSCONFIG_REG);
483         omap_ssi->sysconfig = val;
484         writel_relaxed(SSI_CLK_AUTOGATING_ON, omap_ssi->sys + SSI_GDD_GCR_REG);
485         omap_ssi->gdd_gcr = SSI_CLK_AUTOGATING_ON;
486         pm_runtime_put_sync(ssi->device.parent);
487
488         return 0;
489 }
490
491 static void ssi_remove_controller(struct hsi_controller *ssi)
492 {
493         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
494         int id = ssi->id;
495         tasklet_kill(&omap_ssi->gdd_tasklet);
496         hsi_unregister_controller(ssi);
497         clk_notifier_unregister(omap_ssi->fck, &omap_ssi->fck_nb);
498         ida_simple_remove(&platform_omap_ssi_ida, id);
499 }
500
501 static inline int ssi_of_get_available_ports_count(const struct device_node *np)
502 {
503         struct device_node *child;
504         int num = 0;
505
506         for_each_available_child_of_node(np, child)
507                 if (of_device_is_compatible(child, "ti,omap3-ssi-port"))
508                         num++;
509
510         return num;
511 }
512
513 static int ssi_remove_ports(struct device *dev, void *c)
514 {
515         struct platform_device *pdev = to_platform_device(dev);
516
517         if (!dev->of_node)
518                 return 0;
519
520         of_node_clear_flag(dev->of_node, OF_POPULATED);
521         of_device_unregister(pdev);
522
523         return 0;
524 }
525
526 static int ssi_probe(struct platform_device *pd)
527 {
528         struct platform_device *childpdev;
529         struct device_node *np = pd->dev.of_node;
530         struct device_node *child;
531         struct hsi_controller *ssi;
532         int err;
533         int num_ports;
534
535         if (!np) {
536                 dev_err(&pd->dev, "missing device tree data\n");
537                 return -EINVAL;
538         }
539
540         num_ports = ssi_of_get_available_ports_count(np);
541
542         ssi = hsi_alloc_controller(num_ports, GFP_KERNEL);
543         if (!ssi) {
544                 dev_err(&pd->dev, "No memory for controller\n");
545                 return -ENOMEM;
546         }
547
548         platform_set_drvdata(pd, ssi);
549
550         err = ssi_add_controller(ssi, pd);
551         if (err < 0)
552                 goto out1;
553
554         pm_runtime_irq_safe(&pd->dev);
555         pm_runtime_enable(&pd->dev);
556
557         err = ssi_hw_init(ssi);
558         if (err < 0)
559                 goto out2;
560 #ifdef CONFIG_DEBUG_FS
561         err = ssi_debug_add_ctrl(ssi);
562         if (err < 0)
563                 goto out2;
564 #endif
565
566         for_each_available_child_of_node(np, child) {
567                 if (!of_device_is_compatible(child, "ti,omap3-ssi-port"))
568                         continue;
569
570                 childpdev = of_platform_device_create(child, NULL, &pd->dev);
571                 if (!childpdev) {
572                         err = -ENODEV;
573                         dev_err(&pd->dev, "failed to create ssi controller port\n");
574                         goto out3;
575                 }
576         }
577
578         dev_info(&pd->dev, "ssi controller %d initialized (%d ports)!\n",
579                 ssi->id, num_ports);
580         return err;
581 out3:
582         device_for_each_child(&pd->dev, NULL, ssi_remove_ports);
583 out2:
584         ssi_remove_controller(ssi);
585 out1:
586         platform_set_drvdata(pd, NULL);
587         pm_runtime_disable(&pd->dev);
588
589         return err;
590 }
591
592 static int ssi_remove(struct platform_device *pd)
593 {
594         struct hsi_controller *ssi = platform_get_drvdata(pd);
595
596         /* cleanup of of_platform_populate() call */
597         device_for_each_child(&pd->dev, NULL, ssi_remove_ports);
598
599 #ifdef CONFIG_DEBUG_FS
600         ssi_debug_remove_ctrl(ssi);
601 #endif
602         ssi_remove_controller(ssi);
603         platform_set_drvdata(pd, NULL);
604
605         pm_runtime_disable(&pd->dev);
606
607         return 0;
608 }
609
610 #ifdef CONFIG_PM
611 static int omap_ssi_runtime_suspend(struct device *dev)
612 {
613         struct hsi_controller *ssi = dev_get_drvdata(dev);
614         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
615
616         dev_dbg(dev, "runtime suspend!\n");
617
618         if (omap_ssi->get_loss)
619                 omap_ssi->loss_count =
620                                 omap_ssi->get_loss(ssi->device.parent);
621
622         return 0;
623 }
624
625 static int omap_ssi_runtime_resume(struct device *dev)
626 {
627         struct hsi_controller *ssi = dev_get_drvdata(dev);
628         struct omap_ssi_controller *omap_ssi = hsi_controller_drvdata(ssi);
629
630         dev_dbg(dev, "runtime resume!\n");
631
632         if ((omap_ssi->get_loss) && (omap_ssi->loss_count ==
633                                 omap_ssi->get_loss(ssi->device.parent)))
634                 return 0;
635
636         writel_relaxed(omap_ssi->gdd_gcr, omap_ssi->gdd + SSI_GDD_GCR_REG);
637
638         return 0;
639 }
640
641 static const struct dev_pm_ops omap_ssi_pm_ops = {
642         SET_RUNTIME_PM_OPS(omap_ssi_runtime_suspend, omap_ssi_runtime_resume,
643                 NULL)
644 };
645
646 #define DEV_PM_OPS     (&omap_ssi_pm_ops)
647 #else
648 #define DEV_PM_OPS     NULL
649 #endif
650
651 #ifdef CONFIG_OF
652 static const struct of_device_id omap_ssi_of_match[] = {
653         { .compatible = "ti,omap3-ssi", },
654         {},
655 };
656 MODULE_DEVICE_TABLE(of, omap_ssi_of_match);
657 #else
658 #define omap_ssi_of_match NULL
659 #endif
660
661 static struct platform_driver ssi_pdriver = {
662         .probe = ssi_probe,
663         .remove = ssi_remove,
664         .driver = {
665                 .name   = "omap_ssi",
666                 .pm     = DEV_PM_OPS,
667                 .of_match_table = omap_ssi_of_match,
668         },
669 };
670
671 static int __init ssi_init(void) {
672         int ret;
673
674         ret = platform_driver_register(&ssi_pdriver);
675         if (ret)
676                 return ret;
677
678         return platform_driver_register(&ssi_port_pdriver);
679 }
680 module_init(ssi_init);
681
682 static void __exit ssi_exit(void) {
683         platform_driver_unregister(&ssi_port_pdriver);
684         platform_driver_unregister(&ssi_pdriver);
685 }
686 module_exit(ssi_exit);
687
688 MODULE_ALIAS("platform:omap_ssi");
689 MODULE_AUTHOR("Carlos Chinea <carlos.chinea@nokia.com>");
690 MODULE_AUTHOR("Sebastian Reichel <sre@kernel.org>");
691 MODULE_DESCRIPTION("Synchronous Serial Interface Driver");
692 MODULE_LICENSE("GPL v2");