-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 313790 b: refs/heads/master c: 41bb38f h: refs/heads/master v: v3
- Loading branch information
Chris Metcalf
committed
Jul 18, 2012
1 parent
f056391
commit 6ae8f12
Showing
9 changed files
with
589 additions
and
204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: eef015c8aa74451f848307fe5f65485070533bbb | ||
refs/heads/master: 41bb38fc5398ae878c799647f3c4b25374029afb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright 2010 Tilera Corporation. All Rights Reserved. | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation, version 2. | ||
* | ||
* This program is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or | ||
* NON INFRINGEMENT. See the GNU General Public License for | ||
* more details. | ||
* Arch specific extensions to struct device | ||
*/ | ||
|
||
#ifndef _ASM_TILE_DEVICE_H | ||
#define _ASM_TILE_DEVICE_H | ||
|
||
struct dev_archdata { | ||
/* DMA operations on that device */ | ||
struct dma_map_ops *dma_ops; | ||
|
||
/* Offset of the DMA address from the PA. */ | ||
dma_addr_t dma_offset; | ||
|
||
/* Highest DMA address that can be generated by this device. */ | ||
dma_addr_t max_direct_dma_addr; | ||
}; | ||
|
||
struct pdev_archdata { | ||
}; | ||
|
||
#endif /* _ASM_TILE_DEVICE_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.