Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1834947
  • 博文数量: 134
  • 博客积分: 2488
  • 博客等级: 大尉
  • 技术积分: 7554
  • 用 户 组: 普通用户
  • 注册时间: 2011-02-26 21:19
个人简介

1.每日自省; 2.享受人生; 3.尽力而为; 4.坚持不懈; 5.切莫急躁; 6.慎言敏行; 7.动心忍性; 8.上善若水。

文章分类

全部博文(134)

文章存档

2014年(38)

2013年(42)

2012年(15)

2011年(39)

发布时间:2013-11-26 10:41:11

本文以GSC3280芯片作为CPU,设计了一个ADC子系统,本文作为第一部分,主要涉及的内容包括:
1、GSC3280芯片中ADC部分简单介绍
2、ADC设备驱动程序介绍
3、adc-core.c程序介绍
4、Kconfig和Makefile程序介绍......【阅读全文】

阅读(5086) | 评论(1) | 转发(3)

发布时间:2013-11-01 10:01:37

对于Linux中__init、__devinit、module_init等初始化宏的解析和使用......【阅读全文】

阅读(17166) | 评论(0) | 转发(6)

发布时间:2013-10-30 11:35:36

说道sysfs接口,就不得不提到函数宏 DEVICE_ATTR原型是#define DEVICE_ATTR(_name, _mode, _show, _store) \struct device_attribute dev_attr_##_name = __ATTR(_name, _mode,_show, _store)函数宏DEVICE_ATTR内封装的是__ATTR(_name,_mode,_show,_stroe)方法,_show表示的是读方法,_str.........【阅读全文】

阅读(9298) | 评论(0) | 转发(3)

发布时间:2013-09-30 11:45:43

Notifier是Linux中提供一种在内核子系统中共享事件信息的方法。基于版本2.6.22,notifier有四种types:1.Atomic notifier chains:     Chain callbacks run in interrupt/atomic context. Callouts are not allowed to block.2.Blocking notifier chains:     Chain callbacks run in .........【阅读全文】

阅读(3047) | 评论(0) | 转发(1)

发布时间:2013-09-24 11:09:08

四、i2c driver注册        在分析i2c driver的时候,有必要先分析一下i2c架构的初始化,代码如下:static int __init i2c_init(void){    int retval;    retval = bus_register(&i2c_bus_type);    if (retval)        .........【阅读全文】

阅读(24124) | 评论(0) | 转发(17)

发布时间:2013-09-23 17:49:45

本文继续 《Linux I2C驱动分析(一)----I2C架构和总线驱动》部分,首先讲述了板级设备的注册,为讲述函数i2c_scan_static_board_info(adap)打下基础,接着又描述了I2C数据传输过程中所调用的接口函数,本文和《Linux I2C驱动分析(一)----I2C架构和总线驱动》是一种继承的关系。......【阅读全文】

阅读(15541) | 评论(1) | 转发(22)

发布时间:2013-09-17 08:51:22

        本文的RTC使用I2C接口操作pcf8563,这里针对pcf8563对Linux的RTC框架进行分析。         Linux常见的驱动在driver目录下都有一个文件夹,进入kernel主目录下的drivers/rtc,发现下面包含了许多芯片的RTC驱动,我们这里是以pcf8563.........【阅读全文】

阅读(20025) | 评论(2) | 转发(7)

发布时间:2013-09-16 11:18:03

         rtc-sysfs.c这个部分主要是有关sysfs的操作。在rtc_device_register函数中,rtc_sysfs_add_device(rtc);完成sys的操作。 void rtc_sysfs_add_device(struct rtc_device *rtc){    int err;    /* not all RTCs support both alarms an.........【阅读全文】

阅读(6976) | 评论(0) | 转发(3)

发布时间:2013-09-16 09:59:25

        在第一部分中,rtc_device_register函数调用了rtc-dev.c中的rtc_dev_prepare。 void rtc_dev_prepare(struct rtc_device *rtc) {     if (!rtc_devt)         return;     if (rtc->id >= RTC_DEV_MAX).........【阅读全文】

阅读(6431) | 评论(0) | 转发(3)

发布时间:2013-09-12 15:05:59

在学习Linux驱动的过程中,遇到一个宏叫做container_of。该宏定义在include/linux/kernel.h中,首先来贴出它的代码:/** * container_of - cast a member of a structure out to the containing structure * @ptr:        the pointer to the member. * @type:  &nbs.........【阅读全文】

阅读(1917) | 评论(0) | 转发(1)
给主人留下些什么吧!~~

Yiran_Linux2014-06-11 21:11

binggo 顶博主

回复  |  举报

apple_guet2014-01-09 09:45

ITDSLEEE:博主给力

谢谢!一起努力!

回复  |  举报

ITDSLEEE2014-01-09 09:04

博主给力

回复  |  举报
留言热议
请登录后留言。

登录 注册