Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
70aba44b
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 4 年多
通知
15
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
70aba44b
编写于
3月 09, 2016
作者:
L
Linus Walleij
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Revert "gpio: lp3943: Drop pin_used and lp3943_gpio_request/lp3943_gpio_free"
This reverts commit
3fab91ea
.
上级
7b1e5dc8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
28 addition
and
0 deletion
+28
-0
drivers/gpio/gpio-lp3943.c
drivers/gpio/gpio-lp3943.c
+22
-0
include/linux/mfd/lp3943.h
include/linux/mfd/lp3943.h
+6
-0
未找到文件。
drivers/gpio/gpio-lp3943.c
浏览文件 @
70aba44b
...
@@ -45,6 +45,26 @@ struct lp3943_gpio {
...
@@ -45,6 +45,26 @@ struct lp3943_gpio {
u16
input_mask
;
/* 1 = GPIO is input direction, 0 = output */
u16
input_mask
;
/* 1 = GPIO is input direction, 0 = output */
};
};
static
int
lp3943_gpio_request
(
struct
gpio_chip
*
chip
,
unsigned
offset
)
{
struct
lp3943_gpio
*
lp3943_gpio
=
gpiochip_get_data
(
chip
);
struct
lp3943
*
lp3943
=
lp3943_gpio
->
lp3943
;
/* Return an error if the pin is already assigned */
if
(
test_and_set_bit
(
offset
,
&
lp3943
->
pin_used
))
return
-
EBUSY
;
return
0
;
}
static
void
lp3943_gpio_free
(
struct
gpio_chip
*
chip
,
unsigned
offset
)
{
struct
lp3943_gpio
*
lp3943_gpio
=
gpiochip_get_data
(
chip
);
struct
lp3943
*
lp3943
=
lp3943_gpio
->
lp3943
;
clear_bit
(
offset
,
&
lp3943
->
pin_used
);
}
static
int
lp3943_gpio_set_mode
(
struct
lp3943_gpio
*
lp3943_gpio
,
u8
offset
,
static
int
lp3943_gpio_set_mode
(
struct
lp3943_gpio
*
lp3943_gpio
,
u8
offset
,
u8
val
)
u8
val
)
{
{
...
@@ -157,6 +177,8 @@ static int lp3943_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
...
@@ -157,6 +177,8 @@ static int lp3943_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
static
const
struct
gpio_chip
lp3943_gpio_chip
=
{
static
const
struct
gpio_chip
lp3943_gpio_chip
=
{
.
label
=
"lp3943"
,
.
label
=
"lp3943"
,
.
owner
=
THIS_MODULE
,
.
owner
=
THIS_MODULE
,
.
request
=
lp3943_gpio_request
,
.
free
=
lp3943_gpio_free
,
.
direction_input
=
lp3943_gpio_direction_input
,
.
direction_input
=
lp3943_gpio_direction_input
,
.
get
=
lp3943_gpio_get
,
.
get
=
lp3943_gpio_get
,
.
direction_output
=
lp3943_gpio_direction_output
,
.
direction_output
=
lp3943_gpio_direction_output
,
...
...
include/linux/mfd/lp3943.h
浏览文件 @
70aba44b
...
@@ -94,12 +94,18 @@ struct lp3943_reg_cfg {
...
@@ -94,12 +94,18 @@ struct lp3943_reg_cfg {
* @regmap: Used for I2C communication on accessing registers
* @regmap: Used for I2C communication on accessing registers
* @pdata: LP3943 platform specific data
* @pdata: LP3943 platform specific data
* @mux_cfg: Register configuration for pin MUX
* @mux_cfg: Register configuration for pin MUX
* @pin_used: Bit mask for output pin used.
* This bitmask is used for pin assignment management.
* 1 = pin used, 0 = available.
* Only LSB 16 bits are used, but it is unsigned long type
* for atomic bitwise operations.
*/
*/
struct
lp3943
{
struct
lp3943
{
struct
device
*
dev
;
struct
device
*
dev
;
struct
regmap
*
regmap
;
struct
regmap
*
regmap
;
struct
lp3943_platform_data
*
pdata
;
struct
lp3943_platform_data
*
pdata
;
const
struct
lp3943_reg_cfg
*
mux_cfg
;
const
struct
lp3943_reg_cfg
*
mux_cfg
;
unsigned
long
pin_used
;
};
};
int
lp3943_read_byte
(
struct
lp3943
*
lp3943
,
u8
reg
,
u8
*
read
);
int
lp3943_read_byte
(
struct
lp3943
*
lp3943
,
u8
reg
,
u8
*
read
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录