1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
|
//=========================================================================//
// //
// PonyProg - Serial Device Programmer //
// //
// Copyright (C) 1997-2025 Claudio Lanconelli //
// //
// https://github.com/lancos/ponyprog //
// //
//-------------------------------------------------------------------------//
// //
// This program is free software; you can redistribute it and/or //
// modify it under the terms of the GNU General Public License //
// as published by the Free Software Foundation; either version2 of //
// the License, or (at your option) any later version. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU //
// General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program (see LICENSE); if not, write to the //
// Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. //
// //
//=========================================================================//
#include "types.h"
#include "device.h" // Header file
#include "e2awinfo.h"
Device::Device(e2AppWinInfo *wininfo, BusIO *busp, int b_size)
: detected_type(0),
awi(wininfo),
bus(busp),
def_bank_size(b_size),
write_progpage_size(0),
read_progpage_size(0),
write_datapage_size(0),
read_datapage_size(0)
{
detected_signature = "";
DefaultBankSize();
}
Device::~Device()
{
}
void Device::SetAWInfo(e2AppWinInfo *wininfo)
{
if (wininfo)
{
awi = wininfo;
}
}
int Device::GetAddrSize() const
{
// return GetEEPAddrSize(awi->GetEEPPriType(), awi->GetEEPSubType());
return GetEEPAddrSize(awi->GetEEPId());
}
int Device::GetNoOfBank() const
{
return awi->GetNoOfBlock();
}
void Device::SetNoOfBank(int no)
{
if (no >= 0)
{
awi->SetNoOfBlock(no);
}
}
uint8_t *Device::GetBufPtr() const
{
return (uint8_t *)awi->GetBufPtr();
}
int Device::GetBufSize() const
{
return awi->GetBufSize();
}
int Device::GetSplitted() const
{
return awi->GetSplittedInfo();
}
void Device::SetSplitted(int split)
{
if (split > 0)
{
awi->SetSplittedInfo(split);
}
}
int Device::GetProgPageSize(bool rnw) const
{
if (rnw)
{
return read_progpage_size;
}
else
{
return write_progpage_size;
}
}
void Device::SetProgPageSize(int pagesize, bool rnw)
{
if (rnw)
{
read_progpage_size = pagesize;
}
else
{
write_progpage_size = pagesize;
}
}
int Device::GetDataPageSize(bool rnw) const
{
if (rnw)
{
return read_datapage_size;
}
else
{
return write_datapage_size;
}
}
void Device::SetDataPageSize(int pagesize, bool rnw)
{
if (rnw)
{
read_datapage_size = pagesize;
}
else
{
write_datapage_size = pagesize;
}
}
//Read Flash program memory
int Device::ReadProg()
{
int retval;
int size = GetSplitted();
int base = 0;
retval = GetBus()->Read(0, GetBufPtr() + base, size, read_progpage_size);
if (retval != size)
{
if (retval > 0)
{
retval = OP_ABORTED;
}
}
return retval;
}
//Read EEprom data memory
int Device::ReadData()
{
int retval;
int size = GetSize() - GetSplitted();
int base = GetSplitted();
retval = GetBus()->Read(1, GetBufPtr() + base, size, read_datapage_size);
if (retval != size)
{
if (retval > 0)
{
retval = OP_ABORTED;
}
}
return retval;
}
//Write Flash program memory
int Device::WriteProg()
{
int rv;
int size = GetSplitted();
int base = 0;
GetBus()->ClearLastProgrammedAddress();
rv = GetBus()->Write(0, GetBufPtr() + base, size, write_progpage_size);
if (rv != size)
{
if (rv > 0)
{
rv = OP_ABORTED;
}
}
return rv;
}
//Write EEprom data memory
int Device::WriteData()
{
int rv;
int size = GetSize() - GetSplitted();
int base = GetSplitted();
rv = GetBus()->Write(1, GetBufPtr() + base, size, write_datapage_size);
if (rv != size)
{
if (rv > 0)
{
rv = OP_ABORTED;
}
}
return rv;
}
int Device::VerifyProg(unsigned char *localbuf)
{
int rval = -1;
int size = GetSplitted();
int base = 0;
//Verify only programmed bytes (to save time in big devices)
long v_len = size;
if (GetBus()->GetLastProgrammedAddress() > 0 && GetBus()->GetLastProgrammedAddress() < size)
{
v_len = GetBus()->GetLastProgrammedAddress() + 1;
GetBus()->ClearLastProgrammedAddress(); //reset last_programmed_addr, so next verify not preceeded by write verify all the flash
}
//Set blank locations to default 0xFF (erased)
memset(localbuf, 0xFF, size);
// read the current flash content and store it in localbuf
if (read_progpage_size && (v_len % read_progpage_size) == 0)
{
rval = GetBus()->Read(0, localbuf, v_len, read_progpage_size);
}
else
{
rval = GetBus()->Read(0, localbuf, v_len, 0);
}
if (rval != v_len)
{
if (rval > 0)
{
rval = OP_ABORTED;
}
}
else
{
rval = GetBus()->CompareMultiWord(GetBufPtr() + base, localbuf + base, v_len, 0) == 0 ? OK : 1;
}
return rval;
}
int Device::VerifyData(unsigned char *localbuf)
{
int rval;
int size = GetSize() - GetSplitted();
int base = GetSplitted();
//read current EEPROM content and
rval = GetBus()->Read(1, localbuf + base, size, read_datapage_size);
if (rval != size)
{
if (rval > 0)
{
rval = OP_ABORTED;
}
}
else
{
rval = GetBus()->CompareMultiWord(GetBufPtr() + base, localbuf + base, size, 1) == 0 ? OK : 1;
}
return rval;
}
int Device::ReadCalibration(int addr)
{
int val;
val = Probe(0);
if (val >= 0)
{
val = GetBus()->ReadCalibration(addr);
}
return val;
}
|