more typo fixes

This commit is contained in:
Cedric de Wijs 2022-12-18 23:29:21 +01:00
parent 0bdef7bab1
commit 483304344f
12 changed files with 24 additions and 24 deletions

View File

@ -19,7 +19,7 @@
class Jlink: public JtagInterface { class Jlink: public JtagInterface {
public: public:
/*! /*!
* \brief contructor: open device * \brief constructor: open device
* \param[in] clkHz: output clock frequency * \param[in] clkHz: output clock frequency
* \param[in] verbose: verbose level -1 quiet, 0 normal, * \param[in] verbose: verbose level -1 quiet, 0 normal,
* 1 verbose, 2 debug * 1 verbose, 2 debug
@ -28,7 +28,7 @@ class Jlink: public JtagInterface {
~Jlink(); ~Jlink();
// jtagInterface requirement // jtag Interface requirement
/*! /*!
* \brief configure probe clk frequency * \brief configure probe clk frequency
* \param[in] clkHZ: frequency in Hertz * \param[in] clkHZ: frequency in Hertz
@ -58,7 +58,7 @@ class Jlink: public JtagInterface {
/*! /*!
* \brief access ll_write outer this class / directly receives * \brief access ll_write outer this class / directly receives
* fully filled tms, tdi buffers, and optionnally tdo * fully filled tms, tdi buffers, and optionally tdo
* \param[in] tms: tms buffer * \param[in] tms: tms buffer
* \param[in] tdi: tdi buffer * \param[in] tdi: tdi buffer
* \param[out] tdo: tdo buffer * \param[out] tdo: tdo buffer
@ -295,7 +295,7 @@ class Jlink: public JtagInterface {
// buffers for xfer, tdi and tdo // buffers for xfer, tdi and tdo
// each jlink's buffer have 2K Byte // each jlink's buffer have 2K Byte
// enough to send full jtag write // enough to send full jtag write
// buffers must be independant // buffers must be independent
uint8_t _xfer_buf[(2048*2) + 4]; /*!> internal buffer */ uint8_t _xfer_buf[(2048*2) + 4]; /*!> internal buffer */
uint8_t _tms[2048]; /*!< TMS buffer */ uint8_t _tms[2048]; /*!< TMS buffer */
uint8_t _tdi[2048]; /*!< TDI buffer */ uint8_t _tdi[2048]; /*!< TDI buffer */

View File

@ -285,7 +285,7 @@ int Jtag::flushTMS(bool flush_buffer)
void Jtag::go_test_logic_reset() void Jtag::go_test_logic_reset()
{ {
/* idenpendly to current state 5 clk with TMS high is enough */ /* independently to current state 5 clk with TMS high is enough */
for (int i = 0; i < 6; i++) for (int i = 0; i < 6; i++)
setTMS(0x01); setTMS(0x01);
flushTMS(false); flushTMS(false);

View File

@ -248,7 +248,7 @@ void displayFeabits(uint16_t _featbits)
printf("\tMy_ASSP : %s\n", printf("\tMy_ASSP : %s\n",
(((_featbits>>4)&0x01)?"enable":"disable")); (((_featbits>>4)&0x01)?"enable":"disable"));
printf("\tPassword (Flash Protect Key) Protect All : %s\n", printf("\tPassword (Flash Protect Key) Protect All : %s\n",
(((_featbits>>3)&0x01)?"Enaabled" : "Disabled")); (((_featbits>>3)&0x01)?"Enabled" : "Disabled"));
printf("\tPassword (Flash Protect Key) Protect : %s\n", printf("\tPassword (Flash Protect Key) Protect : %s\n",
(((_featbits>>2)&0x01)?"Enabled" : "Disabled")); (((_featbits>>2)&0x01)?"Enabled" : "Disabled"));
} }
@ -983,10 +983,10 @@ void Lattice::displayReadReg(uint32_t dev)
printf("SDM EOF\n"); printf("SDM EOF\n");
break; break;
case 8: case 8:
printf("Authentification ERR\n"); printf("Authentication ERR\n");
break; break;
case 9: case 9:
printf("Authentification Setup ERR\n"); printf("Authentication Setup ERR\n");
break; break;
case 10: case 10:
printf("Bitstream Engine Timeout ERR\n"); printf("Bitstream Engine Timeout ERR\n");
@ -1003,7 +1003,7 @@ void Lattice::displayReadReg(uint32_t dev)
if ((dev >> 46) & 0x01) printf("\tINIT Bus ID Error\n"); if ((dev >> 46) & 0x01) printf("\tINIT Bus ID Error\n");
if ((dev >> 47) & 0x01) printf("\tI3C Parity Error1\n"); if ((dev >> 47) & 0x01) printf("\tI3C Parity Error1\n");
err = (dev >> 48) & 0x03; err = (dev >> 48) & 0x03;
printf("\tAuthentification mode:\n"); printf("\tAuthentication mode:\n");
printf("\t\t"); printf("\t\t");
switch (err) { switch (err) {
case 3: case 3:
@ -1017,8 +1017,8 @@ void Lattice::displayReadReg(uint32_t dev)
printf("HMAC\n"); printf("HMAC\n");
break; break;
} }
if ((dev >> 50) & 0x01) printf("\tAuthentification Done\n"); if ((dev >> 50) & 0x01) printf("\tAuthentication Done\n");
if ((dev >> 51) & 0x01) printf("\tDry Run Authentification Done\n"); if ((dev >> 51) & 0x01) printf("\tDry Run Authentication Done\n");
#endif #endif
} }

View File

@ -24,7 +24,7 @@ using namespace std;
* 01 -> end of file * 01 -> end of file
* 02 -> extended addr * 02 -> extended addr
* 03 -> start segment addr record * 03 -> start segment addr record
* 04 -> extented linear addr record * 04 -> extended linear addr record
* 05 -> start linear addr record * 05 -> start linear addr record
*/ */

View File

@ -109,7 +109,7 @@ uint32_t POFParser::parseSection(uint16_t flag, uint32_t pos, uint32_t size)
/* 0x03: bitstream name ? */ /* 0x03: bitstream name ? */
/* 0x3b: ? */ /* 0x3b: ? */
/* 0x12: ? */ /* 0x12: ? */
/* 0x13: containts usercode / checksum */ /* 0x13: contains usercode / checksum */
/* 0x24: ? */ /* 0x24: ? */
/* 0x11: ? */ /* 0x11: ? */
/* 0x18: ? */ /* 0x18: ? */

View File

@ -26,7 +26,7 @@ class RawParser: public ConfigBitstreamParser {
RawParser(const std::string &filename, bool reverseOrder); RawParser(const std::string &filename, bool reverseOrder);
/*! /*!
* \brief read full content of the file, fill the buffer * \brief read full content of the file, fill the buffer
* \return EXIT_SUCCESS is file is fully read, EXIT_FAILURE otherwhise * \return EXIT_SUCCESS is file is fully read, EXIT_FAILURE otherwise
*/ */
int parse() override; int parse() override;

View File

@ -284,7 +284,7 @@ int SPIFlash::erase_and_prog(int base_addr, uint8_t *data, int len)
bool must_relock = false; // used to relock after write; bool must_relock = false; // used to relock after write;
/* microchip SST26VF032B have global lock set /* microchip SST26VF032B have global lock set
* at powerup. global unlock must be send inconditionally * at powerup. global unlock must be send unconditionally
* with or without block protection * with or without block protection
*/ */
if (_jedec_id == 0xbf2642bf) { // microchip SST26VF032B if (_jedec_id == 0xbf2642bf) { // microchip SST26VF032B
@ -457,7 +457,7 @@ void SPIFlash::read_id()
_flash_model->nr_sector, _flash_model->nr_sector * 0x80000 / 1048576); _flash_model->nr_sector, _flash_model->nr_sector * 0x80000 / 1048576);
printInfo(content); printInfo(content);
} else { } else {
/* read extented */ /* read extended */
if ((_jedec_id & 0xff) != 0) { if ((_jedec_id & 0xff) != 0) {
has_edid = true; has_edid = true;
len += (_jedec_id & 0x0ff); len += (_jedec_id & 0x0ff);

View File

@ -29,7 +29,7 @@ class SPIFlash {
int disable_protection(); int disable_protection();
/*! /*!
* \brief enable protection for selected blocks * \brief enable protection for selected blocks
* \param[in] protect_code: bp + tb combinaison * \param[in] protect_code: bp + tb combination
* \return -1 if write enable or enabling failed * \return -1 if write enable or enabling failed
*/ */
int enable_protection(uint8_t protect_code = 0x1c); int enable_protection(uint8_t protect_code = 0x1c);
@ -84,7 +84,7 @@ class SPIFlash {
* \brief check if area base_addr to base_addr + len match * \brief check if area base_addr to base_addr + len match
* data content * data content
* \param[in] base_addr: base address to read * \param[in] base_addr: base address to read
* \param[in] data: theorical area content * \param[in] data: theoretical area content
* \param[in] len: length (in Byte) to area and data * \param[in] len: length (in Byte) to area and data
* \param[in] rd_burst: size of packet to read * \param[in] rd_burst: size of packet to read
* \return false if read fails or content didn't match, true otherwise * \return false if read fails or content didn't match, true otherwise

View File

@ -29,7 +29,7 @@ class SPIInterface {
bool bulk_erase_flash(); bool bulk_erase_flash();
/*! /*!
* \brief write len byte into flash starting at offset, * \brief write len byte into flash starting at offset,
* optionnally verify after write and unprotect * optionally verify after write and unprotect
* blocks if required and allowed * blocks if required and allowed
* \param[in] offset: offset into flash * \param[in] offset: offset into flash
* \param[in] data: data to write * \param[in] data: data to write

View File

@ -52,7 +52,7 @@ class Xilinx: public Device, SPIInterface {
void reset() override; void reset() override;
/* -------------- */ /* -------------- */
/* xc3s managment */ /* xc3s management */
/* -------------- */ /* -------------- */
/*! /*!
@ -119,7 +119,7 @@ class Xilinx: public Device, SPIInterface {
*/ */
void xc2c_flow_reinit(); void xc2c_flow_reinit();
/*! /*!
* \brief erase full internal flash (optionnally verify) * \brief erase full internal flash (optionally verify)
* \return false if erase fails, true otherwise * \return false if erase fails, true otherwise
*/ */
bool xc2c_flow_erase(); bool xc2c_flow_erase();
@ -175,7 +175,7 @@ class Xilinx: public Device, SPIInterface {
/*! /*!
* \brief xilinx ZynqMP Ultrascale+ specific initialization * \brief xilinx ZynqMP Ultrascale+ specific initialization
* \param[in] family name * \param[in] family name
* \return true if device has been correctly initilized * \return true if device has been correctly initialized
*/ */
bool zynqmp_init(const std::string &family); bool zynqmp_init(const std::string &family);

View File

@ -16,7 +16,7 @@
class XVC_client: public JtagInterface { class XVC_client: public JtagInterface {
public: public:
/*! /*!
* \brief contructor: open device * \brief constructor: open device
* \param[in] ip_addr: server IP addr * \param[in] ip_addr: server IP addr
* \param[in] clkHz: output clock frequency * \param[in] clkHz: output clock frequency
* \param[in] verbose: verbose level -1 quiet, 0 normal, * \param[in] verbose: verbose level -1 quiet, 0 normal,

View File

@ -324,7 +324,7 @@ int XVC_server::handle_data(int fd)
return 1; return 1;
} }
/* 3. receiv 2 x nr_bytes (TMS + TDI) */ /* 3. receive 2 x nr_bytes (TMS + TDI) */
memset(_tmstdi, 0, _buffer_size); memset(_tmstdi, 0, _buffer_size);
if (sread(fd, _tmstdi, nr_bytes * 2) != 1) { if (sread(fd, _tmstdi, nr_bytes * 2) != 1) {
printError("reading data failed"); printError("reading data failed");