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
|
//=========================================================================//
// //
// 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 "pic168xx.h" // Header file
#include "errcode.h"
#include "eeptypes.h"
#include <QDebug>
#include "e2cmdw.h"
#include "e2awinfo.h"
Pic168xx::Pic168xx(e2AppWinInfo *wininfo, BusIO *busp)
: Pic16xx(wininfo, busp)
{
}
Pic168xx::~Pic168xx()
{
}
int Pic168xx::CodeProtectAdjust(uint16_t &config, int read)
{
long type = 0;
Pic168xx::QueryType(type);
if (type == PIC1684A)
{
Pic16xx::CodeProtectAdjust(config, read);
}
else
{
config = ~config & 0x3fff;
}
return OK;
}
typedef struct
{
int code;
int type;
} IdTypePic;
static IdTypePic IdArray[] =
{
{0x560, PIC1684A}, // 00 0101 011 0 0000
{0xd00, PIC16870}, // 00 1101 000 0 0000
{0xd20, PIC16871}, // 00 1101 001 0 0000
{0x8e0, PIC16872}, // 00 1000 111 0 0000
{0x960, PIC16873}, // 00 1001 011 0 0000
{0x920, PIC16874}, // 00 1001 001 0 0000
{0x9e0, PIC16876}, // 00 1001 111 0 0000
{0x9a0, PIC16877}, // 00 1001 101 0 0000
{0xe40, PIC16873A}, // 00 1110 0100 XXXX
{0xe60, PIC16874A}, // 00 1110 0110 XXXX
{0xe00, PIC16876A}, // 00 1110 0000 XXXX
{0xe20, PIC16877A}, // 00 1110 0010 XXXX
{0x7a0, PIC16627}, // 00 0111 101 x xxxx
{0x7c0, PIC16628}, // 00 0111 110 x xxxx
{0x00, PIC16800}
};
int Pic168xx::QueryType(long &type)
{
int rv = DEVICE_UNKNOWN;
id_locations[6] = 0;
if (GetBus()->ReadConfig(id_locations) == OK)
{
int code = id_locations[6];
qDebug() << "Pic168xx::ParseID() *** " << (Qt::hex) << code << (Qt::dec);
code &= 0x3fe0; //Strip revision number
type = 0;
int k;
for (k = 0; IdArray[k].code != 0x00; k++)
{
if (IdArray[k].code == code)
{
type = IdArray[k].type;
rv = OK;
break;
}
}
}
return rv;
}
int Pic168xx::Probe(int probe_size)
{
int rv = OK;
long type = 0;
rv = QueryType(type);
// int pritype = GetE2PPriType(type);
int subtype = GetE2PSubType(type);
if (probe_size)
{
if (rv == OK)
{
SetNoOfBank(GetEEPTypeSize(type));
SetSplitted(GetEEPTypeSplit(type));
rv = GetSize();
}
}
else
{
if (cmdWin->GetIgnoreFlag())
{
rv = GetSize();
}
else
{
if (rv == OK)
{
if (GetE2PSubType(GetAWInfo()->GetEEPId()) == subtype)
{
rv = GetSize();
}
else
{
rv = DEVICE_BADTYPE;
}
}
}
}
return rv;
}
int Pic168xx::Write(int probe, int type)
{
int rv = Probe(probe || GetNoOfBank() == 0);
if (rv > 0)
{
if ((type & PROG_TYPE) && (type & DATA_TYPE))
{
GetBus()->Erase(ALL_TYPE);
}
else
{
GetBus()->Erase(type);
}
if (GetSize() >= GetSplitted())
{
if (type & PROG_TYPE)
{
rv = WriteProg();
}
if (rv > 0 && GetSize() > GetSplitted()) //check for DATA size
{
if (type & DATA_TYPE)
{
rv = WriteData();
}
}
if (rv > 0 && (type & CONFIG_TYPE))
{
// write the config locations
// this must be the LAST operation (to exit from config mode we have to clear Vpp)
uint32_t f;
f = GetAWInfo()->GetLockBits();
SecurityWrite(f);
}
}
}
else if (rv == 0)
{
rv = E2ERR_WRITEFAILED;
}
return rv;
}
|