访问linux上的并行端口硬件

时间:2012-08-04 08:01:42

标签: c linux-device-driver

我写了一个并行端口Linux设备驱动程序,但我无法访问并行端口硬件

#include <linux/init.h>
#include <linux/autoconf.h>
#include <linux/module.h>
#include <linux/kernel.h> 
#include <linux/slab.h> 
#include <linux/fs.h> 
#include <linux/errno.h> 
#include <linux/types.h>
#include <linux/proc_fs.h>
#include <linux/fcntl.h>
#include <linux/ioport.h>
#include <asm/system.h> 
#include <asm/uaccess.h> 
#include <asm/io.h> 
#define DRVNAME "parportleds"
#define BASEPORT 0x378

MODULE_LICENSE("Dual BSD/GPL");
MODULE_AUTHOR("Ganesh");
MODULE_DESCRIPTION("Parallel port LED driver.");


int parportleds_open(struct inode *inode, struct file *filp);
int parportleds_release(struct inode *inode, struct file *filp);
ssize_t parportleds_read(struct file *filp,char *buf,size_t count, loff_t *f_pos);
ssize_t parportleds_write(struct file *filp, const char *buf,size_t count, loff_t   *f_pos);

void parportleds_exit(void);
int parportleds_init(void);


struct file_operations parportleds_fops = {
  read: parportleds_read,
  write: parportleds_write,
  open: parportleds_open,
  release: parportleds_release
};

int parportleds_major = 61;
int port;

module_init(parportleds_init);
module_exit(parportleds_exit);

int parportleds_init(void) {
  int result;
  result = register_chrdev(parportleds_major, DRVNAME,&parportleds_fops);
  if (result < 0) {
    printk("<1>parport: cannot obtain major number %d\n",parportleds_major);
    return result;
  }
  port = check_region(BASEPORT, 1);
  if (port) {
    printk("<1>parportleds: cannot reserve 0x378 \n");
    result = port;
    goto fail;
  }
  request_region(BASEPORT, 1, DRVNAME);
  printk("<1>Inserting parportled module\n");
  return 0;
  fail:
    parportleds_exit();
    return result;
}
void parportleds_exit(void) {
  unregister_chrdev(parportleds_major, DRVNAME);
  if (!port) {
    release_region(BASEPORT,1);
  }
  printk("<1>Removing module parportleds\n");
}
int parportleds_open(struct inode *inode, struct file *filp) {
  return 0;
}
int parportleds_release(struct inode *inode, struct file *filp) {
  return 0;
}
ssize_t parportleds_read(struct file *filp, char *buf,size_t count, loff_t *f_pos) {
  char parportleds_buffer;
  parportleds_buffer = inb(BASEPORT);
  copy_to_user(buf,&parportleds_buffer,1);
  if (*f_pos == 0) {
    *f_pos+=1;
    return 1;
  } else {
    return 0;
  }
}
ssize_t parportleds_write( struct file *filp, const char *buf, size_t count, loff_t     *f_pos) {
  char *tmp;
  char parportleds_buffer;
  tmp=(char *)buf+count-1;
  copy_from_user(&parportleds_buffer,tmp,1);
  outb(parportleds_buffer,BASEPORT);
  printk("<1>parport write: %d\n",parportleds_buffer);
  return 1;
}

这是我的代码,当我尝试读取和写入/dev/parportleds我在dmesg中获取成功信息时 但是当我尝试使用echo 3 > /dev/parportleds时使用高位并行端口时 并联端口的数据电压保持不变 任何人都可以帮我解决这个问题 这是我第一次尝试编写设备驱动程序。

1 个答案:

答案 0 :(得分:0)

首先注意几点:

1)记下InternetSeriousBusiness&#39;注释:当您将字符回显到char设备时,设备将接收ASCII编码的位模式。查看ASCII table以查看您需要发送哪个字符以获得所需的位模式。

2)您提到当发送位模式时,输出电压不会改变。另一个方向呢?您读取的值是否准确反映了施加在引脚上的电压,还是那些关闭的电压?如果是,那么你知道问题与写作有关。如果不是,那么您甚至可能无法以您认为的方式连接到端口。

我的回答:

与用户数据交互的缓冲区应附加 __ user 标记。例如, parportleds_write()的参数列表应如下所示:

ssize_t parportleds_write(struct file *fp, const char __user *buf, ssize_t count, loff_t *f_pos){

您对 copy_from_user()的调用可能会失败,因为这样做会丢失。 __ user 标记也应添加到您的读取功能中。