免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 14018 | 回复: 10

内核中的 udelay 能delay多久? [复制链接]

论坛徽章:
7
丑牛
日期:2013-10-18 14:43:21技术图书徽章
日期:2013-11-03 09:58:03辰龙
日期:2014-01-15 22:57:50午马
日期:2014-09-15 07:04:39丑牛
日期:2014-10-16 14:25:222015年亚洲杯之伊朗
日期:2015-03-16 10:24:352015亚冠之城南
日期:2015-05-31 09:52:32
发表于 2012-02-27 10:22 |显示全部楼层
5可用积分
发现我的udelay 10秒和没delay一样

最佳答案

查看完整内容

/* * Copyright (C) 1995-2004 Russell King * * Delay routines, using a pre-computed "loops_per_second" value. */#ifndef __ASM_ARM_DELAY_H#define __ASM_ARM_DELAY_H#include /* HZ */extern void __delay(int loops);/* * This function intentionally does not exist; if you see references to * it, it means that you're calling udelay() with an out of range value. * * With currently imposed limits, this mean ...

论坛徽章:
0
发表于 2012-02-27 10:22 |显示全部楼层
/*
* Copyright (C) 1995-2004 Russell King
*
* Delay routines, using a pre-computed "loops_per_second" value.
*/
#ifndef __ASM_ARM_DELAY_H
#define __ASM_ARM_DELAY_H

#include <asm/param.h>        /* HZ */

extern void __delay(int loops);

/*
* This function intentionally does not exist; if you see references to
* it, it means that you're calling udelay() with an out of range value.
*
* With currently imposed limits, this means that we support a max delay
* of 2000us. Further limits: HZ<=1000 and bogomips<=3355
*/
extern void __bad_udelay(void);

/*
* division by multiplication: you don't have to worry about
* loss of precision.
*
* Use only for very small delays ( < 1 msec).  Should probably use a
* lookup table, really, as the multiplications take much too long with
* short delays.  This is a "reasonable" implementation, though (and the
* first constant multiplications gets optimized away if the delay is
* a constant)
*/
extern void __udelay(unsigned long usecs);


extern void __const_udelay(unsigned long);

#define MAX_UDELAY_MS 2

#define udelay(n)                                                        \
        (__builtin_constant_p(n) ?                                        \
          ((n) > (MAX_UDELAY_MS * 1000) ? __bad_udelay() :                \
                        __const_udelay((n) * ((2199023U*HZ)>>11))) :        \
          __udelay(n))

#endif /* defined(_ARM_DELAY_H) */

udelay 的实现( 可能 ndelay 也是) 使用一个软件循环基于在启动时计算的处理器速度
使用整数变量 loops_per_jiffy(lpj). 如果你想看看实际的代码, 但是, 小心 x86 实现是相当
复杂的一个因为它使用的不同的时间源, 基于什么 CPU 类型在运行代码.
为避免在循环计算中整数溢出, udelay 和 ndelay 强加一个上限给传递给它们的值. 如
果你的模块无法加载和显示一个未解决的符号, __bad_udelay, 这意味着你使用太大的参
数调用 udleay. 注意, 但是, 编译时检查只对常量进行并且不是所有的平台实现它. 作
为一个通用的规则, 如果你试图延时几千纳秒, 你应当使用 udelay 而不是 ndelay; 类
似地, 毫秒规模的延时应当使用 mdelay 完成而不是一个更细粒度的函数.  

论坛徽章:
2
CU十二周年纪念徽章
日期:2013-10-24 15:41:34处女座
日期:2013-12-27 22:22:41
发表于 2012-02-27 10:29 |显示全部楼层
delay 10秒为什么要用udelay?

论坛徽章:
1
拜羊年徽章
日期:2015-03-03 16:15:43
发表于 2012-02-27 10:30 |显示全部楼层
这是一个平台有关的函数,你的cpu是事么?

论坛徽章:
0
发表于 2012-02-27 12:09 |显示全部楼层
udelay(unsigned long usecs)--微秒级忙等待函数,因为考虑进程切换的时间开销,那么这个级别用忙等待是合理的。理论上它可以忙等待参数所指定的时间。

论坛徽章:
0
发表于 2012-02-27 12:13 |显示全部楼层
udelay(10) 忙等待10个us,基本上你都感觉不到。10秒的延迟,你别用忙等待了,太浪费CPU资源,用HZ方式的长延时方式,等待期间进程会休眠

论坛徽章:
0
发表于 2012-02-27 12:15 |显示全部楼层
delay_10s(){
      set_current_state(TASK_UNINTERRUPTABLE);
      schedule_timeout(jiffies + 10 * HZ);
}

DONE!

论坛徽章:
0
发表于 2012-02-27 16:58 |显示全部楼层
6楼失误了,应该是schedule_timeout(10 * HZ); 好用的话记得给加分啊,呵呵

论坛徽章:
1
拜羊年徽章
日期:2015-03-03 16:15:43
发表于 2012-02-29 10:50 |显示全部楼层
回复 1# smalloc
楼主可能真想知道udelay()到底能delay多久

   

论坛徽章:
0
发表于 2012-02-29 17:13 |显示全部楼层
楼主可能真想知道udelay()到底能delay多久
========================
按照代码,最多delay不超过20ms...


   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP