全部博文(685)
发布时间:2015-02-09 00:05:05
原文地址:http://blog.chinaunix.net/uid-28458801-id-3792828.html根据“ARM-thumb 过程调用标准”:r0-r3 用作传入函数参数,传出函数返回值。在子程序调用之间,可以将 r0-r3 用于任何用途。 被调用函数在返回之前不必恢复 r0-r3。如果调.........【阅读全文】
发布时间:2014-09-03 19:43:54
原文地址:http://blog.chinaunix.net/uid-26952464-id-3380699.html2)来个实现函数:122 int test_ioctl (struct inode *node, struct file *filp, unsigned int cmd, uns igned long arg)123 {124 int ret = 0;125 struct _test_t *dev = filp->private_data;126 struct ioctl_data val;127.........【阅读全文】
发布时间:2014-09-03 19:41:45
原文地址:http://blog.chinaunix.net/uid-26952464-id-3380695.html一、ioctl的简介:虽然在文件操作结构体"struct file_operations"中有很多对应的设备操作函数,但是有些命令是实在找不到对应的操作函数。如CD-ROM的驱动,想要一个弹出光驱的操作,这种操作并不是所有的字符设备都需要的,所以文件操作结构体也.........【阅读全文】
发布时间:2014-08-06 15:06:26
原文地址:http://blog.csdn.net/hens007/article/details/7312824u-boot-1.3.4移植到s3c2440之nand驱动http://blogold.chinaunix.net/u1/57747/showart_2258787.html折腾了两个晚上,终于把s3c2440板子上的nand驱动搞定了,把需要注意的地方记下来,供大家参考。这次使用的u-boot版本为1.3.4,现.........【阅读全文】
发布时间:2014-08-06 14:52:19
原文地址:http://blog.csdn.net/hens007/article/details/7276246首先来看一下DM9000A的框图:这里重要的是物理层PHY receiver,MAC(media access control)层,这里与软件中的协议栈不同,在硬件上MAC是PHY的下一层。DM9000A将MAC和PHY做到一起,也可以像IIS设备那样,SOC内有IIS的控制器,而声卡UDA1341放在.........【阅读全文】