summaryrefslogtreecommitdiff
path: root/firmware/usb.c
blob: c6ae306218cbafbce3a0c9c665a7b985cd559350 (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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2002 by Linus Nielsen Feltzing
 *
 * All files in this archive are subject to the GNU General Public License.
 * See the file COPYING in the source tree root for full license agreement.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#include "config.h"
#include "sh7034.h"
#include "kernel.h"
#include "thread.h"
#include "system.h"
#include "debug.h"
#include "ata.h"
#include "fat.h"
#include "disk.h"
#include "panic.h"


#define USB_REALLY_BRAVE


#ifndef SIMULATOR

#define USB_INSERTED    1
#define USB_EXTRACTED   2

static char usb_stack[0x100];
static struct event_queue usb_queue;
static bool last_usb_status;
static bool usb_monitor_enabled;

static void usb_enable(bool on)
{
#ifdef ARCHOS_RECORDER
    if(!on) /* The pin is inverted on the Recorder */
#else
    if(on)
#endif
        PADR &= ~0x400; /* enable USB */
    else
        PADR |= 0x400;
    PAIOR |= 0x400;
}

static void usb_slave_mode(bool on)
{
    int rc;
    struct partinfo* pinfo;
    
    if(on)
    {
	DEBUGF("Entering USB slave mode\n");
	ata_enable(false);
	usb_enable(true);
    }
    else
    {
	DEBUGF("Leaving USB slave mode\n");

	/* Let the ISDx00 settle */
	sleep(HZ*1);

	usb_enable(false);

	rc = ata_init();
	if(rc)
	    panicf("ata: %d",rc);
	
	pinfo = disk_init();
	if (!pinfo)
	    panicf("disk: NULL");
	
	rc = fat_mount(pinfo[0].start);
	if(rc)
	    panicf("mount: %d",rc);
    }
}

static void usb_thread(void)
{
    int num_acks_to_expect = -1;
    bool waiting_for_ack;
    struct event ev;

    waiting_for_ack = false;
    
    while(1)
    {
	queue_wait(&usb_queue, &ev);
	switch(ev.id)
	{
	case USB_INSERTED:
	    /* Tell all threads that they have to back off the ATA.
	       We subtract one for our own thread. */
	    num_acks_to_expect = queue_broadcast(SYS_USB_CONNECTED, NULL) - 1;
	    waiting_for_ack = true;
	    DEBUGF("USB inserted. Waiting for ack from %d threads...\n",
		   num_acks_to_expect);
	    break;
	    
	case SYS_USB_CONNECTED_ACK:
	    if(waiting_for_ack)
	    {
		num_acks_to_expect--;
		if(num_acks_to_expect == 0)
		{
		    /* This is where we are supposed to be cool and keep
		       the Rockbox firmware running while the USB is enabled,
		       maybe even play some games and stuff. However, the
		       current firmware isn't quite ready for this yet.
		       Let's just chicken out and reboot. */
		    DEBUGF("All threads have acknowledged. Rebooting...\n");
#ifdef USB_REALLY_BRAVE
		    usb_slave_mode(true);
#else
		    system_reboot();
#endif
		}
		else
		{
		    DEBUGF("usb: got ack, %d to go...\n", num_acks_to_expect);
		}
	    }
	    break;

	case USB_EXTRACTED:
	    /* Tell all threads that we are back in business */
	    num_acks_to_expect =
	       queue_broadcast(SYS_USB_DISCONNECTED, NULL) - 1;
	    waiting_for_ack = true;
	    DEBUGF("USB extracted. Waiting for ack from %d threads...\n",
		   num_acks_to_expect);
	    break;
	    
	case SYS_USB_DISCONNECTED_ACK:
	    if(waiting_for_ack)
	    {
		num_acks_to_expect--;
		if(num_acks_to_expect == 0)
		{
		    DEBUGF("All threads have acknowledged. We're in business.\n");
		    usb_slave_mode(false);
		}
		else
		{
		    DEBUGF("usb: got ack, %d to go...\n", num_acks_to_expect);
		}
	    }
	    break;
	}
    }
}

static void usb_tick(void)
{
    bool current_status;

    if(usb_monitor_enabled)
    {
#ifdef ARCHOS_RECORDER
	current_status = (PCDR & 0x04)?true:false;
#else
	current_status = (PADR & 0x8000)?false:true;
#endif
	
	/* Only report when the status has changed */
	if(current_status != last_usb_status)
	{
	    last_usb_status = current_status;
	    if(current_status)
		queue_post(&usb_queue, USB_INSERTED, NULL);
	    else
		queue_post(&usb_queue, USB_EXTRACTED, NULL);
	}
    }
}

void usb_acknowledge(int id)
{
   queue_post(&usb_queue, id, NULL);
}

void usb_init(void)
{
    usb_monitor_enabled = false;
    
    usb_enable(false);

    /* We assume that the USB cable is extracted */
    last_usb_status = false;
    
    queue_init(&usb_queue);
    create_thread(usb_thread, usb_stack, sizeof(usb_stack));

    tick_add_task(usb_tick);
}

void usb_wait_for_disconnect(struct event_queue *q)
{
    struct event ev;

    /* Don't return until we get SYS_USB_DISCONNECTED */
    while(1)
    {
	queue_wait(q, &ev);
	if(ev.id == SYS_USB_DISCONNECTED)
	{
	    usb_acknowledge(SYS_USB_DISCONNECTED_ACK);
	    return;
	}
    }
}

void usb_start_monitoring(void)
{
    usb_monitor_enabled = true;
}

#else

/* Dummy simulator functions */
void usb_acknowledge(int id)
{
    id = id;
}

void usb_init(void)
{
}

void usb_start_monitoring(void)
{
}

#endif