headers: remove sched.h from interrupt.h
[deliverable/linux.git] / drivers / mfd / ucb1x00-core.c
CommitLineData
05c45ca9
RK
1/*
2 * linux/drivers/mfd/ucb1x00-core.c
3 *
4 * Copyright (C) 2001 Russell King, All Rights Reserved.
5 *
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.
9 *
10 * The UCB1x00 core driver provides basic services for handling IO,
11 * the ADC, interrupts, and accessing registers. It is designed
12 * such that everything goes through this layer, thereby providing
13 * a consistent locking methodology, as well as allowing the drivers
14 * to be used on other non-MCP-enabled hardware platforms.
15 *
16 * Note that all locks are private to this file. Nothing else may
17 * touch them.
18 */
05c45ca9
RK
19#include <linux/module.h>
20#include <linux/kernel.h>
d43c36dc 21#include <linux/sched.h>
05c45ca9
RK
22#include <linux/slab.h>
23#include <linux/init.h>
24#include <linux/errno.h>
25#include <linux/interrupt.h>
26#include <linux/device.h>
a621aaed 27#include <linux/mutex.h>
05c45ca9 28
dcea83ad 29#include <mach/dma.h>
a09e64fb 30#include <mach/hardware.h>
05c45ca9
RK
31
32#include "ucb1x00.h"
33
a621aaed 34static DEFINE_MUTEX(ucb1x00_mutex);
05c45ca9
RK
35static LIST_HEAD(ucb1x00_drivers);
36static LIST_HEAD(ucb1x00_devices);
37
38/**
39 * ucb1x00_io_set_dir - set IO direction
40 * @ucb: UCB1x00 structure describing chip
41 * @in: bitfield of IO pins to be set as inputs
42 * @out: bitfield of IO pins to be set as outputs
43 *
44 * Set the IO direction of the ten general purpose IO pins on
45 * the UCB1x00 chip. The @in bitfield has priority over the
46 * @out bitfield, in that if you specify a pin as both input
47 * and output, it will end up as an input.
48 *
49 * ucb1x00_enable must have been called to enable the comms
50 * before using this function.
51 *
52 * This function takes a spinlock, disabling interrupts.
53 */
54void ucb1x00_io_set_dir(struct ucb1x00 *ucb, unsigned int in, unsigned int out)
55{
56 unsigned long flags;
57
58 spin_lock_irqsave(&ucb->io_lock, flags);
59 ucb->io_dir |= out;
60 ucb->io_dir &= ~in;
61
62 ucb1x00_reg_write(ucb, UCB_IO_DIR, ucb->io_dir);
63 spin_unlock_irqrestore(&ucb->io_lock, flags);
64}
65
66/**
67 * ucb1x00_io_write - set or clear IO outputs
68 * @ucb: UCB1x00 structure describing chip
69 * @set: bitfield of IO pins to set to logic '1'
70 * @clear: bitfield of IO pins to set to logic '0'
71 *
72 * Set the IO output state of the specified IO pins. The value
73 * is retained if the pins are subsequently configured as inputs.
74 * The @clear bitfield has priority over the @set bitfield -
75 * outputs will be cleared.
76 *
77 * ucb1x00_enable must have been called to enable the comms
78 * before using this function.
79 *
80 * This function takes a spinlock, disabling interrupts.
81 */
82void ucb1x00_io_write(struct ucb1x00 *ucb, unsigned int set, unsigned int clear)
83{
84 unsigned long flags;
85
86 spin_lock_irqsave(&ucb->io_lock, flags);
87 ucb->io_out |= set;
88 ucb->io_out &= ~clear;
89
90 ucb1x00_reg_write(ucb, UCB_IO_DATA, ucb->io_out);
91 spin_unlock_irqrestore(&ucb->io_lock, flags);
92}
93
94/**
95 * ucb1x00_io_read - read the current state of the IO pins
96 * @ucb: UCB1x00 structure describing chip
97 *
98 * Return a bitfield describing the logic state of the ten
99 * general purpose IO pins.
100 *
101 * ucb1x00_enable must have been called to enable the comms
102 * before using this function.
103 *
104 * This function does not take any semaphores or spinlocks.
105 */
106unsigned int ucb1x00_io_read(struct ucb1x00 *ucb)
107{
108 return ucb1x00_reg_read(ucb, UCB_IO_DATA);
109}
110
111/*
112 * UCB1300 data sheet says we must:
113 * 1. enable ADC => 5us (including reference startup time)
114 * 2. select input => 51*tsibclk => 4.3us
115 * 3. start conversion => 102*tsibclk => 8.5us
116 * (tsibclk = 1/11981000)
117 * Period between SIB 128-bit frames = 10.7us
118 */
119
120/**
121 * ucb1x00_adc_enable - enable the ADC converter
122 * @ucb: UCB1x00 structure describing chip
123 *
124 * Enable the ucb1x00 and ADC converter on the UCB1x00 for use.
125 * Any code wishing to use the ADC converter must call this
126 * function prior to using it.
127 *
128 * This function takes the ADC semaphore to prevent two or more
129 * concurrent uses, and therefore may sleep. As a result, it
130 * can only be called from process context, not interrupt
131 * context.
132 *
133 * You should release the ADC as soon as possible using
134 * ucb1x00_adc_disable.
135 */
136void ucb1x00_adc_enable(struct ucb1x00 *ucb)
137{
138 down(&ucb->adc_sem);
139
140 ucb->adc_cr |= UCB_ADC_ENA;
141
142 ucb1x00_enable(ucb);
143 ucb1x00_reg_write(ucb, UCB_ADC_CR, ucb->adc_cr);
144}
145
146/**
147 * ucb1x00_adc_read - read the specified ADC channel
148 * @ucb: UCB1x00 structure describing chip
149 * @adc_channel: ADC channel mask
150 * @sync: wait for syncronisation pulse.
151 *
152 * Start an ADC conversion and wait for the result. Note that
153 * synchronised ADC conversions (via the ADCSYNC pin) must wait
154 * until the trigger is asserted and the conversion is finished.
155 *
156 * This function currently spins waiting for the conversion to
157 * complete (2 frames max without sync).
158 *
159 * If called for a synchronised ADC conversion, it may sleep
160 * with the ADC semaphore held.
161 */
162unsigned int ucb1x00_adc_read(struct ucb1x00 *ucb, int adc_channel, int sync)
163{
164 unsigned int val;
165
166 if (sync)
167 adc_channel |= UCB_ADC_SYNC_ENA;
168
169 ucb1x00_reg_write(ucb, UCB_ADC_CR, ucb->adc_cr | adc_channel);
170 ucb1x00_reg_write(ucb, UCB_ADC_CR, ucb->adc_cr | adc_channel | UCB_ADC_START);
171
172 for (;;) {
173 val = ucb1x00_reg_read(ucb, UCB_ADC_DATA);
174 if (val & UCB_ADC_DAT_VAL)
175 break;
176 /* yield to other processes */
177 set_current_state(TASK_INTERRUPTIBLE);
178 schedule_timeout(1);
179 }
180
181 return UCB_ADC_DAT(val);
182}
183
184/**
185 * ucb1x00_adc_disable - disable the ADC converter
186 * @ucb: UCB1x00 structure describing chip
187 *
188 * Disable the ADC converter and release the ADC semaphore.
189 */
190void ucb1x00_adc_disable(struct ucb1x00 *ucb)
191{
192 ucb->adc_cr &= ~UCB_ADC_ENA;
193 ucb1x00_reg_write(ucb, UCB_ADC_CR, ucb->adc_cr);
194 ucb1x00_disable(ucb);
195
196 up(&ucb->adc_sem);
197}
198
199/*
200 * UCB1x00 Interrupt handling.
201 *
202 * The UCB1x00 can generate interrupts when the SIBCLK is stopped.
203 * Since we need to read an internal register, we must re-enable
204 * SIBCLK to talk to the chip. We leave the clock running until
205 * we have finished processing all interrupts from the chip.
206 */
7d12e780 207static irqreturn_t ucb1x00_irq(int irqnr, void *devid)
05c45ca9
RK
208{
209 struct ucb1x00 *ucb = devid;
210 struct ucb1x00_irq *irq;
211 unsigned int isr, i;
212
213 ucb1x00_enable(ucb);
214 isr = ucb1x00_reg_read(ucb, UCB_IE_STATUS);
215 ucb1x00_reg_write(ucb, UCB_IE_CLEAR, isr);
216 ucb1x00_reg_write(ucb, UCB_IE_CLEAR, 0);
217
218 for (i = 0, irq = ucb->irq_handler; i < 16 && isr; i++, isr >>= 1, irq++)
219 if (isr & 1 && irq->fn)
220 irq->fn(i, irq->devid);
221 ucb1x00_disable(ucb);
222
223 return IRQ_HANDLED;
224}
225
226/**
227 * ucb1x00_hook_irq - hook a UCB1x00 interrupt
228 * @ucb: UCB1x00 structure describing chip
229 * @idx: interrupt index
230 * @fn: function to call when interrupt is triggered
231 * @devid: device id to pass to interrupt handler
232 *
233 * Hook the specified interrupt. You can only register one handler
234 * for each interrupt source. The interrupt source is not enabled
235 * by this function; use ucb1x00_enable_irq instead.
236 *
237 * Interrupt handlers will be called with other interrupts enabled.
238 *
239 * Returns zero on success, or one of the following errors:
240 * -EINVAL if the interrupt index is invalid
241 * -EBUSY if the interrupt has already been hooked
242 */
243int ucb1x00_hook_irq(struct ucb1x00 *ucb, unsigned int idx, void (*fn)(int, void *), void *devid)
244{
245 struct ucb1x00_irq *irq;
246 int ret = -EINVAL;
247
248 if (idx < 16) {
249 irq = ucb->irq_handler + idx;
250 ret = -EBUSY;
251
252 spin_lock_irq(&ucb->lock);
253 if (irq->fn == NULL) {
254 irq->devid = devid;
255 irq->fn = fn;
256 ret = 0;
257 }
258 spin_unlock_irq(&ucb->lock);
259 }
260 return ret;
261}
262
263/**
264 * ucb1x00_enable_irq - enable an UCB1x00 interrupt source
265 * @ucb: UCB1x00 structure describing chip
266 * @idx: interrupt index
267 * @edges: interrupt edges to enable
268 *
269 * Enable the specified interrupt to trigger on %UCB_RISING,
270 * %UCB_FALLING or both edges. The interrupt should have been
271 * hooked by ucb1x00_hook_irq.
272 */
273void ucb1x00_enable_irq(struct ucb1x00 *ucb, unsigned int idx, int edges)
274{
275 unsigned long flags;
276
277 if (idx < 16) {
278 spin_lock_irqsave(&ucb->lock, flags);
279
280 ucb1x00_enable(ucb);
281 if (edges & UCB_RISING) {
282 ucb->irq_ris_enbl |= 1 << idx;
283 ucb1x00_reg_write(ucb, UCB_IE_RIS, ucb->irq_ris_enbl);
284 }
285 if (edges & UCB_FALLING) {
286 ucb->irq_fal_enbl |= 1 << idx;
287 ucb1x00_reg_write(ucb, UCB_IE_FAL, ucb->irq_fal_enbl);
288 }
289 ucb1x00_disable(ucb);
290 spin_unlock_irqrestore(&ucb->lock, flags);
291 }
292}
293
294/**
295 * ucb1x00_disable_irq - disable an UCB1x00 interrupt source
296 * @ucb: UCB1x00 structure describing chip
297 * @edges: interrupt edges to disable
298 *
299 * Disable the specified interrupt triggering on the specified
300 * (%UCB_RISING, %UCB_FALLING or both) edges.
301 */
302void ucb1x00_disable_irq(struct ucb1x00 *ucb, unsigned int idx, int edges)
303{
304 unsigned long flags;
305
306 if (idx < 16) {
307 spin_lock_irqsave(&ucb->lock, flags);
308
309 ucb1x00_enable(ucb);
310 if (edges & UCB_RISING) {
311 ucb->irq_ris_enbl &= ~(1 << idx);
312 ucb1x00_reg_write(ucb, UCB_IE_RIS, ucb->irq_ris_enbl);
313 }
314 if (edges & UCB_FALLING) {
315 ucb->irq_fal_enbl &= ~(1 << idx);
316 ucb1x00_reg_write(ucb, UCB_IE_FAL, ucb->irq_fal_enbl);
317 }
318 ucb1x00_disable(ucb);
319 spin_unlock_irqrestore(&ucb->lock, flags);
320 }
321}
322
323/**
324 * ucb1x00_free_irq - disable and free the specified UCB1x00 interrupt
325 * @ucb: UCB1x00 structure describing chip
326 * @idx: interrupt index
327 * @devid: device id.
328 *
329 * Disable the interrupt source and remove the handler. devid must
330 * match the devid passed when hooking the interrupt.
331 *
332 * Returns zero on success, or one of the following errors:
333 * -EINVAL if the interrupt index is invalid
334 * -ENOENT if devid does not match
335 */
336int ucb1x00_free_irq(struct ucb1x00 *ucb, unsigned int idx, void *devid)
337{
338 struct ucb1x00_irq *irq;
339 int ret;
340
341 if (idx >= 16)
342 goto bad;
343
344 irq = ucb->irq_handler + idx;
345 ret = -ENOENT;
346
347 spin_lock_irq(&ucb->lock);
348 if (irq->devid == devid) {
349 ucb->irq_ris_enbl &= ~(1 << idx);
350 ucb->irq_fal_enbl &= ~(1 << idx);
351
352 ucb1x00_enable(ucb);
353 ucb1x00_reg_write(ucb, UCB_IE_RIS, ucb->irq_ris_enbl);
354 ucb1x00_reg_write(ucb, UCB_IE_FAL, ucb->irq_fal_enbl);
355 ucb1x00_disable(ucb);
356
357 irq->fn = NULL;
358 irq->devid = NULL;
359 ret = 0;
360 }
361 spin_unlock_irq(&ucb->lock);
362 return ret;
363
364bad:
365 printk(KERN_ERR "Freeing bad UCB1x00 irq %d\n", idx);
366 return -EINVAL;
367}
368
369static int ucb1x00_add_dev(struct ucb1x00 *ucb, struct ucb1x00_driver *drv)
370{
371 struct ucb1x00_dev *dev;
372 int ret = -ENOMEM;
373
374 dev = kmalloc(sizeof(struct ucb1x00_dev), GFP_KERNEL);
375 if (dev) {
376 dev->ucb = ucb;
377 dev->drv = drv;
378
379 ret = drv->add(dev);
380
381 if (ret == 0) {
382 list_add(&dev->dev_node, &ucb->devs);
383 list_add(&dev->drv_node, &drv->devs);
384 } else {
385 kfree(dev);
386 }
387 }
388 return ret;
389}
390
391static void ucb1x00_remove_dev(struct ucb1x00_dev *dev)
392{
393 dev->drv->remove(dev);
394 list_del(&dev->dev_node);
395 list_del(&dev->drv_node);
396 kfree(dev);
397}
398
399/*
400 * Try to probe our interrupt, rather than relying on lots of
401 * hard-coded machine dependencies. For reference, the expected
402 * IRQ mappings are:
403 *
404 * Machine Default IRQ
405 * adsbitsy IRQ_GPCIN4
406 * cerf IRQ_GPIO_UCB1200_IRQ
407 * flexanet IRQ_GPIO_GUI
408 * freebird IRQ_GPIO_FREEBIRD_UCB1300_IRQ
409 * graphicsclient ADS_EXT_IRQ(8)
410 * graphicsmaster ADS_EXT_IRQ(8)
411 * lart LART_IRQ_UCB1200
412 * omnimeter IRQ_GPIO23
413 * pfs168 IRQ_GPIO_UCB1300_IRQ
414 * simpad IRQ_GPIO_UCB1300_IRQ
415 * shannon SHANNON_IRQ_GPIO_IRQ_CODEC
416 * yopy IRQ_GPIO_UCB1200_IRQ
417 */
418static int ucb1x00_detect_irq(struct ucb1x00 *ucb)
419{
420 unsigned long mask;
421
422 mask = probe_irq_on();
cfc73656
IM
423 if (!mask) {
424 probe_irq_off(mask);
05c45ca9 425 return NO_IRQ;
cfc73656 426 }
05c45ca9
RK
427
428 /*
429 * Enable the ADC interrupt.
430 */
431 ucb1x00_reg_write(ucb, UCB_IE_RIS, UCB_IE_ADC);
432 ucb1x00_reg_write(ucb, UCB_IE_FAL, UCB_IE_ADC);
433 ucb1x00_reg_write(ucb, UCB_IE_CLEAR, 0xffff);
434 ucb1x00_reg_write(ucb, UCB_IE_CLEAR, 0);
435
436 /*
437 * Cause an ADC interrupt.
438 */
439 ucb1x00_reg_write(ucb, UCB_ADC_CR, UCB_ADC_ENA);
440 ucb1x00_reg_write(ucb, UCB_ADC_CR, UCB_ADC_ENA | UCB_ADC_START);
441
442 /*
443 * Wait for the conversion to complete.
444 */
445 while ((ucb1x00_reg_read(ucb, UCB_ADC_DATA) & UCB_ADC_DAT_VAL) == 0);
446 ucb1x00_reg_write(ucb, UCB_ADC_CR, 0);
447
448 /*
449 * Disable and clear interrupt.
450 */
451 ucb1x00_reg_write(ucb, UCB_IE_RIS, 0);
452 ucb1x00_reg_write(ucb, UCB_IE_FAL, 0);
453 ucb1x00_reg_write(ucb, UCB_IE_CLEAR, 0xffff);
454 ucb1x00_reg_write(ucb, UCB_IE_CLEAR, 0);
455
456 /*
457 * Read triggered interrupt.
458 */
459 return probe_irq_off(mask);
460}
461
0c55445f 462static void ucb1x00_release(struct device *dev)
585f5457
NP
463{
464 struct ucb1x00 *ucb = classdev_to_ucb1x00(dev);
465 kfree(ucb);
466}
467
468static struct class ucb1x00_class = {
469 .name = "ucb1x00",
0c55445f 470 .dev_release = ucb1x00_release,
585f5457
NP
471};
472
05c45ca9
RK
473static int ucb1x00_probe(struct mcp *mcp)
474{
475 struct ucb1x00 *ucb;
476 struct ucb1x00_driver *drv;
477 unsigned int id;
478 int ret = -ENODEV;
479
480 mcp_enable(mcp);
481 id = mcp_reg_read(mcp, UCB_ID);
482
b94ea6c0 483 if (id != UCB_ID_1200 && id != UCB_ID_1300 && id != UCB_ID_TC35143) {
05c45ca9
RK
484 printk(KERN_WARNING "UCB1x00 ID not found: %04x\n", id);
485 goto err_disable;
486 }
487
dd00cc48 488 ucb = kzalloc(sizeof(struct ucb1x00), GFP_KERNEL);
05c45ca9
RK
489 ret = -ENOMEM;
490 if (!ucb)
491 goto err_disable;
492
05c45ca9 493
0c55445f
TJ
494 ucb->dev.class = &ucb1x00_class;
495 ucb->dev.parent = &mcp->attached_device;
b2bf61f2 496 dev_set_name(&ucb->dev, "ucb1x00");
05c45ca9
RK
497
498 spin_lock_init(&ucb->lock);
499 spin_lock_init(&ucb->io_lock);
500 sema_init(&ucb->adc_sem, 1);
501
502 ucb->id = id;
503 ucb->mcp = mcp;
504 ucb->irq = ucb1x00_detect_irq(ucb);
505 if (ucb->irq == NO_IRQ) {
506 printk(KERN_ERR "UCB1x00: IRQ probe failed\n");
507 ret = -ENODEV;
508 goto err_free;
509 }
510
dace1453 511 ret = request_irq(ucb->irq, ucb1x00_irq, IRQF_TRIGGER_RISING,
9ded96f2 512 "UCB1x00", ucb);
05c45ca9
RK
513 if (ret) {
514 printk(KERN_ERR "ucb1x00: unable to grab irq%d: %d\n",
515 ucb->irq, ret);
516 goto err_free;
517 }
518
05c45ca9
RK
519 mcp_set_drvdata(mcp, ucb);
520
0c55445f 521 ret = device_register(&ucb->dev);
05c45ca9
RK
522 if (ret)
523 goto err_irq;
524
525 INIT_LIST_HEAD(&ucb->devs);
a621aaed 526 mutex_lock(&ucb1x00_mutex);
05c45ca9
RK
527 list_add(&ucb->node, &ucb1x00_devices);
528 list_for_each_entry(drv, &ucb1x00_drivers, node) {
529 ucb1x00_add_dev(ucb, drv);
530 }
a621aaed 531 mutex_unlock(&ucb1x00_mutex);
05c45ca9
RK
532 goto out;
533
534 err_irq:
535 free_irq(ucb->irq, ucb);
536 err_free:
537 kfree(ucb);
538 err_disable:
539 mcp_disable(mcp);
540 out:
541 return ret;
542}
543
544static void ucb1x00_remove(struct mcp *mcp)
545{
546 struct ucb1x00 *ucb = mcp_get_drvdata(mcp);
547 struct list_head *l, *n;
548
a621aaed 549 mutex_lock(&ucb1x00_mutex);
05c45ca9
RK
550 list_del(&ucb->node);
551 list_for_each_safe(l, n, &ucb->devs) {
552 struct ucb1x00_dev *dev = list_entry(l, struct ucb1x00_dev, dev_node);
553 ucb1x00_remove_dev(dev);
554 }
a621aaed 555 mutex_unlock(&ucb1x00_mutex);
05c45ca9
RK
556
557 free_irq(ucb->irq, ucb);
0c55445f 558 device_unregister(&ucb->dev);
05c45ca9
RK
559}
560
05c45ca9
RK
561int ucb1x00_register_driver(struct ucb1x00_driver *drv)
562{
563 struct ucb1x00 *ucb;
564
565 INIT_LIST_HEAD(&drv->devs);
a621aaed 566 mutex_lock(&ucb1x00_mutex);
05c45ca9
RK
567 list_add(&drv->node, &ucb1x00_drivers);
568 list_for_each_entry(ucb, &ucb1x00_devices, node) {
569 ucb1x00_add_dev(ucb, drv);
570 }
a621aaed 571 mutex_unlock(&ucb1x00_mutex);
05c45ca9
RK
572 return 0;
573}
574
575void ucb1x00_unregister_driver(struct ucb1x00_driver *drv)
576{
577 struct list_head *n, *l;
578
a621aaed 579 mutex_lock(&ucb1x00_mutex);
05c45ca9
RK
580 list_del(&drv->node);
581 list_for_each_safe(l, n, &drv->devs) {
582 struct ucb1x00_dev *dev = list_entry(l, struct ucb1x00_dev, drv_node);
583 ucb1x00_remove_dev(dev);
584 }
a621aaed 585 mutex_unlock(&ucb1x00_mutex);
05c45ca9
RK
586}
587
588static int ucb1x00_suspend(struct mcp *mcp, pm_message_t state)
589{
590 struct ucb1x00 *ucb = mcp_get_drvdata(mcp);
591 struct ucb1x00_dev *dev;
592
a621aaed 593 mutex_lock(&ucb1x00_mutex);
05c45ca9
RK
594 list_for_each_entry(dev, &ucb->devs, dev_node) {
595 if (dev->drv->suspend)
596 dev->drv->suspend(dev, state);
597 }
a621aaed 598 mutex_unlock(&ucb1x00_mutex);
05c45ca9
RK
599 return 0;
600}
601
602static int ucb1x00_resume(struct mcp *mcp)
603{
604 struct ucb1x00 *ucb = mcp_get_drvdata(mcp);
605 struct ucb1x00_dev *dev;
606
a621aaed 607 mutex_lock(&ucb1x00_mutex);
05c45ca9
RK
608 list_for_each_entry(dev, &ucb->devs, dev_node) {
609 if (dev->drv->resume)
610 dev->drv->resume(dev);
611 }
a621aaed 612 mutex_unlock(&ucb1x00_mutex);
05c45ca9
RK
613 return 0;
614}
615
616static struct mcp_driver ucb1x00_driver = {
617 .drv = {
618 .name = "ucb1x00",
619 },
620 .probe = ucb1x00_probe,
621 .remove = ucb1x00_remove,
622 .suspend = ucb1x00_suspend,
623 .resume = ucb1x00_resume,
624};
625
626static int __init ucb1x00_init(void)
627{
628 int ret = class_register(&ucb1x00_class);
629 if (ret == 0) {
630 ret = mcp_driver_register(&ucb1x00_driver);
631 if (ret)
632 class_unregister(&ucb1x00_class);
633 }
634 return ret;
635}
636
637static void __exit ucb1x00_exit(void)
638{
639 mcp_driver_unregister(&ucb1x00_driver);
640 class_unregister(&ucb1x00_class);
641}
642
643module_init(ucb1x00_init);
644module_exit(ucb1x00_exit);
645
05c45ca9
RK
646EXPORT_SYMBOL(ucb1x00_io_set_dir);
647EXPORT_SYMBOL(ucb1x00_io_write);
648EXPORT_SYMBOL(ucb1x00_io_read);
649
650EXPORT_SYMBOL(ucb1x00_adc_enable);
651EXPORT_SYMBOL(ucb1x00_adc_read);
652EXPORT_SYMBOL(ucb1x00_adc_disable);
653
654EXPORT_SYMBOL(ucb1x00_hook_irq);
655EXPORT_SYMBOL(ucb1x00_free_irq);
656EXPORT_SYMBOL(ucb1x00_enable_irq);
657EXPORT_SYMBOL(ucb1x00_disable_irq);
658
659EXPORT_SYMBOL(ucb1x00_register_driver);
660EXPORT_SYMBOL(ucb1x00_unregister_driver);
661
662MODULE_AUTHOR("Russell King <rmk@arm.linux.org.uk>");
663MODULE_DESCRIPTION("UCB1x00 core driver");
664MODULE_LICENSE("GPL");
This page took 0.423997 seconds and 5 git commands to generate.