cbfs.h 4.4 KB

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