ChinaUnix.net
相关文章推荐:

linux device

Linux Device Drivers, 2nd Edition By Alessandro Rubini & Jonathan Corbet 2nd Edition June 2001 0-59600-008-1, Order Number: 0081 586 pages, $39.95 Chapter 1 An Introduction to Device Drivers Contents: The Role of the Device Driver Splitting the Kernel Classes of Devices and Modules Security Issues Version Numbering License Terms Joining the Kernel Development Community Overview of the Book A...

by pascal4123 - Linux文档专区 - 2006-09-20 14:43:12 阅读(516) 回复(0)

相关讨论

本资源回复后,可见下载链接

linux

by 戴墨镜的乌龟 - 服务器资源下载 - 2010-07-08 16:23:37 阅读(838) 回复(0)

作者:Dongas 日期:08-06-27 从Linux 2.6起引入了一套新的驱动管理和注册机制:Platform_device和Platform_driver。 Linux中大部分的设备驱动,都可以使用这套机制, 设备用Platform_device表示,驱动用Platform_driver进行注册。 Linux platform driver机制和传统的device driver 机制(通过driver_register函数进行注册)相比,一个十分明显的优势在于platform机制将设备本身的资源注册进内核,由内核统一管理,在驱...

by nearfuture_qiny - Linux文档专区 - 2010-02-08 22:04:39 阅读(1162) 回复(0)

从Linux 2.6起引入了一套新的驱动管理和注册机制:Platform_device和Platform_driver。 Linux中大部分的设备驱动,都可以使用这套机制, 设备用Platform_device表示,驱动用Platform_driver进行注册。 Linux platform driver机制和传统的device driver 机制(通过driver_register函数进行注册)相比,一个十分明显的优势在于platform机制将设备本身的资源注册进内核,由内核统一管理,在驱动程序中使用这些资源时通过platform devic...

by Liuqz2009 - Linux文档专区 - 2010-01-21 13:36:46 阅读(1090) 回复(0)

从 Linux 2.6 起引入了一套新的驱动管理和注册机制 :Platform_device 和 Platform_driver 。 Linux 中大部分的设备驱动,都可以使用这套机制 , 设备用 Platform_device 表示,驱动用 Platform_driver 进行注册。 Linux platform driver 机制和传统的 device driver 机制 ( 通过 driver_register 函数进行注册 ) 相比,一个十分明显的优势在于 platform 机制将设备本身的资源注册进内核,由内核统一管理,在驱动程序中...

by highnjupt - Linux文档专区 - 2010-01-04 19:11:10 阅读(1026) 回复(0)

Linux Platform Device and Driver 作者:Dongas 日期:08-06-27 从Linux 2.6起引入了一套新的驱动管理和注册机制:Platform_device和Platform_driver。 Linux中大部分的设备驱动,都可以使用这套机制, 设备用Platform_device表示,驱动用Platform_driver进行注册。 Linux platform driver机制和传统的device driver 机制(通过driver_register函数进行注册)相比,一个十分明显的优势在于platform机制将设备本身的资源...

by Jeffoery - Linux文档专区 - 2009-11-10 15:24:46 阅读(872) 回复(0)

Linux Platform Device and Driver,platform_add_devices()->platform_driver_register() 收藏 来自: http://www.diybl.com/course/6_system/linux/Linuxjs/200871/129585.html 从 Linux 2.6 起引入了一套新的驱动管理和注册机制 :Platform_device 和 Platform_driver 。 Linux 中大部分的设备驱动,都可以使用这套机制 , 设备用 Platform_device 表示,驱动用 Platform_driver 进行注册。 Linux platform driver ...

by iibull - Linux文档专区 - 2009-09-14 18:34:58 阅读(722) 回复(0)

作者:Dongas 日期:08-06-27 从Linux 2.6起引入了一套新的驱动管理和注册机制:Platform_device和Platform_driver。 Linux中大部分的设备驱动,都可以使用这套机制, 设备用Platform_device表示,驱动用Platform_driver进行注册。 Linux platform driver机制和传统的device driver 机制(通过driver_register函数进行注册)相比,一个十分明显的优势在于platform机制将设备本身的资源注册进内核,由内核统一管理,在驱动程序中使用这...

by ywh_hlp - Linux文档专区 - 2009-09-11 21:24:19 阅读(683) 回复(0)

第十七章 Linux 音频设备驱动 本章导读 在Linux 中,先后出现了音频设备的两种框架OSS 和ALSA,本节将在介绍数字音频设备及音频设备硬件接 口的基础上,展现OSS 和ALSA 驱动的结构。 17.1~17.2 节讲解了音频设备及PCM、IIS 和AC97 硬件接口。 17.3 节阐述了Linux OSS 音频设备驱动的组成、mixer 接口、dsp 接口及用户空间编程方法。 17.4 节阐述了Linux ALSA 音频设备驱动的组成、card 和组件管理、PCM 设备、control 接口、AC97 ...

by 逼良为娼 - Linux文档专区 - 2009-08-01 11:51:37 阅读(2846) 回复(0)

//#include //#include #include #include #include #include #include #include #include #include #include #include #include #include MODULE_LICENSE("GPL"); #define DRV_NAME "dmaX5" #define DMA_SIZE 1048576 #define DMAbuf_SIZE 1048576 #define RDELAY 5700 #define WDELAY 5700 /** default xilinx coregen vendor ID */ #define XILINX_VID 0x10EE /** default xilinx coregen device ID */ ...

by soararing - Linux文档专区 - 2009-06-17 14:08:02 阅读(1306) 回复(0)

Linux Platform Device and Driver 日期:08-06-27 从Linux 2.6起引入了一套新的驱动管理和注册机制:Platform_device和Platform_driver。 Linux中大部分的设备驱动,都可以使用这套机制, 设备用Platform_device表示,驱动用Platform_driver进行注册。 Linux platform driver机制和传统的device driver 机制(通过driver_register函数进行注册)相比,一个十分明显的优势在于platform机制将设备本身的资源注册进内核...

by yuchuan2008 - Linux文档专区 - 2008-12-23 12:44:01 阅读(862) 回复(0)