/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ * * Copyright (C) 2025 Mauricio G. * * 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 #include #include #include "config.h" #include "kernel.h" #include "powermgmt.h" #include "power.h" #include "adc.h" #include "system.h" #include "debug.h" #include <3ds/types.h> #include <3ds/result.h> #include <3ds/services/mcuhwc.h> #include <3ds/services/ptmu.h> void mcuhwc_init(void) { Result result = mcuHwcInit(); if (R_FAILED(result)) { DEBUGF("mcuhwc_init: warning, mcuHwcInit failed\n"); } result = ptmuInit(); if (R_FAILED(result)) { DEBUGF("mcuhwc_init: warning, ptmuInit failed\n"); } } void mcuhwc_close(void) { mcuHwcExit(); ptmuExit(); } /* FIXME: what level should disksafe be?*/ unsigned short battery_level_disksafe = 0; unsigned short battery_level_shutoff = 0; /* voltages (millivolt) of 0%, 10%, ... 100% when charging disabled */ unsigned short percent_to_volt_discharge[11] = { }; /* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */ unsigned short percent_to_volt_charge[11] = { 3450, 3670, 3721, 3751, 3782, 3821, 3876, 3941, 4034, 4125, 4200 }; enum { BATT_NOT_CHARGING = 0, BATT_CHARGING, }; static u8 charging_status = BATT_NOT_CHARGING; unsigned int power_input_status(void) { unsigned status = POWER_INPUT_NONE; PTMU_GetBatteryChargeState(&charging_status); if (charging_status == BATT_CHARGING) status = POWER_INPUT_MAIN_CHARGER; return status; } /* Returns battery voltage from MAX17040 VCELL ADC [millivolts steps], * adc returns voltage in 1.25mV steps */ /* * TODO this would be interesting to be mixed with battery percentage, for information * and completition purpouses */ int _battery_level(void) { u8 level = 100; MCUHWC_GetBatteryLevel(&level); return level; } bool charging_state(void) { return (charging_status == BATT_CHARGING); }