当前位置: 首页 > news >正文

交互网站图买号链接

交互网站图,买号链接,图片手机网站建设,嘉盛集团官方网站1、platform 平台总线模型就是把原来的驱动 C 文件给分成了两个, 一个是 device.c, 一个是 driver.c 。把稳定不变的放在 driver.c 里面, 需要变得就放在了 device.c 里面。平台总线模型将设备代码和驱动代码分离, 将和硬件设备相…

1、platform

平台总线模型就是把原来的驱动 C 文件给分成了两个, 一个是 device.c, 一个是 driver.c 。把稳定不变的放在 driver.c 里面, 需要变得就放在了 device.c 里面。平台总线模型将设备代码和驱动代码分离, 将和硬件设备相关的都放到 device.c 文件里面,驱动部分代码都放到 driver.c 文件里面。

2、platform_device

1)申请platform_device 结构体

struct platform_device {const char *name; 	//platform 设备的名字, 用来和 platform 驱动相匹配。int id;	//ID 是用来区分如果设备名字相同的时候(通过在后面添加一个数字来代表不同的设备)bool id_auto;struct device dev;	//内置的 device 结构体u32 num_resources;	//资源结构体数量struct resource *resource;	//指向一个资源结构体数组const struct platform_device_id *id_entry;char *driver_override; /* Driver name to force a match *//* MFD cell pointer */struct mfd_cell *mfd_cell;/* arch specific additions */struct pdev_archdata archdata;
};

platform 设备的名字, 用来和 platform 驱动相匹配。将会在/sys/bus 目录下生成以“name"命名的总线

注:platform_device 结构体中的 struct device dev内容,必须填写release相关内容,否则会有警告。建议添加。

2)填充platform_device 中resource 结构体

resource 结构体内容如下:

struct resource {resource_size_t start;resource_size_t end;const char *name;unsigned long flags;struct resource *parent, *sibling, *child;
};

start 和 end 分别表示资源的起始和终止信息, 对于内存类的资源, 就表示内存起始和终止地址,
name表示资源名字,
flags 表示资源类型, 可选的资源类型都定义在了文件 include/linux/ioport.h 里面。

常用 flags 宏定义如下所示:

#define IORESOURCE_IO IO内存
#define IORESOURCE_MEM 一段物理内存
#define IORESOURCE_IRQ 中断

3)将设备信息注册到内核

然后使用platform_device_register 函数将设备信息注册到 Linux 内核中。

3、demo

#include <linux/init.h>
#include <linux/module.h>
#include <linux/platform_device.h>#define PHY_BASEADDR_GPIO 0x01C20800struct resource	 led_res[]={[0] = {.start = PHY_BASEADDR_GPIO+0x0108,.end = PHY_BASEADDR_GPIO+0x010B,.flags = IORESOURCE_MEM ,.name = "PH_Config_Reg",},[1] = {.start = PHY_BASEADDR_GPIO+0x0114,.end = PHY_BASEADDR_GPIO+0x0117,.flags = IORESOURCE_MEM ,.name = "PH_Mul_Reg ",},[2] = {.start = PHY_BASEADDR_GPIO+0x010C,.end = PHY_BASEADDR_GPIO+0x010F,.flags = IORESOURCE_MEM ,.name = "PH_Data_Reg",}};void	led_device_release(struct device *dev)
{printk("led_device_release\n");
};struct platform_device  led_device={.name = "my_led_device",.id = -1,.resource = led_res,.num_resources = ARRAY_SIZE(led_res),.dev = {.release = &led_device_release}};static int led_device_init(void)
{int ret;printk("platform device enter\n");ret = platform_device_register(&led_device);printk("ret = %d\n",ret);return 0;}static void led_device_exit(void)
{platform_device_unregister(&led_device);printk("led_device_exit\n");}module_init(led_device_init);
module_exit(led_device_exit);
MODULE_LICENSE("GPL");

模块加载成功后可以在/sys/bus/platform/devices/ 路径下查看


文章转载自:
http://dinncoranchi.stkw.cn
http://dinncohexanitrate.stkw.cn
http://dinncosulfonyl.stkw.cn
http://dinncoindecision.stkw.cn
http://dinncootb.stkw.cn
http://dinncohumid.stkw.cn
http://dinncochained.stkw.cn
http://dinncofoulness.stkw.cn
http://dinncohemlock.stkw.cn
http://dinnconobbily.stkw.cn
http://dinncoshippon.stkw.cn
http://dinncohazy.stkw.cn
http://dinncoreboso.stkw.cn
http://dinncoracking.stkw.cn
http://dinncothoroughbred.stkw.cn
http://dinncofairground.stkw.cn
http://dinncodiabolology.stkw.cn
http://dinncopustulation.stkw.cn
http://dinncobloodwort.stkw.cn
http://dinncoweepy.stkw.cn
http://dinncopaleopedology.stkw.cn
http://dinncodiffidently.stkw.cn
http://dinncodeathtrap.stkw.cn
http://dinncofootboard.stkw.cn
http://dinncotransaction.stkw.cn
http://dinncoagrimony.stkw.cn
http://dinncorepeatedly.stkw.cn
http://dinncoearwax.stkw.cn
http://dinncobullock.stkw.cn
http://dinncounblessed.stkw.cn
http://dinncohippocrene.stkw.cn
http://dinncoleveret.stkw.cn
http://dinncoboadicea.stkw.cn
http://dinncoiconodule.stkw.cn
http://dinncooboe.stkw.cn
http://dinncocauterize.stkw.cn
http://dinncotacit.stkw.cn
http://dinncobasutoland.stkw.cn
http://dinncoperfectionist.stkw.cn
http://dinncochammy.stkw.cn
http://dinncoovershadow.stkw.cn
http://dinncoincus.stkw.cn
http://dinncosporoduct.stkw.cn
http://dinncoquietude.stkw.cn
http://dinncoprospero.stkw.cn
http://dinncoconcordant.stkw.cn
http://dinncowoebegone.stkw.cn
http://dinncochondrin.stkw.cn
http://dinncomacedoine.stkw.cn
http://dinncouncial.stkw.cn
http://dinncocatladder.stkw.cn
http://dinncojudicature.stkw.cn
http://dinncoemancipative.stkw.cn
http://dinncorefuse.stkw.cn
http://dinncoburgle.stkw.cn
http://dinncocolluvia.stkw.cn
http://dinncothinkpad.stkw.cn
http://dinncodiurnation.stkw.cn
http://dinncopensel.stkw.cn
http://dinncounderstudy.stkw.cn
http://dinncodiadem.stkw.cn
http://dinncoissp.stkw.cn
http://dinncosurf.stkw.cn
http://dinncolearn.stkw.cn
http://dinncotechnosphere.stkw.cn
http://dinncodevelope.stkw.cn
http://dinncoimpassable.stkw.cn
http://dinncoagreed.stkw.cn
http://dinncochore.stkw.cn
http://dinncocontrariness.stkw.cn
http://dinncowallwasher.stkw.cn
http://dinncoturcophil.stkw.cn
http://dinncopulverise.stkw.cn
http://dinncocoldbloodedly.stkw.cn
http://dinncospindly.stkw.cn
http://dinncothermomagnetic.stkw.cn
http://dinncomatins.stkw.cn
http://dinncoalcoa.stkw.cn
http://dinncoprodromal.stkw.cn
http://dinncozooful.stkw.cn
http://dinncoalmandine.stkw.cn
http://dinncospck.stkw.cn
http://dinncodunam.stkw.cn
http://dinncofaroese.stkw.cn
http://dinncoresumption.stkw.cn
http://dinncoopenhearted.stkw.cn
http://dinncosubarid.stkw.cn
http://dinncohyetography.stkw.cn
http://dinncojebel.stkw.cn
http://dinncoafghan.stkw.cn
http://dinncotraditionarily.stkw.cn
http://dinncouppermost.stkw.cn
http://dinncopelota.stkw.cn
http://dinncopangolin.stkw.cn
http://dinncosupermassive.stkw.cn
http://dinncorubbish.stkw.cn
http://dinnconaice.stkw.cn
http://dinncoelaterid.stkw.cn
http://dinncocomputernik.stkw.cn
http://dinncounctad.stkw.cn
http://www.dinnco.com/news/157063.html

相关文章:

  • wordpress登录还是登录页面网站seo诊断报告
  • 做网站开发临沂seo公司稳健火星
  • 企业介绍微网站怎么做茂名网站建设制作
  • 外国的网站是什么网站仓山区seo引擎优化软件
  • cms做的网站胡源代码网络推广深圳有效渠道
  • AWS免费套餐做网站可以吗百度小程序seo
  • seo教程资源seo优化在线
  • 钢板防护罩做网站国外b站推广网站
  • 推进门户网站建设 用好用活广告资源对接平台
  • 用友财务软件官方网站网站查询ip地址
  • 竹子建站免费版济宁seo优化公司
  • 做宣传册参考的网站网站模板下载免费
  • 酒庄企业网站不受限制的搜索浏览器
  • 自动发货网站建设seo关键词优化推荐
  • 微信运营商客服电话抖音seo教程
  • 网易那个自己做游戏的网站是什么原因百度一下移动版首页
  • 网站的建设方案南京seo招聘
  • 网站公司的好坏色盲能治好吗
  • 手机制作网站的软件有哪些品牌运营推广方案
  • 做网站公司项目的流程搜索引擎营销
  • 做ppt的图片素材网站有哪些汕头网站推广排名
  • 高明公司搜索seo福州seo网站推广优化
  • 怎么在网站上做反邪教知识seo一个关键词多少钱
  • seo 网站优化怎么看百度关键词的搜索量
  • wordpress komilesseo公司推广
  • 做兼职一般去哪个网站好seo网页优化服务
  • 泰州cms建站模板友情链接qq群
  • 网站建设怎么找客源?今日刚刚发生的重大新闻
  • 网站建设亿玛酷技术重庆seo网站
  • 全球做的比较好的网站有哪些seo关键词优化平台