summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-06-03 04:23:09 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-06-03 04:23:09 +0000
commit606d9d0c83f8396fa418fa16a23da68aa2e4d784 (patch)
tree462d8195b73f3f5e9d995bbadea2d46eab3fc483 /firmware
parent0d83a188cc70ba8e474f165aa7515786c72db708 (diff)
downloadrockbox-606d9d0c83f8396fa418fa16a23da68aa2e4d784.tar.gz
rockbox-606d9d0c83f8396fa418fa16a23da68aa2e4d784.zip
Reinstate the awful ATA hack that has no proper reason to exist for iPod 5.5g 60GB and/or 80GB.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17682 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/ata.c68
-rw-r--r--firmware/thread.c14
2 files changed, 80 insertions, 2 deletions
diff --git a/firmware/drivers/ata.c b/firmware/drivers/ata.c
index 6a1db22919..87dacc3ed0 100644
--- a/firmware/drivers/ata.c
+++ b/firmware/drivers/ata.c
@@ -71,6 +71,74 @@
71static struct thread_entry *ata_thread_p = NULL; 71static struct thread_entry *ata_thread_p = NULL;
72#endif 72#endif
73 73
74#if defined(MAX_PHYS_SECTOR_SIZE) && MEM == 64
75/* Hack - what's the deal with 5g? */
76struct ata_lock
77{
78 struct thread_entry *thread;
79 int count;
80 volatile unsigned char locked;
81 IF_COP( struct corelock cl; )
82};
83
84static void ata_lock_init(struct ata_lock *l)
85{
86 corelock_init(&l->cl);
87 l->locked = 0;
88 l->count = 0;
89 l->thread = NULL;
90}
91
92static void ata_lock_lock(struct ata_lock *l)
93{
94 struct thread_entry * const current = thread_get_current();
95
96 if (current == l->thread)
97 {
98 l->count++;
99 return;
100 }
101
102 corelock_lock(&l->cl);
103
104 IF_PRIO( current->skip_count = -1; )
105
106 while (l->locked != 0)
107 {
108 corelock_unlock(&l->cl);
109 switch_thread();
110 corelock_lock(&l->cl);
111 }
112
113 l->locked = 1;
114 l->thread = current;
115 corelock_unlock(&l->cl);
116}
117
118static void ata_lock_unlock(struct ata_lock *l)
119{
120 if (l->count > 0)
121 {
122 l->count--;
123 return;
124 }
125
126 corelock_lock(&l->cl);
127
128 IF_PRIO( l->thread->skip_count = 0; )
129
130 l->thread = NULL;
131 l->locked = 0;
132
133 corelock_unlock(&l->cl);
134}
135
136#define mutex ata_lock
137#define mutex_init ata_lock_init
138#define mutex_lock ata_lock_lock
139#define mutex_unlock ata_lock_unlock
140#endif /* MAX_PHYS_SECTOR_SIZE */
141
74static struct mutex ata_mtx SHAREDBSS_ATTR; 142static struct mutex ata_mtx SHAREDBSS_ATTR;
75int ata_device; /* device 0 (master) or 1 (slave) */ 143int ata_device; /* device 0 (master) or 1 (slave) */
76 144
diff --git a/firmware/thread.c b/firmware/thread.c
index 71656e1711..0f4273107f 100644
--- a/firmware/thread.c
+++ b/firmware/thread.c
@@ -161,6 +161,13 @@ void switch_thread(void)
161 * Processor-specific section 161 * Processor-specific section
162 */ 162 */
163 163
164#if defined(MAX_PHYS_SECTOR_SIZE) && MEM == 64
165/* Support a special workaround object for large-sector disks */
166#define IF_NO_SKIP_YIELD(...) __VA_ARGS__
167#else
168#define IF_NO_SKIP_YIELD(...)
169#endif
170
164#if defined(CPU_ARM) 171#if defined(CPU_ARM)
165/*--------------------------------------------------------------------------- 172/*---------------------------------------------------------------------------
166 * Start the thread running and terminate it if it returns 173 * Start the thread running and terminate it if it returns
@@ -1945,8 +1952,9 @@ void switch_thread(void)
1945#endif 1952#endif
1946 1953
1947#ifdef HAVE_PRIORITY_SCHEDULING 1954#ifdef HAVE_PRIORITY_SCHEDULING
1955 IF_NO_SKIP_YIELD( if (thread->skip_count != -1) )
1948 /* Reset the value of thread's skip count */ 1956 /* Reset the value of thread's skip count */
1949 thread->skip_count = 0; 1957 thread->skip_count = 0;
1950#endif 1958#endif
1951 1959
1952 for (;;) 1960 for (;;)
@@ -2002,6 +2010,7 @@ void switch_thread(void)
2002 * priority threads are runnable. The highest priority runnable 2010 * priority threads are runnable. The highest priority runnable
2003 * thread(s) are never skipped. */ 2011 * thread(s) are never skipped. */
2004 if (priority <= max || 2012 if (priority <= max ||
2013 IF_NO_SKIP_YIELD( thread->skip_count == -1 || )
2005 (diff = priority - max, ++thread->skip_count > diff*diff)) 2014 (diff = priority - max, ++thread->skip_count > diff*diff))
2006 { 2015 {
2007 cores[core].running = thread; 2016 cores[core].running = thread;
@@ -2146,7 +2155,8 @@ unsigned int wakeup_thread(struct thread_entry **list)
2146 if (bl == NULL) 2155 if (bl == NULL)
2147 { 2156 {
2148 /* No inheritance - just boost the thread by aging */ 2157 /* No inheritance - just boost the thread by aging */
2149 thread->skip_count = thread->priority; 2158 IF_NO_SKIP_YIELD( if (thread->skip_count != -1) )
2159 thread->skip_count = thread->priority;
2150 current = cores[CURRENT_CORE].running; 2160 current = cores[CURRENT_CORE].running;
2151 } 2161 }
2152 else 2162 else