1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright © 2009 Bertrik Sikken
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
26 #include "ftl-target.h"
29 #include "pmu-target.h"
35 if (ftl_sync() != 0) panicf("Failed to unmount flash!");
37 pmu_write(0x2b, 0); /* Kill the backlight, instantly. */
42 pmu_switch_power(0, 0);
43 pmu_switch_power(2, 0);
44 pmu_switch_power(3, 0);
45 pmu_switch_power(4, 0);
46 pmu_switch_power(6, 0);
47 pmu_switch_power(7, 0);
49 pmu_write(0x36, pmu_read(0x36) & 0xF0);
50 pmu_write(0x34, pmu_read(0x34) & 0xF0);
51 pmu_write(0xD, pmu_read(0xD) | 0x40);
52 pmu_write(0xD, pmu_read(0xD) | 0x02);
64 unsigned int power_input_status(void)
67 return POWER_INPUT_NONE
;
70 bool charging_state(void)
75 #endif /* CONFIG_CHARGING */