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
Kirill Smelkov
linux
Commits
9587a678
Commit
9587a678
authored
Sep 28, 2010
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'meego-7093' into idle-release
parents
e9a64ed4
4731fdcf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
drivers/pci/quirks.c
drivers/pci/quirks.c
+20
-0
No files found.
drivers/pci/quirks.c
View file @
9587a678
...
...
@@ -162,6 +162,26 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_NEC, PCI_DEVICE_ID_NEC_CBUS_1, quirk_isa_d
DECLARE_PCI_FIXUP_FINAL
(
PCI_VENDOR_ID_NEC
,
PCI_DEVICE_ID_NEC_CBUS_2
,
quirk_isa_dma_hangs
);
DECLARE_PCI_FIXUP_FINAL
(
PCI_VENDOR_ID_NEC
,
PCI_DEVICE_ID_NEC_CBUS_3
,
quirk_isa_dma_hangs
);
/*
* Intel NM10 "TigerPoint" LPC PM1a_STS.BM_STS must be clear
* for some HT machines to use C4 w/o hanging.
*/
static
void
__devinit
quirk_tigerpoint_bm_sts
(
struct
pci_dev
*
dev
)
{
u32
pmbase
;
u16
pm1a
;
pci_read_config_dword
(
dev
,
0x40
,
&
pmbase
);
pmbase
=
pmbase
&
0xff80
;
pm1a
=
inw
(
pmbase
);
if
(
pm1a
&
0x10
)
{
dev_info
(
&
dev
->
dev
,
FW_BUG
"TigerPoint LPC.BM_STS cleared
\n
"
);
outw
(
0x10
,
pmbase
);
}
}
DECLARE_PCI_FIXUP_HEADER
(
PCI_VENDOR_ID_INTEL
,
PCI_DEVICE_ID_INTEL_TGP_LPC
,
quirk_tigerpoint_bm_sts
);
/*
* Chipsets where PCI->PCI transfers vanish or hang
*/
...
...
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