1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2008 by Frank Gevaerts
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.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
24 #ifdef CONFIG_STORAGE_MULTI
26 #define DRIVER_MASK 0xff000000
27 #define DRIVER_OFFSET 24
28 #define DRIVE_MASK 0x00ff0000
29 #define DRIVE_OFFSET 16
30 #define PARTITION_MASK 0x0000ff00
32 static unsigned int storage_drivers
[NUM_DRIVES
];
33 static unsigned int num_drives
;
37 #ifdef HAVE_IO_PRIORITY
40 #define STORAGE_MINIMUM_IDLE_TIME (HZ/10)
41 #define STORAGE_DELAY_UNIT (HZ/20)
43 unsigned int storage_last_thread
[NUM_DRIVES
];
44 unsigned int storage_last_activity
[NUM_DRIVES
];
46 static bool storage_should_wait(int drive
, int prio
)
48 int other_prio
= thread_get_io_priority(storage_last_thread
[drive
]);
49 if(TIME_BEFORE(current_tick
,storage_last_activity
[drive
]+STORAGE_MINIMUM_IDLE_TIME
))
53 /* There is another active thread, but we have lower priority */
58 /* There is another active thread, but it has lower priority */
64 /* There's nothing going on anyway */
69 static void storage_wait_turn(IF_MD_NONVOID(int drive
))
71 #ifndef HAVE_MULTIDRIVE
74 int my_prio
= thread_get_io_priority(THREAD_ID_CURRENT
);
76 while(storage_should_wait(drive
, my_prio
) && (loops
--)>=0)
78 sleep(STORAGE_DELAY_UNIT
);
81 storage_last_thread
[drive
] = thread_get_current();
82 storage_last_activity
[drive
] = current_tick
;
86 int storage_read_sectors(IF_MD2(int drive
,) unsigned long start
, int count
,
89 #ifdef HAVE_IO_PRIORITY
90 storage_wait_turn(IF_MD(drive
));
93 #ifdef CONFIG_STORAGE_MULTI
94 int driver
=(storage_drivers
[drive
] & DRIVER_MASK
)>>DRIVER_OFFSET
;
95 int ldrive
=(storage_drivers
[drive
] & DRIVE_MASK
)>>DRIVE_OFFSET
;
99 #if (CONFIG_STORAGE & STORAGE_ATA)
101 return ata_read_sectors(IF_MD2(ldrive
,) start
,count
,buf
);
104 #if (CONFIG_STORAGE & STORAGE_MMC)
106 return mmc_read_sectors(IF_MD2(ldrive
,) start
,count
,buf
);
109 #if (CONFIG_STORAGE & STORAGE_SD)
111 return sd_read_sectors(IF_MD2(ldrive
,) start
,count
,buf
);
114 #if (CONFIG_STORAGE & STORAGE_NAND)
116 return nand_read_sectors(IF_MD2(ldrive
,) start
,count
,buf
);
119 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
120 case STORAGE_RAMDISK
:
121 return ramdisk_read_sectors(IF_MD2(ldrive
,) start
,count
,buf
);
126 #else /* CONFIG_STORAGE_MULTI */
127 return STORAGE_FUNCTION(read_sectors
)(IF_MD2(drive
,)start
,count
,buf
);
128 #endif /* CONFIG_STORAGE_MULTI */
132 int storage_write_sectors(IF_MD2(int drive
,) unsigned long start
, int count
,
135 #ifdef HAVE_IO_PRIORITY
136 storage_wait_turn(IF_MD(drive
));
139 #ifdef CONFIG_STORAGE_MULTI
140 int driver
=(storage_drivers
[drive
] & DRIVER_MASK
)>>DRIVER_OFFSET
;
141 int ldrive
=(storage_drivers
[drive
] & DRIVE_MASK
)>>DRIVE_OFFSET
;
145 #if (CONFIG_STORAGE & STORAGE_ATA)
147 return ata_write_sectors(IF_MD2(ldrive
,)start
,count
,buf
);
150 #if (CONFIG_STORAGE & STORAGE_MMC)
152 return mmc_write_sectors(IF_MD2(ldrive
,)start
,count
,buf
);
155 #if (CONFIG_STORAGE & STORAGE_SD)
157 return sd_write_sectors(IF_MD2(ldrive
,)start
,count
,buf
);
160 #if (CONFIG_STORAGE & STORAGE_NAND)
162 return nand_write_sectors(IF_MD2(ldrive
,)start
,count
,buf
);
165 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
166 case STORAGE_RAMDISK
:
167 return ramdisk_write_sectors(IF_MD2(ldrive
,)start
,count
,buf
);
172 #else /* CONFIG_STORAGE_MULTI */
173 return STORAGE_FUNCTION(write_sectors
)(IF_MD2(drive
,)start
,count
,buf
);
174 #endif /* CONFIG_STORAGE_MULTI */
177 #ifdef CONFIG_STORAGE_MULTI
179 #define DRIVER_MASK 0xff000000
180 #define DRIVER_OFFSET 24
181 #define DRIVE_MASK 0x00ff0000
182 #define DRIVE_OFFSET 16
183 #define PARTITION_MASK 0x0000ff00
185 static unsigned int storage_drivers
[NUM_DRIVES
];
186 static unsigned int num_drives
;
188 int storage_num_drives(void)
193 int storage_init(void)
199 #if (CONFIG_STORAGE & STORAGE_ATA)
200 if ((rc
=ata_init())) return rc
;
202 int ata_drives
= ata_num_drives(num_drives
);
203 for (i
=0; i
<ata_drives
; i
++)
205 storage_drivers
[num_drives
++] =
206 (STORAGE_ATA
<<DRIVER_OFFSET
) | (i
<< DRIVE_OFFSET
);
210 #if (CONFIG_STORAGE & STORAGE_MMC)
211 if ((rc
=mmc_init())) return rc
;
213 int mmc_drives
= mmc_num_drives(num_drives
);
214 for (i
=0; i
<mmc_drives
;i
++)
216 storage_drivers
[num_drives
++] =
217 (STORAGE_MMC
<<DRIVER_OFFSET
) | (i
<< DRIVE_OFFSET
);
221 #if (CONFIG_STORAGE & STORAGE_SD)
222 if ((rc
=sd_init())) return rc
;
224 int sd_drives
= sd_num_drives(num_drives
);
225 for (i
=0; i
<sd_drives
; i
++)
227 storage_drivers
[num_drives
++] =
228 (STORAGE_SD
<<DRIVER_OFFSET
) | (i
<< DRIVE_OFFSET
);
232 #if (CONFIG_STORAGE & STORAGE_NAND)
233 if ((rc
=nand_init())) return rc
;
235 int nand_drives
= nand_num_drives(num_drives
);
236 for (i
=0; i
<nand_drives
; i
++)
238 storage_drivers
[num_drives
++] =
239 (STORAGE_NAND
<<DRIVER_OFFSET
) | (i
<< DRIVE_OFFSET
);
243 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
244 if ((rc
=ramdisk_init())) return rc
;
246 int ramdisk_drives
= ramdisk_num_drives(num_drives
);
247 for (i
=0; i
<ramdisk_drives
; i
++)
249 storage_drivers
[num_drives
++] =
250 (STORAGE_RAMDISK
<<DRIVER_OFFSET
) | (i
<< DRIVE_OFFSET
);
258 void storage_enable(bool on
)
260 #if (CONFIG_STORAGE & STORAGE_ATA)
264 #if (CONFIG_STORAGE & STORAGE_MMC)
268 #if (CONFIG_STORAGE & STORAGE_SD)
272 #if (CONFIG_STORAGE & STORAGE_NAND)
276 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
281 void storage_sleep(void)
283 #if (CONFIG_STORAGE & STORAGE_ATA)
287 #if (CONFIG_STORAGE & STORAGE_MMC)
291 #if (CONFIG_STORAGE & STORAGE_SD)
295 #if (CONFIG_STORAGE & STORAGE_NAND)
299 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
304 void storage_sleepnow(void)
306 #if (CONFIG_STORAGE & STORAGE_ATA)
310 #if (CONFIG_STORAGE & STORAGE_MMC)
314 #if (CONFIG_STORAGE & STORAGE_SD)
318 #if (CONFIG_STORAGE & STORAGE_NAND)
322 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
327 bool storage_disk_is_active(void)
329 #if (CONFIG_STORAGE & STORAGE_ATA)
330 if (ata_disk_is_active()) return true;
333 #if (CONFIG_STORAGE & STORAGE_MMC)
334 if (mmc_disk_is_active()) return true;
337 #if (CONFIG_STORAGE & STORAGE_SD)
338 //if (sd_disk_is_active()) return true;
341 #if (CONFIG_STORAGE & STORAGE_NAND)
342 //if (nand_disk_is_active()) return true;
345 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
346 if (ramdisk_disk_is_active()) return true;
352 int storage_soft_reset(void)
356 #if (CONFIG_STORAGE & STORAGE_ATA)
357 if ((rc
=ata_soft_reset())) return rc
;
360 #if (CONFIG_STORAGE & STORAGE_MMC)
361 if ((rc
=mmc_soft_reset())) return rc
;
364 #if (CONFIG_STORAGE & STORAGE_SD)
365 //if ((rc=sd_soft_reset())) return rc;
368 #if (CONFIG_STORAGE & STORAGE_NAND)
369 //if ((rc=nand_soft_reset())) return rc;
372 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
373 if ((rc
=ramdisk_soft_reset())) return rc
;
379 #ifdef HAVE_STORAGE_FLUSH
380 int storage_flush(void)
384 #if (CONFIG_STORAGE & STORAGE_ATA)
385 //if ((rc=ata_flush())) return rc;
388 #if (CONFIG_STORAGE & STORAGE_MMC)
389 //if ((rc=mmc_flush())) return rc;
392 #if (CONFIG_STORAGE & STORAGE_SD)
393 //if ((rc=sd_flush())) return rc;
396 #if (CONFIG_STORAGE & STORAGE_NAND)
397 if ((rc
=nand_flush())) return rc
;
400 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
401 //if ((rc=ramdisk_flush())) return rc;
408 void storage_spin(void)
410 #if (CONFIG_STORAGE & STORAGE_ATA)
414 #if (CONFIG_STORAGE & STORAGE_MMC)
418 #if (CONFIG_STORAGE & STORAGE_SD)
422 #if (CONFIG_STORAGE & STORAGE_NAND)
426 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
431 void storage_spindown(int seconds
)
433 #if (CONFIG_STORAGE & STORAGE_ATA)
434 ata_spindown(seconds
);
437 #if (CONFIG_STORAGE & STORAGE_MMC)
438 mmc_spindown(seconds
);
441 #if (CONFIG_STORAGE & STORAGE_SD)
442 sd_spindown(seconds
);
445 #if (CONFIG_STORAGE & STORAGE_NAND)
446 nand_spindown(seconds
);
449 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
450 ramdisk_spindown(seconds
);
454 #if (CONFIG_LED == LED_REAL)
455 void storage_set_led_enabled(bool enabled
)
457 #if (CONFIG_STORAGE & STORAGE_ATA)
458 ata_set_led_enabled(enabled
);
461 #if (CONFIG_STORAGE & STORAGE_MMC)
462 mmc_set_led_enabled(enabled
);
465 #if (CONFIG_STORAGE & STORAGE_SD)
466 sd_set_led_enabled(enabled
);
469 #if (CONFIG_STORAGE & STORAGE_NAND)
470 nand_set_led_enabled(enabled
);
473 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
474 ramdisk_set_led_enabled(enabled
);
477 #endif /* CONFIG_LED == LED_REAL */
479 long storage_last_disk_activity(void)
484 #if (CONFIG_STORAGE & STORAGE_ATA)
485 t
=ata_last_disk_activity();
489 #if (CONFIG_STORAGE & STORAGE_MMC)
490 t
=mmc_last_disk_activity();
494 #if (CONFIG_STORAGE & STORAGE_SD)
495 t
=sd_last_disk_activity();
499 #if (CONFIG_STORAGE & STORAGE_NAND)
500 t
=nand_last_disk_activity();
504 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
505 t
=ramdisk_last_disk_activity();
512 int storage_spinup_time(void)
517 #if (CONFIG_STORAGE & STORAGE_ATA)
522 #if (CONFIG_STORAGE & STORAGE_MMC)
527 #if (CONFIG_STORAGE & STORAGE_SD)
528 //t=sd_spinup_time();
532 #if (CONFIG_STORAGE & STORAGE_NAND)
533 t
=nand_spinup_time();
537 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
538 t
=ramdisk_spinup_time();
545 #ifdef STORAGE_GET_INFO
546 void storage_get_info(int drive
, struct storage_info
*info
)
548 int driver
=(storage_drivers
[drive
] & DRIVER_MASK
)>>DRIVER_OFFSET
;
549 int ldrive
=(storage_drivers
[drive
] & DRIVE_MASK
)>>DRIVE_OFFSET
;
553 #if (CONFIG_STORAGE & STORAGE_ATA)
555 return ata_get_info(ldrive
,info
);
558 #if (CONFIG_STORAGE & STORAGE_MMC)
560 return mmc_get_info(ldrive
,info
);
563 #if (CONFIG_STORAGE & STORAGE_SD)
565 return sd_get_info(ldrive
,info
);
568 #if (CONFIG_STORAGE & STORAGE_NAND)
570 return nand_get_info(ldrive
,info
);
573 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
574 case STORAGE_RAMDISK
:
575 return ramdisk_get_info(ldrive
,info
);
579 #endif /* STORAGE_GET_INFO */
582 bool storage_removable(int drive
)
584 int driver
=(storage_drivers
[drive
] & DRIVER_MASK
)>>DRIVER_OFFSET
;
585 int ldrive
=(storage_drivers
[drive
] & DRIVE_MASK
)>>DRIVE_OFFSET
;
589 #if (CONFIG_STORAGE & STORAGE_ATA)
591 return ata_removable(ldrive
);
594 #if (CONFIG_STORAGE & STORAGE_MMC)
596 return mmc_removable(ldrive
);
599 #if (CONFIG_STORAGE & STORAGE_SD)
601 return sd_removable(ldrive
);
604 #if (CONFIG_STORAGE & STORAGE_NAND)
609 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
610 case STORAGE_RAMDISK
:
619 bool storage_present(int drive
)
621 int driver
=(storage_drivers
[drive
] & DRIVER_MASK
)>>DRIVER_OFFSET
;
622 int ldrive
=(storage_drivers
[drive
] & DRIVE_MASK
)>>DRIVE_OFFSET
;
626 #if (CONFIG_STORAGE & STORAGE_ATA)
628 return ata_present(ldrive
);
631 #if (CONFIG_STORAGE & STORAGE_MMC)
633 return mmc_present(ldrive
);
636 #if (CONFIG_STORAGE & STORAGE_SD)
638 return sd_present(ldrive
);
641 #if (CONFIG_STORAGE & STORAGE_NAND)
646 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
647 case STORAGE_RAMDISK
:
657 #endif /*CONFIG_STORAGE_MULTI*/