summaryrefslogtreecommitdiffstats
path: root/firmware/target/arm/philips/sa9200/power-sa9200.c
blob: a559f65ec48597a14f856e01cae764b8d7fe90f7 (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
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2006 by Daniel Ankers
 *
 * 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 <stdbool.h>
#include "system.h"
#include "cpu.h"
#include "i2c-pp.h"
#include "tuner.h"
#include "as3514.h"
#include "power.h"

void power_init(void)
{
}

void power_off(void)
{
    char byte;

    /* Send shutdown command to PMU */
    byte = i2c_readbyte(AS3514_I2C_ADDR, AS3514_SYSTEM);
    byte &= ~0x1;   
    pp_i2c_send(AS3514_I2C_ADDR, AS3514_SYSTEM, byte);

    /* Stop interrupts on both cores */
    disable_interrupt(IRQ_FIQ_STATUS);
    COP_INT_DIS = -1;
    CPU_INT_DIS = -1;

    /* Halt everything and wait for device to power off */
    while (1)
    {
        COP_CTL = 0x40000000;
        CPU_CTL = 0x40000000;
    }
}

bool charger_inserted(void)
{
#ifdef SANSA_E200
    if(GPIOB_INPUT_VAL & 0x10)
#else /* SANSA_C200 */
    if(GPIOH_INPUT_VAL & 0x2)
#endif
        return true;
    return false;
}

void ide_power_enable(bool on)
{
    (void)on;
}

#if CONFIG_TUNER

/** Tuner **/
static bool powered = false;

bool tuner_power(bool status)
{
    bool old_status;
    lv24020lp_lock();

    old_status = powered;

    if (status != old_status)
    {
        if (status)
        {
            /* init mystery amplification device */
#if defined(SANSA_E200)
            GPO32_ENABLE |= 0x1;
#else /* SANSA_C200 */
            DEV_INIT2 &= ~0x800;
#endif
            udelay(5);

            /* When power up, host should initialize the 3-wire bus
               in host read mode: */

            /* 1. Set direction of the DATA-line to input-mode. */
            GPIOH_OUTPUT_EN &= ~(1 << 5); 
            GPIOH_ENABLE |= (1 << 5); 

            /* 2. Drive NR_W low */
            GPIOH_OUTPUT_VAL &= ~(1 << 3); 
            GPIOH_OUTPUT_EN |= (1 << 3); 
            GPIOH_ENABLE |= (1 << 3); 

            /* 3. Drive CLOCK high */
            GPIOH_OUTPUT_VAL |= (1 << 4); 
            GPIOH_OUTPUT_EN |= (1 << 4); 
            GPIOH_ENABLE |= (1 << 4);

            lv24020lp_power(true);
        }
        else
        {
            lv24020lp_power(false);

            /* set all as inputs */
            GPIOH_OUTPUT_EN &= ~((1 << 5) | (1 << 3) | (1 << 4));
            GPIOH_ENABLE &= ~((1 << 3) | (1 << 4)); 

            /* turn off mystery amplification device */
#if defined (SANSA_E200)
            GPO32_ENABLE &= ~0x1;
#else
            DEV_INIT2 |= 0x800;
#endif
        }

        powered = status;
    }

    lv24020lp_unlock();
    return old_status;
}

#endif /* CONFIG_TUNER */