蜂鸣器驱动和LCD背光驱动需要2440的PWM驱动支持,它们分别使用timer0和timer1,内核自带了三星处理器通用的的PWM驱动,文件位置为:arch/arm/plat-samsung/pwm.c.
在mach-xc2440.c中添加PWM驱动的支持:
在xc2440_devices[ ]结构体中加入:
&s3c_device_timer[0],
&s3c_device_timer[1],
配置内核,支持按键PWM驱动:
- System Type --->
- [*] PWM device support
系统启动时会看到PWM驱动加载的信息:
s3c24xx-pwm s3c24xx-pwm.0: tin at 25000000, tdiv at 25000000, tin=divclk, base 0
s3c24xx-pwm s3c24xx-pwm.1: tin at 25000000, tdiv at 25000000, tin=divclk, base 8
查看设备:
#cd /sys/devices/platform/
该目录下的s3c24xx-pwm.0 和 s3c24xx-pwm.1即为PWM设备文件
后面的LCD背光和蜂鸣器的驱动就基于这两个PWM设备
阅读(129) | 评论(0) | 转发(0) |