PX4FirmwareUpgradeThread.cc 13.3 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

10 11

/// @file
Ricardo de Almeida Gonzaga's avatar
Ricardo de Almeida Gonzaga committed
12
///     @brief PX4 Firmware Upgrade operations which occur on a separate thread.
13 14 15
///     @author Don Gagne <don@thegagnes.com>

#include "PX4FirmwareUpgradeThread.h"
16 17 18
#include "Bootloader.h"
#include "QGCLoggingCategory.h"
#include "QGC.h"
19 20 21

#include <QTimer>
#include <QDebug>
Don Gagne's avatar
Don Gagne committed
22
#include <QSerialPort>
23

24 25
PX4FirmwareUpgradeThreadWorker::PX4FirmwareUpgradeThreadWorker(PX4FirmwareUpgradeThreadController* controller) :
    _controller(controller),
26 27
    _bootloader(NULL),
    _bootloaderPort(NULL),
28 29 30
    _timerRetry(NULL),
    _foundBoard(false),
    _findBoardFirstAttempt(true)
31
{
32
    Q_ASSERT(_controller);
33
    
34 35 36 37 38
    connect(_controller, &PX4FirmwareUpgradeThreadController::_initThreadWorker,            this, &PX4FirmwareUpgradeThreadWorker::_init);
    connect(_controller, &PX4FirmwareUpgradeThreadController::_startFindBoardLoopOnThread,  this, &PX4FirmwareUpgradeThreadWorker::_startFindBoardLoop);
    connect(_controller, &PX4FirmwareUpgradeThreadController::_flashOnThread,               this, &PX4FirmwareUpgradeThreadWorker::_flash);
    connect(_controller, &PX4FirmwareUpgradeThreadController::_rebootOnThread,              this, &PX4FirmwareUpgradeThreadWorker::_reboot);
    connect(_controller, &PX4FirmwareUpgradeThreadController::_cancel,                      this, &PX4FirmwareUpgradeThreadWorker::_cancel);
39 40 41 42 43 44 45 46 47 48 49 50
}

PX4FirmwareUpgradeThreadWorker::~PX4FirmwareUpgradeThreadWorker()
{
    if (_bootloaderPort) {
        // deleteLater so delete happens on correct thread
        _bootloaderPort->deleteLater();
    }
}

/// @brief Initializes the PX4FirmwareUpgradeThreadWorker with the various child objects which must be created
///         on the worker thread.
51
void PX4FirmwareUpgradeThreadWorker::_init(void)
52 53 54 55 56 57 58 59
{
    // We create the timers here so that they are on the right thread
    
    Q_ASSERT(_timerRetry == NULL);
    _timerRetry = new QTimer(this);
    Q_CHECK_PTR(_timerRetry);
    _timerRetry->setSingleShot(true);
    _timerRetry->setInterval(_retryTimeout);
60
    connect(_timerRetry, &QTimer::timeout, this, &PX4FirmwareUpgradeThreadWorker::_findBoardOnce);
61 62
    
    Q_ASSERT(_bootloader == NULL);
63 64
    _bootloader = new Bootloader(this);
    connect(_bootloader, &Bootloader::updateProgress, this, &PX4FirmwareUpgradeThreadWorker::_updateProgress);
65 66
}

67
void PX4FirmwareUpgradeThreadWorker::_cancel(void)
68
{
69 70 71 72 73 74 75 76 77 78
    if (_bootloaderPort) {
        _bootloaderPort->close();
        _bootloaderPort->deleteLater();
        _bootloaderPort = NULL;
    }
}

void PX4FirmwareUpgradeThreadWorker::_startFindBoardLoop(void)
{
    _foundBoard = false;
Don Gagne's avatar
Don Gagne committed
79
    _findBoardFirstAttempt = true;
80 81 82 83 84
    _findBoardOnce();
}

void PX4FirmwareUpgradeThreadWorker::_findBoardOnce(void)
{
Don Gagne's avatar
Don Gagne committed
85
    qCDebug(FirmwareUpgradeVerboseLog) << "_findBoardOnce";
86
    
Don Gagne's avatar
Don Gagne committed
87 88
    QGCSerialPortInfo               portInfo;
    QGCSerialPortInfo::BoardType_t  boardType;
89
    QString                         boardName;
90
    
91
    if (_findBoardFromPorts(portInfo, boardType, boardName)) {
92 93 94
        if (!_foundBoard) {
            _foundBoard = true;
            _foundBoardPortInfo = portInfo;
95
            emit foundBoard(_findBoardFirstAttempt, portInfo, boardType, boardName);
96
            if (!_findBoardFirstAttempt) {
97
                if (boardType == QGCSerialPortInfo::BoardTypeSiKRadio) {
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
                    _3drRadioForceBootloader(portInfo);
                    return;
                } else {
                    _findBootloader(portInfo, false /* radio mode */, true /* errorOnNotFound */);
                    return;
                }
            }
        }
    } else {
        if (_foundBoard) {
            _foundBoard = false;
            qCDebug(FirmwareUpgradeLog) << "Board gone";
            emit boardGone();
        } else if (_findBoardFirstAttempt) {
            emit noBoardFound();
113 114 115
        }
    }
    
Don Gagne's avatar
Don Gagne committed
116
    _findBoardFirstAttempt = false;
117 118 119
    _timerRetry->start();
}

120
bool PX4FirmwareUpgradeThreadWorker::_findBoardFromPorts(QGCSerialPortInfo& portInfo, QGCSerialPortInfo::BoardType_t& boardType, QString& boardName)
121
{
122
    for (QGCSerialPortInfo info: QGCSerialPortInfo::availablePorts()) {
123 124
        info.getBoardInfo(boardType, boardName);

Don Gagne's avatar
Don Gagne committed
125
        qCDebug(FirmwareUpgradeVerboseLog) << "Serial Port --------------";
126 127
        qCDebug(FirmwareUpgradeVerboseLog) << "\tboard type" << boardType;
        qCDebug(FirmwareUpgradeVerboseLog) << "\tboard name" << boardName;
Don Gagne's avatar
Don Gagne committed
128 129 130 131 132
        qCDebug(FirmwareUpgradeVerboseLog) << "\tport name:" << info.portName();
        qCDebug(FirmwareUpgradeVerboseLog) << "\tdescription:" << info.description();
        qCDebug(FirmwareUpgradeVerboseLog) << "\tsystem location:" << info.systemLocation();
        qCDebug(FirmwareUpgradeVerboseLog) << "\tvendor ID:" << info.vendorIdentifier();
        qCDebug(FirmwareUpgradeVerboseLog) << "\tproduct ID:" << info.productIdentifier();
133
        
134
        if (info.canFlash()) {
135
            portInfo = info;
136 137 138 139 140 141 142
            return true;
        }
    }
    
    return false;
}

Don Gagne's avatar
Don Gagne committed
143
void PX4FirmwareUpgradeThreadWorker::_3drRadioForceBootloader(const QGCSerialPortInfo& portInfo)
144
{
145 146 147 148 149 150 151 152 153
    // First make sure we can't get the bootloader
    
    if (_findBootloader(portInfo, true /* radio Mode */, false /* errorOnNotFound */)) {
        return;
    }

    // Couldn't find the bootloader. We'll need to reboot the radio into bootloader.
    
    QSerialPort port(portInfo);
Don Gagne's avatar
Don Gagne committed
154
    
155 156
    port.setBaudRate(QSerialPort::Baud57600);
    
157
    emit status(tr("Putting radio into command mode"));
158 159
    
    // Wait a little while for the USB port to initialize. 3DR Radio boot is really slow.
Don Gagne's avatar
Don Gagne committed
160 161
    QGC::SLEEP::msleep(2000);
    port.open(QIODevice::ReadWrite);
162 163
    
    if (!port.isOpen()) {
164
        emit error(tr("Unable to open port: %1 error: %2").arg(portInfo.systemLocation()).arg(port.errorString()));
165 166 167 168
        return;
    }

    // Put radio into command mode
Don Gagne's avatar
Don Gagne committed
169
    QGC::SLEEP::msleep(2000);
170 171
    port.write("+++", 3);
    if (!port.waitForReadyRead(1500)) {
172
        emit error(tr("Unable to put radio into command mode"));
173 174 175 176
        return;
    }
    QByteArray bytes = port.readAll();
    if (!bytes.contains("OK")) {
Don Gagne's avatar
Don Gagne committed
177
        qCDebug(FirmwareUpgradeLog) << bytes;
178
        emit error(tr("Unable to put radio into command mode"));
179 180 181
        return;
    }

182
    emit status(tr("Rebooting radio to bootloader"));
183 184 185
    
    port.write("AT&UPDATE\r\n");
    if (!port.waitForBytesWritten(1500)) {
186
        emit error(tr("Unable to reboot radio (bytes written)"));
187 188
        return;
    }
Don Gagne's avatar
Don Gagne committed
189
    if (!port.waitForReadyRead(1500)) {
190
        emit error(tr("Unable to reboot radio (ready read)"));
Don Gagne's avatar
Don Gagne committed
191 192
        return;
    }
193
    port.close();
Don Gagne's avatar
Don Gagne committed
194 195
    QGC::SLEEP::msleep(2000);

196 197 198
    // The bootloader should be waiting for us now
    
    _findBootloader(portInfo, true /* radio mode */, true /* errorOnNotFound */);
199 200
}

Don Gagne's avatar
Don Gagne committed
201
bool PX4FirmwareUpgradeThreadWorker::_findBootloader(const QGCSerialPortInfo& portInfo, bool radioMode, bool errorOnNotFound)
202
{
Don Gagne's avatar
Don Gagne committed
203
    qCDebug(FirmwareUpgradeLog) << "_findBootloader" << portInfo.systemLocation();
204
    
205 206 207 208
    uint32_t bootloaderVersion = 0;
    uint32_t boardID;
    uint32_t flashSize = 0;
    
209
    _bootloaderPort = new QSerialPort();
Don Gagne's avatar
Don Gagne committed
210
    if (radioMode) {
211
        _bootloaderPort->setBaudRate(QSerialPort::Baud115200);
Don Gagne's avatar
Don Gagne committed
212 213
    }

214
    // Wait a little while for the USB port to initialize.
215
    bool openFailed = true;
216 217
    for (int i=0; i<10; i++) {
        if (_bootloader->open(_bootloaderPort, portInfo.systemLocation())) {
218
            openFailed = false;
219 220 221 222 223 224
            break;
        } else {
            QGC::SLEEP::msleep(100);
        }
    }
    
Don Gagne's avatar
Don Gagne committed
225 226 227 228
    if (radioMode) {
        QGC::SLEEP::msleep(2000);
    }

229 230 231 232 233 234 235 236 237 238
    if (openFailed) {
        qCDebug(FirmwareUpgradeLog) << "Bootloader open port failed:" << _bootloader->errorString();
        if (errorOnNotFound) {
            emit error(_bootloader->errorString());
        }
        _bootloaderPort->deleteLater();
        _bootloaderPort = NULL;
        return false;
    }

239 240 241 242 243 244 245 246 247 248 249 250
    if (_bootloader->sync(_bootloaderPort)) {
        bool success;
        
        if (radioMode) {
            success = _bootloader->get3DRRadioBoardId(_bootloaderPort, boardID);
        } else {
            success = _bootloader->getPX4BoardInfo(_bootloaderPort, bootloaderVersion, boardID, flashSize);
        }
        if (success) {
            qCDebug(FirmwareUpgradeLog) << "Found bootloader";
            emit foundBootloader(bootloaderVersion, boardID, flashSize);
            return true;
251 252 253
        }
    }
    
Don Gagne's avatar
Don Gagne committed
254 255 256
    _bootloaderPort->close();
    _bootloaderPort->deleteLater();
    _bootloaderPort = NULL;
257 258 259 260 261 262
    qCDebug(FirmwareUpgradeLog) << "Bootloader error:" << _bootloader->errorString();
    if (errorOnNotFound) {
        emit error(_bootloader->errorString());
    }
    
    return false;
263 264
}

265
void PX4FirmwareUpgradeThreadWorker::_reboot(void)
266
{
267 268
    if (_bootloaderPort) {
        if (_bootloaderPort->isOpen()) {
269
            _bootloader->reboot(_bootloaderPort);
270 271 272 273
        }
        _bootloaderPort->deleteLater();
        _bootloaderPort = NULL;
    }
274 275
}

276
void PX4FirmwareUpgradeThreadWorker::_flash(void)
277
{
278 279 280
    qCDebug(FirmwareUpgradeLog) << "PX4FirmwareUpgradeThreadWorker::_flash";
    
    if (_erase()) {
281
        emit status(tr("Programming new version..."));
282 283 284 285 286 287 288 289 290
        
        if (_bootloader->program(_bootloaderPort, _controller->image())) {
            qCDebug(FirmwareUpgradeLog) << "Program complete";
            emit status("Program complete");
        } else {
            _bootloaderPort->deleteLater();
            _bootloaderPort = NULL;
            qCDebug(FirmwareUpgradeLog) << "Program failed:" << _bootloader->errorString();
            emit error(_bootloader->errorString());
Don Gagne's avatar
Don Gagne committed
291
            return;
292 293
        }
        
294
        emit status(tr("Verifying program..."));
295 296 297
        
        if (_bootloader->verify(_bootloaderPort, _controller->image())) {
            qCDebug(FirmwareUpgradeLog) << "Verify complete";
298
            emit status(tr("Verify complete"));
299 300 301
        } else {
            qCDebug(FirmwareUpgradeLog) << "Verify failed:" << _bootloader->errorString();
            emit error(_bootloader->errorString());
Don Gagne's avatar
Don Gagne committed
302
            return;
303
        }
304
    }
305 306 307 308
    
    emit _reboot();
    
    emit flashComplete();
309 310
}

311
bool PX4FirmwareUpgradeThreadWorker::_erase(void)
312
{
313 314 315
    qCDebug(FirmwareUpgradeLog) << "PX4FirmwareUpgradeThreadWorker::_erase";
    
    emit eraseStarted();
316
    emit status(tr("Erasing previous program..."));
317 318 319
    
    if (_bootloader->erase(_bootloaderPort)) {
        qCDebug(FirmwareUpgradeLog) << "Erase complete";
320
        emit status(tr("Erase complete"));
321 322
        emit eraseComplete();
        return true;
323
    } else {
324 325 326
        qCDebug(FirmwareUpgradeLog) << "Erase failed:" << _bootloader->errorString();
        emit error(_bootloader->errorString());
        return false;
327 328 329 330 331 332
    }
}

PX4FirmwareUpgradeThreadController::PX4FirmwareUpgradeThreadController(QObject* parent) :
    QObject(parent)
{
333
    _worker = new PX4FirmwareUpgradeThreadWorker(this);
334 335 336 337 338 339
    Q_CHECK_PTR(_worker);
    
    _workerThread = new QThread(this);
    Q_CHECK_PTR(_workerThread);
    _worker->moveToThread(_workerThread);
    
340 341 342 343 344
    connect(_worker, &PX4FirmwareUpgradeThreadWorker::updateProgress,       this, &PX4FirmwareUpgradeThreadController::_updateProgress);
    connect(_worker, &PX4FirmwareUpgradeThreadWorker::foundBoard,           this, &PX4FirmwareUpgradeThreadController::_foundBoard);
    connect(_worker, &PX4FirmwareUpgradeThreadWorker::noBoardFound,         this, &PX4FirmwareUpgradeThreadController::_noBoardFound);
    connect(_worker, &PX4FirmwareUpgradeThreadWorker::boardGone,            this, &PX4FirmwareUpgradeThreadController::_boardGone);
    connect(_worker, &PX4FirmwareUpgradeThreadWorker::foundBootloader,      this, &PX4FirmwareUpgradeThreadController::_foundBootloader);
345
    connect(_worker, &PX4FirmwareUpgradeThreadWorker::bootloaderSyncFailed, this, &PX4FirmwareUpgradeThreadController::_bootloaderSyncFailed);
346 347 348 349 350
    connect(_worker, &PX4FirmwareUpgradeThreadWorker::error,                this, &PX4FirmwareUpgradeThreadController::_error);
    connect(_worker, &PX4FirmwareUpgradeThreadWorker::status,               this, &PX4FirmwareUpgradeThreadController::_status);
    connect(_worker, &PX4FirmwareUpgradeThreadWorker::eraseStarted,         this, &PX4FirmwareUpgradeThreadController::_eraseStarted);
    connect(_worker, &PX4FirmwareUpgradeThreadWorker::eraseComplete,        this, &PX4FirmwareUpgradeThreadController::_eraseComplete);
    connect(_worker, &PX4FirmwareUpgradeThreadWorker::flashComplete,        this, &PX4FirmwareUpgradeThreadController::_flashComplete);
351 352 353 354 355 356 357 358 359 360

    _workerThread->start();
    
    emit _initThreadWorker();
}

PX4FirmwareUpgradeThreadController::~PX4FirmwareUpgradeThreadController()
{
    _workerThread->quit();
    _workerThread->wait();
361 362
    
    delete _workerThread;
363 364
}

365
void PX4FirmwareUpgradeThreadController::startFindBoardLoop(void)
366
{
367 368
    qCDebug(FirmwareUpgradeLog) << "PX4FirmwareUpgradeThreadController::findBoard";
    emit _startFindBoardLoopOnThread();
369 370
}

371
void PX4FirmwareUpgradeThreadController::cancel(void)
372
{
373 374
    qCDebug(FirmwareUpgradeLog) << "PX4FirmwareUpgradeThreadController::cancel";
    emit _cancel();
375 376
}

377
void PX4FirmwareUpgradeThreadController::flash(const FirmwareImage* image)
378
{
379 380
    _image = image;
    emit _flashOnThread();
381
}