Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-elphel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
linux-elphel
Commits
09009b1c
Commit
09009b1c
authored
May 02, 2016
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+power_shutdown
parent
a89358c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
5 deletions
+17
-5
elphel393-pwr.c
src/drivers/elphel/elphel393-pwr.c
+17
-5
No files found.
src/drivers/elphel/elphel393-pwr.c
View file @
09009b1c
...
@@ -252,6 +252,7 @@ static ssize_t enable_por_show(struct device *dev, struct device_attribute *attr
...
@@ -252,6 +252,7 @@ static ssize_t enable_por_show(struct device *dev, struct device_attribute *attr
static
ssize_t
enable_por_store
(
struct
device
*
dev
,
struct
device_attribute
*
attr
,
const
char
*
buf
,
size_t
count
);
static
ssize_t
enable_por_store
(
struct
device
*
dev
,
struct
device_attribute
*
attr
,
const
char
*
buf
,
size_t
count
);
static
int
por_ctrl
(
struct
device
*
dev
,
int
disable_por
);
static
int
por_ctrl
(
struct
device
*
dev
,
int
disable_por
);
static
int
shutdown
(
struct
device
*
dev
);
static
int
get_and_disable_por
(
struct
device
*
dev
,
int
chn_bits
,
int
*
old_dis_por
);
static
int
get_and_disable_por
(
struct
device
*
dev
,
int
chn_bits
,
int
*
old_dis_por
);
static
int
reenable_por
(
struct
device
*
dev
);
static
int
reenable_por
(
struct
device
*
dev
);
static
int
wait_all_pgood
(
struct
device
*
dev
);
static
int
wait_all_pgood
(
struct
device
*
dev
);
...
@@ -294,11 +295,13 @@ static DEVICE_ATTR(simulate, SYSFS_PERMISSIONS, simulate_
...
@@ -294,11 +295,13 @@ static DEVICE_ATTR(simulate, SYSFS_PERMISSIONS, simulate_
static
DEVICE_ATTR
(
output_state
,
SYSFS_PERMISSIONS
&
SYSFS_READONLY
,
outputs_all_show
,
NULL
);
static
DEVICE_ATTR
(
output_state
,
SYSFS_PERMISSIONS
&
SYSFS_READONLY
,
outputs_all_show
,
NULL
);
static
DEVICE_ATTR
(
configs
,
SYSFS_PERMISSIONS
&
SYSFS_READONLY
,
configs_all_show
,
NULL
);
static
DEVICE_ATTR
(
configs
,
SYSFS_PERMISSIONS
&
SYSFS_READONLY
,
configs_all_show
,
NULL
);
static
DEVICE_ATTR
(
channels_en
,
SYSFS_PERMISSIONS
,
channels_en_show
,
channels_en_store
);
static
DEVICE_ATTR
(
channels_en
,
SYSFS_PERMISSIONS
,
channels_en_show
,
channels_en_store
);
static
DEVICE_ATTR
(
channels_dis
,
SYSFS_PERMISSIONS
,
channels_dis_show
,
channels_dis_store
);
static
DEVICE_ATTR
(
channels_dis
,
SYSFS_PERMISSIONS
,
channels_dis_show
,
channels_dis_store
);
static
DEVICE_ATTR
(
power_good
,
SYSFS_PERMISSIONS
&
SYSFS_READONLY
,
pgood_show
,
NULL
);
static
DEVICE_ATTR
(
power_good
,
SYSFS_PERMISSIONS
&
SYSFS_READONLY
,
pgood_show
,
NULL
);
static
DEVICE_ATTR
(
power_bad
,
SYSFS_PERMISSIONS
&
SYSFS_READONLY
,
pbad_show
,
NULL
);
static
DEVICE_ATTR
(
power_bad
,
SYSFS_PERMISSIONS
&
SYSFS_READONLY
,
pbad_show
,
NULL
);
static
DEVICE_ATTR
(
enable_por
,
SYSFS_PERMISSIONS
,
enable_por_show
,
enable_por_store
);
static
DEVICE_ATTR
(
enable_por
,
SYSFS_PERMISSIONS
,
enable_por_show
,
enable_por_store
);
static
DEVICE_ATTR
(
power_shutdown
,
SYSFS_PERMISSIONS
,
NULL
,
shutdown
);
static
struct
attribute
*
root_dev_attrs
[]
=
{
static
struct
attribute
*
root_dev_attrs
[]
=
{
&
dev_attr_simulate
.
attr
,
&
dev_attr_simulate
.
attr
,
...
@@ -309,6 +312,7 @@ static struct attribute *root_dev_attrs[] = {
...
@@ -309,6 +312,7 @@ static struct attribute *root_dev_attrs[] = {
&
dev_attr_power_good
.
attr
,
&
dev_attr_power_good
.
attr
,
&
dev_attr_power_bad
.
attr
,
&
dev_attr_power_bad
.
attr
,
&
dev_attr_enable_por
.
attr
,
&
dev_attr_enable_por
.
attr
,
&
dev_attr_power_shutdown
.
attr
,
NULL
NULL
};
};
static
const
struct
attribute_group
dev_attr_root_group
=
{
static
const
struct
attribute_group
dev_attr_root_group
=
{
...
@@ -573,6 +577,14 @@ static ssize_t enable_por_store(struct device *dev, struct device_attribute *att
...
@@ -573,6 +577,14 @@ static ssize_t enable_por_store(struct device *dev, struct device_attribute *att
return
count
;
return
count
;
}
}
int
shutdown
(
struct
device
*
dev
)
{
int
gpio_shutdown_index
=
get_gpio_index_by_name
(
"NSHUTDOWN"
);
if
(
gpio_shutdown_index
<
0
)
return
gpio_shutdown_index
;
pr_info
(
"POWER OFF
\n
"
);
return
gpio_conf_by_index
(
dev
,
gpio_shutdown_index
,
1
,
0
);
}
int
por_ctrl
(
struct
device
*
dev
,
int
disable_por
)
int
por_ctrl
(
struct
device
*
dev
,
int
disable_por
)
{
{
int
gpio_disable_por_index
=
get_gpio_index_by_name
(
"DIS_POR"
);
int
gpio_disable_por_index
=
get_gpio_index_by_name
(
"DIS_POR"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment