中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

解析linux或android添加文件系統(tǒng)的屬性接口的方法

服務(wù)器

第一種:

創(chuàng)新互聯(lián)建站堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:做網(wǎng)站、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的林周網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

1、添加關(guān)鍵頭文件:

#include <linux/of_gpio.h>
#include <linux/gpio.h>
#include <linux/delay.h>

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kobject.h>

2、在已經(jīng)存在驅(qū)動(dòng)文件中搜索DEVICE_ATTR關(guān)鍵字,如果存在,直接參考已經(jīng)存在的方法添加一個(gè)即可,如下:

unsigned int Gpio134_OtgID = 134; //定義全局變量
static unsigned int otgid_status = 1;
…

3、定義文件系統(tǒng)的讀寫函數(shù):

//add zhaojr gpio134 control OTG ID for host or device mode 
static ssize_t setotgid_store(struct device *dev, struct device_attribute *attr,const char *buf, size_t count)       
{
 unsigned int ret=0;
 pr_err(%s: \\n, __func__); 
 //ret = kstrtoint(buf, 10, &otgid_status);
 ret = kstrtouint(buf, 10, &otgid_status);
 //sscanf(buf, %lu, &otgid_status);
 if (ret < 0){
  pr_err(%s::kstrtouint() failed \\n, __func__);
 }
 //sscanf(buf, %d, &otgid_status);
 pr_err(%s: otgid_status=%d \\n, __func__,otgid_status); 
 if(otgid_status > 0){
  gpio_set_value(Gpio134_OtgID, 1); 
 }else{
  gpio_set_value(Gpio134_OtgID, 0); 
 }
 return count;
}
static ssize_t setotgid_show(struct device *dev,struct device_attribute *attr, char *buf)  
{
 pr_err(%s: \\n, __func__); 
 return sprintf(buf, %d\\n,otgid_status);
}
//static DEVICE_ATTR_RW(setotgid);
/*struct device_attribute dev_attr_setotgid = {     
  .attr = {.name =setotgid,       
  .mode = 0664},   
  .show = setotgid_show,       
  .store = setotgid_store,    
};*/ 
//setotgid的一致性,第一個(gè)參數(shù)setotgid和setotgid_show、setotgid_store前鉆必須保持一致
static DEVICE_ATTR(setotgid, 0664, setotgid_show, setotgid_store); 
//end zhaojr add
static struct device_attribute *android_usb_attributes[] = {
 &dev_attr_state,
 &dev_attr_setotgid, //setotgid跟DEVICE_ATTR定義的name必須保持一致
 NULL
};

4、在probe()函數(shù)中定義針對(duì)具體GPIO管腳的請(qǐng)求和初始化

static int mdss_mdp_probe(struct platform_device *pdev)
{
....................................................................................
//zhaojr add for gpio134 to usb host or device mode
 ret_status=gpio_request(Gpio134_OtgID, Gpio134-OtgID);
 if(ret_status<0){
  pr_err(usb gadget configfs %s::Gpio134_OtgID gpio_request failed\\n,__func__); 
  }
 pr_err(android_device_create()::Gpio134_OtgID gpio_request OK\\n); 
 gpio_direction_output(Gpio134_OtgID,1);
 if(otgid_status > 0){ //有自定義初始化狀態(tài)就添加上這個(gè)判斷,沒(méi)有就不需要添加if else操作
  pr_err(%s-Gpio134_OtgID pin set 1\\n, __func__);
  gpio_set_value(Gpio134_OtgID, 1); 
  //msleep(5);
 }else{
  pr_err(%s-Gpio134_OtgID pin set 0\\n, __func__);
  gpio_set_value(Gpio134_OtgID, 0); 
  //msleep(5);
 }
 //end zhaojr add
................................................................
}

5、在remove()函數(shù)中添加資源的釋放

static int mdss_mdp_remove(struct platform_device *pdev)
{
 struct mdss_data_type *mdata = platform_get_drvdata(pdev);
 if (!mdata)
  return -ENODEV; 
 pr_err(%s\\n, __func__);
 gpio_free(Gpio134_OtgID); //zhaojr add free gpio otgid pin
 ........................................................
}

第二種方法:

在要添加驅(qū)動(dòng)文件中沒(méi)有搜索DEVICE_ATTR關(guān)鍵字的情況,如添加音頻功放打開(kāi)和關(guān)閉的控制接口:
1、添加關(guān)鍵頭文件:

#include <linux/of_gpio.h>
#include <linux/gpio.h>
#include <linux/delay.h>

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kobject.h>

2、定義全局變量和定義打開(kāi)和關(guān)閉的接口并組織屬性數(shù)組:

// add zhaojr gpio63 for close or speaker pa enable
struct kobject *spk_pa_kobj = NULL;
unsigned int gpio63_spk_pa_gpio; //for speaker pa ic enable
//extern unsigned int gpio63_spk_pa_gpio;
static unsigned int SpkPa_Gpio_Enable = 0;
static ssize_t spkpaon_store(struct device *dev, struct device_attribute *attr,const char *buf, size_t count)  
{
 unsigned int ret=0;
 //ret = kstrtoint(buf, 10, &backlight_enable);
 ret = kstrtouint(buf, 10, &SpkPa_Gpio_Enable);
 if (ret < 0){
 pr_err(%s::kstrtouint() failed \\n, __func__);
 }
 pr_err(%s: SpkPa_Gpio_Enable=%d \\n, __func__,SpkPa_Gpio_Enable); 
 if(SpkPa_Gpio_Enable > 0){
 //gpio_set_value(gpio63_spk_pa_gpio, 1); 
 pr_err(%s: gpio_set_value gpio63 speaker pa enable \\n, __func__);
 //功放打開(kāi)的時(shí)序
 gpio_set_value(gpio63_spk_pa_gpio,0);
 udelay(8);
 gpio_set_value(gpio63_spk_pa_gpio,1);
 udelay(8);
 gpio_set_value(gpio63_spk_pa_gpio,0);
 udelay(8);
 gpio_set_value(gpio63_spk_pa_gpio,1);
 //sdm660_cdc->ext_spk_pa_set = true;
 }else{
 pr_err(%s: gpio_set_value gpio63 speaker pa disable \\n, __func__);
 //功放關(guān)閉的時(shí)序
 gpio_set_value(gpio63_spk_pa_gpio,0);
 udelay(600);
 //sdm660_cdc->ext_spk_pa_set = false; 
 }
 return count;
}
static ssize_t spkpaon_show(struct device *dev,struct device_attribute *attr, char *buf) 
{ 
 return sprintf(buf, %d\\n,SpkPa_Gpio_Enable);
} 
static DEVICE_ATTR(spkpaon, 0664, spkpaon_show, spkpaon_store);
static struct attribute *spkpa_attributes[] = {
 &dev_attr_spkpaon.attr,
 NULL
};
static const struct attribute_group apkpa_attr_group = {
 .attrs = spkpa_attributes,
 NULL
};
//end zhaojr add

3、在probe()函數(shù)中添加文件系統(tǒng)屬性接口的注冊(cè):
在注冊(cè)的時(shí)候并不需要對(duì)功放進(jìn)行初始化,所以probe()函數(shù)中并沒(méi)有對(duì)sdm660_cdc->spk_pa_gpio(GPIO63),只操作了請(qǐng)求。具體的請(qǐng)求操作請(qǐng)參考:msm8953 audio部分的EAR和Speaker輸出的聲音配置中的音頻部分的

vendor/qcom/opensource/audio-kernel/asoc/codecs/sdm660_cdc/msm-analog-cdc.c文件操作

static int msm_anlg_cdc_probe(struct platform_device *pdev)
{
 int ret = 0;
 struct sdm660_cdc_priv *sdm660_cdc = NULL;
 struct sdm660_cdc_pdata *pdata;
 int adsp_state;
 ..................................
 dev_set_drvdata(&pdev->dev, sdm660_cdc);
 //kangting add
 sdm660_cdc->spk_pa_gpio = of_get_named_gpio(pdev->dev.of_node, qcom,speaker-pa, 0);
 if (!gpio_is_valid(sdm660_cdc->spk_pa_gpio))
 pr_err(%s, sdm660_cdc->spk_pa_gpio not specified\\n,__func__);
 else{
 pr_err(%s, sdm660_cdc->spk_pa_gpio is %d\\n,__func__,sdm660_cdc->spk_pa_gpio);
 ret = gpio_request(sdm660_cdc->spk_pa_gpio, spk_pa);
 if (ret) {
 pr_err(request spk_pa_gpio failed, ret=%d\\n,ret);
 gpio_free(sdm660_cdc->spk_pa_gpio);
 }
 }
 //kangting end
 ret = snd_soc_register_codec(&pdev->dev,
   &soc_codec_dev_sdm660_cdc,
   msm_anlg_cdc_i2s_dai,
   ARRAY_SIZE(msm_anlg_cdc_i2s_dai));
 if (ret) {
 dev_err(&pdev->dev,
 %s:snd_soc_register_codec failed with error %d\\n,
 __func__, ret);
 goto err_supplies;
 }
 BLOCKING_INIT_NOTIFIER_HEAD(&sdm660_cdc->notifier);
 BLOCKING_INIT_NOTIFIER_HEAD(&sdm660_cdc->notifier_mbhc);
 //add by zhaojr
 gpio63_spk_pa_gpio = sdm660_cdc->spk_pa_gpio; //將設(shè)備樹(shù)種定義的IO口號(hào)獲取進(jìn)來(lái)
 spk_pa_kobj = kobject_create_and_add(spk_pa, NULL); //創(chuàng)建/sys/spk_pa/目錄
 ret = sysfs_create_group(spk_pa_kobj, &apkpa_attr_group); //創(chuàng)建/sys/class/spk_pa/spkpaon節(jié)點(diǎn)
 if (ret)
 dev_err(&pdev->dev,%s:sysfs_create_group failed with error\\n,__func__);
 //end zhaojr add 
 ....................................

4、在remove函數(shù)中釋放資源

static int msm_anlg_cdc_remove(struct platform_device *pdev)
{
 struct sdm660_cdc_priv *sdm660_cdc = dev_get_drvdata(&pdev->dev);
 struct sdm660_cdc_pdata *pdata = sdm660_cdc->dev->platform_data;
 int count;
 //add by zhaojr //釋放資源
 gpio_free(sdm660_cdc->spk_pa_gpio);
 kobject_put(spk_pa_kobj); //關(guān)鍵函數(shù)
 sysfs_remove_group(spk_pa_kobj, &apkpa_attr_group); //關(guān)鍵函數(shù)
 //end zhaojr add
 for (count = 0; count < sdm660_cdc->child_count &&
 count < ANLG_CDC_CHILD_DEVICES_MAX; count++)
 platform_device_unregister(
 sdm660_cdc->pdev_child_devices[count]);
 snd_soc_unregister_codec(&pdev->dev);
 msm_anlg_cdc_disable_supplies(sdm660_cdc, pdata);
 wcd9xxx_spmi_irq_exit();
 devm_kfree(&pdev->dev, sdm660_cdc);
 return 0;
}

總結(jié)

到此這篇關(guān)于解析linux或android添加文件系統(tǒng)的屬性接口的方法的文章就介紹到這了,更多相關(guān)linux 文件系統(tǒng)的屬性接口內(nèi)容請(qǐng)搜索創(chuàng)新互聯(lián)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持創(chuàng)新互聯(lián)!

網(wǎng)站欄目:解析linux或android添加文件系統(tǒng)的屬性接口的方法
瀏覽路徑:http://m.rwnh.cn/article26/cgisjg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供面包屑導(dǎo)航、網(wǎng)站營(yíng)銷、移動(dòng)網(wǎng)站建設(shè)、小程序開(kāi)發(fā)網(wǎng)站內(nèi)鏈、企業(yè)網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都網(wǎng)頁(yè)設(shè)計(jì)公司
咸宁市| 西藏| 红河县| 壶关县| 宁武县| 辽阳县| 营山县| 乐山市| 宜州市| 千阳县| 东乡族自治县| 平远县| 锡林浩特市| 江达县| 英德市| 正阳县| 周至县| 闽清县| 澜沧| 澄迈县| 昌江| 万盛区| 宁强县| 休宁县| 吉林市| 独山县| 明溪县| 平定县| 禹州市| 安溪县| 新竹市| 阿巴嘎旗| 石首市| 疏勒县| 马龙县| 福贡县| 安龙县| 田东县| 沐川县| 五峰| 前郭尔|