Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 2 | #ifndef _VME_H_ |
| 3 | #define _VME_H_ |
| 4 | |
| 5 | /* Resource Type */ |
| 6 | enum vme_resource_type { |
| 7 | VME_MASTER, |
| 8 | VME_SLAVE, |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 9 | VME_DMA, |
| 10 | VME_LM |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 11 | }; |
| 12 | |
| 13 | /* VME Address Spaces */ |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 14 | #define VME_A16 0x1 |
| 15 | #define VME_A24 0x2 |
| 16 | #define VME_A32 0x4 |
| 17 | #define VME_A64 0x8 |
| 18 | #define VME_CRCSR 0x10 |
| 19 | #define VME_USER1 0x20 |
| 20 | #define VME_USER2 0x40 |
| 21 | #define VME_USER3 0x80 |
| 22 | #define VME_USER4 0x100 |
| 23 | |
| 24 | #define VME_A16_MAX 0x10000ULL |
| 25 | #define VME_A24_MAX 0x1000000ULL |
| 26 | #define VME_A32_MAX 0x100000000ULL |
| 27 | #define VME_A64_MAX 0x10000000000000000ULL |
| 28 | #define VME_CRCSR_MAX 0x1000000ULL |
| 29 | |
| 30 | |
| 31 | /* VME Cycle Types */ |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 32 | #define VME_SCT 0x1 |
| 33 | #define VME_BLT 0x2 |
| 34 | #define VME_MBLT 0x4 |
| 35 | #define VME_2eVME 0x8 |
| 36 | #define VME_2eSST 0x10 |
| 37 | #define VME_2eSSTB 0x20 |
| 38 | |
| 39 | #define VME_2eSST160 0x100 |
| 40 | #define VME_2eSST267 0x200 |
| 41 | #define VME_2eSST320 0x400 |
| 42 | |
| 43 | #define VME_SUPER 0x1000 |
| 44 | #define VME_USER 0x2000 |
| 45 | #define VME_PROG 0x4000 |
| 46 | #define VME_DATA 0x8000 |
| 47 | |
| 48 | /* VME Data Widths */ |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 49 | #define VME_D8 0x1 |
| 50 | #define VME_D16 0x2 |
| 51 | #define VME_D32 0x4 |
| 52 | #define VME_D64 0x8 |
| 53 | |
| 54 | /* Arbitration Scheduling Modes */ |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 55 | #define VME_R_ROBIN_MODE 0x1 |
| 56 | #define VME_PRIORITY_MODE 0x2 |
| 57 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 58 | #define VME_DMA_PATTERN (1<<0) |
| 59 | #define VME_DMA_PCI (1<<1) |
| 60 | #define VME_DMA_VME (1<<2) |
| 61 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 62 | #define VME_DMA_PATTERN_BYTE (1<<0) |
| 63 | #define VME_DMA_PATTERN_WORD (1<<1) |
| 64 | #define VME_DMA_PATTERN_INCREMENT (1<<2) |
| 65 | |
Martyn Welch | 4f723df | 2010-02-18 15:12:58 +0000 | [diff] [blame] | 66 | #define VME_DMA_VME_TO_MEM (1<<0) |
| 67 | #define VME_DMA_MEM_TO_VME (1<<1) |
| 68 | #define VME_DMA_VME_TO_VME (1<<2) |
| 69 | #define VME_DMA_MEM_TO_MEM (1<<3) |
| 70 | #define VME_DMA_PATTERN_TO_VME (1<<4) |
| 71 | #define VME_DMA_PATTERN_TO_MEM (1<<5) |
| 72 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 73 | struct vme_dma_attr { |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 74 | u32 type; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 75 | void *private; |
| 76 | }; |
| 77 | |
| 78 | struct vme_resource { |
| 79 | enum vme_resource_type type; |
| 80 | struct list_head *entry; |
| 81 | }; |
| 82 | |
| 83 | extern struct bus_type vme_bus_type; |
| 84 | |
Dmitry Kalinkin | ad1bfe4 | 2015-10-11 01:00:58 +0300 | [diff] [blame] | 85 | /* Number of VME interrupt vectors */ |
| 86 | #define VME_NUM_STATUSID 256 |
| 87 | |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 88 | /* VME_MAX_BRIDGES comes from the type of vme_bus_numbers */ |
| 89 | #define VME_MAX_BRIDGES (sizeof(unsigned int)*8) |
| 90 | #define VME_MAX_SLOTS 32 |
| 91 | |
Martyn Welch | a37b0da | 2009-08-06 09:43:07 +0100 | [diff] [blame] | 92 | #define VME_SLOT_CURRENT -1 |
| 93 | #define VME_SLOT_ALL -2 |
| 94 | |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 95 | /** |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 96 | * struct vme_dev - Structure representing a VME device |
Manohar Vanga | 8cdc081 | 2011-11-04 11:12:31 +0100 | [diff] [blame] | 97 | * @num: The device number |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 98 | * @bridge: Pointer to the bridge device this device is on |
| 99 | * @dev: Internal device structure |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 100 | * @drv_list: List of devices (per driver) |
| 101 | * @bridge_list: List of devices (per bridge) |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 102 | */ |
| 103 | struct vme_dev { |
Manohar Vanga | a916a39 | 2011-09-26 11:27:17 +0200 | [diff] [blame] | 104 | int num; |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 105 | struct vme_bridge *bridge; |
| 106 | struct device dev; |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 107 | struct list_head drv_list; |
| 108 | struct list_head bridge_list; |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 109 | }; |
| 110 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 111 | /** |
| 112 | * struct vme_driver - Structure representing a VME driver |
| 113 | * @name: Driver name, should be unique among VME drivers and usually the same |
| 114 | * as the module name. |
| 115 | * @match: Callback used to determine whether probe should be run. |
| 116 | * @probe: Callback for device binding, called when new device is detected. |
| 117 | * @remove: Callback, called on device removal. |
| 118 | * @driver: Underlying generic device driver structure. |
| 119 | * @devices: List of VME devices (struct vme_dev) associated with this driver. |
| 120 | */ |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 121 | struct vme_driver { |
Vincent Bossier | 584721c | 2011-06-03 10:07:39 +0100 | [diff] [blame] | 122 | const char *name; |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 123 | int (*match)(struct vme_dev *); |
| 124 | int (*probe)(struct vme_dev *); |
| 125 | int (*remove)(struct vme_dev *); |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 126 | struct device_driver driver; |
| 127 | struct list_head devices; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 128 | }; |
| 129 | |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 130 | void *vme_alloc_consistent(struct vme_resource *, size_t, dma_addr_t *); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 131 | void vme_free_consistent(struct vme_resource *, size_t, void *, |
| 132 | dma_addr_t); |
| 133 | |
| 134 | size_t vme_get_size(struct vme_resource *); |
Dmitry Kalinkin | ef73f88 | 2015-05-28 15:07:04 +0300 | [diff] [blame] | 135 | int vme_check_window(u32 aspace, unsigned long long vme_base, |
| 136 | unsigned long long size); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 137 | |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 138 | struct vme_resource *vme_slave_request(struct vme_dev *, u32, u32); |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 139 | int vme_slave_set(struct vme_resource *, int, unsigned long long, |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 140 | unsigned long long, dma_addr_t, u32, u32); |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 141 | int vme_slave_get(struct vme_resource *, int *, unsigned long long *, |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 142 | unsigned long long *, dma_addr_t *, u32 *, u32 *); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 143 | void vme_slave_free(struct vme_resource *); |
| 144 | |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 145 | struct vme_resource *vme_master_request(struct vme_dev *, u32, u32, u32); |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 146 | int vme_master_set(struct vme_resource *, int, unsigned long long, |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 147 | unsigned long long, u32, u32, u32); |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 148 | int vme_master_get(struct vme_resource *, int *, unsigned long long *, |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 149 | unsigned long long *, u32 *, u32 *, u32 *); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 150 | ssize_t vme_master_read(struct vme_resource *, void *, size_t, loff_t); |
| 151 | ssize_t vme_master_write(struct vme_resource *, void *, size_t, loff_t); |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 152 | unsigned int vme_master_rmw(struct vme_resource *, unsigned int, unsigned int, |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 153 | unsigned int, loff_t); |
Dmitry Kalinkin | c74a804 | 2015-02-26 18:53:10 +0300 | [diff] [blame] | 154 | int vme_master_mmap(struct vme_resource *resource, struct vm_area_struct *vma); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 155 | void vme_master_free(struct vme_resource *); |
| 156 | |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 157 | struct vme_resource *vme_dma_request(struct vme_dev *, u32); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 158 | struct vme_dma_list *vme_new_dma_list(struct vme_resource *); |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 159 | struct vme_dma_attr *vme_dma_pattern_attribute(u32, u32); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 160 | struct vme_dma_attr *vme_dma_pci_attribute(dma_addr_t); |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 161 | struct vme_dma_attr *vme_dma_vme_attribute(unsigned long long, u32, u32, u32); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 162 | void vme_dma_free_attribute(struct vme_dma_attr *); |
| 163 | int vme_dma_list_add(struct vme_dma_list *, struct vme_dma_attr *, |
| 164 | struct vme_dma_attr *, size_t); |
| 165 | int vme_dma_list_exec(struct vme_dma_list *); |
| 166 | int vme_dma_list_free(struct vme_dma_list *); |
| 167 | int vme_dma_free(struct vme_resource *); |
| 168 | |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 169 | int vme_irq_request(struct vme_dev *, int, int, |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 170 | void (*callback)(int, int, void *), void *); |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 171 | void vme_irq_free(struct vme_dev *, int, int); |
| 172 | int vme_irq_generate(struct vme_dev *, int, int); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 173 | |
Sam Hansen | 77974a3 | 2012-01-20 01:11:27 -0800 | [diff] [blame] | 174 | struct vme_resource *vme_lm_request(struct vme_dev *); |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 175 | int vme_lm_count(struct vme_resource *); |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 176 | int vme_lm_set(struct vme_resource *, unsigned long long, u32, u32); |
| 177 | int vme_lm_get(struct vme_resource *, unsigned long long *, u32 *, u32 *); |
Aaron Sierra | fa54b32 | 2016-04-29 16:41:02 -0500 | [diff] [blame] | 178 | int vme_lm_attach(struct vme_resource *, int, void (*callback)(void *), void *); |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 179 | int vme_lm_detach(struct vme_resource *, int); |
| 180 | void vme_lm_free(struct vme_resource *); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 181 | |
Martyn Welch | d7729f0 | 2013-11-08 11:58:35 +0000 | [diff] [blame] | 182 | int vme_slot_num(struct vme_dev *); |
Martyn Welch | 978f47d | 2013-11-08 11:58:34 +0000 | [diff] [blame] | 183 | int vme_bus_num(struct vme_dev *); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 184 | |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 185 | int vme_register_driver(struct vme_driver *, unsigned int); |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 186 | void vme_unregister_driver(struct vme_driver *); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 187 | |
| 188 | |
| 189 | #endif /* _VME_H_ */ |
| 190 | |