blob: f746b6a388b8ed9c0d7acdc91b7f5cbbe2e2678f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-pxa/ssp.c
3 *
4 * based on linux/arch/arm/mach-sa1100/ssp.c by Russell King
5 *
6 * Copyright (C) 2003 Russell King.
7 * Copyright (C) 2003 Wolfson Microelectronics PLC
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * PXA2xx SSP driver. This provides the generic core for simple
14 * IO-based SSP applications and allows easy port setup for DMA access.
15 *
16 * Author: Liam Girdwood <liam.girdwood@wolfsonmicro.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
19#include <linux/module.h>
20#include <linux/kernel.h>
21#include <linux/sched.h>
22#include <linux/slab.h>
23#include <linux/errno.h>
24#include <linux/interrupt.h>
25#include <linux/ioport.h>
26#include <linux/init.h>
Arjan van de Ven00431702006-01-12 18:42:23 +000027#include <linux/mutex.h>
eric miao88286452007-12-06 17:56:42 +080028#include <linux/clk.h>
29#include <linux/err.h>
30#include <linux/platform_device.h>
Sebastian Andrzej Siewior8348c252010-11-22 17:12:15 -080031#include <linux/spi/pxa2xx_spi.h>
Russell Kingfced80c2008-09-06 12:10:45 +010032#include <linux/io.h>
eric miao88286452007-12-06 17:56:42 +080033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/irq.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010035#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
eric miao88286452007-12-06 17:56:42 +080037static DEFINE_MUTEX(ssp_lock);
38static LIST_HEAD(ssp_list);
39
Haojian Zhuangbaffe162010-05-05 10:11:15 -040040struct ssp_device *pxa_ssp_request(int port, const char *label)
eric miao88286452007-12-06 17:56:42 +080041{
42 struct ssp_device *ssp = NULL;
43
44 mutex_lock(&ssp_lock);
45
46 list_for_each_entry(ssp, &ssp_list, node) {
47 if (ssp->port_id == port && ssp->use_count == 0) {
48 ssp->use_count++;
49 ssp->label = label;
50 break;
51 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 }
53
eric miao88286452007-12-06 17:56:42 +080054 mutex_unlock(&ssp_lock);
55
Guennadi Liakhovetskia4aff222008-06-05 10:43:14 +010056 if (&ssp->node == &ssp_list)
eric miao88286452007-12-06 17:56:42 +080057 return NULL;
58
59 return ssp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060}
Haojian Zhuangbaffe162010-05-05 10:11:15 -040061EXPORT_SYMBOL(pxa_ssp_request);
eric miao88286452007-12-06 17:56:42 +080062
Haojian Zhuangbaffe162010-05-05 10:11:15 -040063void pxa_ssp_free(struct ssp_device *ssp)
eric miao88286452007-12-06 17:56:42 +080064{
65 mutex_lock(&ssp_lock);
66 if (ssp->use_count) {
67 ssp->use_count--;
68 ssp->label = NULL;
69 } else
70 dev_err(&ssp->pdev->dev, "device already free\n");
71 mutex_unlock(&ssp_lock);
72}
Haojian Zhuangbaffe162010-05-05 10:11:15 -040073EXPORT_SYMBOL(pxa_ssp_free);
eric miao88286452007-12-06 17:56:42 +080074
Greg Kroah-Hartman351a1022012-12-21 14:02:24 -080075static int pxa_ssp_probe(struct platform_device *pdev)
eric miao88286452007-12-06 17:56:42 +080076{
Eric Miao6427d452009-10-23 00:09:47 +080077 const struct platform_device_id *id = platform_get_device_id(pdev);
eric miao88286452007-12-06 17:56:42 +080078 struct resource *res;
79 struct ssp_device *ssp;
80 int ret = 0;
81
82 ssp = kzalloc(sizeof(struct ssp_device), GFP_KERNEL);
Daniel Mack64be2812013-08-12 10:37:14 +020083 if (ssp == NULL)
eric miao88286452007-12-06 17:56:42 +080084 return -ENOMEM;
Daniel Mack64be2812013-08-12 10:37:14 +020085
Mark Brown919dcb22008-06-19 02:55:52 +010086 ssp->pdev = pdev;
eric miao88286452007-12-06 17:56:42 +080087
Russell Kinge0d8b132008-11-11 17:52:32 +000088 ssp->clk = clk_get(&pdev->dev, NULL);
eric miao88286452007-12-06 17:56:42 +080089 if (IS_ERR(ssp->clk)) {
90 ret = PTR_ERR(ssp->clk);
91 goto err_free;
92 }
93
Julia Lawall077de1a2010-03-22 16:11:55 +080094 res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
95 if (res == NULL) {
96 dev_err(&pdev->dev, "no SSP RX DRCMR defined\n");
97 ret = -ENODEV;
98 goto err_free_clk;
99 }
100 ssp->drcmr_rx = res->start;
101
102 res = platform_get_resource(pdev, IORESOURCE_DMA, 1);
103 if (res == NULL) {
104 dev_err(&pdev->dev, "no SSP TX DRCMR defined\n");
105 ret = -ENODEV;
106 goto err_free_clk;
107 }
108 ssp->drcmr_tx = res->start;
109
eric miao88286452007-12-06 17:56:42 +0800110 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
111 if (res == NULL) {
112 dev_err(&pdev->dev, "no memory resource defined\n");
113 ret = -ENODEV;
114 goto err_free_clk;
115 }
116
Julia Lawallc8ee5c62010-03-22 16:16:24 +0800117 res = request_mem_region(res->start, resource_size(res),
eric miao88286452007-12-06 17:56:42 +0800118 pdev->name);
119 if (res == NULL) {
120 dev_err(&pdev->dev, "failed to request memory resource\n");
121 ret = -EBUSY;
122 goto err_free_clk;
123 }
124
125 ssp->phys_base = res->start;
126
Julia Lawallc8ee5c62010-03-22 16:16:24 +0800127 ssp->mmio_base = ioremap(res->start, resource_size(res));
eric miao88286452007-12-06 17:56:42 +0800128 if (ssp->mmio_base == NULL) {
129 dev_err(&pdev->dev, "failed to ioremap() registers\n");
130 ret = -ENODEV;
131 goto err_free_mem;
132 }
133
134 ssp->irq = platform_get_irq(pdev, 0);
135 if (ssp->irq < 0) {
136 dev_err(&pdev->dev, "no IRQ resource defined\n");
137 ret = -ENODEV;
138 goto err_free_io;
139 }
140
eric miao88286452007-12-06 17:56:42 +0800141 /* PXA2xx/3xx SSP ports starts from 1 and the internal pdev->id
142 * starts from 0, do a translation here
143 */
144 ssp->port_id = pdev->id + 1;
145 ssp->use_count = 0;
Eric Miao6427d452009-10-23 00:09:47 +0800146 ssp->type = (int)id->driver_data;
eric miao88286452007-12-06 17:56:42 +0800147
148 mutex_lock(&ssp_lock);
149 list_add(&ssp->node, &ssp_list);
150 mutex_unlock(&ssp_lock);
151
152 platform_set_drvdata(pdev, ssp);
153 return 0;
154
155err_free_io:
156 iounmap(ssp->mmio_base);
157err_free_mem:
Julia Lawallc8ee5c62010-03-22 16:16:24 +0800158 release_mem_region(res->start, resource_size(res));
eric miao88286452007-12-06 17:56:42 +0800159err_free_clk:
160 clk_put(ssp->clk);
161err_free:
162 kfree(ssp);
163 return ret;
164}
165
Greg Kroah-Hartman351a1022012-12-21 14:02:24 -0800166static int pxa_ssp_remove(struct platform_device *pdev)
eric miao88286452007-12-06 17:56:42 +0800167{
168 struct resource *res;
169 struct ssp_device *ssp;
170
171 ssp = platform_get_drvdata(pdev);
172 if (ssp == NULL)
173 return -ENODEV;
174
175 iounmap(ssp->mmio_base);
176
177 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Julia Lawallc8ee5c62010-03-22 16:16:24 +0800178 release_mem_region(res->start, resource_size(res));
eric miao88286452007-12-06 17:56:42 +0800179
180 clk_put(ssp->clk);
181
182 mutex_lock(&ssp_lock);
183 list_del(&ssp->node);
184 mutex_unlock(&ssp_lock);
185
186 kfree(ssp);
187 return 0;
188}
189
Eric Miao6427d452009-10-23 00:09:47 +0800190static const struct platform_device_id ssp_id_table[] = {
191 { "pxa25x-ssp", PXA25x_SSP },
192 { "pxa25x-nssp", PXA25x_NSSP },
193 { "pxa27x-ssp", PXA27x_SSP },
Haojian Zhuang7e499222010-03-19 11:53:17 -0400194 { "pxa168-ssp", PXA168_SSP },
Qiao Zhou60172212012-06-04 10:41:03 +0800195 { "pxa910-ssp", PXA910_SSP },
Eric Miao6427d452009-10-23 00:09:47 +0800196 { },
eric miao88286452007-12-06 17:56:42 +0800197};
198
Haojian Zhuangbaffe162010-05-05 10:11:15 -0400199static struct platform_driver pxa_ssp_driver = {
200 .probe = pxa_ssp_probe,
Greg Kroah-Hartman351a1022012-12-21 14:02:24 -0800201 .remove = pxa_ssp_remove,
eric miao88286452007-12-06 17:56:42 +0800202 .driver = {
Eric Miao6427d452009-10-23 00:09:47 +0800203 .owner = THIS_MODULE,
204 .name = "pxa2xx-ssp",
eric miao88286452007-12-06 17:56:42 +0800205 },
Eric Miao6427d452009-10-23 00:09:47 +0800206 .id_table = ssp_id_table,
eric miao88286452007-12-06 17:56:42 +0800207};
208
209static int __init pxa_ssp_init(void)
210{
Haojian Zhuangbaffe162010-05-05 10:11:15 -0400211 return platform_driver_register(&pxa_ssp_driver);
eric miao88286452007-12-06 17:56:42 +0800212}
213
214static void __exit pxa_ssp_exit(void)
215{
Haojian Zhuangbaffe162010-05-05 10:11:15 -0400216 platform_driver_unregister(&pxa_ssp_driver);
eric miao88286452007-12-06 17:56:42 +0800217}
218
Russell Kingcae05542007-12-10 15:35:54 +0000219arch_initcall(pxa_ssp_init);
eric miao88286452007-12-06 17:56:42 +0800220module_exit(pxa_ssp_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222MODULE_DESCRIPTION("PXA SSP driver");
223MODULE_AUTHOR("Liam Girdwood");
224MODULE_LICENSE("GPL");