Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1959641
  • 博文数量: 185
  • 博客积分: 10707
  • 博客等级: 上将
  • 技术积分: 1777
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-19 17:31
文章分类

全部博文(185)

文章存档

2014年(1)

2012年(6)

2011年(27)

2010年(13)

2009年(75)

2008年(63)

分类: LINUX

2008-12-25 15:34:50

--------------------------------------------
本文系本站原创,欢迎转载!
转载请注明出处:http://zhiqiang0071.cublog.cn
--------------------------------------------



/*
 * linux/arch/arm/boot/compressed/head.S
 *
 * Copyright (C) 1996-2002 Russell King
 *
 * 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.
 */
#include <linux/config.h>
#include <linux/linkage.h>
/*
 * Debugging stuff
 *
 * Note that these macros must not contain any code which is not
 * 100% relocatable. Any attempt to do so will result in a crash.
 * Please select one of the following when turning on debugging.
 */
 
 /* 一下是一些调试用的宏。*/
#ifdef DEBUG
#if defined(CONFIG_DEBUG_DC21285_PORT)

/*
 这里定义了一个宏,宏名是loadsp,rb是这个宏的参数。宏的参数在宏里被引用时必须加”\”,如:
 mov \rb, #0x50000000.
*/
  .macro loadsp, rb
  mov \rb, #0x42000000
  .endm
  .macro writeb, rb
  str \rb, [r3, #0x160]
  .endm
#elif defined(CONFIG_DEBUG_ICEDCC)
  .macro loadsp, rb
  .endm
  .macro writeb, rb
  mcr p14, 0, \rb, c0, c1, 0
  .endm
#elif defined(CONFIG_FOOTBRIDGE)
  .macro loadsp, rb
  mov \rb

阅读(2874) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~