platform_hardware_libhardware/modules
Erik Staats 9b8bc0f7c1 dynamic_sensor: Support timing out sensor operations.
Bug: 226012902
Test: Used uhid-sample to add a dynamic sensor and verified it can be
 sampled.
Test: Simulated start sampling ioctl timeout and verified operation
 completes with a timeout and eventually cleans up.
Test: Simulated start sampling ioctl timeout with device removal before
 completion and verified operation completes with a timeout and
 eventually cleans up.
Change-Id: I9a957bc1e4000b2c587278146ecbe6e903010616
2022-04-06 12:42:06 +00:00
..
audio [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
audio_remote_submix r_submix module: pipe size changes with sample rate 2022-02-02 08:27:24 -08:00
camera Merge "Use libgtest_prod_headers." 2021-04-28 20:53:30 +00:00
consumerir [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
fingerprint [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
gralloc Add GRALLOC_FRAMEBUFFER_NUM configuration 2021-12-09 09:09:25 +00:00
hwcomposer [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
input/evdev [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
local_time [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
nfc [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
nfc-nci [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
power [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
radio [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
sensors dynamic_sensor: Support timing out sensor operations. 2022-04-06 12:42:06 +00:00
soundtrigger [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
thermal [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
tv_input [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
usbaudio USB Audio Hal: Fix CTS timestamp handling am: 61583424ff am: 07c80fdaa0 2021-07-05 07:41:36 +00:00
usbcamera [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
vibrator [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
vr [LSC] Add LOCAL_LICENSE_KINDS to hardware/libhardware 2021-02-12 20:51:13 -08:00
Android.mk Convert to Android.bp 2017-12-27 11:05:29 -08:00
README.android Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00

Default (and possibly architecture dependents) HAL modules go here. 


libhardware.so eventually should contain *just* the HAL hub
(hardware.c), everything in it should be rewritten as modules.

Modules are .so in /vendor/lib/hw/ and have a well defined naming
convention:

    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.product.board>.so
    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.board.platform>.so
    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.arch>.so
    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.default.so

They also have a well defined interface which lives in include/hardware/.

A module can have several variants: "default", "arch" and "board", and they're
loaded in the "board", "arch" and "default" order.
The source code for the "board" variant, usually lives under partners/...

The source code for "default" and "arch" would usually
live under hardware/modules/.