Blame view

include/linux/vme.h 5.66 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
a17a75e26   Martyn Welch   Staging: VME Fram...
2
3
4
5
6
7
8
  #ifndef _VME_H_
  #define _VME_H_
  
  /* Resource Type */
  enum vme_resource_type {
  	VME_MASTER,
  	VME_SLAVE,
42fb50312   Martyn Welch   Staging: vme: add...
9
10
  	VME_DMA,
  	VME_LM
a17a75e26   Martyn Welch   Staging: VME Fram...
11
12
13
  };
  
  /* VME Address Spaces */
a17a75e26   Martyn Welch   Staging: VME Fram...
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  #define VME_A16		0x1
  #define VME_A24		0x2
  #define	VME_A32		0x4
  #define VME_A64		0x8
  #define VME_CRCSR	0x10
  #define VME_USER1	0x20
  #define VME_USER2	0x40
  #define VME_USER3	0x80
  #define VME_USER4	0x100
  
  #define VME_A16_MAX	0x10000ULL
  #define VME_A24_MAX	0x1000000ULL
  #define VME_A32_MAX	0x100000000ULL
  #define VME_A64_MAX	0x10000000000000000ULL
  #define VME_CRCSR_MAX	0x1000000ULL
  
  
  /* VME Cycle Types */
a17a75e26   Martyn Welch   Staging: VME Fram...
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  #define VME_SCT		0x1
  #define VME_BLT		0x2
  #define VME_MBLT	0x4
  #define VME_2eVME	0x8
  #define VME_2eSST	0x10
  #define VME_2eSSTB	0x20
  
  #define VME_2eSST160	0x100
  #define VME_2eSST267	0x200
  #define VME_2eSST320	0x400
  
  #define	VME_SUPER	0x1000
  #define	VME_USER	0x2000
  #define	VME_PROG	0x4000
  #define	VME_DATA	0x8000
  
  /* VME Data Widths */
a17a75e26   Martyn Welch   Staging: VME Fram...
49
50
51
52
53
54
  #define VME_D8		0x1
  #define VME_D16		0x2
  #define VME_D32		0x4
  #define VME_D64		0x8
  
  /* Arbitration Scheduling Modes */
a17a75e26   Martyn Welch   Staging: VME Fram...
55
56
  #define VME_R_ROBIN_MODE	0x1
  #define VME_PRIORITY_MODE	0x2
a17a75e26   Martyn Welch   Staging: VME Fram...
57
58
59
  #define VME_DMA_PATTERN			(1<<0)
  #define VME_DMA_PCI			(1<<1)
  #define VME_DMA_VME			(1<<2)
a17a75e26   Martyn Welch   Staging: VME Fram...
60
61
62
  #define VME_DMA_PATTERN_BYTE		(1<<0)
  #define VME_DMA_PATTERN_WORD		(1<<1)
  #define VME_DMA_PATTERN_INCREMENT	(1<<2)
4f723df45   Martyn Welch   Staging: vme: Att...
63
64
65
66
67
68
  #define VME_DMA_VME_TO_MEM		(1<<0)
  #define VME_DMA_MEM_TO_VME		(1<<1)
  #define VME_DMA_VME_TO_VME		(1<<2)
  #define VME_DMA_MEM_TO_MEM		(1<<3)
  #define VME_DMA_PATTERN_TO_VME		(1<<4)
  #define VME_DMA_PATTERN_TO_MEM		(1<<5)
a17a75e26   Martyn Welch   Staging: VME Fram...
69
  struct vme_dma_attr {
6af04b065   Martyn Welch   Staging: VME: Rem...
70
  	u32 type;
a17a75e26   Martyn Welch   Staging: VME Fram...
71
72
73
74
75
76
77
78
79
  	void *private;
  };
  
  struct vme_resource {
  	enum vme_resource_type type;
  	struct list_head *entry;
  };
  
  extern struct bus_type vme_bus_type;
ad1bfe410   Dmitry Kalinkin   vme: 8-bit status...
80
81
  /* Number of VME interrupt vectors */
  #define VME_NUM_STATUSID	256
5d6abf379   Manohar Vanga   staging: vme: mak...
82
83
84
  /* VME_MAX_BRIDGES comes from the type of vme_bus_numbers */
  #define VME_MAX_BRIDGES		(sizeof(unsigned int)*8)
  #define VME_MAX_SLOTS		32
a37b0dad8   Martyn Welch   Staging: vme: Ext...
85
86
  #define VME_SLOT_CURRENT	-1
  #define VME_SLOT_ALL		-2
8f966dc44   Manohar Vanga   staging: vme: add...
87
  /**
b5bc980a4   Martyn Welch   docs: Add kernel-...
88
   * struct vme_dev - Structure representing a VME device
8cdc08191   Manohar Vanga   staging: vme: fix...
89
   * @num: The device number
8f966dc44   Manohar Vanga   staging: vme: add...
90
91
   * @bridge: Pointer to the bridge device this device is on
   * @dev: Internal device structure
5d6abf379   Manohar Vanga   staging: vme: mak...
92
93
   * @drv_list: List of devices (per driver)
   * @bridge_list: List of devices (per bridge)
8f966dc44   Manohar Vanga   staging: vme: add...
94
95
   */
  struct vme_dev {
a916a391d   Manohar Vanga   staging: vme: get...
96
  	int num;
8f966dc44   Manohar Vanga   staging: vme: add...
97
98
  	struct vme_bridge *bridge;
  	struct device dev;
5d6abf379   Manohar Vanga   staging: vme: mak...
99
100
  	struct list_head drv_list;
  	struct list_head bridge_list;
8f966dc44   Manohar Vanga   staging: vme: add...
101
  };
b5bc980a4   Martyn Welch   docs: Add kernel-...
102
103
104
105
106
107
108
109
110
111
  /**
   * struct vme_driver - Structure representing a VME driver
   * @name: Driver name, should be unique among VME drivers and usually the same
   *        as the module name.
   * @match: Callback used to determine whether probe should be run.
   * @probe: Callback for device binding, called when new device is detected.
   * @remove: Callback, called on device removal.
   * @driver: Underlying generic device driver structure.
   * @devices: List of VME devices (struct vme_dev) associated with this driver.
   */
a17a75e26   Martyn Welch   Staging: VME Fram...
112
  struct vme_driver {
584721cab   Vincent Bossier   Staging VME: Fix ...
113
  	const char *name;
5d6abf379   Manohar Vanga   staging: vme: mak...
114
115
116
  	int (*match)(struct vme_dev *);
  	int (*probe)(struct vme_dev *);
  	int (*remove)(struct vme_dev *);
5d6abf379   Manohar Vanga   staging: vme: mak...
117
118
  	struct device_driver driver;
  	struct list_head devices;
a17a75e26   Martyn Welch   Staging: VME Fram...
119
  };
ead1f3e30   Martyn Welch   Staging: vme: Fix...
120
  void *vme_alloc_consistent(struct vme_resource *, size_t, dma_addr_t *);
a17a75e26   Martyn Welch   Staging: VME Fram...
121
122
123
124
  void vme_free_consistent(struct vme_resource *, size_t,  void *,
  	dma_addr_t);
  
  size_t vme_get_size(struct vme_resource *);
ef73f886b   Dmitry Kalinkin   vme: export vme_c...
125
126
  int vme_check_window(u32 aspace, unsigned long long vme_base,
  		     unsigned long long size);
a17a75e26   Martyn Welch   Staging: VME Fram...
127

6af04b065   Martyn Welch   Staging: VME: Rem...
128
  struct vme_resource *vme_slave_request(struct vme_dev *, u32, u32);
ead1f3e30   Martyn Welch   Staging: vme: Fix...
129
  int vme_slave_set(struct vme_resource *, int, unsigned long long,
6af04b065   Martyn Welch   Staging: VME: Rem...
130
  	unsigned long long, dma_addr_t, u32, u32);
ead1f3e30   Martyn Welch   Staging: vme: Fix...
131
  int vme_slave_get(struct vme_resource *, int *, unsigned long long *,
6af04b065   Martyn Welch   Staging: VME: Rem...
132
  	unsigned long long *, dma_addr_t *, u32 *, u32 *);
a17a75e26   Martyn Welch   Staging: VME Fram...
133
  void vme_slave_free(struct vme_resource *);
6af04b065   Martyn Welch   Staging: VME: Rem...
134
  struct vme_resource *vme_master_request(struct vme_dev *, u32, u32, u32);
ead1f3e30   Martyn Welch   Staging: vme: Fix...
135
  int vme_master_set(struct vme_resource *, int, unsigned long long,
6af04b065   Martyn Welch   Staging: VME: Rem...
136
  	unsigned long long, u32, u32, u32);
ead1f3e30   Martyn Welch   Staging: vme: Fix...
137
  int vme_master_get(struct vme_resource *, int *, unsigned long long *,
6af04b065   Martyn Welch   Staging: VME: Rem...
138
  	unsigned long long *, u32 *, u32 *, u32 *);
a17a75e26   Martyn Welch   Staging: VME Fram...
139
140
  ssize_t vme_master_read(struct vme_resource *, void *, size_t, loff_t);
  ssize_t vme_master_write(struct vme_resource *, void *, size_t, loff_t);
ead1f3e30   Martyn Welch   Staging: vme: Fix...
141
  unsigned int vme_master_rmw(struct vme_resource *, unsigned int, unsigned int,
a17a75e26   Martyn Welch   Staging: VME Fram...
142
  	unsigned int, loff_t);
c74a804f1   Dmitry Kalinkin   staging: vme: mma...
143
  int vme_master_mmap(struct vme_resource *resource, struct vm_area_struct *vma);
a17a75e26   Martyn Welch   Staging: VME Fram...
144
  void vme_master_free(struct vme_resource *);
6af04b065   Martyn Welch   Staging: VME: Rem...
145
  struct vme_resource *vme_dma_request(struct vme_dev *, u32);
a17a75e26   Martyn Welch   Staging: VME Fram...
146
  struct vme_dma_list *vme_new_dma_list(struct vme_resource *);
6af04b065   Martyn Welch   Staging: VME: Rem...
147
  struct vme_dma_attr *vme_dma_pattern_attribute(u32, u32);
a17a75e26   Martyn Welch   Staging: VME Fram...
148
  struct vme_dma_attr *vme_dma_pci_attribute(dma_addr_t);
6af04b065   Martyn Welch   Staging: VME: Rem...
149
  struct vme_dma_attr *vme_dma_vme_attribute(unsigned long long, u32, u32, u32);
a17a75e26   Martyn Welch   Staging: VME Fram...
150
151
152
153
154
155
  void vme_dma_free_attribute(struct vme_dma_attr *);
  int vme_dma_list_add(struct vme_dma_list *, struct vme_dma_attr *,
  	struct vme_dma_attr *, size_t);
  int vme_dma_list_exec(struct vme_dma_list *);
  int vme_dma_list_free(struct vme_dma_list *);
  int vme_dma_free(struct vme_resource *);
8f966dc44   Manohar Vanga   staging: vme: add...
156
  int vme_irq_request(struct vme_dev *, int, int,
a17a75e26   Martyn Welch   Staging: VME Fram...
157
  	void (*callback)(int, int, void *), void *);
8f966dc44   Manohar Vanga   staging: vme: add...
158
159
  void vme_irq_free(struct vme_dev *, int, int);
  int vme_irq_generate(struct vme_dev *, int, int);
a17a75e26   Martyn Welch   Staging: VME Fram...
160

77974a30b   Sam Hansen   staging: vme: cod...
161
  struct vme_resource *vme_lm_request(struct vme_dev *);
42fb50312   Martyn Welch   Staging: vme: add...
162
  int vme_lm_count(struct vme_resource *);
6af04b065   Martyn Welch   Staging: VME: Rem...
163
164
  int vme_lm_set(struct vme_resource *, unsigned long long, u32, u32);
  int vme_lm_get(struct vme_resource *, unsigned long long *, u32 *, u32 *);
fa54b3268   Aaron Sierra   vme: change LM ca...
165
  int vme_lm_attach(struct vme_resource *, int, void (*callback)(void *), void *);
42fb50312   Martyn Welch   Staging: vme: add...
166
167
  int vme_lm_detach(struct vme_resource *, int);
  void vme_lm_free(struct vme_resource *);
a17a75e26   Martyn Welch   Staging: VME Fram...
168

d7729f0fc   Martyn Welch   VME: Rename vme_s...
169
  int vme_slot_num(struct vme_dev *);
978f47d64   Martyn Welch   VME: Provide acce...
170
  int vme_bus_num(struct vme_dev *);
a17a75e26   Martyn Welch   Staging: VME Fram...
171

5d6abf379   Manohar Vanga   staging: vme: mak...
172
  int vme_register_driver(struct vme_driver *, unsigned int);
ead1f3e30   Martyn Welch   Staging: vme: Fix...
173
  void vme_unregister_driver(struct vme_driver *);
a17a75e26   Martyn Welch   Staging: VME Fram...
174
175
176
  
  
  #endif /* _VME_H_ */