说明
:转载自Android官网https://source.android.com/devices/architecture/hal/dynamic-lifecycle,方便国内查看。
Android 9 supports the dynamic shutdown of Android hardware subsystems when they are not in use or not needed. For example, when a user is not using Wi-Fi, the Wi-Fi subsystems should not be taking up memory, power, or other system resources. In earlier versions of Android, HALs/drivers were kept open on Android devices for the entire duration an Android phone was booted.
Implementing dynamic shutdown involves wiring up data flows and executing dynamic processes as detailed in the following sections.
Dynamic shutdown requires information on which processes serve what HAL interfaces (this information may also be useful later in other contexts) as well as not starting processes on boot and not restarting them (until requested again) when they exit.
# some init.rc script associated with the HAL
service vendor.some-service-name /vendor/bin/hw/some-binary-service
# init language extension, provides information of what service is served
# if multiple interfaces are served, they can be specified one on each line
interface [email protected]::ILight default
# restarted if hwservicemanager dies
# would also cause the hal to start early during boot if oneshot wasn't set
class hal
# will not be restarted if it exits until it is requested to be restarted
oneshot
# will only be started when requested
disabled
# ... other properties
Dynamic shutdown also requires the hwservicemanager
to tell init
to start requested services. In Android 9, init
includes three additional control messages (e.g. ctl.start
): ctl.interface_start
, ctl.interface_stop
, and ctl.interface_restart
. These messages can be used to signal init
to bring up and down specific hardware interfaces. When a service is requested and isn’t registered, hwservicemanager
requests that the service be started. However, dynamic HALs don’t require using any of these.
In Android 9, HAL exit has to be manually determined. For Android 10 and higher, it can also be determined with automatic lifecycles.
Dynamic shutdown requires multiple policies for deciding when to start a HAL and when to shutdown a HAL. If a HAL decides to exit for any reason, it will automatically be restarted when it is needed again using the information provided in the HAL definition and the infrastructure provided by changes to init
and hwservicemanager
. This could involve a couple of different strategies, including:
Android 10 adds more support to the kernel and hwservicemanager
, which allows HALs to shut down automatically whenever they have no clients. To use this feature, do all of the steps in Changes to HAL definitions as well as:
LazyServiceRegistrar
instead of the member function, registerAsService
, for example:// only one instance of LazyServiceRegistrar per process
LazyServiceRegistrar registrar();
registrar.registerAsService(myHidlService /* , "default" */);
hwservicemanager
) only when it’s in use. To avoid delays if this reference is dropped on a hwbinder thread that continues to execute, the client should also call IPCThreadState::self()->flushCommands()
after dropping the reference to ensure that the binder driver is notified of the associated reference count changes.