1 // SPDX-License-Identifier: GPL-2.0-only
3 * ARM IOC/IOMD i2c driver.
5 * Copyright (C) 2000 Russell King
7 * On Acorn machines, the following i2c devices are on the bus:
8 * - PCF8583 real time clock & static RAM
10 #include <linux/module.h>
11 #include <linux/i2c.h>
12 #include <linux/i2c-algo-bit.h>
15 #include <mach/hardware.h>
16 #include <asm/hardware/ioc.h>
18 #define FORCE_ONES 0xdc
23 * We must preserve all non-i2c output bits in IOC_CONTROL.
24 * Note also that we need to preserve the value of SCL and
25 * SDA outputs as well (which may be different from the
26 * values read back from IOC_CONTROL).
28 static u_int force_ones;
30 static void ioc_setscl(void *data, int state)
32 u_int ioc_control = ioc_readb(IOC_CONTROL) & ~(SCL | SDA);
33 u_int ones = force_ones;
42 ioc_writeb(ioc_control | ones, IOC_CONTROL);
45 static void ioc_setsda(void *data, int state)
47 u_int ioc_control = ioc_readb(IOC_CONTROL) & ~(SCL | SDA);
48 u_int ones = force_ones;
57 ioc_writeb(ioc_control | ones, IOC_CONTROL);
60 static int ioc_getscl(void *data)
62 return (ioc_readb(IOC_CONTROL) & SCL) != 0;
65 static int ioc_getsda(void *data)
67 return (ioc_readb(IOC_CONTROL) & SDA) != 0;
70 static struct i2c_algo_bit_data ioc_data = {
79 static struct i2c_adapter ioc_ops = {
82 .algo_data = &ioc_data,
85 static int __init i2c_ioc_init(void)
87 force_ones = FORCE_ONES | SCL | SDA;
89 return i2c_bit_add_numbered_bus(&ioc_ops);
92 module_init(i2c_ioc_init);
95 MODULE_DESCRIPTION("ARM IOC/IOMD i2c driver");
96 MODULE_LICENSE("GPL v2");