




下載本文檔
版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
Hal Stub目前沒有嚴格的標準Interface由各廠商決定實現細節自己決定以products tree方式進行易于管理便于以后升級實現Led
HAL
Stub1.開發LedServiceAPI2.設計LEDStub與LedService整合3.開發設計測試程序4.后續優化(Refinement)ApplicationFrameworkRuntimeHALLinuxDriver1LedServiceLedRuntime2LedStub34LedAppAPI
&
HAL
stub開發流程HAL
Stub移植步驟/mt/LedDemo.java/mt/LedService.javaLedDriverLedHardware_mt_LedService.cpphal/led_stub.cpp,hal/led_stub.hAppRunntimeHALKernelLed案例Led案例繼承hw_module_t與hw_device_t定義并實現操作Interface(StubOperations)module到系統中初始化led_module_t實現device
open函數HAL
Stub實現步驟定義ledmodulestruct led_module_t
{struct
hw_module_tcommon;/*
support
API
for
LEDServices
constructor
*/};定義led設備操作接口struct led_control_device_t
{struct
hw_device_tcommon;/*
supporting
control
APIs
go
here
*/int
(*getcount_led)(struct
led_control_device_t
*dev);int
(*set_on)(struct
led_control_device_t
*dev);int
(*set_off)(struct
led_control_device_t
*dev);};HAL
Stub實現步驟實現設備操作接口static
int
led_set_on(struct
led_control_device_t
*dev){ioctl(fd,GPG3DAT2_ON,NULL); //GPF0
0return
0;}int
led_set_off(struct
led_control_device_t
*dev){ioctl(fd,GPG3DAT2_OFF,NULL);
//GPF0
1return
0;}HAL
Stub實現步驟led
module為HAL_MODULE_INFO_SYMconst
struct
led_module_t
HAL_MODULE_INFO_SYM
=
{common:
{tag:
HARDWARE_MODULE_TAG,version_major:1,version_minor:
0,id:
LED_HARDWARE_MODULE_ID,name:
"led
HAL
module",author:
"farsight",methods:
&led_module_methods,},/*
supporting
APIs
go
here
*/};HAL
Stub實現步驟struct
hw_module_methods_t led_module_methods={open:led_device_open};HAL
Stub實現步驟各模塊調用關系Native
code通過hw_get_module調用獲取HAL
stub:hw_get_module
(LED_HARDWARE_MODULE_ID,
(const
hw_module_t**)&module)通過繼承hw_module_methods_t的callback來open設備:
module->methods->open(module,LED_HARDWARE_MODULE_ID,(structhw_device_t**)device);通過繼承hw_device_t的callback來控制設備:sLedDevice->set_on(sLedDevice,
led);sLedDevice->set_off(sLedDevice,
led);HAL使用方法CallbackOpeninterfaceCallback
Open
interfacehardware.cint
hw_get_module(const
char
*id,
const
struct
hw_module_t**module)1.查找module
pachif
(i
<
HAL_VARIANT_KEYS_COUNT)
{if
(property_get(variant_keys[i],
prop,
NULL)
==
0)
{continue;}snprintf(path,
sizeof(path),
"%s/%s.%s.so“,
HAL_LIBRARY_PATH,
id,prop);}else
{snprintf(path,
sizeof(path),
"%s/%s.default.so“,HAL_LIBRARY_PATH,
id);}HAL
Module
獲取2.載入
soif(i<HAL_VARIANT_KEYS_COUNT+1){/*loadthemodule,ifthisfails,we'redoomed,andweshouldnottry*toloadadifferentvariant.*/status=load(id,path,module);}3.
Open
sohandle=dlopen(path,RTLD_NOW);if
(handle
==
NULL)
{charconst*err_str=dlerror();LOGE("load:module=%s\n%s",path,err_str?err_str:"unknown");status=-EINVAL;gotodone;}HAL
Module
獲取(cont.)4.獲取symbol/*
Get
the
address
of
the
struct
hal_module_info.
*/const
char
*sym
=HAL_MODULE_INFO_SYM_AS_STR;hmi
=
(struct
hw_module_t
*)dlsym(handle,
sym);if
(hmi
==
NULL)
{LOGE("load:
couldn't
find
symbol
%s",
sym);status
=
-EINVAL;goto
done;}HAL
Module
獲取(cont.)hardware.h#define
HAL_MODULE_INFO_SYM/**HMI*
Name
of
the
hal_module_info
as
astring*/#define
HAL_MODULE_INFO_SYM_AS_STR
"HMI"HAL
Module
獲取(cont.)(1)定義自己的HAL結構體,編寫頭文件led.h,
hardware/hardware.hstruct led_module_t
{struct
hw_module_t
common;};structled_control_device_t
{struct
hw_device_t
common;int
fd; /*
file
descriptor
of
LED
device
*//*
supporting
control
APIs
go
here
*/int
(*set_on)(struct
led_control_device_t
*dev,
int32_t
led);int
(*set_off)(struct
led_control_device_t
*dev,
int32_t
led);};HAL
stub
定義相關結構體控制的supportingAPI在HALstub的opencallback里提供HALstub的openoperation必需提供supportingAPI給runtimeHAL
Stub
supporting
APIled_module_methods繼承hw_module_methods_t,實現open的callbackstruct
hw_module_methods_t
led_module_methods
={open:
led_device_open};2.用HAL_MODULE_INFO_SYM實例led_module_t,這個名稱不可修改tag:需要制定為
HARDWARE_MODULE_TAGid:指定為
HAL
Stub的module
IDmethods:struct
hw_module_methods_t,為
HAL所定義的「method」const
struct
led_module_t
HAL_MODULE_INFO_SYM
=
{common:
{tag:HARDWARE_MODULE_TAG,version_major:1,version_minor:0,id:LED_HARDWARE_MODULE_ID,name:
"Sample
LEDStub",author:
"TheMokoid
OpenSourceProject",methods:
&led_module_methods,}/*
supporting
APIs
gohere.
*/};完成功能實現和HALstubled_module_methods繼承hw_module_methods_t,實現open的callbackstruct
hw_module_methods_t
led_module_methods
=
{open:
led_device_open};用HAL_MODULE_INFO_SYM實例led_module_t,這個名稱不可修改tag:需要制定為
HARDWARE_MODULE_TAGid:指定為
HAL
Stub的module
IDmethods:struct
hw_module_methods_t,為HAL所定義的「method」const
struct
led_module_t
HAL_MODULE_INFO_SYM
=
{common:
{tag:
HARDWARE_MODULE_TAG,version_major:
1,version_minor:
0,id:
LED_HARDWARE_MODULE_ID,name:
"Sample
LED
Stub",author:
"The
Mokoid
Open
SourceProject",methods:
&led_module_methods,}/*
supporting
APIs
go
here.
*/};3.
open是一個必須實現的callback
API,負責申請結構體空間,填充信息,具體操作API接口,打開Linux驅動。由于存在多重繼承關系,只需對子結構體hw_device_t對象申請空間即可。int
led_device_open(const
struct
hw_module_t*
module,
const
char*
name,struct
hw_device_t**
device){struct
led_control_device_t
*dev;dev
=
(struct
led_control_device_t
*)malloc(sizeof(*dev));memset(dev,
0,
sizeof(*dev));dev->common.tag
=
HARDWARE_DEVICE_TAG;dev->common.version
=
0;dev->common.module
=
module;dev->common.close
=
led_device_close;dev->set_on
=
led_on;dev->set_off
=
led_off;*device
=
&dev->common;/**
Initialize
Led
hardware
here.*/dev->fd
=
open(LED_DEVICE,
O_RDONLY);if(dev->fd
<
0)return
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業或盈利用途。
- 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 家庭護理居間合同樣本
- 教育學工作匯報
- 窒息護理操作規程
- 礦山運輸糾紛處理合同
- 膜性腎病診療規范
- 舞蹈工作室教練聘用合同范本
- 2024珠海市索卡科技技工學校工作人員招聘考試及答案
- 2024溫州第二職業中等專業學校工作人員招聘考試及答案
- 2024清遠市清新區職業技術學校工作人員招聘考試及答案
- 2024河南省工業和信息化高級技工學校工作人員招聘考試及答案
- 讀后續寫打碎花瓶的小男孩講義2023屆高考英語作文備考
- 硫磺安全技術說明書MSDS
- 都江堰簡介課件
- 學校內部控制評價報告范文(5篇)
- 《母雞》課件 王崧舟 千課萬人 (圖片版不可編輯)
- 國開電大《工程數學(本)》形成性考核作業5答案
- 13、試生產開停工方案
- 12YJ6 外裝修標準圖集
- 新教材人教版高中物理選擇性必修第一冊全冊教學課件
- 初中數學北師大八年級下冊綜合與實踐-生活中的一次模型PPT
- 煤化工概述-課件
評論
0/150
提交評論