Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(665)

Side by Side Diff: parse.h

Issue 6611009: Add the nand device support for cbootimage tool. (Closed) Base URL: http://git.chromium.org/git/cbootimage.git@master
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« data_layout.c ('K') | « nvbctlib_ap20.c ('k') | parse.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 */
OLDNEW
« data_layout.c ('K') | « nvbctlib_ap20.c ('k') | parse.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698