rockbox/firmware/target/arm/s5l8702/ipod6g
Michael Sevakis 1654efc313 Unify storage threads into one
* Editing a bunch of drivers' thread routines in order to
implement a new feature is tedious.

* No matter the number of storage drivers, they share one thread.
No extra threads needed for CONFIG_STORAGE_MULTI.

* Each has an event callback called by the storage thread.

* A default callback is provided to fake sleeping in order to
trigger idle callbacks. It could also do other default processing.
Changes to it will be part of driver code without editing each
one.

* Drivers may sleep and wake as they please as long as they give
a low pulse on their storage bit to ask to go into sleep mode.
Idle callback is called on its behalf and driver immediately put
into sleep mode.

* Drivers may indicate they are to continue receiving events in
USB mode, otherwise they receve nothing until disconnect (they
do receive SYS_USB_DISCONNECTED no matter what).

* Rework a few things to keep the callback implementation sane
and maintainable. ata.c was dreadful with all those bools; make
it a state machine and easier to follow. Remove last_user_activity;
it has no purpose that isn't served by keeping the disk active
through last_disk_activity instead.

* Even-out stack sizes partly because of a lack of a decent place
to define them by driver or SoC or whatever; it doesn't seem too
critical to do that anyway. Many are simply too large while at
least one isn't really adequate. They may be individually
overridden if necessary (figure out where). The thread uses the
greatest size demanded. Newer file code is much more frugal with
stack space. I barely see use crack 50% after idle callbacks
(usually mid-40s). Card insert/eject doesn't demand much.

* No forcing of idle callbacks. If it isn't necessary for one or
more non-disk storage types, it really isn't any more necessary for
disk storage. Besides, it makes the whole thing easier to implement.

Change-Id: Id30c284d82a8af66e47f2cfe104c52cbd8aa7215
2017-10-26 14:35:41 -04:00
..
adc-6g.c ipod6g: rename some target files 2017-03-03 22:50:38 +01:00
adc-target.h iPod Classic: ADC updates 2016-08-12 14:17:46 +02:00
audio-6g.c ipod6g: some fixes for recording 2017-04-16 00:37:45 +02:00
backlight-6g.c ipod6g: rename some target files 2017-03-03 22:50:38 +01:00
backlight-target.h Get rid of stupid _backlight_* function names 2015-01-12 11:09:27 +01:00
button-target.h button-target.h : move prototypes to button.h 2012-01-08 00:07:19 +00:00
cscodec-6g.c ipod6g: rename some target files 2017-03-03 22:50:38 +01:00
lcd-6g.c ipod6g: rename some target files 2017-03-03 22:50:38 +01:00
lcd-asm-6g.S ipod6g: rename some target files 2017-03-03 22:50:38 +01:00
mmcdefs-target.h iPod Classic: HDD endianness change 2011-12-28 16:06:13 +00:00
piezo-6g.c ipod6g: rename some target files 2017-03-03 22:50:38 +01:00
piezo.h iPod Classic: fix typos / cosmetic 2016-05-28 15:48:02 +02:00
pmu-6g.c ipod6g: rename some target files 2017-03-03 22:50:38 +01:00
pmu-target.h iPod Classic: ADC updates 2016-08-12 14:17:46 +02:00
power-6g.c ipod6g: rename some target files 2017-03-03 22:50:38 +01:00
powermgmt-6g.c ipod6g: rename some target files 2017-03-03 22:50:38 +01:00
rtc-6g.c ipod6g: rename some target files 2017-03-03 22:50:38 +01:00
serial-6g.c ipod6g: rename some target files 2017-03-03 22:50:38 +01:00
storage_ata-6g.c Unify storage threads into one 2017-10-26 14:35:41 -04:00