Chinaunix首页 | 论坛 | 博客
  • 博客访问: 104553
  • 博文数量: 31
  • 博客积分: 2292
  • 博客等级: 大尉
  • 技术积分: 310
  • 用 户 组: 普通用户
  • 注册时间: 2010-01-17 23:41
文章分类

全部博文(31)

文章存档

2011年(2)

2010年(29)

分类: LINUX

2010-10-02 14:02:37

#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/input.h>
#include <linux/init.h>
#include <linux/serio.h>
#include <linux/delay.h>
#include <linux/clk.h>
#include <linux/wait.h>
#include <linux/sched.h>
#include <asm/io.h>
#include <asm/irq.h>
#include <asm/uaccess.h>
#include <mach/regs-clock.h>
#include <plat/regs-timer.h>
    
#include <plat/regs-adc.h>
#include <mach/regs-gpio.h>
#include <linux/cdev.h>
#include <linux/miscdevice.h>

#include "s3c24xx-adc.h"

#undef DEBUG
//#define DEBUG

#ifdef DEBUG
#define DPRINTK(x...) {printk(__FUNCTION__"(%d): ",__LINE__);printk(##x);}
#else
#define DPRINTK(x...) (void)(0)
#endif


/*定义设备名*/
#define DEVICE_NAME    "adc"

static void __iomem *base_addr;

/*定义adc设备结构*/
typedef struct {
    wait_queue_head_t wait;
    int channel;
    int prescale;
}ADC_DEV;

/*声明互斥信号量*/
DECLARE_MUTEX(ADC_LOCK);
static int OwnADC = 0;

static ADC_DEV adcdev;
static volatile int ev_adc = 0;
static int adc_data;

static struct clk    *adc_clock;

#define ADCCON (*(volatile unsigned long *)(base_addr + S3C2410_ADCCON))    //ADC control

#define ADCTSC (*(volatile unsigned long *)(base_addr + S3C2410_ADCTSC))    //ADC touch screen control

#define ADCDLY (*(volatile unsigned long *)(base_addr + S3C2410_ADCDLY))    //ADC start or Interval Delay

#define ADCDAT0 (*(volatile unsigned long *)(base_addr + S3C2410_ADCDAT0))    //ADC conversion data 0

#define ADCDAT1 (*(volatile unsigned long *)(base_addr + S3C2410_ADCDAT1))    //ADC conversion data 1

#define ADCUPDN (*(volatile unsigned long *)(base_addr + 0x14))    //Stylus Up/Down interrupt status


#define PRESCALE_DIS (0 << 14)
#define PRESCALE_EN (1 << 14)
#define PRSCVL(x) ((x) << 6)
#define ADC_INPUT(x) ((x) << 3)
#define ADC_START (1 << 0)
#define ADC_ENDCVT (1 << 15)

#define START_ADC_AIN(ch, prescale) \
    do{ \
        ADCCON = PRESCALE_EN | PRSCVL(prescale) | ADC_INPUT((ch)) ; \
        ADCCON |= ADC_START; \
    }while(0)

/*中断处理函数*/
static irqreturn_t adcdone_int_handler(int irq, void *dev_id)
{
    if (OwnADC) {
        adc_data = ADCDAT0 & 0x3ff;

        ev_adc = 1;
        wake_up_interruptible(&adcdev.wait);//唤醒等待队列

    }

    return IRQ_HANDLED;
}

/*adc读函数*/
static ssize_t s3c2410_adc_read(struct file *filp, char *buffer, size_t count, loff_t *ppos)
{
    char str[20];
    int value;
    size_t len;
    if (down_trylock(&ADC_LOCK) == 0) {
        OwnADC = 1;
        START_ADC_AIN(adcdev.channel, adcdev.prescale);
        /*等待,转换完成后会产生中断,中断会把ev_adc=1*/
        wait_event_interruptible(adcdev.wait, ev_adc);

        ev_adc = 0;

        DPRINTK("AIN[%d] = 0x%04x, %d\n", adcdev.channel, adc_data, ADCCON & 0x80 ? 1:0);

        value = adc_data;

        OwnADC = 0;
        up(&ADC_LOCK);//释放AD

    } else {
        value = -1;
    }
    /*把整型的value打印成一个字符串保存到str*/
    len = sprintf(str, "%d\n", value);
    if (count >= len) {
        int r = copy_to_user(buffer, str, len);//传到用户空间

        return r ? r : len;
    } else {
        return -EINVAL;
    }
}
/*打开设备*/
static int s3c2410_adc_open(struct inode *inode, struct file *filp)
{
    /*构建等待队列*/
    init_waitqueue_head(&(adcdev.wait));

    adcdev.channel=0;
    adcdev.prescale=0xff;

    DPRINTK( "adc opened\n");
    return 0;
}

static int s3c2410_adc_release(struct inode *inode, struct file *filp)
{
    DPRINTK( "adc closed\n");
    return 0;
}


static struct file_operations dev_fops = {
    owner:    THIS_MODULE,
    open:    s3c2410_adc_open,
    read:    s3c2410_adc_read,    
    release:    s3c2410_adc_release,
};

static struct miscdevice misc = {
    .minor = MISC_DYNAMIC_MINOR,
    .name = DEVICE_NAME,
    .fops = &dev_fops,
};

static int __init dev_init(void)
{
    int ret;

    base_addr=ioremap(S3C2410_PA_ADC,0x20);
    if (base_addr == NULL) {
        printk(KERN_ERR "Failed to remap register block\n");
        return -ENOMEM;
    }

    adc_clock = clk_get(NULL, "adc");//不是很懂

    if (!adc_clock) {
        printk(KERN_ERR "failed to get adc clock source\n");
        return -ENOENT;
    }
    clk_enable(adc_clock);
    
    /* normal ADC */
    ADCTSC = 0;
    /*注册中断*/
    ret = request_irq(IRQ_ADC, adcdone_int_handler, IRQF_SHARED, DEVICE_NAME, &adcdev);
    if (ret) {
        iounmap(base_addr);//解除地址映射

        return ret;
    }

    ret = misc_register(&misc);

    printk (DEVICE_NAME"\tinitialized\n");
    return ret;
}

static void __exit dev_exit(void)
{
    /*注销中断*/
    free_irq(IRQ_ADC, &adcdev);
    iounmap(base_addr);

    if (adc_clock) {
        clk_disable(adc_clock);
        clk_put(adc_clock);
        adc_clock = NULL;
    }

    misc_deregister(&misc);
}

EXPORT_SYMBOL(ADC_LOCK);
module_init(dev_init);
module_exit(dev_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("FriendlyARM Inc.");



其中adc_clock = clk_get(NULL, "adc");不太懂

参照
kernel-2.6.13各个模块时钟的用法
我用的内核是2.6.32.2的他的是2.6.13,差别还是挺大的,有些地方还是不懂
阅读(1233) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~