summaryrefslogtreecommitdiffstats
path: root/firmware/target/hosted/ibasso/system-ibasso.c
blob: 5aa74ab6d0a754d52aba07819a352bf9dbc3f256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/***************************************************************************
 *             __________               __   ___
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 *
 * Copyright (C) 2014 by Ilia Sergachev: Initial Rockbox port to iBasso DX50
 * Copyright (C) 2014 by Mario Basister: iBasso DX90 port
 * Copyright (C) 2014 by Simon Rothen: Initial Rockbox repository submission, additional features
 * Copyright (C) 2014 by Udo Schläpfer: Code clean up, additional features
 *
 * 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 <stdint.h>
#include <stdlib.h>
#include <sys/reboot.h>

#include "config.h"
#include "debug.h"
#include "mv.h"

#include "button-ibasso.h"
#include "debug-ibasso.h"
#include "sysfs-ibasso.h"
#include "vold-ibasso.h"


/* Fake stack. */
uintptr_t* stackbegin;
uintptr_t* stackend;

/* forward-declare */
bool os_file_exists(const char *ospath);

void system_init(void)
{
    TRACE;

    /* Fake stack. */
    volatile uintptr_t stack = 0;
    stackbegin = stackend = (uintptr_t*) &stack;

	vold_monitor_start();

    /*
        Prevent device from deep sleeping, which will interrupt playback.
        /sys/power/wake_lock
    */
    if(! sysfs_set_string(SYSFS_POWER_WAKE_LOCK, "rockbox"))
    {
        DEBUGF("ERROR %s: Can not set suspend blocker.", __func__);
    }

    /*
        Prevent device to mute, which will cause tinyalsa pcm_writes to fail.
        /sys/class/codec/wm8740_mute
    */
    if(! sysfs_set_char(SYSFS_WM8740_MUTE, 0))
    {
        DEBUGF("ERROR %s: Can not set WM8740 lock.", __func__);
    }
}


void system_reboot(void)
{
    TRACE;

    button_close_device();

    if(vold_monitor_forced_close_imminent())
    {
        /*
            We are here, because Android Vold is going to kill Rockbox. Instead of powering off,
            we exit into the loader.
        */
        exit(42);
    }

    reboot(RB_AUTOBOOT);
}


void system_exception_wait(void)
{
    TRACE;

    while(1) {};
}

bool hostfs_removable(IF_MD_NONVOID(int drive))
{
#ifdef HAVE_MULTIDRIVE
    if (drive > 0)
        return true;
    else
#endif
        return false; /* internal: always present */
}

#ifdef HAVE_MULTIDRIVE
int volume_drive(int drive)
{
    return drive;
}
#endif /* HAVE_MULTIDRIVE */

#ifdef CONFIG_STORAGE_MULTI
int hostfs_driver_type(int drive)
{
    return drive > 0 ? STORAGE_SD_NUM : STORAGE_HOSTFS_NUM;
}
#endif /* CONFIG_STORAGE_MULTI */

bool hostfs_present(IF_MD_NONVOID(int drive))
{
#ifdef HAVE_MULTIDRIVE
    if (drive > 0)
#if defined(MULTIDRIVE_DEV)
        return os_file_exists(MULTIDRIVE_DEV);
#else
        return extsd_present;
#endif
    else
#endif
        return true; /* internal: always present */
}

#ifdef HAVE_HOTSWAP
bool volume_removable(int volume)
{
    /* don't support more than one partition yet, so volume == drive */
    return hostfs_removable(volume);
}

bool volume_present(int volume)
{
    /* don't support more than one partition yet, so volume == drive */
    return hostfs_present(volume);
}
#endif

int volume_partition(int volume)
{
    (void)volume;
    /* Hosted only implement a single parition per "drive" */
    return 0;
}