cbfs.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of
  7. * the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  17. * MA 02111-1307 USA
  18. */
  19. #ifndef __CBFS_H
  20. #define __CBFS_H
  21. #include <compiler.h>
  22. #include <linux/compiler.h>
  23. enum cbfs_result {
  24. CBFS_SUCCESS = 0,
  25. CBFS_NOT_INITIALIZED,
  26. CBFS_BAD_HEADER,
  27. CBFS_BAD_FILE,
  28. CBFS_FILE_NOT_FOUND
  29. };
  30. enum cbfs_filetype {
  31. CBFS_TYPE_STAGE = 0x10,
  32. CBFS_TYPE_PAYLOAD = 0x20,
  33. CBFS_TYPE_OPTIONROM = 0x30,
  34. CBFS_TYPE_BOOTSPLASH = 0x40,
  35. CBFS_TYPE_RAW = 0x50,
  36. CBFS_TYPE_VSA = 0x51,
  37. CBFS_TYPE_MBI = 0x52,
  38. CBFS_TYPE_MICROCODE = 0x53,
  39. CBFS_COMPONENT_CMOS_DEFAULT = 0xaa,
  40. CBFS_COMPONENT_CMOS_LAYOUT = 0x01aa
  41. };
  42. struct cbfs_header {
  43. u32 magic;
  44. u32 version;
  45. u32 rom_size;
  46. u32 boot_block_size;
  47. u32 align;
  48. u32 offset;
  49. u32 pad[2];
  50. } __packed;
  51. struct cbfs_fileheader {
  52. u8 magic[8];
  53. u32 len;
  54. u32 type;
  55. u32 checksum;
  56. u32 offset;
  57. } __packed;
  58. struct cbfs_cachenode {
  59. struct cbfs_cachenode *next;
  60. u32 type;
  61. void *data;
  62. u32 data_length;
  63. char *name;
  64. u32 name_length;
  65. u32 checksum;
  66. } __packed;
  67. extern enum cbfs_result file_cbfs_result;
  68. /**
  69. * file_cbfs_error() - Return a string describing the most recent error
  70. * condition.
  71. *
  72. * @return A pointer to the constant string.
  73. */
  74. const char *file_cbfs_error(void);
  75. /**
  76. * file_cbfs_init() - Initialize the CBFS driver and load metadata into RAM.
  77. *
  78. * @end_of_rom: Points to the end of the ROM the CBFS should be read
  79. * from.
  80. */
  81. void file_cbfs_init(uintptr_t end_of_rom);
  82. /**
  83. * file_cbfs_get_header() - Get the header structure for the current CBFS.
  84. *
  85. * @return A pointer to the constant structure, or NULL if there is none.
  86. */
  87. const struct cbfs_header *file_cbfs_get_header(void);
  88. /**
  89. * file_cbfs_get_first() - Get a handle for the first file in CBFS.
  90. *
  91. * @return A handle for the first file in CBFS, NULL on error.
  92. */
  93. const struct cbfs_cachenode *file_cbfs_get_first(void);
  94. /**
  95. * file_cbfs_get_next() - Get a handle to the file after this one in CBFS.
  96. *
  97. * @file: A pointer to the handle to advance.
  98. */
  99. void file_cbfs_get_next(const struct cbfs_cachenode **file);
  100. /**
  101. * file_cbfs_find() - Find a file with a particular name in CBFS.
  102. *
  103. * @name: The name to search for.
  104. *
  105. * @return A handle to the file, or NULL on error.
  106. */
  107. const struct cbfs_cachenode *file_cbfs_find(const char *name);
  108. /***************************************************************************/
  109. /* All of the functions below can be used without first initializing CBFS. */
  110. /***************************************************************************/
  111. /**
  112. * file_cbfs_find_uncached() - Find a file with a particular name in CBFS
  113. * without using the heap.
  114. *
  115. * @end_of_rom: Points to the end of the ROM the CBFS should be read
  116. * from.
  117. * @name: The name to search for.
  118. *
  119. * @return A handle to the file, or NULL on error.
  120. */
  121. const struct cbfs_cachenode *file_cbfs_find_uncached(uintptr_t end_of_rom,
  122. const char *name);
  123. /**
  124. * file_cbfs_name() - Get the name of a file in CBFS.
  125. *
  126. * @file: The handle to the file.
  127. *
  128. * @return The name of the file, NULL on error.
  129. */
  130. const char *file_cbfs_name(const struct cbfs_cachenode *file);
  131. /**
  132. * file_cbfs_size() - Get the size of a file in CBFS.
  133. *
  134. * @file: The handle to the file.
  135. *
  136. * @return The size of the file, zero on error.
  137. */
  138. u32 file_cbfs_size(const struct cbfs_cachenode *file);
  139. /**
  140. * file_cbfs_type() - Get the type of a file in CBFS.
  141. *
  142. * @file: The handle to the file.
  143. *
  144. * @return The type of the file, zero on error.
  145. */
  146. u32 file_cbfs_type(const struct cbfs_cachenode *file);
  147. /**
  148. * file_cbfs_read() - Read a file from CBFS into RAM
  149. *
  150. * @file: A handle to the file to read.
  151. * @buffer: Where to read it into memory.
  152. * @maxsize: Maximum number of bytes to read
  153. *
  154. * @return If positive or zero, the number of characters read. If negative, an
  155. * error occurred.
  156. */
  157. long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer,
  158. unsigned long maxsize);
  159. #endif /* __CBFS_H */