1 // SPDX-License-Identifier: GPL-2.0-only
2 /* bbc_i2c.c: I2C low-level driver for BBC device on UltraSPARC-III
5 * Copyright (C) 2001, 2008 David S. Miller (davem@davemloft.net)
8 #include <linux/module.h>
9 #include <linux/kernel.h>
10 #include <linux/types.h>
11 #include <linux/slab.h>
12 #include <linux/sched.h>
13 #include <linux/wait.h>
14 #include <linux/delay.h>
15 #include <linux/interrupt.h>
17 #include <linux/of_platform.h>
18 #include <linux/platform_device.h>
24 /* Convert this driver to use i2c bus layer someday... */
25 #define I2C_PCF_PIN 0x80
26 #define I2C_PCF_ESO 0x40
27 #define I2C_PCF_ES1 0x20
28 #define I2C_PCF_ES2 0x10
29 #define I2C_PCF_ENI 0x08
30 #define I2C_PCF_STA 0x04
31 #define I2C_PCF_STO 0x02
32 #define I2C_PCF_ACK 0x01
34 #define I2C_PCF_START (I2C_PCF_PIN | I2C_PCF_ESO | I2C_PCF_ENI | I2C_PCF_STA | I2C_PCF_ACK)
35 #define I2C_PCF_STOP (I2C_PCF_PIN | I2C_PCF_ESO | I2C_PCF_STO | I2C_PCF_ACK)
36 #define I2C_PCF_REPSTART ( I2C_PCF_ESO | I2C_PCF_STA | I2C_PCF_ACK)
37 #define I2C_PCF_IDLE (I2C_PCF_PIN | I2C_PCF_ESO | I2C_PCF_ACK)
39 #define I2C_PCF_INI 0x40 /* 1 if not initialized */
40 #define I2C_PCF_STS 0x20
41 #define I2C_PCF_BER 0x10
42 #define I2C_PCF_AD0 0x08
43 #define I2C_PCF_LRB 0x08
44 #define I2C_PCF_AAS 0x04
45 #define I2C_PCF_LAB 0x02
46 #define I2C_PCF_BB 0x01
48 /* The BBC devices have two I2C controllers. The first I2C controller
49 * connects mainly to configuration proms (NVRAM, cpu configuration,
50 * dimm types, etc.). Whereas the second I2C controller connects to
51 * environmental control devices such as fans and temperature sensors.
52 * The second controller also connects to the smartcard reader, if present.
55 static void set_device_claimage(struct bbc_i2c_bus
*bp
, struct platform_device
*op
, int val
)
59 for (i
= 0; i
< NUM_CHILDREN
; i
++) {
60 if (bp
->devs
[i
].device
== op
) {
61 bp
->devs
[i
].client_claimed
= val
;
67 #define claim_device(BP,ECHILD) set_device_claimage(BP,ECHILD,1)
68 #define release_device(BP,ECHILD) set_device_claimage(BP,ECHILD,0)
70 struct platform_device
*bbc_i2c_getdev(struct bbc_i2c_bus
*bp
, int index
)
72 struct platform_device
*op
= NULL
;
75 for (i
= 0; i
< NUM_CHILDREN
; i
++) {
76 if (!(op
= bp
->devs
[i
].device
))
90 struct bbc_i2c_client
*bbc_i2c_attach(struct bbc_i2c_bus
*bp
, struct platform_device
*op
)
92 struct bbc_i2c_client
*client
;
95 client
= kzalloc(sizeof(*client
), GFP_KERNEL
);
101 reg
= of_get_property(op
->dev
.of_node
, "reg", NULL
);
107 client
->bus
= reg
[0];
108 client
->address
= reg
[1];
110 claim_device(bp
, op
);
115 void bbc_i2c_detach(struct bbc_i2c_client
*client
)
117 struct bbc_i2c_bus
*bp
= client
->bp
;
118 struct platform_device
*op
= client
->op
;
120 release_device(bp
, op
);
124 static int wait_for_pin(struct bbc_i2c_bus
*bp
, u8
*status
)
126 DECLARE_WAITQUEUE(wait
, current
);
131 add_wait_queue(&bp
->wq
, &wait
);
132 while (limit
-- > 0) {
135 val
= wait_event_interruptible_timeout(
137 (((*status
= readb(bp
->i2c_control_regs
+ 0))
138 & I2C_PCF_PIN
) == 0),
139 msecs_to_jiffies(250));
145 remove_wait_queue(&bp
->wq
, &wait
);
151 int bbc_i2c_writeb(struct bbc_i2c_client
*client
, unsigned char val
, int off
)
153 struct bbc_i2c_bus
*bp
= client
->bp
;
154 int address
= client
->address
;
158 if (bp
->i2c_bussel_reg
!= NULL
)
159 writeb(client
->bus
, bp
->i2c_bussel_reg
);
161 writeb(address
, bp
->i2c_control_regs
+ 0x1);
162 writeb(I2C_PCF_START
, bp
->i2c_control_regs
+ 0x0);
163 if (wait_for_pin(bp
, &status
))
166 writeb(off
, bp
->i2c_control_regs
+ 0x1);
167 if (wait_for_pin(bp
, &status
) ||
168 (status
& I2C_PCF_LRB
) != 0)
171 writeb(val
, bp
->i2c_control_regs
+ 0x1);
172 if (wait_for_pin(bp
, &status
))
178 writeb(I2C_PCF_STOP
, bp
->i2c_control_regs
+ 0x0);
182 int bbc_i2c_readb(struct bbc_i2c_client
*client
, unsigned char *byte
, int off
)
184 struct bbc_i2c_bus
*bp
= client
->bp
;
185 unsigned char address
= client
->address
, status
;
188 if (bp
->i2c_bussel_reg
!= NULL
)
189 writeb(client
->bus
, bp
->i2c_bussel_reg
);
191 writeb(address
, bp
->i2c_control_regs
+ 0x1);
192 writeb(I2C_PCF_START
, bp
->i2c_control_regs
+ 0x0);
193 if (wait_for_pin(bp
, &status
))
196 writeb(off
, bp
->i2c_control_regs
+ 0x1);
197 if (wait_for_pin(bp
, &status
) ||
198 (status
& I2C_PCF_LRB
) != 0)
201 writeb(I2C_PCF_STOP
, bp
->i2c_control_regs
+ 0x0);
203 address
|= 0x1; /* READ */
205 writeb(address
, bp
->i2c_control_regs
+ 0x1);
206 writeb(I2C_PCF_START
, bp
->i2c_control_regs
+ 0x0);
207 if (wait_for_pin(bp
, &status
))
210 /* Set PIN back to one so the device sends the first
213 (void) readb(bp
->i2c_control_regs
+ 0x1);
214 if (wait_for_pin(bp
, &status
))
217 writeb(I2C_PCF_ESO
| I2C_PCF_ENI
, bp
->i2c_control_regs
+ 0x0);
218 *byte
= readb(bp
->i2c_control_regs
+ 0x1);
219 if (wait_for_pin(bp
, &status
))
225 writeb(I2C_PCF_STOP
, bp
->i2c_control_regs
+ 0x0);
226 (void) readb(bp
->i2c_control_regs
+ 0x1);
231 int bbc_i2c_write_buf(struct bbc_i2c_client
*client
,
232 char *buf
, int len
, int off
)
237 ret
= bbc_i2c_writeb(client
, *buf
, off
);
247 int bbc_i2c_read_buf(struct bbc_i2c_client
*client
,
248 char *buf
, int len
, int off
)
253 ret
= bbc_i2c_readb(client
, buf
, off
);
264 EXPORT_SYMBOL(bbc_i2c_getdev
);
265 EXPORT_SYMBOL(bbc_i2c_attach
);
266 EXPORT_SYMBOL(bbc_i2c_detach
);
267 EXPORT_SYMBOL(bbc_i2c_writeb
);
268 EXPORT_SYMBOL(bbc_i2c_readb
);
269 EXPORT_SYMBOL(bbc_i2c_write_buf
);
270 EXPORT_SYMBOL(bbc_i2c_read_buf
);
272 static irqreturn_t
bbc_i2c_interrupt(int irq
, void *dev_id
)
274 struct bbc_i2c_bus
*bp
= dev_id
;
276 /* PIN going from set to clear is the only event which
277 * makes the i2c assert an interrupt.
280 !(readb(bp
->i2c_control_regs
+ 0x0) & I2C_PCF_PIN
))
281 wake_up_interruptible(&bp
->wq
);
286 static void reset_one_i2c(struct bbc_i2c_bus
*bp
)
288 writeb(I2C_PCF_PIN
, bp
->i2c_control_regs
+ 0x0);
289 writeb(bp
->own
, bp
->i2c_control_regs
+ 0x1);
290 writeb(I2C_PCF_PIN
| I2C_PCF_ES1
, bp
->i2c_control_regs
+ 0x0);
291 writeb(bp
->clock
, bp
->i2c_control_regs
+ 0x1);
292 writeb(I2C_PCF_IDLE
, bp
->i2c_control_regs
+ 0x0);
295 static struct bbc_i2c_bus
* attach_one_i2c(struct platform_device
*op
, int index
)
297 struct bbc_i2c_bus
*bp
;
298 struct device_node
*dp
;
301 bp
= kzalloc(sizeof(*bp
), GFP_KERNEL
);
305 INIT_LIST_HEAD(&bp
->temps
);
306 INIT_LIST_HEAD(&bp
->fans
);
308 bp
->i2c_control_regs
= of_ioremap(&op
->resource
[0], 0, 0x2, "bbc_i2c_regs");
309 if (!bp
->i2c_control_regs
)
312 if (op
->num_resources
== 2) {
313 bp
->i2c_bussel_reg
= of_ioremap(&op
->resource
[1], 0, 0x1, "bbc_i2c_bussel");
314 if (!bp
->i2c_bussel_reg
)
319 init_waitqueue_head(&bp
->wq
);
320 if (request_irq(op
->archdata
.irqs
[0], bbc_i2c_interrupt
,
321 IRQF_SHARED
, "bbc_i2c", bp
))
327 spin_lock_init(&bp
->lock
);
330 for (dp
= op
->dev
.of_node
->child
;
332 dp
= dp
->sibling
, entry
++) {
333 struct platform_device
*child_op
;
335 child_op
= of_find_device_by_node(dp
);
336 bp
->devs
[entry
].device
= child_op
;
337 bp
->devs
[entry
].client_claimed
= 0;
340 writeb(I2C_PCF_PIN
, bp
->i2c_control_regs
+ 0x0);
341 bp
->own
= readb(bp
->i2c_control_regs
+ 0x01);
342 writeb(I2C_PCF_PIN
| I2C_PCF_ES1
, bp
->i2c_control_regs
+ 0x0);
343 bp
->clock
= readb(bp
->i2c_control_regs
+ 0x01);
345 printk(KERN_INFO
"i2c-%d: Regs at %p, %d devices, own %02x, clock %02x.\n",
346 bp
->index
, bp
->i2c_control_regs
, entry
, bp
->own
, bp
->clock
);
353 if (bp
->i2c_bussel_reg
)
354 of_iounmap(&op
->resource
[1], bp
->i2c_bussel_reg
, 1);
355 if (bp
->i2c_control_regs
)
356 of_iounmap(&op
->resource
[0], bp
->i2c_control_regs
, 2);
361 static int bbc_i2c_probe(struct platform_device
*op
)
363 struct bbc_i2c_bus
*bp
;
366 bp
= attach_one_i2c(op
, index
);
370 err
= bbc_envctrl_init(bp
);
372 free_irq(op
->archdata
.irqs
[0], bp
);
373 if (bp
->i2c_bussel_reg
)
374 of_iounmap(&op
->resource
[0], bp
->i2c_bussel_reg
, 1);
375 if (bp
->i2c_control_regs
)
376 of_iounmap(&op
->resource
[1], bp
->i2c_control_regs
, 2);
379 dev_set_drvdata(&op
->dev
, bp
);
385 static void bbc_i2c_remove(struct platform_device
*op
)
387 struct bbc_i2c_bus
*bp
= dev_get_drvdata(&op
->dev
);
389 bbc_envctrl_cleanup(bp
);
391 free_irq(op
->archdata
.irqs
[0], bp
);
393 if (bp
->i2c_bussel_reg
)
394 of_iounmap(&op
->resource
[0], bp
->i2c_bussel_reg
, 1);
395 if (bp
->i2c_control_regs
)
396 of_iounmap(&op
->resource
[1], bp
->i2c_control_regs
, 2);
401 static const struct of_device_id bbc_i2c_match
[] = {
404 .compatible
= "SUNW,bbc-i2c",
408 MODULE_DEVICE_TABLE(of
, bbc_i2c_match
);
410 static struct platform_driver bbc_i2c_driver
= {
413 .of_match_table
= bbc_i2c_match
,
415 .probe
= bbc_i2c_probe
,
416 .remove_new
= bbc_i2c_remove
,
419 module_platform_driver(bbc_i2c_driver
);
421 MODULE_DESCRIPTION("UltraSPARC-III bootbus i2c controller driver");
422 MODULE_LICENSE("GPL");