ChinaUnix.net
相关文章推荐:

LINUX gpio BSP

针对该gpio.c的硬件手册是SPRUE25.pdf,可到TI的网站(www.ti.com)上下载,或直接在谷歌里搜索。 以下是两个文件gpio.c和gpio.h的注释和分析。 gpio.c /* * TI DaVinci gpio Support * * Copyright (c) 2006 David Brownell * Copyright (c) 2007, MontaVista Software, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public L...

by zhiqiang0071 - Linux文档专区 - 2008-11-25 22:27:55 阅读(1100) 回复(0)

相关讨论

风河招聘 linux bsp 开发工程师 外包。要求精通底层,内核。请加MSN或发简历至 [email]hunter2008it@hotmail.com[/email]。

by alley-lr - 猎头招聘 - 2009-07-04 14:23:09 阅读(1552) 回复(2)

by linux_cjok - 移动操作系统 - 2011-12-22 08:51:03 阅读(729) 回复(0)

百科名片

General Purpose Input Output (通用输入/输出)简称为gpio,或总线扩展器,利用工业标准I2C、SMBus™或SPI™接口简化了I/O口的扩展。当微控制器或芯片组没有足够的 I/O端口,或当系统需要采用远端串行通信或控制时,gpio产品能够提供额外的控制和监视功能。

...

by lantianyu520 - 移动操作系统 - 2011-12-20 09:44:13 阅读(789) 回复(0)

gpio 2410 1. in \include\asm-arm\arch-s3c2410\hardware.h , I see * s3c2410_gpio_pullup(S3C2410_GPB0, 0); * s3c2410_gpio_pullup(S3C2410_GPE8, 0); */ extern void s3c2410_gpio_pullup(unsigned int pin, unsigned int to); things above make me think in write_gpio_bit(x,v), x shall be S3C2410_GPB0, but where is the hearder which includes this faction? Not in /io.h Not in the whole /arm-arch Not...

by happypeter - Linux文档专区 - 2008-03-05 23:32:18 阅读(730) 回复(0)

mini2410 led驱动 linux内核线性地址C0000000以后是内核空间,内存映射IO端口通常使用F0000000以上的线性空间,gpio端口也会被映射过来了? 为什么gpio的寄存器在0X5600000地址上呢。 gpio的物理地址是多少,为什么不被映射到F0000000以上的空间。

by xcmh5991110 - 内核源码 - 2011-05-11 12:47:40 阅读(1419) 回复(1)

工作地点: 上海浦东软件园三期(近二号地铁金科路站) 有意者发简历至:[email]r63905@freescale.com[/email]。内部推荐机会,来信必复。 JD如下: Freescale Semiconductor is a global leader in the design and manufacture of embedded semiconductors for the automotive, consumer, industrial and networking markets. Our products are all around us, you touch them every day. As the one of the most important pr...

by seawolf1979 - 猎头招聘 - 2012-06-15 13:14:28 阅读(1496) 回复(1)

本帖最后由 welcome_qjf 于 2012-03-14 10:46 编辑 最近部门下放了一批headcount, 需要招聘一些bsp工程师,做基于 Qualcomm芯片的Android手机方案, 工作年限没具体限制,欢迎有能力 的童鞋加入,地点在上海张江地区 有兴趣的请发送简历至JeffreyQcom At 163.com.

by welcome_qjf - IT职业生涯 - 2012-03-14 12:38:47 阅读(3346) 回复(2)

招聘公司: Freescale 主要职责: linux bsp开发。 工作地点:上海 or 苏州 招聘人数:1-2人 有效时限: 20 天 Scope of Responsibilities/Expectations ============================== This position will be responsible for the development, integration and testing of Bootloader, linux kernel and related device drivers, and porting them to new Freescale microprocessors. The engineer will work under Freescale ...

by seawolf1979 - 猎头招聘 - 2007-09-15 23:50:47 阅读(2361) 回复(3)

今天我们大家讨论下关于gpio驱动的一些东西,首先我们来看下针对OK210开发板LED驱动的源码,这也是一个比较简单的gpio驱动程序。 #include <linux/kernel.h> #include <linux/module.h> #include <linux/miscdevice.h> #include <linux/fs.h> #include <linux/types.h> #include <linux/moduleparam.h> #include <linux/slab.h> #include <linux/ioctl.h> #include <linux/cdev.h> #include <linux/delay.h> #include

by kongdebin1022 - Linux新手园地 - 2014-02-11 17:22:20 阅读(2662) 回复(6)

在驱动中将gpio各个寄存器物理地址用ioremap到虚拟地址。直接对这个虚拟地址进行readl和writel操作。 可是readl读取input的值(按键)一直不会变化,而且writel对output操作也没法关闭led。不知道linux中对gpio的访问还需要什么具体步骤。 搞了三天也没成功,在此先谢过了。

by giraffewt_dirk - 嵌入式开发 - 2011-09-24 13:41:51 阅读(4764) 回复(7)