lmb.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _PPC64_LMB_H
  2. #define _PPC64_LMB_H
  3. /*
  4.  * Definitions for talking to the Open Firmware PROM on
  5.  * Power Macintosh computers.
  6.  *
  7.  * Copyright (C) 2001 Peter Bergner, IBM Corp.
  8.  *
  9.  * This program is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU General Public License
  11.  * as published by the Free Software Foundation; either version
  12.  * 2 of the License, or (at your option) any later version.
  13.  */
  14. #include <asm/prom.h>
  15. extern unsigned long reloc_offset(void);
  16. #define MAX_LMB_REGIONS 64
  17. union lmb_reg_property { 
  18. struct reg_property32 addr32[MAX_LMB_REGIONS];
  19. struct reg_property64 addr64[MAX_LMB_REGIONS];
  20. };
  21. #define LMB_MEMORY_AREA 1
  22. #define LMB_IO_AREA 2
  23. #define LMB_ALLOC_ANYWHERE 0
  24. #define LMB_ALLOC_FIRST4GBYTE (1UL<<32)
  25. struct lmb_property {
  26. unsigned long base;
  27. unsigned long physbase;
  28. unsigned long size;
  29. unsigned long type;
  30. };
  31. struct lmb_region {
  32. unsigned long cnt;
  33. unsigned long size;
  34. unsigned long iosize;
  35. unsigned long lcd_size; /* Least Common Denominator */
  36. struct lmb_property region[MAX_LMB_REGIONS+1];
  37. };
  38. struct lmb {
  39. unsigned long debug;
  40. unsigned long rmo_size;
  41. struct lmb_region memory;
  42. struct lmb_region reserved;
  43. };
  44. extern struct lmb lmb;
  45. extern void lmb_init(void);
  46. extern void lmb_analyze(void);
  47. extern long lmb_add(unsigned long, unsigned long);
  48. #ifdef CONFIG_MSCHUNKS
  49. extern long lmb_add_io(unsigned long base, unsigned long size);
  50. #endif /* CONFIG_MSCHUNKS */
  51. extern long lmb_reserve(unsigned long, unsigned long);
  52. extern unsigned long lmb_alloc(unsigned long, unsigned long);
  53. extern unsigned long lmb_alloc_base(unsigned long, unsigned long, unsigned long);
  54. extern unsigned long lmb_phys_mem_size(void);
  55. extern unsigned long lmb_end_of_DRAM(void);
  56. extern unsigned long lmb_abs_to_phys(unsigned long);
  57. extern void lmb_dump(char *);
  58. static inline unsigned long
  59. lmb_addrs_overlap(unsigned long base1, unsigned long size1,
  60.                   unsigned long base2, unsigned long size2)
  61. {
  62.         return ((base1 < (base2+size2)) && (base2 < (base1+size1)));
  63. }
  64. static inline long
  65. lmb_regions_overlap(struct lmb_region *rgn, unsigned long r1, unsigned long r2)
  66. {
  67. unsigned long base1 = rgn->region[r1].base;
  68.         unsigned long size1 = rgn->region[r1].size;
  69. unsigned long base2 = rgn->region[r2].base;
  70.         unsigned long size2 = rgn->region[r2].size;
  71. return lmb_addrs_overlap(base1,size1,base2,size2);
  72. }
  73. static inline long
  74. lmb_addrs_adjacent(unsigned long base1, unsigned long size1,
  75.    unsigned long base2, unsigned long size2)
  76. {
  77. if ( base2 == base1 + size1 ) {
  78. return 1;
  79. } else if ( base1 == base2 + size2 ) {
  80. return -1;
  81. }
  82. return 0;
  83. }
  84. static inline long
  85. lmb_regions_adjacent(struct lmb_region *rgn, unsigned long r1, unsigned long r2)
  86. {
  87. unsigned long base1 = rgn->region[r1].base;
  88.         unsigned long size1 = rgn->region[r1].size;
  89.         unsigned long type1 = rgn->region[r1].type;
  90. unsigned long base2 = rgn->region[r2].base;
  91.         unsigned long size2 = rgn->region[r2].size;
  92.         unsigned long type2 = rgn->region[r2].type;
  93. return (type1 == type2) && lmb_addrs_adjacent(base1,size1,base2,size2);
  94. }
  95. #endif /* _PPC64_LMB_H */