文章轉載至CSDN社區羅昇陽的安卓之旅,原文地址:http://blog.csdn.net/luoshengyang/article/details/6573809函數
在Android硬件抽象層(HAL)概要介紹和學習計劃一文中,咱們簡要介紹了在Android系統爲爲硬件編寫驅動程序的方法。簡單來講,硬件驅動程序一方面分佈在Linux內核中,另外一方面分佈在用戶空間的硬件抽象層中。接着,在Ubuntu上爲Android系統編寫Linux內核驅動程序一文中舉例子說明了如何在Linux內核編寫驅動程序。在這一篇文章中,咱們將繼續介紹Android系統硬件驅動程序的另外一方面實現,即如何在硬件抽象層中增長硬件模塊來和內核驅動程序交互。在這篇文章中,咱們還將學習到如何在Android系統建立設備文件時用相似Linux的udev規則修改設備文件模式的方法。學習
一. 參照在Ubuntu上爲Android系統編寫Linux內核驅動程序一文所示,準備好示例內核驅動序。完成這個內核驅動程序後,即可以在Android系統中獲得三個文件,分別是/dev/hello、/sys/class/hello/hello/val和/proc/hello。在本文中,咱們將經過設備文件/dev/hello來鏈接硬件抽象層模塊和Linux內核驅動程序模塊。atom
二. 進入到在hardware/libhardware/include/hardware目錄,新建hello.h文件:spa
USER-NAME@MACHINE-NAME:~/Android$ cd hardware/libhardware/include/hardware.net
USER-NAME@MACHINE-NAME:~/Android/hardware/libhardware/include/hardware$ vi hello.hcode
hello.h文件的內容以下:blog
- #ifndef ANDROID_HELLO_INTERFACE_H
- #define ANDROID_HELLO_INTERFACE_H
- #include <hardware/hardware.h>
-
- __BEGIN_DECLS
-
- #define HELLO_HARDWARE_MODULE_ID "hello"
-
- struct hello_module_t {
- struct hw_module_t common;
- };
-
- struct hello_device_t {
- struct hw_device_t common;
- int fd;
- int (*set_val)(struct hello_device_t* dev, int val);
- int (*get_val)(struct hello_device_t* dev, int* val);
- };
-
- __END_DECLS
-
- #endif
這裏按照Android硬件抽象層規範的要求,分別定義模塊ID、模塊結構體以及硬件接口結構體。在硬件接口結構體中,fd表示設備文件描述符,對應咱們將要處理的設備文件"/dev/hello",set_val和get_val爲該HAL對上提供的函數接口。接口
三. 進入到hardware/libhardware/modules目錄,新建hello目錄,並添加hello.c文件。 hello.c的內容較多,咱們分段來看。ip
首先是包含相關頭文件和定義相關結構:get
- #define LOG_TAG "HelloStub"
-
- #include <hardware/hardware.h>
- #include <hardware/hello.h>
- #include <fcntl.h>
- #include <errno.h>
- #include <cutils/log.h>
- #include <cutils/atomic.h>
-
- #define DEVICE_NAME "/dev/hello"
- #define MODULE_NAME "Hello"
- #define MODULE_AUTHOR "shyluo@gmail.com"
-
- static int hello_device_open(const struct hw_module_t* module, const char* name, struct hw_device_t** device);
- static int hello_device_close(struct hw_device_t* device);
-
- static int hello_set_val(struct hello_device_t* dev, int val);
- static int hello_get_val(struct hello_device_t* dev, int* val);
-
- static struct hw_module_methods_t hello_module_methods = {
- open: hello_device_open
- };
-
- struct hello_module_t HAL_MODULE_INFO_SYM = {
- common: {
- tag: HARDWARE_MODULE_TAG,
- version_major: 1,
- version_minor: 0,
- id: HELLO_HARDWARE_MODULE_ID,
- name: MODULE_NAME,
- author: MODULE_AUTHOR,
- methods: &hello_module_methods,
- }
- };
這裏,實例變量名必須爲HAL_MODULE_INFO_SYM,tag也必須爲HARDWARE_MODULE_TAG,這是Android硬件抽象層規範規定的。
定義hello_device_open函數:
- static int hello_device_open(const struct hw_module_t* module, const char* name, struct hw_device_t** device) {
- struct hello_device_t* dev;dev = (struct hello_device_t*)malloc(sizeof(struct hello_device_t));
-
- if(!dev) {
- LOGE("Hello Stub: failed to alloc space");
- return -EFAULT;
- }
-
- memset(dev, 0, sizeof(struct hello_device_t));
- dev->common.tag = HARDWARE_DEVICE_TAG;
- dev->common.version = 0;
- dev->common.module = (hw_module_t*)module;
- dev->common.close = hello_device_close;
- dev->set_val = hello_set_val;dev->get_val = hello_get_val;
-
- if((dev->fd = open(DEVICE_NAME, O_RDWR)) == -1) {
- LOGE("Hello Stub: failed to open /dev/hello -- %s.", strerror(errno));free(dev);
- return -EFAULT;
- }
-
- *device = &(dev->common);
- LOGI("Hello Stub: open /dev/hello successfully.");
-
- return 0;
- }
DEVICE_NAME定義爲"/dev/hello"。因爲設備文件是在內核驅動裏面經過device_create建立的,而device_create建立的設備文件默認只有root用戶可讀寫,而hello_device_open通常是由上層APP來調用的,這些APP通常不具備root權限,這時候就致使打開設備文件失敗:
Hello Stub: failed to open /dev/hello -- Permission denied.
解決辦法是相似於Linux的udev規則,打開Android源代碼工程目錄下,進入到system/core/rootdir目錄,裏面有一個名爲ueventd.rc文件,往裏面添加一行:
/dev/hello 0666 root root
定義hello_device_close、hello_set_val和hello_get_val這三個函數:
- static int hello_device_close(struct hw_device_t* device) {
- struct hello_device_t* hello_device = (struct hello_device_t*)device;
-
- if(hello_device) {
- close(hello_device->fd);
- free(hello_device);
- }
-
- return 0;
- }
-
- static int hello_set_val(struct hello_device_t* dev, int val) {
- LOGI("Hello Stub: set value %d to device.", val);
-
- write(dev->fd, &val, sizeof(val));
-
- return 0;
- }
-
- static int hello_get_val(struct hello_device_t* dev, int* val) {
- if(!val) {
- LOGE("Hello Stub: error val pointer");
- return -EFAULT;
- }
-
- read(dev->fd, val, sizeof(*val));
-
- LOGI("Hello Stub: get value %d from device", *val);
-
- return 0;
- }
四. 繼續在hello目錄下新建Android.mk文件:
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_PRELINK_MODULE := false
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
LOCAL_SHARED_LIBRARIES := liblog
LOCAL_SRC_FILES := hello.c
LOCAL_MODULE := hello.default
include $(BUILD_SHARED_LIBRARY)
注意,LOCAL_MODULE的定義規則,hello後面跟有default,hello.default可以保證咱們的模塊總能被硬象抽象層加載到。
五. 編譯:
USER-NAME@MACHINE-NAME:~/Android$ mmm hardware/libhardware/modules/hello
編譯成功後,就能夠在out/target/product/generic/system/lib/hw目錄下看到hello.default.so文件了。
六. 從新打包Android系統鏡像system.img:
USER-NAME@MACHINE-NAME:~/Android$ make snod
從新打包後,system.img就包含咱們定義的硬件抽象層模塊hello.default了。
雖然咱們在Android系統爲咱們本身的硬件增長了一個硬件抽象層模塊,可是如今Java應用程序還不能訪問到咱們的硬件。咱們還必須編寫JNI方法和在Android的Application Frameworks層增長API接口,才能讓上層Application訪問咱們的硬件。在接下來的文章中,咱們還將完成這一系統過程,使得咱們可以在Java應用程序中訪問咱們本身定製的硬件。