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

Side by Side Diff: set.h

Issue 6625006: Add the SDRAM parameters support for cbootimage. (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
« no previous file with comments | « parse.c ('k') | set.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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 parse_token token, 82 parse_token token,
83 u_int32_t value); 83 u_int32_t value);
84 84
85 int 85 int
86 set_spiflash_param(build_image_context *context, 86 set_spiflash_param(build_image_context *context,
87 u_int32_t index, 87 u_int32_t index,
88 parse_token token, 88 parse_token token,
89 u_int32_t value); 89 u_int32_t value);
90 90
91 int 91 int
92 set_sdram_param(build_image_context *context,
93 u_int32_t index,
94 parse_token token,
95 u_int32_t value);
96
97 int
92 read_from_image(char *filename, 98 read_from_image(char *filename,
93 u_int32_t page_size, 99 u_int32_t page_size,
94 u_int8_t **Image, 100 u_int8_t **Image,
95 u_int32_t *storage_size, 101 u_int32_t *storage_size,
96 u_int32_t *actual_size, 102 u_int32_t *actual_size,
97 file_type f_type); 103 file_type f_type);
98 104
99 #endif /* #ifndef INCLUDED_SET_H */ 105 #endif /* #ifndef INCLUDED_SET_H */
OLDNEW
« no previous file with comments | « parse.c ('k') | set.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698