mirror of
https://github.com/linux-msm/qdl.git
synced 2026-02-25 13:12:25 -08:00
With the refactoring leading up to the firehose implementation being driven by the client code and the USB code extracted we can implement nbdkit plugin exposing the flash storage to the host PC. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
241 lines
5.7 KiB
C
241 lines
5.7 KiB
C
/*
|
|
* Copyright (c) 2016-2017, Linaro Ltd.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
*
|
|
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software without
|
|
* specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
#include <sys/types.h>
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <dirent.h>
|
|
#include <err.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <inttypes.h>
|
|
#include <poll.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <termios.h>
|
|
#include <unistd.h>
|
|
#include "qdl.h"
|
|
#include "usb.h"
|
|
|
|
struct sahara_pkt {
|
|
uint32_t cmd;
|
|
uint32_t length;
|
|
|
|
union {
|
|
struct {
|
|
uint32_t version;
|
|
uint32_t compatible;
|
|
uint32_t max_len;
|
|
uint32_t mode;
|
|
} hello_req;
|
|
struct {
|
|
uint32_t version;
|
|
uint32_t compatible;
|
|
uint32_t status;
|
|
uint32_t mode;
|
|
} hello_resp;
|
|
struct {
|
|
uint32_t image;
|
|
uint32_t offset;
|
|
uint32_t length;
|
|
} read_req;
|
|
struct {
|
|
uint32_t image;
|
|
uint32_t status;
|
|
} eoi;
|
|
struct {
|
|
} done_req;
|
|
struct {
|
|
uint32_t status;
|
|
} done_resp;
|
|
struct {
|
|
uint64_t image;
|
|
uint64_t offset;
|
|
uint64_t length;
|
|
} read64_req;
|
|
};
|
|
};
|
|
|
|
static void sahara_hello(struct qdl_device *qdl, struct sahara_pkt *pkt)
|
|
{
|
|
struct sahara_pkt resp;
|
|
|
|
assert(pkt->length == 0x30);
|
|
|
|
printf("HELLO version: 0x%x compatible: 0x%x max_len: %d mode: %d\n",
|
|
pkt->hello_req.version, pkt->hello_req.compatible, pkt->hello_req.max_len, pkt->hello_req.mode);
|
|
|
|
resp.cmd = 2;
|
|
resp.length = 0x30;
|
|
resp.hello_resp.version = 2;
|
|
resp.hello_resp.compatible = 1;
|
|
resp.hello_resp.status = 0;
|
|
resp.hello_resp.mode = pkt->hello_req.mode;
|
|
|
|
qdl_write(qdl, &resp, resp.length, true);
|
|
}
|
|
|
|
static int sahara_read_common(struct qdl_device *qdl, const char *mbn, off_t offset, size_t len)
|
|
{
|
|
int progfd;
|
|
ssize_t n;
|
|
void *buf;
|
|
int ret = 0;
|
|
|
|
progfd = open(mbn, O_RDONLY);
|
|
if (progfd < 0)
|
|
return -errno;
|
|
|
|
buf = malloc(len);
|
|
if (!buf)
|
|
return -ENOMEM;
|
|
|
|
lseek(progfd, offset, SEEK_SET);
|
|
n = read(progfd, buf, len);
|
|
if (n != len) {
|
|
ret = -errno;
|
|
goto out;
|
|
}
|
|
|
|
n = qdl_write(qdl, buf, n, true);
|
|
if (n != len)
|
|
err(1, "failed to write %zu bytes to sahara", len);
|
|
|
|
free(buf);
|
|
close(progfd);
|
|
|
|
out:
|
|
return ret;
|
|
}
|
|
|
|
static void sahara_read(struct qdl_device *qdl, struct sahara_pkt *pkt, const char *mbn)
|
|
{
|
|
int ret;
|
|
|
|
assert(pkt->length == 0x14);
|
|
|
|
printf("READ image: %d offset: 0x%x length: 0x%x\n",
|
|
pkt->read_req.image, pkt->read_req.offset, pkt->read_req.length);
|
|
|
|
ret = sahara_read_common(qdl, mbn, pkt->read_req.offset, pkt->read_req.length);
|
|
if (ret < 0)
|
|
errx(1, "failed to read image chunk to sahara");
|
|
}
|
|
|
|
static void sahara_read64(struct qdl_device *qdl, struct sahara_pkt *pkt, const char *mbn)
|
|
{
|
|
int ret;
|
|
|
|
assert(pkt->length == 0x20);
|
|
|
|
printf("READ64 image: %" PRId64 " offset: 0x%" PRIx64 " length: 0x%" PRIx64 "\n",
|
|
pkt->read64_req.image, pkt->read64_req.offset, pkt->read64_req.length);
|
|
|
|
ret = sahara_read_common(qdl, mbn, pkt->read64_req.offset, pkt->read64_req.length);
|
|
if (ret < 0)
|
|
errx(1, "failed to read image chunk to sahara");
|
|
}
|
|
|
|
static void sahara_eoi(struct qdl_device *qdl, struct sahara_pkt *pkt)
|
|
{
|
|
struct sahara_pkt done;
|
|
|
|
assert(pkt->length == 0x10);
|
|
|
|
printf("END OF IMAGE image: %d status: %d\n", pkt->eoi.image, pkt->eoi.status);
|
|
|
|
if (pkt->eoi.status != 0) {
|
|
printf("received non-successful result\n");
|
|
return;
|
|
}
|
|
|
|
done.cmd = 5;
|
|
done.length = 0x8;
|
|
qdl_write(qdl, &done, done.length, true);
|
|
}
|
|
|
|
static int sahara_done(struct qdl_device *qdl, struct sahara_pkt *pkt)
|
|
{
|
|
assert(pkt->length == 0xc);
|
|
|
|
printf("DONE status: %d\n", pkt->done_resp.status);
|
|
|
|
return pkt->done_resp.status;
|
|
}
|
|
|
|
int sahara_run(struct qdl_device *qdl, const char *prog_mbn)
|
|
{
|
|
struct sahara_pkt *pkt;
|
|
char buf[4096];
|
|
char tmp[32];
|
|
bool done = false;
|
|
int n;
|
|
|
|
while (!done) {
|
|
n = qdl_read(qdl, buf, sizeof(buf), 1000);
|
|
if (n < 0)
|
|
break;
|
|
|
|
pkt = (struct sahara_pkt*)buf;
|
|
if (n != pkt->length) {
|
|
fprintf(stderr, "length not matching");
|
|
return -EINVAL;
|
|
}
|
|
|
|
switch (pkt->cmd) {
|
|
case 1:
|
|
sahara_hello(qdl, pkt);
|
|
break;
|
|
case 3:
|
|
sahara_read(qdl, pkt, prog_mbn);
|
|
break;
|
|
case 4:
|
|
sahara_eoi(qdl, pkt);
|
|
break;
|
|
case 6:
|
|
sahara_done(qdl, pkt);
|
|
done = true;
|
|
break;
|
|
case 0x12:
|
|
sahara_read64(qdl, pkt, prog_mbn);
|
|
break;
|
|
default:
|
|
sprintf(tmp, "CMD%x", pkt->cmd);
|
|
print_hex_dump(tmp, buf, n);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return done ? 0 : -1;
|
|
}
|