2009-03-04 04:32:55 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
2012-02-28 16:21:08 +01:00
|
|
|
* the documentation and/or other materials provided with the
|
2009-03-04 04:32:55 +01:00
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* 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 OWNER 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
|
2012-02-28 16:21:08 +01:00
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
2009-03-04 04:32:55 +01:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FASTBOOT_H_
|
|
|
|
#define _FASTBOOT_H_
|
|
|
|
|
2015-04-08 05:12:50 +02:00
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdlib.h>
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2015-10-30 19:49:47 +01:00
|
|
|
#include <string>
|
|
|
|
|
2015-10-30 19:22:01 +01:00
|
|
|
#include "transport.h"
|
2015-03-19 06:47:09 +01:00
|
|
|
|
2012-05-25 02:18:41 +02:00
|
|
|
struct sparse_file;
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
/* protocol.c - fastboot protocol */
|
2015-10-30 19:22:01 +01:00
|
|
|
int fb_command(Transport* transport, const char* cmd);
|
|
|
|
int fb_command_response(Transport* transport, const char* cmd, char* response);
|
|
|
|
int fb_download_data(Transport* transport, const void* data, uint32_t size);
|
|
|
|
int fb_download_data_sparse(Transport* transport, struct sparse_file* s);
|
2009-03-04 04:32:55 +01:00
|
|
|
char *fb_get_error(void);
|
|
|
|
|
|
|
|
#define FB_COMMAND_SZ 64
|
|
|
|
#define FB_RESPONSE_SZ 64
|
|
|
|
|
|
|
|
/* engine.c - high level command queue engine */
|
2015-10-30 19:22:01 +01:00
|
|
|
bool fb_getvar(Transport* transport, const std::string& key, std::string* value);
|
2015-04-08 05:12:50 +02:00
|
|
|
void fb_queue_flash(const char *ptn, void *data, uint32_t sz);
|
2016-01-19 23:50:18 +01:00
|
|
|
void fb_queue_flash_sparse(const char* ptn, struct sparse_file* s, uint32_t sz, size_t current,
|
|
|
|
size_t total);
|
2009-03-04 04:32:55 +01:00
|
|
|
void fb_queue_erase(const char *ptn);
|
2015-04-08 05:12:50 +02:00
|
|
|
void fb_queue_format(const char *ptn, int skip_if_not_supported, int32_t max_chunk_sz);
|
|
|
|
void fb_queue_require(const char *prod, const char *var, bool invert,
|
|
|
|
size_t nvalues, const char **value);
|
2009-03-04 04:32:55 +01:00
|
|
|
void fb_queue_display(const char *var, const char *prettyname);
|
2015-04-08 05:12:50 +02:00
|
|
|
void fb_queue_query_save(const char *var, char *dest, uint32_t dest_size);
|
2009-03-04 04:32:55 +01:00
|
|
|
void fb_queue_reboot(void);
|
|
|
|
void fb_queue_command(const char *cmd, const char *msg);
|
2015-04-08 05:12:50 +02:00
|
|
|
void fb_queue_download(const char *name, void *data, uint32_t size);
|
2009-03-04 04:32:55 +01:00
|
|
|
void fb_queue_notice(const char *notice);
|
2013-10-02 15:35:38 +02:00
|
|
|
void fb_queue_wait_for_disconnect(void);
|
2015-10-30 19:22:01 +01:00
|
|
|
int fb_execute_queue(Transport* transport);
|
2015-09-15 06:05:41 +02:00
|
|
|
void fb_set_active(const char *slot);
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
/* util stuff */
|
2013-10-02 15:35:38 +02:00
|
|
|
double now();
|
|
|
|
char *mkmsg(const char *fmt, ...);
|
2015-05-11 17:59:46 +02:00
|
|
|
__attribute__((__noreturn__)) void die(const char *fmt, ...);
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2015-03-19 06:47:09 +01:00
|
|
|
void get_my_path(char *path);
|
|
|
|
|
2011-04-05 02:54:59 +02:00
|
|
|
/* Current product */
|
|
|
|
extern char cur_product[FB_RESPONSE_SZ + 1];
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
#endif
|