summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2009-07-12 14:32:38 +0000
committerBertrik Sikken <bertrik@sikken.nl>2009-07-12 14:32:38 +0000
commit59b9e3ab3f64c17aaf093f0031a5e93ea5120170 (patch)
tree2e4789ef5f946ae85a4b229a644cfda31fb370c3
parentf9e7a5ad39e73d189a7aa927c46d826490d20a2d (diff)
downloadrockbox-59b9e3ab3f64c17aaf093f0031a5e93ea5120170.tar.gz
rockbox-59b9e3ab3f64c17aaf093f0031a5e93ea5120170.zip
Meizu: implement power driver (USB power detect / charging status / poweroff)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21805 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/config-meizu-m3.h4
-rw-r--r--firmware/target/arm/s5l8700/power-meizu.c92
2 files changed, 94 insertions, 2 deletions
diff --git a/firmware/export/config-meizu-m3.h b/firmware/export/config-meizu-m3.h
index 4bb2e68725..18228226e3 100644
--- a/firmware/export/config-meizu-m3.h
+++ b/firmware/export/config-meizu-m3.h
@@ -116,8 +116,8 @@
116#define BATTERY_CAPACITY_INC 50 /* capacity increment */ 116#define BATTERY_CAPACITY_INC 50 /* capacity increment */
117#define BATTERY_TYPES_COUNT 1 /* only one type */ 117#define BATTERY_TYPES_COUNT 1 /* only one type */
118 118
119/* Hardware controlled charging? FIXME */ 119/* Hardware controlled charging, software can monitor plug and charge state */
120#define CONFIG_CHARGING CHARGING_SIMPLE 120#define CONFIG_CHARGING CHARGING_MONITOR
121 121
122#ifndef SIMULATOR 122#ifndef SIMULATOR
123 123
diff --git a/firmware/target/arm/s5l8700/power-meizu.c b/firmware/target/arm/s5l8700/power-meizu.c
new file mode 100644
index 0000000000..516bfc976d
--- /dev/null
+++ b/firmware/target/arm/s5l8700/power-meizu.c
@@ -0,0 +1,92 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright © 2009 Bertrik Sikken
11 *
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.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#include <stdbool.h>
22#include "config.h"
23#include "inttypes.h"
24#include "s5l8700.h"
25#include "power.h"
26
27/* Power handling for S5L8700 based Meizu players
28
29 The M3 and M6 players appear to use the same pins for power, USB detection
30 and charging status.
31*/
32
33void power_off(void)
34{
35 /* take down PWRON_M (P1.3) */
36 PDAT1 &= ~(1 << 3);
37}
38
39void power_init(void)
40{
41 /* configure PWRON_M (P1.3) as output and set it to keep power turned on */
42 PCON1 = (PCON1 & ~(0xF << 12)) | (0x1 << 12);
43 PDAT1 |= (1 << 3);
44
45 /* configure PBSTAT (P1.4) as input */
46 PCON1 &= ~(0xF << 16);
47
48 /* configure CHRG (P5.7) as input to monitor charging state */
49 PCON5 &= ~(0xF << 28);
50
51 /* enable USB2.0 function controller to allow VBUS monitoring */
52 PWRCON &= ~(1 << 15);
53}
54
55#if CONFIG_CHARGING
56unsigned int power_input_status(void)
57{
58 /* check VBUS in the USB2.0 function controller */
59 if (TR & (1 << 15)) {
60 return POWER_INPUT_USB;
61 }
62
63 return POWER_INPUT_NONE;
64}
65
66bool charging_state(void)
67{
68 /* CHRG pin goes low when charging */
69 return ((PDAT5 & (1 << 7)) == 0);
70}
71#endif /* CONFIG_CHARGING */
72
73#if CONFIG_TUNER
74static bool tuner_on = false;
75
76bool tuner_power(bool status)
77{
78 if (status != tuner_on)
79 {
80 tuner_on = status;
81 status = !status;
82 }
83
84 return status;
85}
86
87bool tuner_powered(void)
88{
89 return tuner_on; /* No debug info */
90}
91#endif /* CONFIG_TUNER */
92