power.c

来自「一个2.4.21版本的嵌入式linux内核」· C语言 代码 · 共 40 行

C
40
字号
/* *  arch/mips/philips/nino/power.c * *  Copyright (C) 2000 Jim Pick <jim@jimpick.com> *  Copyright (C) 2001 Steven J. Hill (sjhill@realitydiluted.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * *  Power management routines for the Philips Nino */#include <asm/io.h>#include <asm/tx3912.h>void nino_wait(void){	/* We stop the CPU to conserve power */	outl(inl(TX3912_POWER_CTRL) | TX3912_POWER_CTRL_STOPCPU,		 TX3912_POWER_CTRL);	/* 	 * We wait until an interrupt happens...	 */	/* We resume here */	outl(inl(TX3912_POWER_CTRL) & ~TX3912_POWER_CTRL_STOPCPU,		 TX3912_POWER_CTRL);	/* Give ourselves a little delay */	__asm__ __volatile__(		"nop\n\t"		"nop\n\t"		"nop\n\t"		"nop\n\t"		"nop\n\t"		"nop\n\t"		"nop\n\t");}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?