二. 進入到在hardware/libhardware/include/hardware目錄,建立hello.h檔案:
USER-NAME@MACHINE-NAME:~/Android$ cd hardware/libhardware/include/hardware
USER-NAME@MACHINE-NAME:~/Android/hardware/libhardware/include/hardware$ vi hello.h
hello.h檔案的内容如下:
#ifndef ANDROID_HELLO_INTERFACE_H
#define ANDROID_HELLO_INTERFACE_H
#include <hardware/hardware.h>
__BEGIN_DECLS
/*定義子產品ID*/
#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的内容較多,我們分段來看。
首先是包含相關頭檔案和定義相關結構:
#define LOG_TAG "HelloStub"
#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 "[email protected]"
/*裝置打開和關閉接口*/
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);
*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);
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));
static int hello_get_val(struct hello_device_t* dev, int* val) {
if(!val) {
LOGE("Hello Stub: error val pointer");
read(dev->fd, val, sizeof(*val));
LOGI("Hello Stub: get value %d from device", *val);
四. 繼續在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應用程式中通路我們自己定制的硬體。
http://blog.csdn.net/luoshengyang/article/details/6573809