Jon Mason | e465058 | 2006-06-26 13:58:14 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Derived from include/asm-powerpc/iommu.h |
| 3 | * |
Muli Ben-Yehuda | ff297b8 | 2007-07-21 17:10:50 +0200 | [diff] [blame] | 4 | * Copyright IBM Corporation, 2006-2007 |
Muli Ben-Yehuda | aa0a9f3 | 2006-07-10 17:06:15 +0200 | [diff] [blame] | 5 | * |
| 6 | * Author: Jon Mason <jdmason@us.ibm.com> |
| 7 | * Author: Muli Ben-Yehuda <muli@il.ibm.com> |
Jon Mason | e465058 | 2006-06-26 13:58:14 +0200 | [diff] [blame] | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #ifndef _ASM_X86_64_CALGARY_H |
| 25 | #define _ASM_X86_64_CALGARY_H |
| 26 | |
Jon Mason | e465058 | 2006-06-26 13:58:14 +0200 | [diff] [blame] | 27 | #include <linux/spinlock.h> |
| 28 | #include <linux/device.h> |
| 29 | #include <linux/dma-mapping.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 30 | #include <linux/timer.h> |
Jon Mason | e465058 | 2006-06-26 13:58:14 +0200 | [diff] [blame] | 31 | #include <asm/types.h> |
| 32 | |
| 33 | struct iommu_table { |
Muli Ben-Yehuda | ff297b8 | 2007-07-21 17:10:50 +0200 | [diff] [blame] | 34 | struct cal_chipset_ops *chip_ops; /* chipset specific funcs */ |
Jon Mason | e465058 | 2006-06-26 13:58:14 +0200 | [diff] [blame] | 35 | unsigned long it_base; /* mapped address of tce table */ |
| 36 | unsigned long it_hint; /* Hint for next alloc */ |
| 37 | unsigned long *it_map; /* A simple allocation bitmap for now */ |
Muli Ben-Yehuda | 5f4a7a9 | 2006-09-26 10:52:31 +0200 | [diff] [blame] | 38 | void __iomem *bbar; /* Bridge BAR */ |
| 39 | u64 tar_val; /* Table Address Register */ |
| 40 | struct timer_list watchdog_timer; |
Jon Mason | e465058 | 2006-06-26 13:58:14 +0200 | [diff] [blame] | 41 | spinlock_t it_lock; /* Protects it_map */ |
| 42 | unsigned int it_size; /* Size of iommu table in entries */ |
| 43 | unsigned char it_busno; /* Bus number this table belongs to */ |
Jon Mason | e465058 | 2006-06-26 13:58:14 +0200 | [diff] [blame] | 44 | }; |
| 45 | |
Muli Ben-Yehuda | ff297b8 | 2007-07-21 17:10:50 +0200 | [diff] [blame] | 46 | struct cal_chipset_ops { |
| 47 | void (*handle_quirks)(struct iommu_table *tbl, struct pci_dev *dev); |
| 48 | void (*tce_cache_blast)(struct iommu_table *tbl); |
Muli Ben-Yehuda | 8cb32dc | 2007-07-21 17:10:55 +0200 | [diff] [blame] | 49 | void (*dump_error_regs)(struct iommu_table *tbl); |
Muli Ben-Yehuda | ff297b8 | 2007-07-21 17:10:50 +0200 | [diff] [blame] | 50 | }; |
| 51 | |
Jon Mason | e465058 | 2006-06-26 13:58:14 +0200 | [diff] [blame] | 52 | #define TCE_TABLE_SIZE_UNSPECIFIED ~0 |
| 53 | #define TCE_TABLE_SIZE_64K 0 |
| 54 | #define TCE_TABLE_SIZE_128K 1 |
| 55 | #define TCE_TABLE_SIZE_256K 2 |
| 56 | #define TCE_TABLE_SIZE_512K 3 |
| 57 | #define TCE_TABLE_SIZE_1M 4 |
| 58 | #define TCE_TABLE_SIZE_2M 5 |
| 59 | #define TCE_TABLE_SIZE_4M 6 |
| 60 | #define TCE_TABLE_SIZE_8M 7 |
| 61 | |
Muli Ben-Yehuda | bff6547 | 2006-12-07 02:14:07 +0100 | [diff] [blame] | 62 | extern int use_calgary; |
| 63 | |
Jon Mason | e465058 | 2006-06-26 13:58:14 +0200 | [diff] [blame] | 64 | #ifdef CONFIG_CALGARY_IOMMU |
| 65 | extern int calgary_iommu_init(void); |
| 66 | extern void detect_calgary(void); |
| 67 | #else |
| 68 | static inline int calgary_iommu_init(void) { return 1; } |
| 69 | static inline void detect_calgary(void) { return; } |
| 70 | #endif |
| 71 | |
Jon Mason | e465058 | 2006-06-26 13:58:14 +0200 | [diff] [blame] | 72 | #endif /* _ASM_X86_64_CALGARY_H */ |