/usr/include/gpsim/pic-processor.h is in gpsim-dev 0.29.0-2+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 | /*
Copyright (C) 1998-2000 T. Scott Dattalo
Copyright (C) 2013 Roy R. Rankin
This file is part of the libgpsim library of gpsim
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see
<http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
#ifndef __PIC_PROCESSORS_H__
#define __PIC_PROCESSORS_H__
#include <glib.h>
#include <stdio.h>
#include "gpsim_classes.h"
#include "modules.h"
#include "processor.h"
#include "program_files.h"
#include "pic-registers.h"
#include "14bit-registers.h"
#include "trigger.h"
class EEPROM;
class instruction;
class Register;
class sfr_register;
class pic_register;
class ConfigMemory;
class ResetTraceType;
class InterruptTraceType;
enum PROCESSOR_TYPE
{
_PIC_PROCESSOR_,
_14BIT_PROCESSOR_,
_14BIT_E_PROCESSOR_, // 14bit enhanced processor
_12BIT_PROCESSOR_,
_PIC17_PROCESSOR_,
_PIC18_PROCESSOR_,
_P10F200_,
_P10F202_,
_P10F204_,
_P10F206_,
_P10F220_,
_P10F222_,
_P12C508_,
_P12C509_,
_P12F508_,
_P12F509_,
_P12F510_,
_P12F629_,
_P12F675_,
_P12F683_,
_P12F1822_,
_P16C84_,
_P16CR83_,
_P16CR84_,
_P12CE518_,
_P12CE519_,
_P16F83_,
_P16F84_,
_P16C71_,
_P16C712_,
_P16C716_,
_P16C54_,
_P16C55_,
_P16C56_,
_P16C61_,
_P16C62_,
_P16C62A_,
_P16CR62_,
_P16F505_,
_P16F627_,
_P16F628_,
_P16F630_,
_P16F631_,
_P16F648_,
_P16F676_,
_P16F677_,
_P16F684_,
_P16F685_,
_P16F687_,
_P16F689_,
_P16F690_,
_P16C63_,
_P16C64_,
_P16C64A_,
_P16CR64_,
_P16C65_,
_P16C65A_,
_P16C72_,
_P16C73_,
_P16C74_,
_P16F73_,
_P16F74_,
_P16F87_,
_P16F88_,
_P16F818_,
_P16F819_,
_P16F871_,
_P16F873_,
_P16F873A_,
_P16F874_,
_P16F874A_,
_P16F876_,
_P16F876A_,
_P16F877_,
_P16F877A_,
_P16F882_,
_P16F883_,
_P16F884_,
_P16F886_,
_P16F887_,
_P16F1823_,
_P16F1788_,
_P16F1789_,
_P17C7xx_,
_P17C75x_,
_P17C752_,
_P17C756_,
_P17C756A_,
_P17C762_,
_P17C766_,
_P18Cxx2_,
_P18C2x2_,
_P18C242_,
_P18F242_,
_P18F248_,
_P18F448_,
_P18C252_,
_P18F252_,
_P18C442_,
_P18C452_,
_P18F442_,
_P18F452_,
_P18F1220_,
_P18F1320_,
_P18F2221_,
_P18F2321_,
_P18F2420_,
_P18F2455_,
_P18F2520_,
_P18F2550_,
_P18F26K22_,
_P18F2620_,
_P18F4221_,
_P18F4321_,
_P18F4420_,
_P18F4455_,
_P18F4520_,
_P18F4550_,
_P18F4620_,
_P18F6520_,
};
// Configuration modes. DELETE THIS...
// The configuration mode bits are the config word bits remapped.
// The remapping removes processor dependent bit definitions.
class ConfigMode {
public:
enum {
CM_FOSC0 = 1<<0, // FOSC0 and FOSC1 together define the PIC clock
CM_FOSC1 = 1<<1, // All PICs todate have these two bits, but the
// ones with internal oscillators use them differently
CM_WDTE = 1<<2, // Watch dog timer enable
CM_CP0 = 1<<3, // Code Protection
CM_CP1 = 1<<4,
CM_PWRTE = 1<<5, // Power on/Reset timer enable
CM_BODEN = 1<<6, // Brown out detection enable
CM_CPD = 1<<7,
CM_MCLRE = 1<<8, // MCLR enable
CM_FOSC1x = 1<<31, // Hack for internal oscillators
};
int config_mode;
int valid_bits;
ConfigMode() {
config_mode = 0xffff;
valid_bits = CM_FOSC0 | CM_FOSC1 | CM_WDTE;
};
virtual ~ConfigMode()
{
}
virtual void set_config_mode(int new_value) { config_mode = new_value & valid_bits;};
virtual void set_valid_bits(int new_value) { valid_bits = new_value;};
void set_fosc0(){config_mode |= CM_FOSC0;};
void clear_fosc0(){config_mode &= ~CM_FOSC0;};
bool get_fosc0(){return (config_mode & CM_FOSC0);};
void set_fosc1(){config_mode |= CM_FOSC1;};
void clear_fosc1(){config_mode &= ~CM_FOSC1;};
bool get_fosc1(){return (0 != (config_mode & CM_FOSC1));};
bool get_fosc1x(){return (0 != (config_mode & CM_FOSC1x));};
void set_fosc01(int v)
{
config_mode = (config_mode & ~(CM_FOSC0 | CM_FOSC1)) |
(v & (CM_FOSC0 | CM_FOSC1));
}
void set_cp0() {config_mode |= CM_CP0; valid_bits |= CM_CP0;};
void clear_cp0(){config_mode &= ~CM_CP0; valid_bits |= CM_CP0;};
bool get_cp0() {return (0 != (config_mode & CM_CP0));};
void set_cp1() {config_mode |= CM_CP1; valid_bits |= CM_CP1;};
void clear_cp1(){config_mode &= ~CM_CP1; valid_bits |= CM_CP1;};
bool get_cp1() {return (0 != (config_mode & CM_CP1));};
void enable_wdt() {config_mode |= CM_WDTE;};
void disable_wdt() {config_mode &= ~CM_WDTE;};
void set_wdte(bool b) { config_mode = b ? (config_mode | CM_WDTE) : (config_mode & ~CM_WDTE); }
bool get_wdt() {return (0 != (config_mode & CM_WDTE));};
void set_mclre(bool b) { config_mode = b ? (config_mode | CM_MCLRE) : (config_mode & ~CM_MCLRE); }
bool get_mclre() {return (0 != (config_mode & CM_MCLRE));};
void enable_pwrte() {config_mode |= CM_PWRTE; valid_bits |= CM_PWRTE;};
void disable_pwrte() {config_mode &= ~CM_PWRTE; valid_bits |= CM_PWRTE;};
void set_pwrte(bool b) { config_mode = b ? (config_mode | CM_PWRTE) : (config_mode & ~CM_PWRTE); }
bool get_pwrte() {return (0 != (config_mode & CM_PWRTE));};
bool is_valid_pwrte() {return (0 != (valid_bits & CM_PWRTE));};
virtual void print();
};
//---------------------------------------------------------
// Watch Dog Timer
//
class WDT : public TriggerObject, public gpsimObject
{
public:
WDT(pic_processor *, double _timeout);
void put(unsigned int new_value);
virtual void initialize(bool enable);
virtual void swdten(bool enable);
void set_timeout(double);
virtual void set_prescale(unsigned int);
virtual void set_postscale(unsigned int);
virtual void reset(RESET_TYPE r);
void clear();
virtual void callback();
virtual void update();
virtual void callback_print();
void set_breakpoint(unsigned int bpn);
bool hasBreak() { return breakpoint != 0;}
protected:
pic_processor *cpu; // The cpu to which this wdt belongs.
unsigned int
breakpoint,
prescale,
postscale;
guint64
future_cycle;
double timeout; // When no prescaler is assigned
bool wdte;
bool warned;
bool cfgw_enable; // Enabled from Configureation word
};
/*==================================================================
* FIXME - move these global references somewhere else
*/
#include "cmd_gpsim.h"
extern guint64 gui_update_rate; // The rate (in simulation cycles) at which the gui is updated
/*==================================================================
*
* Here are the base class declarations for the pic processors
*/
/*
* First, forward-declare a few class references
*/
enum IOPIN_TYPES
{
INPUT_ONLY, // e.g. MCLR
BI_DIRECTIONAL, // most iopins
BI_DIRECTIONAL_PU, // same as bi_directional, but with pullup resistor. e.g. portb
OPEN_COLLECTOR // bit4 in porta on the 18 pin midrange devices.
};
/*
* Define a base class processor for the pic processor family
*
* All pic processors are derived from this class.
*/
class PicTrisRegister;
class PicLatchRegister;
class IO_SignalControl;
class pic_processor : public Processor
{
public:
unsigned int config_word; // as read from hex or cod file
ConfigMode *config_modes; // processor dependent configuration bits.
unsigned int pll_factor; // 2^pll_factor is the speed boost the PLL adds
// to the instruction execution rate.
WDT wdt;
INDF *indf;
FSR *fsr;
Stack *stack;
Status_register *status;
WREG *Wreg; // Used when W is a normal register
PCL *pcl;
PCLATH *pclath;
PCHelper *m_PCHelper;
TMR0 tmr0;
int num_of_gprs;
EEPROM *eeprom; // set to NULL for PIC's that don't have a data EEPROM
bool LoadProgramFile(const char *pFilename,
FILE *pFile,
const char *pProcessorName
);
void add_sfr_register(Register *reg, unsigned int addr,
RegisterValue por_value=RegisterValue(0,0),const char *new_name=0);
void delete_sfr_register(Register *pReg);
void remove_sfr_register(Register *pReg);
void init_program_memory(unsigned int memory_size);
void build_program_memory(int *memory,int minaddr, int maxaddr);
virtual instruction * disasm ( unsigned int address,unsigned int inst)=0;
virtual void create_config_memory() = 0;
virtual void tris_instruction(unsigned int tris_register) {return;};
virtual void create_symbols();
virtual void run(bool refresh=true);
virtual void finish();
void sleep();
virtual void enter_sleep();
virtual void exit_sleep();
virtual bool exit_wdt_sleep() { return true; } // WDT wakes sleep
virtual bool swdten_active() { return true; } // WDTCON can enable WDT
bool is_sleeping();
virtual void step(unsigned int steps,bool refresh=true);
virtual void step_over(bool refresh=true);
virtual void step_cycle();
virtual void step_one(bool refresh=true) {
if (pc->value < program_memory_size())
program_memory[pc->value]->execute();
else
{
cout << "Program counter not valid " << hex << pc->value << endl;
get_bp().halt();
}
}
// Take a snap shot of the internal state.
virtual void save_state();
virtual void interrupt() { return; };
//// TEMPORARY - consolidate the various bp.set_interrupt() calls to one function:
void BP_set_interrupt();
void pm_write();
virtual ConfigMemory * getConfigMemory(){ return m_configMemory;}
virtual bool set_config_word(unsigned int address, unsigned int cfg_word);
virtual unsigned int get_config_word(unsigned int address);
virtual int get_config_index(unsigned int address);
virtual unsigned int config_word_address() const {return 0x2007;};
virtual ConfigMode *create_ConfigMode() { return new ConfigMode; };
virtual void reset(RESET_TYPE r);
virtual void create();
virtual PROCESSOR_TYPE isa(){return _PIC_PROCESSOR_;};
virtual PROCESSOR_TYPE base_isa(){return _PIC_PROCESSOR_;};
virtual unsigned int access_gprs() { return 0; };
virtual unsigned int bugs() { return 0; }; // default is no errata
/* The program_counter class calls these two functions to get the upper bits of the PC
* for branching (e.g. goto) or modify PCL instructions (e.g. addwf pcl,f) */
virtual unsigned int get_pclath_branching_jump()=0;
virtual unsigned int get_pclath_branching_modpcl()=0;
virtual void option_new_bits_6_7(unsigned int)=0;
virtual void put_option_reg(unsigned int) {}
virtual void set_eeprom(EEPROM *e);
virtual EEPROM *get_eeprom() { return (eeprom); }
virtual void createMCLRPin(int pkgPinNumber);
virtual void assignMCLRPin(int pkgPinNumber);
virtual void unassignMCLRPin();
virtual void osc_mode(unsigned int );
virtual void set_config3h(gint64 x){;}
virtual string string_config3h(gint64 x){return string("fix string_config3h");}
// Activity States reflect what the processor is currently doing
// (The breakpoint class formally implemented this functionality).
enum eProcessorActivityStates {
ePAActive, // Normal state
ePAIdle, // Processor is held in reset
ePASleeping, // Processor is sleeping
ePAInterrupt, // do we need this?
ePAPMWrite // Processor is busy performing a program memory write
};
eProcessorActivityStates getActivityState() { return m_ActivityState; }
pic_processor(const char *_name=0, const char *desc=0);
virtual ~pic_processor();
void set_osc_pin_Number(unsigned int i, unsigned int val, PinModule *pm)
{if (i < 4){osc_pin_Number[i] = val; m_osc_Monitor[i] = pm;}}
unsigned char get_osc_pin_Number(unsigned int i)
{return (i<4)?osc_pin_Number[i]:253;}
PinModule * get_osc_PinMonitor(unsigned int i)
{ return (i<4)?m_osc_Monitor[i]:0; }
void set_clk_pin(unsigned int pkg_Pin_Number,
PinModule *PinMod,
const char * name,
bool in,
PicPortRegister *m_port = 0,
PicTrisRegister *m_tris = 0,
PicLatchRegister *m_lat = 0
);
void clr_clk_pin(unsigned int pkg_Pin_Number, PinModule *PinMod,
PicPortRegister *m_port = 0,
PicTrisRegister *m_tris = 0,
PicLatchRegister *m_lat = 0
);
virtual void set_int_osc(bool val){ internal_osc = val;}
virtual bool get_int_osc(){ return internal_osc; }
virtual void set_pplx4_osc(bool val){ PPLx4 = val;}
virtual bool get_pplx4_osc(){ return PPLx4; }
virtual void Wput(unsigned int);
virtual unsigned int Wget();
protected:
ConfigMemory *m_configMemory;
eProcessorActivityStates m_ActivityState;
ResetTraceType *m_pResetTT;
InterruptTraceType *m_pInterruptTT;
// Most midrange PIC's have a dedicated MCLR pin.
// For the ones that don't, m_MCLR will be null.
IOPIN *m_MCLR;
IOPIN *m_MCLR_Save;
int m_MCLR_pin;
PinMonitor *m_MCLRMonitor;
string m_mclr_pin_name;
unsigned char osc_pin_Number[4];
PinModule *m_osc_Monitor[4];
bool internal_osc; // internal RC oscilator enabled on Config Word
bool PPLx4; // 4x PPL enabled on Config Word
PeripheralSignalSource *clksource;
SignalControl *clkcontrol;
};
#define cpu_pic ( (pic_processor *)cpu)
// Bit field of known silicon bugs
#define BUG_NONE 0
#define BUG_DAW 0x00000001
//------------------------------------------------------------------------
// Base Class for configuration memory
//
// The configuration memory is only a tiny portion of the overall processor
// program memory space (only 1-word on the mid range devices). So, explicit
// attributes are created for each memory configuration word. Since the meaning
// of configuration memory varies from processor to processor, it is up to
// each process to derive from this class.
class ConfigWord : public Integer
{
public:
ConfigWord(const char *_name, unsigned int default_val, const char *desc,
pic_processor *pCpu, unsigned int addr, bool EEw=true);
virtual void get(char *buffer, int buf_size);
virtual void get(gint64 &i);
unsigned int ConfigWordAdd() { return m_addr; }
bool isEEWritable() { return EEWritable;}
protected:
pic_processor *m_pCpu;
unsigned int m_addr;
bool EEWritable;
};
class ConfigMemory
{
public:
ConfigMemory(pic_processor *pCpu, unsigned int nWords);
~ConfigMemory();
int addConfigWord(unsigned int addr, ConfigWord *);
ConfigWord *getConfigWord(unsigned int addr);
int getnConfigWords() { return m_nConfigWords; }
protected:
pic_processor *m_pCpu;
ConfigWord **m_ConfigWords;
unsigned int m_nConfigWords;
};
/*
class ConfigMemory : public Integer
{
public:
ConfigMemory(const char *_name, unsigned int default_val, const char *desc,
pic_processor *pCpu, unsigned int addr);
protected:
pic_processor *m_pCpu;
unsigned int m_addr;
};
*/
#endif
|