Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
5b542e44
Commit
5b542e44
authored
Jun 15, 2006
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Pull bugzilla-5764 into release branch
parents
e4151eaa
f9a6ee1a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
22 deletions
+29
-22
drivers/acpi/ec.c
drivers/acpi/ec.c
+29
-22
No files found.
drivers/acpi/ec.c
View file @
5b542e44
...
...
@@ -116,7 +116,7 @@ union acpi_ec {
struct
acpi_generic_address
command_addr
;
struct
acpi_generic_address
data_addr
;
unsigned
long
global_lock
;
s
pinlock_t
lock
;
s
truct
semaphore
sem
;
}
poll
;
};
...
...
@@ -323,7 +323,6 @@ static int acpi_ec_poll_read(union acpi_ec *ec, u8 address, u32 * data)
{
acpi_status
status
=
AE_OK
;
int
result
=
0
;
unsigned
long
flags
=
0
;
u32
glk
=
0
;
ACPI_FUNCTION_TRACE
(
"acpi_ec_read"
);
...
...
@@ -339,7 +338,10 @@ static int acpi_ec_poll_read(union acpi_ec *ec, u8 address, u32 * data)
return_VALUE
(
-
ENODEV
);
}
spin_lock_irqsave
(
&
ec
->
poll
.
lock
,
flags
);
if
(
down_interruptible
(
&
ec
->
poll
.
sem
))
{
result
=
-
ERESTARTSYS
;
goto
end_nosem
;
}
acpi_hw_low_level_write
(
8
,
ACPI_EC_COMMAND_READ
,
&
ec
->
common
.
command_addr
);
...
...
@@ -358,8 +360,8 @@ static int acpi_ec_poll_read(union acpi_ec *ec, u8 address, u32 * data)
*
data
,
address
));
end:
spin_unlock_irqrestore
(
&
ec
->
poll
.
lock
,
flags
);
up
(
&
ec
->
poll
.
sem
);
end_nosem:
if
(
ec
->
common
.
global_lock
)
acpi_release_global_lock
(
glk
);
...
...
@@ -370,7 +372,6 @@ static int acpi_ec_poll_write(union acpi_ec *ec, u8 address, u8 data)
{
int
result
=
0
;
acpi_status
status
=
AE_OK
;
unsigned
long
flags
=
0
;
u32
glk
=
0
;
ACPI_FUNCTION_TRACE
(
"acpi_ec_write"
);
...
...
@@ -384,7 +385,10 @@ static int acpi_ec_poll_write(union acpi_ec *ec, u8 address, u8 data)
return_VALUE
(
-
ENODEV
);
}
spin_lock_irqsave
(
&
ec
->
poll
.
lock
,
flags
);
if
(
down_interruptible
(
&
ec
->
poll
.
sem
))
{
result
=
-
ERESTARTSYS
;
goto
end_nosem
;
}
acpi_hw_low_level_write
(
8
,
ACPI_EC_COMMAND_WRITE
,
&
ec
->
common
.
command_addr
);
...
...
@@ -406,8 +410,8 @@ static int acpi_ec_poll_write(union acpi_ec *ec, u8 address, u8 data)
data
,
address
));
end:
spin_unlock_irqrestore
(
&
ec
->
poll
.
lock
,
flags
);
up
(
&
ec
->
poll
.
sem
);
end_nosem:
if
(
ec
->
common
.
global_lock
)
acpi_release_global_lock
(
glk
);
...
...
@@ -568,7 +572,6 @@ static int acpi_ec_poll_query(union acpi_ec *ec, u32 * data)
{
int
result
=
0
;
acpi_status
status
=
AE_OK
;
unsigned
long
flags
=
0
;
u32
glk
=
0
;
ACPI_FUNCTION_TRACE
(
"acpi_ec_query"
);
...
...
@@ -589,7 +592,10 @@ static int acpi_ec_poll_query(union acpi_ec *ec, u32 * data)
* Note that successful completion of the query causes the ACPI_EC_SCI
* bit to be cleared (and thus clearing the interrupt source).
*/
spin_lock_irqsave
(
&
ec
->
poll
.
lock
,
flags
);
if
(
down_interruptible
(
&
ec
->
poll
.
sem
))
{
result
=
-
ERESTARTSYS
;
goto
end_nosem
;
}
acpi_hw_low_level_write
(
8
,
ACPI_EC_COMMAND_QUERY
,
&
ec
->
common
.
command_addr
);
...
...
@@ -602,8 +608,8 @@ static int acpi_ec_poll_query(union acpi_ec *ec, u32 * data)
result
=
-
ENODATA
;
end:
spin_unlock_irqrestore
(
&
ec
->
poll
.
lock
,
flags
);
up
(
&
ec
->
poll
.
sem
);
end_nosem:
if
(
ec
->
common
.
global_lock
)
acpi_release_global_lock
(
glk
);
...
...
@@ -680,7 +686,6 @@ static void acpi_ec_gpe_poll_query(void *ec_cxt)
{
union
acpi_ec
*
ec
=
(
union
acpi_ec
*
)
ec_cxt
;
u32
value
=
0
;
unsigned
long
flags
=
0
;
static
char
object_name
[
5
]
=
{
'_'
,
'Q'
,
'0'
,
'0'
,
'\0'
};
const
char
hex
[]
=
{
'0'
,
'1'
,
'2'
,
'3'
,
'4'
,
'5'
,
'6'
,
'7'
,
'8'
,
'9'
,
'A'
,
'B'
,
'C'
,
'D'
,
'E'
,
'F'
...
...
@@ -691,9 +696,11 @@ static void acpi_ec_gpe_poll_query(void *ec_cxt)
if
(
!
ec_cxt
)
goto
end
;
spin_lock_irqsave
(
&
ec
->
poll
.
lock
,
flags
);
if
(
down_interruptible
(
&
ec
->
poll
.
sem
))
{
return_VOID
;
}
acpi_hw_low_level_read
(
8
,
&
value
,
&
ec
->
common
.
command_addr
);
spin_unlock_irqrestore
(
&
ec
->
poll
.
lock
,
flags
);
up
(
&
ec
->
poll
.
sem
);
/* TBD: Implement asynch events!
* NOTE: All we care about are EC-SCI's. Other EC events are
...
...
@@ -1003,7 +1010,7 @@ static int acpi_ec_poll_add(struct acpi_device *device)
ec
->
common
.
handle
=
device
->
handle
;
ec
->
common
.
uid
=
-
1
;
spin_lock_init
(
&
ec
->
poll
.
lock
);
init_MUTEX
(
&
ec
->
poll
.
sem
);
strcpy
(
acpi_device_name
(
device
),
ACPI_EC_DEVICE_NAME
);
strcpy
(
acpi_device_class
(
device
),
ACPI_EC_CLASS
);
acpi_driver_data
(
device
)
=
ec
;
...
...
@@ -1295,7 +1302,7 @@ acpi_fake_ecdt_poll_callback(acpi_handle handle,
&
ec_ecdt
->
common
.
gpe_bit
);
if
(
ACPI_FAILURE
(
status
))
return
status
;
spin_lock_init
(
&
ec_ecdt
->
poll
.
lock
);
init_MUTEX
(
&
ec_ecdt
->
poll
.
sem
);
ec_ecdt
->
common
.
global_lock
=
TRUE
;
ec_ecdt
->
common
.
handle
=
handle
;
...
...
@@ -1411,7 +1418,7 @@ static int __init acpi_ec_poll_get_real_ecdt(void)
ec_ecdt
->
common
.
status_addr
=
ecdt_ptr
->
ec_control
;
ec_ecdt
->
common
.
data_addr
=
ecdt_ptr
->
ec_data
;
ec_ecdt
->
common
.
gpe_bit
=
ecdt_ptr
->
gpe_bit
;
spin_lock_init
(
&
ec_ecdt
->
poll
.
lock
);
init_MUTEX
(
&
ec_ecdt
->
poll
.
sem
);
/* use the GL just to be safe */
ec_ecdt
->
common
.
global_lock
=
TRUE
;
ec_ecdt
->
common
.
uid
=
ecdt_ptr
->
uid
;
...
...
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