Linux内核驱动在Tx2440上的移植详解(七、LCD背光驱动移植)


2010-08-10 17:38:20|  分类: 默认分类|举报|字号 订阅

  开发板中,LCD背光是通过 CPU的 LCD_PWR引脚来控制的,当 LCD_PWR  输出为高电平“1”时,将打开背光;当输出为低电平“0”时,将关闭背光(注意:这里只是打开和关闭背光,而并没有背光亮度的调节作用)。

我们需要增加一个简单的背光驱动,以便能够通过软件便可简单的控制背光的开关。我们要达到的目的是:在命令终端通过向背光设备发送偶数比如“0”便可关闭背光,发送奇数比如“1”便可打开背光,这样使用起来就方便多了,而不需要专门的应用程序控制它:提示:LCD背光设备文件:/dev/backlight 
      在命令行种输入:echo 0 > /dev/backlight 可以关闭LCD背光。 
      在命令行种输入:echo 1 > /dev/backlight 可以打开LCD背光。

1、在 drivers/video目录增加一个 smdk2440bl.c文件,内容如下:

#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/miscdevice.h>
#include <linux/gpio.h>
 
#include <asm/io.h>
#include <asm/irq.h>
#include <asm/uaccess.h>
#include <mach/regs-clock.h>
#include <plat/regs-timer.h>
   
#include <mach/regs-gpio.h>
#include <linux/cdev.h>

//定义背光驱动的名称为 backligh,将会出现在/dev/backlight
#define DEVICE_NAME "backlight"
 
//定义背光变量 bl_state,以记录背光的开关状态 
static unsigned int bl_state; 
 
//设置背光开关的函数,主要是翻转背光变量 bl_state 
static inline void set_bl(int state) 

 bl_state = !!state; //翻转 bl_state 变量 
 s3c2410_gpio_setpin(S3C2410_GPG(4), bl_state); //把结果写入背光所用的寄存器 GPG4

 
//获取背光状态 
static inline unsigned int get_bl(void)
{
 return bl_state; 

 
//从应用程序读取参数,并传递到内核中 
static ssize_t dev_write(struct file *file, const char *buffer, size_t count, loff_t * ppos) 

 unsigned char ch; 
 int ret; 
 if (count == 0) { 
  return count; 
 } 
 ret = copy_from_user(&ch, buffer, sizeof ch) ? -EFAULT : 0; 
 if (ret) { 
  return ret; 
 } 
 
 ch &= 0x01; //判断奇数还是偶数 
 set_bl(ch); //设置背光状态 
return count; 

 
//把内核参数传递给用户层/应用层的读函数 
static ssize_t dev_read(struct file *filp, char *buffer, size_t count, loff_t *ppos) 

 int ret; 
 unsigned char str[] = {'0', '1' }; 
 if (count == 0) { 
  return 0; 
 } 
 ret = copy_to_user(buffer, str + get_bl(), sizeof(unsigned char) ) ? -EFAULT : 0; 
 if (ret) { 
  return ret; 
 } 
return sizeof(unsigned char); 

 
static struct file_operations dev_fops = {
 owner: THIS_MODULE, 
 read:dev_read,
 write: dev_write,
}; 
 
static struct miscdevice misc = {
 .minor = MISC_DYNAMIC_MINOR,
 .name = DEVICE_NAME,
 .fops = &dev_fops,
}; 
 
//设备初始化,内核启动时就有效 
static int __init dev_init(void) 

 int ret; 
 ret = misc_register(&misc); 
 
 printk (DEVICE_NAME"\tinitialized\n"); 
 
  //初始化背光所用的端口 GPG4 为输出 
 s3c2410_gpio_cfgpin(S3C2410_GPG(4), S3C2410_GPIO_OUTPUT); 
  //启动内核时打开背光 
 set_bl(1); 
 return ret; 


static void __exit dev_exit(void) 

 misc_deregister(&misc); 

 
module_init(dev_init); //注册背光驱动模块 
module_exit(dev_exit); //卸载背光驱动模块 
MODULE_LICENSE("GPL");


2、  把背光配置选项加入内核配置菜单,打开drivers/video/Kconfig,加入:

config BACKLIGHT_SMDK2440 
        tristate "Backlight support for smdk2440" 
        depends on FB_S3C2410 
        help 
          backlight driver for smdk2440

config FB_SM501
 tristate "Silicon Motion SM501 framebuffer support"
   ……

 

3、  打开 drivers/video/Makefile,根据配置定义在文件最后加入驱动目标文件:

obj-$(CONFIG_BACKLIGHT_SMDK2440) += smdk2440bl.o

你可能感兴趣的:(文件系统,LCD,u-boot,ARM9,fl2440)