2 * Sequencer Serial Port (SSP) driver for Texas Instruments' SoCs
4 * Copyright (C) 2010 Texas Instruments Inc
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/errno.h>
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/err.h>
26 #include <linux/init.h>
27 #include <linux/wait.h>
28 #include <linux/clk.h>
29 #include <linux/interrupt.h>
30 #include <linux/device.h>
31 #include <linux/spinlock.h>
32 #include <linux/platform_device.h>
33 #include <linux/delay.h>
35 #include <linux/sched.h>
36 #include <linux/mfd/core.h>
37 #include <linux/mfd/ti_ssp.h>
39 /* Register Offsets */
41 #define REG_IOSEL_1 0x04
42 #define REG_IOSEL_2 0x08
43 #define REG_PREDIV 0x0c
44 #define REG_INTR_ST 0x10
45 #define REG_INTR_EN 0x14
46 #define REG_TEST_CTRL 0x18
48 /* Per port registers */
49 #define PORT_CFG_2 0x00
50 #define PORT_ADDR 0x04
51 #define PORT_DATA 0x08
52 #define PORT_CFG_1 0x0c
53 #define PORT_STATE 0x10
55 #define SSP_PORT_CONFIG_MASK (SSP_EARLY_DIN | SSP_DELAY_DOUT)
56 #define SSP_PORT_CLKRATE_MASK 0x0f
58 #define SSP_SEQRAM_WR_EN BIT(4)
59 #define SSP_SEQRAM_RD_EN BIT(5)
60 #define SSP_START BIT(15)
61 #define SSP_BUSY BIT(10)
62 #define SSP_PORT_ASL BIT(7)
63 #define SSP_PORT_CFO1 BIT(6)
65 #define SSP_PORT_SEQRAM_SIZE 32
67 static const int ssp_port_base
[] = {0x040, 0x080};
68 static const int ssp_port_seqram
[] = {0x100, 0x180};
77 wait_queue_head_t wqh
;
80 * Some of the iosel2 register bits always read-back as 0, we need to
81 * remember these values so that we don't clobber previously set
87 static inline struct ti_ssp
*dev_to_ssp(struct device
*dev
)
89 return dev_get_drvdata(dev
->parent
);
92 static inline int dev_to_port(struct device
*dev
)
94 return to_platform_device(dev
)->id
;
97 /* Register Access Helpers, rmw() functions need to run locked */
98 static inline u32
ssp_read(struct ti_ssp
*ssp
, int reg
)
100 return __raw_readl(ssp
->regs
+ reg
);
103 static inline void ssp_write(struct ti_ssp
*ssp
, int reg
, u32 val
)
105 __raw_writel(val
, ssp
->regs
+ reg
);
108 static inline void ssp_rmw(struct ti_ssp
*ssp
, int reg
, u32 mask
, u32 bits
)
110 ssp_write(ssp
, reg
, (ssp_read(ssp
, reg
) & ~mask
) | bits
);
113 static inline u32
ssp_port_read(struct ti_ssp
*ssp
, int port
, int reg
)
115 return ssp_read(ssp
, ssp_port_base
[port
] + reg
);
118 static inline void ssp_port_write(struct ti_ssp
*ssp
, int port
, int reg
,
121 ssp_write(ssp
, ssp_port_base
[port
] + reg
, val
);
124 static inline void ssp_port_rmw(struct ti_ssp
*ssp
, int port
, int reg
,
127 ssp_rmw(ssp
, ssp_port_base
[port
] + reg
, mask
, bits
);
130 static inline void ssp_port_clr_bits(struct ti_ssp
*ssp
, int port
, int reg
,
133 ssp_port_rmw(ssp
, port
, reg
, bits
, 0);
136 static inline void ssp_port_set_bits(struct ti_ssp
*ssp
, int port
, int reg
,
139 ssp_port_rmw(ssp
, port
, reg
, 0, bits
);
142 /* Called to setup port clock mode, caller must hold ssp->lock */
143 static int __set_mode(struct ti_ssp
*ssp
, int port
, int mode
)
145 mode
&= SSP_PORT_CONFIG_MASK
;
146 ssp_port_rmw(ssp
, port
, PORT_CFG_1
, SSP_PORT_CONFIG_MASK
, mode
);
151 int ti_ssp_set_mode(struct device
*dev
, int mode
)
153 struct ti_ssp
*ssp
= dev_to_ssp(dev
);
154 int port
= dev_to_port(dev
);
157 spin_lock(&ssp
->lock
);
158 ret
= __set_mode(ssp
, port
, mode
);
159 spin_unlock(&ssp
->lock
);
163 EXPORT_SYMBOL(ti_ssp_set_mode
);
165 /* Called to setup iosel2, caller must hold ssp->lock */
166 static void __set_iosel2(struct ti_ssp
*ssp
, u32 mask
, u32 val
)
168 ssp
->iosel2
= (ssp
->iosel2
& ~mask
) | val
;
169 ssp_write(ssp
, REG_IOSEL_2
, ssp
->iosel2
);
172 /* Called to setup port iosel, caller must hold ssp->lock */
173 static void __set_iosel(struct ti_ssp
*ssp
, int port
, u32 iosel
)
175 unsigned val
, shift
= port
? 16 : 0;
177 /* IOSEL1 gets the least significant 16 bits */
178 val
= ssp_read(ssp
, REG_IOSEL_1
);
179 val
&= 0xffff << (port
? 0 : 16);
180 val
|= (iosel
& 0xffff) << (port
? 16 : 0);
181 ssp_write(ssp
, REG_IOSEL_1
, val
);
183 /* IOSEL2 gets the most significant 16 bits */
184 val
= (iosel
>> 16) & 0x7;
185 __set_iosel2(ssp
, 0x7 << shift
, val
<< shift
);
188 int ti_ssp_set_iosel(struct device
*dev
, u32 iosel
)
190 struct ti_ssp
*ssp
= dev_to_ssp(dev
);
191 int port
= dev_to_port(dev
);
193 spin_lock(&ssp
->lock
);
194 __set_iosel(ssp
, port
, iosel
);
195 spin_unlock(&ssp
->lock
);
199 EXPORT_SYMBOL(ti_ssp_set_iosel
);
201 int ti_ssp_load(struct device
*dev
, int offs
, u32
* prog
, int len
)
203 struct ti_ssp
*ssp
= dev_to_ssp(dev
);
204 int port
= dev_to_port(dev
);
207 if (len
> SSP_PORT_SEQRAM_SIZE
)
210 spin_lock(&ssp
->lock
);
212 /* Enable SeqRAM access */
213 ssp_port_set_bits(ssp
, port
, PORT_CFG_2
, SSP_SEQRAM_WR_EN
);
216 for (i
= 0; i
< len
; i
++) {
217 __raw_writel(prog
[i
], ssp
->regs
+ offs
+ 4*i
+
218 ssp_port_seqram
[port
]);
221 /* Disable SeqRAM access */
222 ssp_port_clr_bits(ssp
, port
, PORT_CFG_2
, SSP_SEQRAM_WR_EN
);
224 spin_unlock(&ssp
->lock
);
228 EXPORT_SYMBOL(ti_ssp_load
);
230 int ti_ssp_raw_read(struct device
*dev
)
232 struct ti_ssp
*ssp
= dev_to_ssp(dev
);
233 int port
= dev_to_port(dev
);
234 int shift
= port
? 27 : 11;
236 return (ssp_read(ssp
, REG_IOSEL_2
) >> shift
) & 0xf;
238 EXPORT_SYMBOL(ti_ssp_raw_read
);
240 int ti_ssp_raw_write(struct device
*dev
, u32 val
)
242 struct ti_ssp
*ssp
= dev_to_ssp(dev
);
243 int port
= dev_to_port(dev
), shift
;
245 spin_lock(&ssp
->lock
);
247 shift
= port
? 22 : 6;
249 __set_iosel2(ssp
, 0xf << shift
, val
<< shift
);
251 spin_unlock(&ssp
->lock
);
255 EXPORT_SYMBOL(ti_ssp_raw_write
);
257 static inline int __xfer_done(struct ti_ssp
*ssp
, int port
)
259 return !(ssp_port_read(ssp
, port
, PORT_CFG_1
) & SSP_BUSY
);
262 int ti_ssp_run(struct device
*dev
, u32 pc
, u32 input
, u32
*output
)
264 struct ti_ssp
*ssp
= dev_to_ssp(dev
);
265 int port
= dev_to_port(dev
);
271 /* Grab ssp->lock to serialize rmw on ssp registers */
272 spin_lock(&ssp
->lock
);
274 ssp_port_write(ssp
, port
, PORT_ADDR
, input
>> 16);
275 ssp_port_write(ssp
, port
, PORT_DATA
, input
& 0xffff);
276 ssp_port_rmw(ssp
, port
, PORT_CFG_1
, 0x3f, pc
);
278 /* grab wait queue head lock to avoid race with the isr */
279 spin_lock_irq(&ssp
->wqh
.lock
);
281 /* kick off sequence execution in hardware */
282 ssp_port_set_bits(ssp
, port
, PORT_CFG_1
, SSP_START
);
284 /* drop ssp lock; no register writes beyond this */
285 spin_unlock(&ssp
->lock
);
287 ret
= wait_event_interruptible_locked_irq(ssp
->wqh
,
288 __xfer_done(ssp
, port
));
289 spin_unlock_irq(&ssp
->wqh
.lock
);
295 *output
= (ssp_port_read(ssp
, port
, PORT_ADDR
) << 16) |
296 (ssp_port_read(ssp
, port
, PORT_DATA
) & 0xffff);
299 ret
= ssp_port_read(ssp
, port
, PORT_STATE
) & 0x3f; /* stop address */
303 EXPORT_SYMBOL(ti_ssp_run
);
305 static irqreturn_t
ti_ssp_interrupt(int irq
, void *dev_data
)
307 struct ti_ssp
*ssp
= dev_data
;
309 spin_lock(&ssp
->wqh
.lock
);
311 ssp_write(ssp
, REG_INTR_ST
, 0x3);
312 wake_up_locked(&ssp
->wqh
);
314 spin_unlock(&ssp
->wqh
.lock
);
319 static int ti_ssp_probe(struct platform_device
*pdev
)
321 static struct ti_ssp
*ssp
;
322 const struct ti_ssp_data
*pdata
= dev_get_platdata(&pdev
->dev
);
323 int error
= 0, prediv
= 0xff, id
;
324 unsigned long sysclk
;
325 struct device
*dev
= &pdev
->dev
;
326 struct mfd_cell cells
[2];
328 ssp
= kzalloc(sizeof(*ssp
), GFP_KERNEL
);
330 dev_err(dev
, "cannot allocate device info\n");
335 dev_set_drvdata(dev
, ssp
);
337 ssp
->res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
340 dev_err(dev
, "cannot determine register area\n");
344 if (!request_mem_region(ssp
->res
->start
, resource_size(ssp
->res
),
347 dev_err(dev
, "cannot claim register memory\n");
351 ssp
->regs
= ioremap(ssp
->res
->start
, resource_size(ssp
->res
));
354 dev_err(dev
, "cannot map register memory\n");
358 ssp
->clk
= clk_get(dev
, NULL
);
359 if (IS_ERR(ssp
->clk
)) {
360 error
= PTR_ERR(ssp
->clk
);
361 dev_err(dev
, "cannot claim device clock\n");
365 ssp
->irq
= platform_get_irq(pdev
, 0);
368 dev_err(dev
, "unknown irq\n");
372 error
= request_threaded_irq(ssp
->irq
, NULL
, ti_ssp_interrupt
, 0,
375 dev_err(dev
, "cannot acquire irq\n");
379 spin_lock_init(&ssp
->lock
);
380 init_waitqueue_head(&ssp
->wqh
);
382 /* Power on and initialize SSP */
383 error
= clk_enable(ssp
->clk
);
385 dev_err(dev
, "cannot enable device clock\n");
389 /* Reset registers to a sensible known state */
390 ssp_write(ssp
, REG_IOSEL_1
, 0);
391 ssp_write(ssp
, REG_IOSEL_2
, 0);
392 ssp_write(ssp
, REG_INTR_EN
, 0x3);
393 ssp_write(ssp
, REG_INTR_ST
, 0x3);
394 ssp_write(ssp
, REG_TEST_CTRL
, 0);
395 ssp_port_write(ssp
, 0, PORT_CFG_1
, SSP_PORT_ASL
);
396 ssp_port_write(ssp
, 1, PORT_CFG_1
, SSP_PORT_ASL
);
397 ssp_port_write(ssp
, 0, PORT_CFG_2
, SSP_PORT_CFO1
);
398 ssp_port_write(ssp
, 1, PORT_CFG_2
, SSP_PORT_CFO1
);
400 sysclk
= clk_get_rate(ssp
->clk
);
401 if (pdata
&& pdata
->out_clock
)
402 prediv
= (sysclk
/ pdata
->out_clock
) - 1;
403 prediv
= clamp(prediv
, 0, 0xff);
404 ssp_rmw(ssp
, REG_PREDIV
, 0xff, prediv
);
406 memset(cells
, 0, sizeof(cells
));
407 for (id
= 0; id
< 2; id
++) {
408 const struct ti_ssp_dev_data
*data
= &pdata
->dev_data
[id
];
411 cells
[id
].name
= data
->dev_name
;
412 cells
[id
].platform_data
= data
->pdata
;
415 error
= mfd_add_devices(dev
, 0, cells
, 2, NULL
, 0, NULL
);
417 dev_err(dev
, "cannot add mfd cells\n");
424 free_irq(ssp
->irq
, ssp
);
430 release_mem_region(ssp
->res
->start
, resource_size(ssp
->res
));
436 static int ti_ssp_remove(struct platform_device
*pdev
)
438 struct device
*dev
= &pdev
->dev
;
439 struct ti_ssp
*ssp
= dev_get_drvdata(dev
);
441 mfd_remove_devices(dev
);
442 clk_disable(ssp
->clk
);
443 free_irq(ssp
->irq
, ssp
);
446 release_mem_region(ssp
->res
->start
, resource_size(ssp
->res
));
451 static struct platform_driver ti_ssp_driver
= {
452 .probe
= ti_ssp_probe
,
453 .remove
= ti_ssp_remove
,
456 .owner
= THIS_MODULE
,
460 module_platform_driver(ti_ssp_driver
);
462 MODULE_DESCRIPTION("Sequencer Serial Port (SSP) Driver");
463 MODULE_AUTHOR("Cyril Chemparathy");
464 MODULE_LICENSE("GPL");
465 MODULE_ALIAS("platform:ti-ssp");