| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 | /* arch/arm/plat-samsung/adc.c * * Copyright (c) 2008 Simtec Electronics *	http://armlinux.simtec.co.uk/ *	Ben Dooks <ben@simtec.co.uk>, <ben-linux@fluff.org> * * Samsung ADC device core * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License.*/#include <linux/module.h>#include <linux/kernel.h>#include <linux/platform_device.h>#include <linux/sched.h>#include <linux/list.h>#include <linux/slab.h>#include <linux/err.h>#include <linux/clk.h>#include <linux/interrupt.h>#include <linux/io.h>#include <linux/regulator/consumer.h>#include <plat/regs-adc.h>#include <plat/adc.h>/* This driver is designed to control the usage of the ADC block between * the touchscreen and any other drivers that may need to use it, such as * the hwmon driver. * * Priority will be given to the touchscreen driver, but as this itself is * rate limited it should not starve other requests which are processed in * order that they are received. * * Each user registers to get a client block which uniquely identifies it * and stores information such as the necessary functions to callback when * action is required. */enum s3c_cpu_type {	TYPE_ADCV1, /* S3C24XX */	TYPE_ADCV11, /* S3C2443 */	TYPE_ADCV12, /* S3C2416, S3C2450 */	TYPE_ADCV2, /* S3C64XX, S5P64X0, S5PC100 */	TYPE_ADCV3, /* S5PV210, S5PC110, EXYNOS4210 */};struct s3c_adc_client {	struct platform_device	*pdev;	struct list_head	 pend;	wait_queue_head_t	*wait;	unsigned int		 nr_samples;	int			 result;	unsigned char		 is_ts;	unsigned char		 channel;	void	(*select_cb)(struct s3c_adc_client *c, unsigned selected);	void	(*convert_cb)(struct s3c_adc_client *c,			      unsigned val1, unsigned val2,			      unsigned *samples_left);};struct adc_device {	struct platform_device	*pdev;	struct platform_device	*owner;	struct clk		*clk;	struct s3c_adc_client	*cur;	struct s3c_adc_client	*ts_pend;	void __iomem		*regs;	spinlock_t		 lock;	unsigned int		 prescale;	int			 irq;	struct regulator	*vdd;};static struct adc_device *adc_dev;static LIST_HEAD(adc_pending);	/* protected by adc_device.lock */#define adc_dbg(_adc, msg...) dev_dbg(&(_adc)->pdev->dev, msg)static inline void s3c_adc_convert(struct adc_device *adc){	unsigned con = readl(adc->regs + S3C2410_ADCCON);	con |= S3C2410_ADCCON_ENABLE_START;	writel(con, adc->regs + S3C2410_ADCCON);}static inline void s3c_adc_select(struct adc_device *adc,				  struct s3c_adc_client *client){	unsigned con = readl(adc->regs + S3C2410_ADCCON);	enum s3c_cpu_type cpu = platform_get_device_id(adc->pdev)->driver_data;	client->select_cb(client, 1);	if (cpu == TYPE_ADCV1 || cpu == TYPE_ADCV2)		con &= ~S3C2410_ADCCON_MUXMASK;	con &= ~S3C2410_ADCCON_STDBM;	con &= ~S3C2410_ADCCON_STARTMASK;	if (!client->is_ts) {		if (cpu == TYPE_ADCV3)			writel(client->channel & 0xf, adc->regs + S5P_ADCMUX);		else if (cpu == TYPE_ADCV11 || cpu == TYPE_ADCV12)			writel(client->channel & 0xf,						adc->regs + S3C2443_ADCMUX);		else			con |= S3C2410_ADCCON_SELMUX(client->channel);	}	writel(con, adc->regs + S3C2410_ADCCON);}static void s3c_adc_dbgshow(struct adc_device *adc){	adc_dbg(adc, "CON=%08x, TSC=%08x, DLY=%08x\n",		readl(adc->regs + S3C2410_ADCCON),		readl(adc->regs + S3C2410_ADCTSC),		readl(adc->regs + S3C2410_ADCDLY));}static void s3c_adc_try(struct adc_device *adc){	struct s3c_adc_client *next = adc->ts_pend;	if (!next && !list_empty(&adc_pending)) {		next = list_first_entry(&adc_pending,					struct s3c_adc_client, pend);		list_del(&next->pend);	} else		adc->ts_pend = NULL;	if (next) {		adc_dbg(adc, "new client is %p\n", next);		adc->cur = next;		s3c_adc_select(adc, next);		s3c_adc_convert(adc);		s3c_adc_dbgshow(adc);	}}int s3c_adc_start(struct s3c_adc_client *client,		  unsigned int channel, unsigned int nr_samples){	struct adc_device *adc = adc_dev;	unsigned long flags;	if (!adc) {		printk(KERN_ERR "%s: failed to find adc\n", __func__);		return -EINVAL;	}	spin_lock_irqsave(&adc->lock, flags);	if (client->is_ts && adc->ts_pend) {		spin_unlock_irqrestore(&adc->lock, flags);		return -EAGAIN;	}	client->channel = channel;
 |