| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Copyright (c) 2011 NVIDIA Corporation. All rights reserved. | 2 * Copyright (c) 2011 NVIDIA Corporation. All rights reserved. |
| 3 * | 3 * |
| 4 * See file CREDITS for list of people who contributed to this | 4 * See file CREDITS for list of people who contributed to this |
| 5 * project. | 5 * project. |
| 6 * | 6 * |
| 7 * This program is free software; you can redistribute it and/or | 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 | 8 * modify it under the terms of the GNU General Public License as |
| 9 * published by the Free Software Foundation; either version 2 of | 9 * published by the Free Software Foundation; either version 2 of |
| 10 * the License, or (at your option) any later version. | 10 * the License, or (at your option) any later version. |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 token_bootloader, | 46 token_bootloader, |
| 47 token_block_size, | 47 token_block_size, |
| 48 token_page_size, | 48 token_page_size, |
| 49 token_partition_size, | 49 token_partition_size, |
| 50 token_dev_type, | 50 token_dev_type, |
| 51 token_dev_param, | 51 token_dev_param, |
| 52 token_redundancy, | 52 token_redundancy, |
| 53 token_version, | 53 token_version, |
| 54 token_bct_file, | 54 token_bct_file, |
| 55 token_addon, | 55 token_addon, |
| 56 token_nand_params, |
| 56 token_sdmmc_params, | 57 token_sdmmc_params, |
| 57 token_spiflash_params, | 58 token_spiflash_params, |
| 58 token_data_width, | 59 token_data_width, |
| 59 token_clock_divider, | 60 token_clock_divider, |
| 60 token_clock_source, | 61 token_clock_source, |
| 61 token_read_command_type_fast, | 62 token_read_command_type_fast, |
| 62 token_max_power_class_supported, | 63 token_max_power_class_supported, |
| 64 token_nand_timing2, |
| 65 token_nand_timing, |
| 66 token_block_size_log2, |
| 67 token_page_size_log2, |
| 63 | 68 |
| 64 token_force32 = 0x7fffffff | 69 token_force32 = 0x7fffffff |
| 65 } parse_token; | 70 } parse_token; |
| 66 | 71 |
| 67 typedef enum | 72 typedef enum |
| 68 { | 73 { |
| 69 field_type_none = 0, | 74 field_type_none = 0, |
| 70 field_type_enum, | 75 field_type_enum, |
| 71 field_type_u32, | 76 field_type_u32, |
| 72 field_type_u8, | 77 field_type_u8, |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 process_function process; | 118 process_function process; |
| 114 } parse_item; | 119 } parse_item; |
| 115 | 120 |
| 116 /* | 121 /* |
| 117 * Function prototypes | 122 * Function prototypes |
| 118 */ | 123 */ |
| 119 void process_config_file(build_image_context *context); | 124 void process_config_file(build_image_context *context); |
| 120 | 125 |
| 121 | 126 |
| 122 #endif /* #ifndef INCLUDED_PARSE_H */ | 127 #endif /* #ifndef INCLUDED_PARSE_H */ |
| OLD | NEW |