Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
1089e300
Commit
1089e300
authored
Oct 22, 2009
by
Eric Anholt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
agp/intel: Add support for Sandybridge.
Signed-off-by:
Eric Anholt
<
eric@anholt.net
>
parent
eb6b6d7c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
drivers/char/agp/intel-agp.c
drivers/char/agp/intel-agp.c
+14
-1
No files found.
drivers/char/agp/intel-agp.c
View file @
1089e300
...
...
@@ -64,6 +64,8 @@
#define PCI_DEVICE_ID_INTEL_IRONLAKE_MA_HB 0x0062
#define PCI_DEVICE_ID_INTEL_IRONLAKE_MC2_HB 0x006a
#define PCI_DEVICE_ID_INTEL_IRONLAKE_M_IG 0x0046
#define PCI_DEVICE_ID_INTEL_SANDYBRIDGE_HB 0x0100
#define PCI_DEVICE_ID_INTEL_SANDYBRIDGE_IG 0x0102
/* cover 915 and 945 variants */
#define IS_I915 (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_E7221_HB || \
...
...
@@ -98,7 +100,8 @@
agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IRONLAKE_D_HB || \
agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IRONLAKE_M_HB || \
agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IRONLAKE_MA_HB || \
agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IRONLAKE_MC2_HB)
agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IRONLAKE_MC2_HB || \
agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_SANDYBRIDGE_HB)
extern
int
agp_memory_reserved
;
...
...
@@ -705,6 +708,12 @@ static void intel_i830_init_gtt_entries(void)
gtt_entries
=
0
;
break
;
}
}
else
if
(
agp_bridge
->
dev
->
device
==
PCI_DEVICE_ID_INTEL_SANDYBRIDGE_HB
)
{
/* XXX: This is what my A1 silicon has. What's the right
* answer?
*/
gtt_entries
=
MB
(
64
)
-
KB
(
size
);
}
else
{
switch
(
gmch_ctrl
&
I855_GMCH_GMS_MASK
)
{
case
I855_GMCH_GMS_STOLEN_1M
:
...
...
@@ -1364,6 +1373,7 @@ static void intel_i965_get_gtt_range(int *gtt_offset, int *gtt_size)
case
PCI_DEVICE_ID_INTEL_IRONLAKE_M_HB
:
case
PCI_DEVICE_ID_INTEL_IRONLAKE_MA_HB
:
case
PCI_DEVICE_ID_INTEL_IRONLAKE_MC2_HB
:
case
PCI_DEVICE_ID_INTEL_SANDYBRIDGE_HB
:
*
gtt_offset
=
*
gtt_size
=
MB
(
2
);
break
;
default:
...
...
@@ -2369,6 +2379,8 @@ static const struct intel_driver_description {
"HD Graphics"
,
NULL
,
&
intel_i965_driver
},
{
PCI_DEVICE_ID_INTEL_IRONLAKE_MC2_HB
,
PCI_DEVICE_ID_INTEL_IRONLAKE_M_IG
,
0
,
"HD Graphics"
,
NULL
,
&
intel_i965_driver
},
{
PCI_DEVICE_ID_INTEL_SANDYBRIDGE_HB
,
PCI_DEVICE_ID_INTEL_SANDYBRIDGE_IG
,
0
,
"Sandybridge"
,
NULL
,
&
intel_i965_driver
},
{
0
,
0
,
0
,
NULL
,
NULL
,
NULL
}
};
...
...
@@ -2575,6 +2587,7 @@ static struct pci_device_id agp_intel_pci_table[] = {
ID
(
PCI_DEVICE_ID_INTEL_IRONLAKE_M_HB
),
ID
(
PCI_DEVICE_ID_INTEL_IRONLAKE_MA_HB
),
ID
(
PCI_DEVICE_ID_INTEL_IRONLAKE_MC2_HB
),
ID
(
PCI_DEVICE_ID_INTEL_SANDYBRIDGE_HB
),
{
}
};
...
...
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