2010-01-13 23:30:31 +00:00
|
|
|
/* arch/arm/plat-samsung/include/plat/adc.h
|
2008-12-18 14:20:04 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 2008 Simtec Electronics
|
2010-10-16 17:36:23 +00:00
|
|
|
* http://armlinux.simtec.co.uk/
|
2008-12-18 14:20:04 +00:00
|
|
|
* Ben Dooks <ben@simtec.co.uk>
|
|
|
|
*
|
2010-01-13 23:30:31 +00:00
|
|
|
* S3C ADC driver information
|
2008-12-18 14:20:04 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_PLAT_ADC_H
|
|
|
|
#define __ASM_PLAT_ADC_H __FILE__
|
|
|
|
|
|
|
|
struct s3c_adc_client;
|
|
|
|
|
|
|
|
extern int s3c_adc_start(struct s3c_adc_client *client,
|
|
|
|
unsigned int channel, unsigned int nr_samples);
|
|
|
|
|
2009-07-18 09:12:27 +00:00
|
|
|
extern int s3c_adc_read(struct s3c_adc_client *client, unsigned int ch);
|
|
|
|
|
2009-05-08 13:10:04 +00:00
|
|
|
extern struct s3c_adc_client *
|
|
|
|
s3c_adc_register(struct platform_device *pdev,
|
2009-07-18 09:12:27 +00:00
|
|
|
void (*select)(struct s3c_adc_client *client,
|
|
|
|
unsigned selected),
|
|
|
|
void (*conv)(struct s3c_adc_client *client,
|
|
|
|
unsigned d0, unsigned d1,
|
2009-05-08 13:10:12 +00:00
|
|
|
unsigned *samples_left),
|
2009-05-08 13:10:04 +00:00
|
|
|
unsigned int is_ts);
|
2008-12-18 14:20:04 +00:00
|
|
|
|
|
|
|
extern void s3c_adc_release(struct s3c_adc_client *client);
|
|
|
|
|
|
|
|
#endif /* __ASM_PLAT_ADC_H */
|