Blame view

drivers/macintosh/macio-adb.c 6.44 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
  /*
   * Driver for the ADB controller in the Mac I/O (Hydra) chip.
   */
  #include <stdarg.h>
  #include <linux/types.h>
  #include <linux/errno.h>
  #include <linux/kernel.h>
  #include <linux/delay.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
11
12
13
14
15
16
17
18
  #include <linux/spinlock.h>
  #include <linux/interrupt.h>
  #include <asm/prom.h>
  #include <linux/adb.h>
  #include <asm/io.h>
  #include <asm/pgtable.h>
  #include <asm/hydra.h>
  #include <asm/irq.h>
  #include <asm/system.h>
  #include <linux/init.h>
36874579d   David Woodhouse   [PATCH] powerpc: ...
19
  #include <linux/ioport.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  
  struct preg {
  	unsigned char r;
  	char pad[15];
  };
  
  struct adb_regs {
  	struct preg intr;
  	struct preg data[9];
  	struct preg intr_enb;
  	struct preg dcount;
  	struct preg error;
  	struct preg ctrl;
  	struct preg autopoll;
  	struct preg active_hi;
  	struct preg active_lo;
  	struct preg test;
  };
  
  /* Bits in intr and intr_enb registers */
  #define DFB	1		/* data from bus */
  #define TAG	2		/* transfer access grant */
  
  /* Bits in dcount register */
  #define HMB	0x0f		/* how many bytes */
  #define APD	0x10		/* auto-poll data */
  
  /* Bits in error register */
  #define NRE	1		/* no response error */
  #define DLE	2		/* data lost error */
  
  /* Bits in ctrl register */
  #define TAR	1		/* transfer access request */
  #define DTB	2		/* data to bus */
  #define CRE	4		/* command response expected */
  #define ADB_RST	8		/* ADB reset */
  
  /* Bits in autopoll register */
  #define APE	1		/* autopoll enable */
  
  static volatile struct adb_regs __iomem *adb;
  static struct adb_request *current_req, *last_req;
  static DEFINE_SPINLOCK(macio_lock);
  
  static int macio_probe(void);
  static int macio_init(void);
7d12e780e   David Howells   IRQ: Maintain reg...
66
  static irqreturn_t macio_adb_interrupt(int irq, void *arg);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  static int macio_send_request(struct adb_request *req, int sync);
  static int macio_adb_autopoll(int devs);
  static void macio_adb_poll(void);
  static int macio_adb_reset_bus(void);
  
  struct adb_driver macio_adb_driver = {
  	"MACIO",
  	macio_probe,
  	macio_init,
  	macio_send_request,
  	/*macio_write,*/
  	macio_adb_autopoll,
  	macio_adb_poll,
  	macio_adb_reset_bus
  };
  
  int macio_probe(void)
  {
4bf56e172   Stephen Rothwell   [POWERPC] Remove ...
85
86
87
88
89
90
91
92
  	struct device_node *np;
  
  	np = of_find_compatible_node(NULL, "adb", "chrp,adb0");
  	if (np) {
  		of_node_put(np);
  		return 0;
  	}
  	return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
93
94
95
96
97
  }
  
  int macio_init(void)
  {
  	struct device_node *adbs;
36874579d   David Woodhouse   [PATCH] powerpc: ...
98
  	struct resource r;
0ebfff149   Benjamin Herrenschmidt   [POWERPC] Add new...
99
  	unsigned int irq;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
100

4bf56e172   Stephen Rothwell   [POWERPC] Remove ...
101
  	adbs = of_find_compatible_node(NULL, "adb", "chrp,adb0");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
102
103
  	if (adbs == 0)
  		return -ENXIO;
4bf56e172   Stephen Rothwell   [POWERPC] Remove ...
104
105
  	if (of_address_to_resource(adbs, 0, &r)) {
  		of_node_put(adbs);
36874579d   David Woodhouse   [PATCH] powerpc: ...
106
  		return -ENXIO;
4bf56e172   Stephen Rothwell   [POWERPC] Remove ...
107
  	}
36874579d   David Woodhouse   [PATCH] powerpc: ...
108
  	adb = ioremap(r.start, sizeof(struct adb_regs));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
109
110
111
112
113
114
115
  
  	out_8(&adb->ctrl.r, 0);
  	out_8(&adb->intr.r, 0);
  	out_8(&adb->error.r, 0);
  	out_8(&adb->active_hi.r, 0xff); /* for now, set all devices active */
  	out_8(&adb->active_lo.r, 0xff);
  	out_8(&adb->autopoll.r, APE);
0ebfff149   Benjamin Herrenschmidt   [POWERPC] Add new...
116
  	irq = irq_of_parse_and_map(adbs, 0);
4bf56e172   Stephen Rothwell   [POWERPC] Remove ...
117
  	of_node_put(adbs);
0ebfff149   Benjamin Herrenschmidt   [POWERPC] Add new...
118
119
120
  	if (request_irq(irq, macio_adb_interrupt, 0, "ADB", (void *)0)) {
  		printk(KERN_ERR "ADB: can't get irq %d
  ", irq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
  		return -EAGAIN;
  	}
  	out_8(&adb->intr_enb.r, DFB | TAG);
  
  	printk("adb: mac-io driver 1.0 for unified ADB
  ");
  
  	return 0;
  }
  
  static int macio_adb_autopoll(int devs)
  {
  	unsigned long flags;
  	
  	spin_lock_irqsave(&macio_lock, flags);
  	out_8(&adb->active_hi.r, devs >> 8);
  	out_8(&adb->active_lo.r, devs);
  	out_8(&adb->autopoll.r, devs? APE: 0);
  	spin_unlock_irqrestore(&macio_lock, flags);
  	return 0;
  }
  
  static int macio_adb_reset_bus(void)
  {
  	unsigned long flags;
  	int timeout = 1000000;
  
  	/* Hrm... we may want to not lock interrupts for so
  	 * long ... oh well, who uses that chip anyway ? :)
25985edce   Lucas De Marchi   Fix common misspe...
150
  	 * That function will be seldom used during boot
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
151
152
153
154
155
156
157
  	 * on rare machines, so...
  	 */
  	spin_lock_irqsave(&macio_lock, flags);
  	out_8(&adb->ctrl.r, in_8(&adb->ctrl.r) | ADB_RST);
  	while ((in_8(&adb->ctrl.r) & ADB_RST) != 0) {
  		if (--timeout == 0) {
  			out_8(&adb->ctrl.r, in_8(&adb->ctrl.r) & ~ADB_RST);
86e4754ac   Julia Lawall   powerpc/pmac: Add...
158
  			spin_unlock_irqrestore(&macio_lock, flags);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
  			return -1;
  		}
  	}
  	spin_unlock_irqrestore(&macio_lock, flags);
  	return 0;
  }
  
  /* Send an ADB command */
  static int macio_send_request(struct adb_request *req, int sync)
  {
  	unsigned long flags;
  	int i;
  	
  	if (req->data[0] != ADB_PACKET)
  		return -EINVAL;
  	
  	for (i = 0; i < req->nbytes - 1; ++i)
  		req->data[i] = req->data[i+1];
  	--req->nbytes;
  	
  	req->next = NULL;
  	req->sent = 0;
  	req->complete = 0;
  	req->reply_len = 0;
  
  	spin_lock_irqsave(&macio_lock, flags);
  	if (current_req != 0) {
  		last_req->next = req;
  		last_req = req;
  	} else {
  		current_req = last_req = req;
  		out_8(&adb->ctrl.r, in_8(&adb->ctrl.r) | TAR);
  	}
  	spin_unlock_irqrestore(&macio_lock, flags);
  	
  	if (sync) {
  		while (!req->complete)
  			macio_adb_poll();
  	}
  
  	return 0;
  }
7d12e780e   David Howells   IRQ: Maintain reg...
201
  static irqreturn_t macio_adb_interrupt(int irq, void *arg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
  {
  	int i, n, err;
  	struct adb_request *req = NULL;
  	unsigned char ibuf[16];
  	int ibuf_len = 0;
  	int complete = 0;
  	int autopoll = 0;
  	int handled = 0;
  
  	spin_lock(&macio_lock);
  	if (in_8(&adb->intr.r) & TAG) {
  		handled = 1;
  		if ((req = current_req) != 0) {
  			/* put the current request in */
  			for (i = 0; i < req->nbytes; ++i)
  				out_8(&adb->data[i].r, req->data[i]);
  			out_8(&adb->dcount.r, req->nbytes & HMB);
  			req->sent = 1;
  			if (req->reply_expected) {
  				out_8(&adb->ctrl.r, DTB + CRE);
  			} else {
  				out_8(&adb->ctrl.r, DTB);
  				current_req = req->next;
  				complete = 1;
  				if (current_req)
  					out_8(&adb->ctrl.r, in_8(&adb->ctrl.r) | TAR);
  			}
  		}
  		out_8(&adb->intr.r, 0);
  	}
  
  	if (in_8(&adb->intr.r) & DFB) {
  		handled = 1;
  		err = in_8(&adb->error.r);
  		if (current_req && current_req->sent) {
  			/* this is the response to a command */
  			req = current_req;
  			if (err == 0) {
  				req->reply_len = in_8(&adb->dcount.r) & HMB;
  				for (i = 0; i < req->reply_len; ++i)
  					req->reply[i] = in_8(&adb->data[i].r);
  			}
  			current_req = req->next;
  			complete = 1;
  			if (current_req)
  				out_8(&adb->ctrl.r, in_8(&adb->ctrl.r) | TAR);
  		} else if (err == 0) {
  			/* autopoll data */
  			n = in_8(&adb->dcount.r) & HMB;
  			for (i = 0; i < n; ++i)
  				ibuf[i] = in_8(&adb->data[i].r);
  			ibuf_len = n;
  			autopoll = (in_8(&adb->dcount.r) & APD) != 0;
  		}
  		out_8(&adb->error.r, 0);
  		out_8(&adb->intr.r, 0);
  	}
  	spin_unlock(&macio_lock);
  	if (complete && req) {
  	    void (*done)(struct adb_request *) = req->done;
  	    mb();
  	    req->complete = 1;
  	    /* Here, we assume that if the request has a done member, the
      	     * struct request will survive to setting req->complete to 1
  	     */
  	    if (done)
  		(*done)(req);
  	}
  	if (ibuf_len)
7d12e780e   David Howells   IRQ: Maintain reg...
271
  		adb_input(ibuf, ibuf_len, autopoll);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
272
273
274
275
276
277
278
279
280
281
  
  	return IRQ_RETVAL(handled);
  }
  
  static void macio_adb_poll(void)
  {
  	unsigned long flags;
  
  	local_irq_save(flags);
  	if (in_8(&adb->intr.r) != 0)
9da3b1ad7   Al Viro   [PATCH] misc ppc ...
282
  		macio_adb_interrupt(0, NULL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
283
284
  	local_irq_restore(flags);
  }