
Linux
文章平均质量分 76
LH806732
这个作者很懒,什么都没留下…
展开
-
Linux关机(Power off)流程
SYSCALL_DEFINE4(reboot, int, magic1, int, magic2, unsigned int, cmd, void __user *, arg)原创 2014-04-08 21:10:04 · 8047 阅读 · 0 评论 -
一个cheat命令 == Linux命令小抄大全
转载自:点击打开链接转载 2014-09-01 14:57:03 · 1428 阅读 · 0 评论 -
module_platform_driver(), module_i2c_driver
将近六年没看linux,发现多了个module_platform_driver(),记录一下。#include static struct platform_driver flexcan_driver = { .driver = { .name = DRV_NAME, .pm = &flexcan_pm_ops, .of_match_table = flexcan_of_原创 2016-09-05 15:41:48 · 6707 阅读 · 0 评论 -
高并发的epoll+线程池,epoll在线程池内
转载自:http://blog.chinaunix.net/uid-311680-id-2439723.htmlepoll是linux下高并发服务器的完美方案,因为是基于事件触发的,所以比select快的不只是一个数量级。单线程epoll,触发量可达到15000,但是加上业务后,因为大多数业务都与数据库打交道,所以就会存在阻塞的情况,这个时候就必须用多线程来提速。 ep转载 2016-09-19 13:22:23 · 10918 阅读 · 2 评论 -
i.mx6ul引脚复用
使用CAN引脚作为例子arch\arm\boot\dts\imx6ul-14x14-evk.dts:pinctrl_flexcan1: flexcan1grp{ fsl,pins = < MX6UL_PAD_UART3_RTS_B__FLEXCAN1_RX 0x1b020 MX6UL_PAD_UART3_CTS_B__FLEXCAN1_TX 0x1b020 >;};原创 2016-09-27 10:10:07 · 8708 阅读 · 0 评论 -
linux设备树interrupt GIC_SPI及GIC_PPI
例: interrupts = ;1. GIC type // include\dt-bindings\Interrupt-controller\arm-gic.h#define GIC_SPI 0 // 共享中断#define GIC_PPI 1 // 每个处理器拥有独立中断ARM SMP cores are often associated with a GIC, prov原创 2016-09-27 11:54:34 · 20906 阅读 · 0 评论 -
Linux串口大致过程
基于i.mx6uldrivers\tty\serial\imx.c#define SERIAL_IMX_MAJOR 207#define MINOR_START 16#define DEV_NAME "ttymxc"/* * This determines how often we check the modem status signals * for a原创 2016-10-12 17:19:55 · 6810 阅读 · 0 评论 -
Linux驱动之设备模型
http://blog.youkuaiyun.com/cjok376240497/article/category/941999转载 2016-10-14 14:38:58 · 4817 阅读 · 0 评论 -
温习C/C++宏定义
很早以前写过一篇C宏定义相关文章。今天用VS2015建了一个windows驱动的工程,上一次工作写了一个WDF USB驱动还是2010年,准确说是KMDF的驱动。看了一下驱动结构,结构基本没怎么变,但发现多了相当多的宏定义,如果你是高手就绕道行吧,这里在温习一下宏定义相关的东西 :-(一. 初级用法#define to_string(a) #a// 把参数a转换成字符串原创 2016-06-07 21:08:23 · 5079 阅读 · 0 评论 -
Linux总线设备驱动
static conststructsysfs_ops dev_sysfs_ops = { .show = dev_attr_show, .store = dev_attr_store,};staticstruct kobj_type device_ktype = { .release = device_release,原创 2014-04-01 20:21:45 · 830 阅读 · 0 评论 -
Linux makefile 教程 非常详细
转载:点击打开链接转载 2014-04-11 21:30:14 · 1255 阅读 · 0 评论 -
linux device注册
转载: http://blog.chinaunix.net/uid-24517893-id-108677.htmldevice注册谨以此文纪念过往的岁月。device和driver是设备管理系统的核心,作为驱动工程师有必要去一探究竟。1.device对于上层而言device的注册很简单只要简单的去device_register就ok了,但是对于内核而言,转载 2014-04-01 19:11:02 · 900 阅读 · 0 评论 -
openOCD+jlink调试uboot
转载: 点击打开链接转载 2014-04-10 21:32:20 · 2046 阅读 · 0 评论 -
Linux--根文件系统的挂载过程分析
转载:http://blog.youkuaiyun.com/guopeixin/article/details/5962482转载 2014-04-04 14:04:09 · 955 阅读 · 0 评论 -
Linux设备驱动分析之热拔插
class_dev_create() device_register(class_dev);原创 2014-04-09 23:14:21 · 2754 阅读 · 0 评论 -
Linux中的工作队列
转载:http://www.cnblogs.com/wwang/archive/2010/10/27/1862202.htmlLinux中的工作队列2010-10-27 10:09 by wwang, ... 阅读, ... 评论, 收藏, 编辑工作队列(work queue)是Linux kernel中将工作推后执行的一种机制。这种机制和BH或Task转载 2014-03-27 11:04:20 · 653 阅读 · 0 评论 -
Linux中的工作队列
转载自: 点击打开链接转载 2014-04-10 16:14:42 · 621 阅读 · 0 评论 -
LCD参数
本文参考了:http://www.linuxidc.com/Linux/2011-01/31800.htm 感谢该文的作者。 Linux内核的amba lcd控制器使用clcd_panel结构体表示一个LCD屏的硬件参数: /* include/linux/fb.h */struct fb_videomode {const char *name; /* optional */转载 2014-02-28 23:20:07 · 2054 阅读 · 0 评论 -
EDID
转载:点击打开链接转载 2014-04-06 21:53:01 · 1005 阅读 · 0 评论 -
MMU的理解
转载: 点击打开链接转载 2014-04-08 21:50:16 · 1496 阅读 · 0 评论 -
Linux i2c->sound
// i2c总线struct bus_type i2c_bus_type = { .name = "i2c", .match = i2c_device_match, .probe = i2c_device_probe, .remove = i2c_device_remove, .shutdown = i2c_device_shutdown,};/*原创 2016-10-19 17:55:55 · 5062 阅读 · 0 评论