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
26961efe
Commit
26961efe
authored
Dec 03, 2008
by
Joerg Roedel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AMD IOMMU: register functions for the IOMMU API
Signed-off-by:
Joerg Roedel
<
joerg.roedel@amd.com
>
parent
645c4c8d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
arch/x86/kernel/amd_iommu.c
arch/x86/kernel/amd_iommu.c
+18
-0
No files found.
arch/x86/kernel/amd_iommu.c
View file @
26961efe
...
@@ -41,6 +41,10 @@ static DEFINE_RWLOCK(amd_iommu_devtable_lock);
...
@@ -41,6 +41,10 @@ static DEFINE_RWLOCK(amd_iommu_devtable_lock);
static
LIST_HEAD
(
iommu_pd_list
);
static
LIST_HEAD
(
iommu_pd_list
);
static
DEFINE_SPINLOCK
(
iommu_pd_list_lock
);
static
DEFINE_SPINLOCK
(
iommu_pd_list_lock
);
#ifdef CONFIG_IOMMU_API
static
struct
iommu_ops
amd_iommu_ops
;
#endif
/*
/*
* general struct to manage commands send to an IOMMU
* general struct to manage commands send to an IOMMU
*/
*/
...
@@ -1593,6 +1597,10 @@ int __init amd_iommu_init_dma_ops(void)
...
@@ -1593,6 +1597,10 @@ int __init amd_iommu_init_dma_ops(void)
/* Make the driver finally visible to the drivers */
/* Make the driver finally visible to the drivers */
dma_ops
=
&
amd_iommu_dma_ops
;
dma_ops
=
&
amd_iommu_dma_ops
;
#ifdef CONFIG_IOMMU_API
register_iommu
(
&
amd_iommu_ops
);
#endif
bus_register_notifier
(
&
pci_bus_type
,
&
device_nb
);
bus_register_notifier
(
&
pci_bus_type
,
&
device_nb
);
return
0
;
return
0
;
...
@@ -1819,4 +1827,14 @@ static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
...
@@ -1819,4 +1827,14 @@ static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
return
paddr
;
return
paddr
;
}
}
static
struct
iommu_ops
amd_iommu_ops
=
{
.
domain_init
=
amd_iommu_domain_init
,
.
domain_destroy
=
amd_iommu_domain_destroy
,
.
attach_dev
=
amd_iommu_attach_device
,
.
detach_dev
=
amd_iommu_detach_device
,
.
map
=
amd_iommu_map_range
,
.
unmap
=
amd_iommu_unmap_range
,
.
iova_to_phys
=
amd_iommu_iova_to_phys
,
};
#endif
#endif
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