2022-03-05 09:38:13 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2022 Aidan MacDonald
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "x1000bootloader.h"
|
2022-03-05 09:41:46 +00:00
|
|
|
#include "core_alloc.h"
|
2022-03-05 09:38:13 +00:00
|
|
|
#include "storage.h"
|
|
|
|
#include "button.h"
|
|
|
|
#include "kernel.h"
|
2022-03-05 09:39:46 +00:00
|
|
|
#include "usb.h"
|
2022-03-05 09:41:46 +00:00
|
|
|
#include "rb-loader.h"
|
|
|
|
#include "loader_strerror.h"
|
2022-03-05 09:39:46 +00:00
|
|
|
|
|
|
|
/* Set to true if a SYS_USB_CONNECTED event is seen
|
|
|
|
* Set to false if a SYS_USB_DISCONNECTED event is seen
|
|
|
|
* Handled by the gui code since that's how events are delivered
|
|
|
|
* TODO: this is an ugly kludge */
|
|
|
|
bool is_usb_connected = false;
|
2022-03-05 09:38:13 +00:00
|
|
|
|
|
|
|
/* this is both incorrect and incredibly racy... */
|
|
|
|
int check_disk(bool wait)
|
|
|
|
{
|
|
|
|
if(storage_present(IF_MD(0)))
|
|
|
|
return DISK_PRESENT;
|
|
|
|
if(!wait)
|
|
|
|
return DISK_ABSENT;
|
|
|
|
|
|
|
|
while(!storage_present(IF_MD(0))) {
|
|
|
|
splash2(0, "Insert SD card", "Press " BL_QUIT_NAME " to cancel");
|
|
|
|
if(get_button(HZ/4) == BL_QUIT)
|
|
|
|
return DISK_CANCELED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* a lie intended to give time for mounting the disk in the background */
|
|
|
|
splash(HZ, "Scanning disk");
|
|
|
|
|
|
|
|
return DISK_PRESENT;
|
|
|
|
}
|
2022-03-05 09:39:46 +00:00
|
|
|
|
|
|
|
void usb_mode(void)
|
|
|
|
{
|
|
|
|
if(!is_usb_connected)
|
|
|
|
splash2(0, "Waiting for USB", "Press " BL_QUIT_NAME " to cancel");
|
|
|
|
|
|
|
|
while(!is_usb_connected)
|
|
|
|
if(get_button(TIMEOUT_BLOCK) == BL_QUIT)
|
|
|
|
return;
|
|
|
|
|
|
|
|
splash(0, "USB mode");
|
|
|
|
usb_acknowledge(SYS_USB_CONNECTED_ACK);
|
|
|
|
|
|
|
|
while(is_usb_connected)
|
|
|
|
get_button(TIMEOUT_BLOCK);
|
|
|
|
|
|
|
|
splash(3*HZ, "USB disconnected");
|
|
|
|
}
|
2022-03-05 09:41:46 +00:00
|
|
|
|
|
|
|
int load_rockbox(const char* filename, size_t* sizep)
|
|
|
|
{
|
|
|
|
if(check_disk(true) != DISK_PRESENT)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
int handle = core_alloc_maximum("rockbox", sizep, &buflib_ops_locked);
|
|
|
|
if(handle < 0) {
|
|
|
|
splash(5*HZ, "Out of memory");
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char* loadbuffer = core_get_data(handle);
|
|
|
|
int rc = load_firmware(loadbuffer, filename, *sizep);
|
|
|
|
if(rc <= 0) {
|
|
|
|
core_free(handle);
|
|
|
|
splash2(5*HZ, "Error loading Rockbox", loader_strerror(rc));
|
|
|
|
return -3;
|
|
|
|
}
|
|
|
|
|
|
|
|
core_shrink(handle, loadbuffer, rc);
|
|
|
|
*sizep = rc;
|
|
|
|
|
|
|
|
return handle;
|
|
|
|
}
|