现于杭州电子科技大学攻读硕士学位
发布时间:2013-09-07 15:30:35
本文介绍linux设备驱动中的字符设备驱动一些数据结构及其字符设备设计方法,文件中若有任何错误,欢迎拍砖!......【阅读全文】
发布时间:2013-09-21 21:47:25
/*****************************************************************************************************************************************//* head-armv.S *//* * linux/arch/arm/kernel/head-armv.S * * Copyright (C) 1994-1999 Russell King * * This progra.........【阅读全文】
发布时间:2013-09-21 21:41:45
/*****************************************************************************************************************************************//* arch-sa1100-memory.h *//* * Page offset: 3GB */#define PAGE_OFFSET(0xc0000000UL) /* 内核空间起始地址 *//* * Physical DRAM.........【阅读全文】
发布时间:2013-09-21 21:03:14
/*****************************************************************************************************************************************//* head.S *//* * linux/arch/arm/kernel/head.S * * Copyright (C) 1994-2002 Russell King * Copyright (c) 2003 ARM .........【阅读全文】
发布时间:2013-09-07 21:56:16
一级页表:S3C2440最多会用到两级页表,以段方式进行转换时只用到一级页表,以页的方式进行转换时用到两级页表,页的大小有三种:大页(64K)、小页(4K)、极小页(1KB)。段描述符、大页描述符、小页描述符、极小页描述符保存段、大页、小页或极小页的起始物理地址,粗页表描述符、细页表描述符保存二级页表的物理地址.........【阅读全文】
发布时间:2013-09-07 21:41:29
ARM920T的MMU和Cache都集成在CP15协处理器中 以下是CP15协处理器的寄存器列表(摘自[S3C2410用户手册]),和CPU核的r0到r15寄存器一样,协处理器寄存器也是用0到15来编号,在指令中用4个bit来表示寄存器编号,有些协处理器寄存器有影子寄存器,这种情况下对同一个编号的寄存器使用不同的选项读.........【阅读全文】
发布时间:2013-09-07 21:35:30
函数头部进行注释,列出函数功能、输入参数、输出参数、返回值、调用关系等信息按位与操作:可以实现将特定为清零,也可以提取出某数的指定位按位或操作:可以实现将特定位的置位操作,也可以用于提取出某数的指定位按位异或操作:可以实现将特定位的取反(与0异或保留原值,与1异或取反),也可以实现.........【阅读全文】
发布时间:2013-09-07 21:00:50
/* * USB Skeleton driver - 2.2 * * Copyright (C) 2001-2004 Greg Kroah-Hartman (greg@kroah.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by .........【阅读全文】
发布时间:2013-09-07 20:49:33
/********************************************************网络设备驱动*****************************************************************//* *基础知识: *(1)linux内核中的网络子系统被设计成完全与协议无关,该思想应用于网络协议(IP、IPX及其他协议)和硬件协 * .........【阅读全文】
发布时间:2013-09-07 20:47:33
/*************************************************************************************************************************************//* queue.h */#ifndef MMC_QUEUE_H#define MMC_QUEUE_Hstruct request;struct task_struct;struct mmc_queue { /* mmc请求队列 -----对MMC卡的操作是通过该.........【阅读全文】
发布时间:2013-09-07 20:19:17
/******************************************************************************************** 参考 drivers\mtd\maps\physmap.c********************************************************************************************/#include <linux/module.h>#include <linux/types.h>#include <linux/kern.........【阅读全文】
发布时间:2013-09-07 20:18:07
/*************************************************************************************************** 参考 drivers\mtd\nand\s3c2410.c drivers\mtd\nand\at91_nand.c***************************************************************************************************/#include .........【阅读全文】
发布时间:2013-09-07 19:45:35
#include <linux/module.h>#include <linux/errno.h>#include <linux/interrupt.h>#include <linux/mm.h>#include <linux/fs.h>#include <linux/kernel.h>#include <linux/timer.h>#include <linux/genhd.h>#include <linux/hdreg.h>#include <linux/ioport.h>#include <linux/init.h>#include <linux/wait.h.........【阅读全文】
发布时间:2013-09-07 19:05:53
/* * Copyright (c) 1999-2001 Vojtech Pavlik * * USB HIDBP Mouse support *//* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software F.........【阅读全文】
发布时间:2013-09-07 19:02:02
#include #include #include #include #include #include #include #include #include #include #include #include ......【阅读全文】
发布时间:2013-09-07 18:39:04
触摸屏、鼠标、键盘等设备都属于输入设备,在linux中可以采用输入子系统设计其驱动......【阅读全文】
发布时间:2013-09-07 18:35:32
#include <linux/module.h>#include <linux/kernel.h>#include <linux/errno.h>#include <linux/string.h>#include <linux/mm.h>#include <linux/tty.h>#include <linux/slab.h>#include <linux/delay.h>#include <linux/fb.h>#include <linux/init.h>#include <linux/dma-mapping.h>#include <linux/interrup.........【阅读全文】
发布时间:2013-09-07 17:30:05
/*************************************************************************************************************************************//* misc.c *//* * linux/drivers/char/misc.c * * Generic misc open routine by Johan Myreen * * Based on code from Linus *.........【阅读全文】
发布时间:2013-09-07 17:26:51
*miscdevice在本质上仍然属于字符设备,只是被增加了一层封装而已 * * *相关结构和接口函数在miscdevice.h和misc.c中定义 */#include <linux/miscdevice.h>struct miscdevice { int minor; /* .........【阅读全文】