mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-17 00:46:40 +00:00

This means we can trivially support new devices in the future without compiling any new code. This makes it easier to add support for new hardware for LTS distros like RHEL.
149 lines
4.3 KiB
C
149 lines
4.3 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
|
|
*
|
|
* Copyright (C) 2016 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* Licensed under the GNU General Public License Version 2
|
|
*
|
|
* 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 program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <gusb.h>
|
|
|
|
#include "fu-ebitdo-common.h"
|
|
#include "fu-ebitdo-device.h"
|
|
|
|
|
|
static void
|
|
fu_ebitdo_tool_progress_cb (FuDevice *device, GParamSpec *pspec, gpointer user_data)
|
|
{
|
|
g_print ("Written %u%%\n", fu_device_get_progress (device));
|
|
}
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
gsize len;
|
|
g_autofree guint8 *data = NULL;
|
|
g_autoptr(FuEbitdoDevice) dev = NULL;
|
|
g_autoptr(FuDeviceLocker) locker = NULL;
|
|
g_autoptr(FuQuirks) quirks = NULL;
|
|
g_autoptr(GBytes) fw = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(GPtrArray) devices = NULL;
|
|
g_autoptr(GUsbContext) usb_ctx = NULL;
|
|
|
|
g_setenv ("G_MESSAGES_DEBUG", "all", TRUE);
|
|
|
|
/* require filename */
|
|
if (argc != 2) {
|
|
g_print ("USAGE: %s <filename>\n", argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
/* use quirks */
|
|
quirks = fu_quirks_new ();
|
|
if (!fu_quirks_load (quirks, &error)) {
|
|
g_print ("Failed to load quirks: %s\n", error->message);
|
|
return 1;
|
|
}
|
|
|
|
/* get the device */
|
|
usb_ctx = g_usb_context_new (&error);
|
|
if (usb_ctx == NULL) {
|
|
g_print ("Failed to open USB devices: %s\n", error->message);
|
|
return 1;
|
|
}
|
|
g_usb_context_enumerate (usb_ctx);
|
|
devices = g_usb_context_get_devices (usb_ctx);
|
|
for (guint i = 0; i < devices->len; i++) {
|
|
GUsbDevice *usb_device = g_ptr_array_index (devices, i);
|
|
g_autoptr(FuEbitdoDevice) dev_tmp = fu_ebitdo_device_new (usb_device);
|
|
fu_device_set_quirks (FU_DEVICE (dev_tmp), quirks);
|
|
if (fu_usb_device_probe (FU_USB_DEVICE (dev_tmp), NULL)) {
|
|
dev = g_steal_pointer (&dev_tmp);
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* nothing supported */
|
|
if (dev == NULL) {
|
|
g_print ("No supported device plugged in!\n");
|
|
return 1;
|
|
}
|
|
|
|
/* open device */
|
|
locker = fu_device_locker_new (dev, &error);
|
|
if (locker == NULL) {
|
|
g_print ("Failed to open USB device: %s\n", error->message);
|
|
return 1;
|
|
}
|
|
g_print ("Device Firmware Ver: %s\n",
|
|
fu_device_get_version (FU_DEVICE (dev)));
|
|
g_print ("Device Verification ID:\n");
|
|
for (guint i = 0; i < 9; i++)
|
|
g_print ("\t%u = 0x%08x\n", i, fu_ebitdo_device_get_serial(dev)[i]);
|
|
|
|
/* not in bootloader mode, so print what to do */
|
|
if (fu_device_has_flag (dev, FWUPD_DEVICE_FLAG_NEEDS_BOOTLOADER)) {
|
|
GUsbDevice *usb_device = fu_usb_device_get_dev (FU_USB_DEVICE (dev));
|
|
g_print ("1. Disconnect the controller\n");
|
|
switch (g_usb_device_get_pid (usb_device)) {
|
|
case 0xab11: /* FC30 */
|
|
case 0xab12: /* NES30 */
|
|
case 0xab21: /* SFC30 */
|
|
case 0xab20: /* SNES30 */
|
|
g_print ("2. Hold down L+R+START for 3 seconds until "
|
|
"both LED lights flashing.\n");
|
|
break;
|
|
case 0x9000: /* FC30PRO */
|
|
case 0x9001: /* NES30PRO */
|
|
g_print ("2. Hold down RETURN+POWER for 3 seconds until "
|
|
"both LED lights flashing.\n");
|
|
break;
|
|
case 0x1002: /* FC30-ARCADE */
|
|
g_print ("2. Hold down L1+R1+HOME for 3 seconds until "
|
|
"both blue LED and green LED blink.\n");
|
|
break;
|
|
default:
|
|
g_print ("2. Do what it says in the manual.\n");
|
|
break;
|
|
}
|
|
g_print ("3. Connect controller\n");
|
|
return 1;
|
|
}
|
|
|
|
/* load firmware file */
|
|
if (!g_file_get_contents (argv[1], (gchar **) &data, &len, &error)) {
|
|
g_print ("Failed to load file: %s\n", error->message);
|
|
return 1;
|
|
}
|
|
|
|
/* update with data blob */
|
|
fw = g_bytes_new (data, len);
|
|
g_signal_connect (dev, "notify::progress",
|
|
G_CALLBACK (fu_ebitdo_tool_progress_cb), NULL);
|
|
if (!fu_ebitdo_device_write_firmware (dev, fw, &error)) {
|
|
g_print ("Failed to write firmware: %s\n", error->message);
|
|
return 1;
|
|
}
|
|
|
|
/* success */
|
|
g_print ("Now turn off the controller with the power button.\n");
|
|
|
|
return 0;
|
|
}
|