arch.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/mach/arch.h
  3.  *
  4.  *  Copyright (C) 2000 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  */
  10. #ifndef __ASSEMBLY__
  11. struct tag;
  12. struct meminfo;
  13. struct sys_timer;
  14. struct machine_desc {
  15. /*
  16.  * Note! The first five elements are used
  17.  * by assembler code in head-armv.S
  18.  */
  19. unsigned int nr; /* architecture number */
  20. unsigned int phys_ram; /* start of physical ram */
  21. unsigned int phys_io; /* start of physical io */
  22. unsigned int io_pg_offst; /* byte offset for io 
  23.  * page tabe entry */
  24. const char *name; /* architecture name */
  25. unsigned long boot_params; /* tagged list */
  26. unsigned int video_start; /* start of video RAM */
  27. unsigned int video_end; /* end of video RAM */
  28. unsigned int reserve_lp0 :1; /* never has lp0 */
  29. unsigned int reserve_lp1 :1; /* never has lp1 */
  30. unsigned int reserve_lp2 :1; /* never has lp2 */
  31. unsigned int soft_reboot :1; /* soft reboot */
  32. void (*fixup)(struct machine_desc *,
  33.  struct tag *, char **,
  34.  struct meminfo *);
  35. void (*map_io)(void);/* IO mapping function */
  36. void (*init_irq)(void);
  37. struct sys_timer *timer; /* system tick timer */
  38. void (*init_machine)(void);
  39. };
  40. /*
  41.  * Set of macros to define architecture features.  This is built into
  42.  * a table by the linker.
  43.  */
  44. #define MACHINE_START(_type,_name)
  45. const struct machine_desc __mach_desc_##_type
  46.  __attribute__((__section__(".arch.info.init"))) = {
  47. .nr = MACH_TYPE_##_type,
  48. .name = _name,
  49. #define MACHINE_END
  50. };
  51. #endif