Stefan Tauner | 9b32de9 | 2014-08-08 23:52:33 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de> |
| 5 | * Copyright (C) 2009 Carl-Daniel Hailfinger |
| 6 | * Copyright (C) 2011-2014 Stefan Tauner |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
Stefan Tauner | 9b32de9 | 2014-08-08 23:52:33 +0000 | [diff] [blame] | 17 | */ |
| 18 | |
| 19 | #include <stdlib.h> |
| 20 | #include <string.h> |
| 21 | #include "flash.h" |
| 22 | |
Stefan Tauner | 9b32de9 | 2014-08-08 23:52:33 +0000 | [diff] [blame] | 23 | void print_chip_support_status(const struct flashchip *chip) |
| 24 | { |
| 25 | if (chip->feature_bits & FEATURE_OTP) { |
| 26 | msg_cdbg("This chip may contain one-time programmable memory. flashrom cannot read\n" |
| 27 | "and may never be able to write it, hence it may not be able to completely\n" |
| 28 | "clone the contents of this chip (see man page for details).\n"); |
| 29 | } |
| 30 | |
| 31 | if ((chip->tested.erase == NA) && (chip->tested.write == NA)) { |
| 32 | msg_cdbg("This chip's main memory can not be erased/written by design.\n"); |
| 33 | } |
| 34 | |
| 35 | if ((chip->tested.probe == BAD) || (chip->tested.probe == NT) || |
| 36 | (chip->tested.read == BAD) || (chip->tested.read == NT) || |
| 37 | (chip->tested.erase == BAD) || (chip->tested.erase == NT) || |
Sergii Dmytruk | c720b6e | 2022-10-06 15:17:52 +0300 | [diff] [blame] | 38 | (chip->tested.write == BAD) || (chip->tested.write == NT) || |
| 39 | (chip->tested.wp == BAD) || (chip->tested.wp == NT)){ |
Stefan Tauner | 9b32de9 | 2014-08-08 23:52:33 +0000 | [diff] [blame] | 40 | msg_cinfo("===\n"); |
| 41 | if ((chip->tested.probe == BAD) || |
| 42 | (chip->tested.read == BAD) || |
| 43 | (chip->tested.erase == BAD) || |
Sergii Dmytruk | c720b6e | 2022-10-06 15:17:52 +0300 | [diff] [blame] | 44 | (chip->tested.write == BAD) || |
| 45 | (chip->tested.wp == BAD)) { |
Stefan Tauner | 9b32de9 | 2014-08-08 23:52:33 +0000 | [diff] [blame] | 46 | msg_cinfo("This flash part has status NOT WORKING for operations:"); |
| 47 | if (chip->tested.probe == BAD) |
| 48 | msg_cinfo(" PROBE"); |
| 49 | if (chip->tested.read == BAD) |
| 50 | msg_cinfo(" READ"); |
| 51 | if (chip->tested.erase == BAD) |
| 52 | msg_cinfo(" ERASE"); |
| 53 | if (chip->tested.write == BAD) |
| 54 | msg_cinfo(" WRITE"); |
Sergii Dmytruk | c720b6e | 2022-10-06 15:17:52 +0300 | [diff] [blame] | 55 | if (chip->tested.wp == BAD) |
| 56 | msg_cinfo(" WP"); |
Stefan Tauner | 9b32de9 | 2014-08-08 23:52:33 +0000 | [diff] [blame] | 57 | msg_cinfo("\n"); |
| 58 | } |
| 59 | if ((chip->tested.probe == NT) || |
| 60 | (chip->tested.read == NT) || |
| 61 | (chip->tested.erase == NT) || |
Sergii Dmytruk | c720b6e | 2022-10-06 15:17:52 +0300 | [diff] [blame] | 62 | (chip->tested.write == NT) || |
| 63 | (chip->tested.wp == NT)) { |
Stefan Tauner | 9b32de9 | 2014-08-08 23:52:33 +0000 | [diff] [blame] | 64 | msg_cinfo("This flash part has status UNTESTED for operations:"); |
| 65 | if (chip->tested.probe == NT) |
| 66 | msg_cinfo(" PROBE"); |
| 67 | if (chip->tested.read == NT) |
| 68 | msg_cinfo(" READ"); |
| 69 | if (chip->tested.erase == NT) |
| 70 | msg_cinfo(" ERASE"); |
| 71 | if (chip->tested.write == NT) |
| 72 | msg_cinfo(" WRITE"); |
Sergii Dmytruk | c720b6e | 2022-10-06 15:17:52 +0300 | [diff] [blame] | 73 | if (chip->tested.wp == NT) |
| 74 | msg_cinfo(" WP"); |
Stefan Tauner | 9b32de9 | 2014-08-08 23:52:33 +0000 | [diff] [blame] | 75 | msg_cinfo("\n"); |
| 76 | } |
| 77 | msg_cinfo("The test status of this chip may have been updated in the latest development\n" |
| 78 | "version of flashrom. If you are running the latest development version,\n" |
| 79 | "please email a report to flashrom@flashrom.org if any of the above operations\n" |
| 80 | "work correctly for you with this flash chip. Please include the flashrom log\n" |
| 81 | "file for all operations you tested (see the man page for details), and mention\n" |
| 82 | "which mainboard or programmer you tested in the subject line.\n" |
| 83 | "Thanks for your help!\n"); |
| 84 | } |
| 85 | } |