aboutsummaryrefslogtreecommitdiffstats
path: root/iceprog/iceprog.c
Commit message (Collapse)AuthorAgeFilesLines
* Added an option to choose the erase block size.Piotr Esden-Tempski2020-02-021-5/+53
| | | | This allows us to flash binaries at offsets that are smaller multiples.
* Merge pull request #230 from smunaut/fix_flash_resetClifford Wolf2019-08-151-4/+2
|\ | | | | iceprog: Better reset of flash
| * iceprog: Better reset of flashSylvain Munaut2019-08-051-4/+2
| | | | | | | | | | | | | | | | | | | | | | If the flash was in a 'weird' mode (like CRM, QPI, ...), sending a continuous stream of 0xff should take it out of it. It looks like the previous code was trying to do that, but was only transferring 8 bits and then 2 bits which is way too short. Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
* | Fix piping on windowsTim Pambor2019-08-051-0/+10
|/ | | | On windows stdin and stdout have to be set to binary as otherwise windows treats it as text and converts occurences of CRLF to LF
* Add -X option to iceprogPablo Cossutta2019-04-271-2/+7
| | | | In my setup, in OSX I have problems reading from libftdi but not writing. In case of a failure iceprog exits and leaves the FPGA in an useless state. I think it would be a good option to have the possibility to skip the verification process.
* Split the hardware specific gpio functions.Piotr Esden-Tempski2018-12-241-13/+41
|
* Factored out mpsse functions for easier reusability.Piotr Esden-Tempski2018-12-241-336/+42
|
* Force flash to exist QPI mode in iceprogClifford Wolf2018-09-021-5/+15
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* iceprog: switch to SPI mode 0, add -s option, add flash_resetClifford Wolf2018-09-021-8/+36
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Minor style changes in iceprogClifford Wolf2018-08-191-39/+41
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* iceprog coding style, don't use "assert" as variable nameClifford Wolf2018-08-191-11/+14
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Slightly more robust flash wait function.Piotr Esden-Tempski2018-08-181-9/+29
| | | | | | | In cases when the FLASH chip is bit flaky and the status register "bounces" this flash_wait should be able to perform a bit better. Also added more verbose output around block erase.
* Add a function to read and decode the status register.Piotr Esden-Tempski2018-08-181-2/+66
| | | | Very useful for debugging purposes. ;)
* Added the FTDI cable pinout for reference.Piotr Esden-Tempski2018-08-181-0/+13
|
* Improved JEDEC ID read function.Piotr Esden-Tempski2018-08-181-4/+30
| | | | | The function now checks how long the extended JEDEC ID field is for the particular FLASH chip and only reads the amount provided by the chip.
* Replaced some more magic numbers with FLASH command IDs.Piotr Esden-Tempski2018-08-181-4/+4
| | | | I missed those the first time around.
* Added easier to read chip_select/reset functions.Piotr Esden-Tempski2018-08-181-26/+60
| | | | | | | Just calling a gpio function with two numbers was not very self explanatory. The functions now refer to the actual indended action, chip (de)select for flash, reset and chip (de)select for sram. Reading the code and understanding what steps are taken should be easier now.
* Added more code comments.Piotr Esden-Tempski2018-08-161-16/+39
| | | | | | | | | | Main point was to group the code into three logical segments: * MPSSE/FTDI defines and functions * FLASH defines and functions * iceprog implementation core While I was at it I also added a few comments for stuff that was not immediately obvious what it does.
* Merge pull request #144 from daveshah1/unbrickClifford Wolf2018-05-301-3/+46
|\ | | | | Add write protection disable to iceprog
| * Add write protection disable to iceprogDavid Shah2018-02-121-3/+46
| |
* | Added some flash command definitions to decrease magic number usage.Piotr Esden-Tempski2018-03-111-9/+49
| |
* | Added some MPSSE command definitions to decrease magic number usage.Piotr Esden-Tempski2018-03-111-11/+88
|/
* Add out-of-the-box FT232H support (for Upduino 2, etc)David Shah2018-02-091-3/+3
|
* Add "iceprog -e"Clifford Wolf2018-01-021-20/+42
|
* Squelch trailing whitespaceLarry Doolittle2017-08-011-2/+2
|
* iceprog: Make errors print only the program nameRobert Ou2017-07-171-18/+24
| | | | Previously, the entire argv[0] would be printed.
* iceprog: Do not use nonstandard err.hRobert Ou2017-07-171-34/+67
| | | | | This header does not exist under MinGW. Replace these functions with standard functions.
* Fix coding style in iceprog.c (mostly line breaks and indenting)Clifford Wolf2017-07-051-97/+65
|
* iceprog: Keep name space cleanRoland Lutz2017-07-041-23/+23
|
* iceprog: Remove trailing newlineRoland Lutz2017-07-041-1/+0
|
* iceprog: Break overlong linesRoland Lutz2017-07-041-18/+40
|
* iceprog: Fix coding style inconsistenciesRoland Lutz2017-07-041-51/+47
|
* iceprog: Fix error messagesRoland Lutz2017-07-041-2/+2
|
* iceprog: Return a meaningful exit statusRoland Lutz2017-07-021-14/+22
|
* iceprog: When reading, don't write more bytes than requestedRoland Lutz2017-07-021-1/+2
|
* iceprog: Allow programming from pipeRoland Lutz2017-07-021-8/+48
|
* iceprog: Allow programming from standard inputRoland Lutz2017-07-021-6/+9
|
* iceprog: Open input/output files before talking to hardwareRoland Lutz2017-07-021-47/+35
|
* iceprog: Overhaul `--help' textRoland Lutz2017-07-021-52/+41
|
* iceprog: Add option `--help'Roland Lutz2017-07-021-3/+15
|
* iceprog: Check for non-applicable optionsRoland Lutz2017-06-191-0/+18
|
* iceprog: Check for invalid offset/size argumentsRoland Lutz2017-06-081-4/+12
|
* iceprog: Give more information about invocation errorsRoland Lutz2017-06-081-9/+24
|
* Reduced the timer latency to 1 (minimum allowed) some users are reporting ↵Salvador E. Tropea2017-05-031-2/+2
| | | | better results
* Added code to restore the original timer latency. In this way the user can ↵Salvador E. Tropea2017-05-031-1/+15
| | | | avoid 500 Hz interrupts.
* Added a call to ftdi_set_latency_timer to make iceprog performance ↵Salvador E. Tropea2017-05-031-0/+5
| | | | independent of system settings
* Added missing #include <stdlib.h> to iceprog.cClifford Wolf2016-05-161-0/+1
|
* Improvements in iceprogClifford Wolf2016-05-041-17/+47
|
* Fix iceprog on Windows opening binary in text modeBen Pye2016-03-271-4/+4
|
* Added config.mk, correct DESTDIR/PREFIX usageClifford Wolf2015-12-311-4/+4
|
3'>953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336