Home | History | Annotate | Line # | Download | only in sunxi
sunxi_rsb.c revision 1.3
      1 /* $NetBSD: sunxi_rsb.c,v 1.3 2018/07/01 21:15:02 jmcneill Exp $ */
      2 
      3 /*-
      4  * Copyright (c) 2014-2017 Jared McNeill <jmcneill (at) invisible.ca>
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  *
     16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  * SUCH DAMAGE.
     27  */
     28 
     29 #include <sys/cdefs.h>
     30 __KERNEL_RCSID(0, "$NetBSD: sunxi_rsb.c,v 1.3 2018/07/01 21:15:02 jmcneill Exp $");
     31 
     32 #include <sys/param.h>
     33 #include <sys/bus.h>
     34 #include <sys/device.h>
     35 #include <sys/intr.h>
     36 #include <sys/systm.h>
     37 #include <sys/kernel.h>
     38 #include <sys/mutex.h>
     39 #include <sys/condvar.h>
     40 
     41 #include <dev/i2c/i2cvar.h>
     42 
     43 #include <dev/fdt/fdtvar.h>
     44 
     45 #include <arm/sunxi/sunxi_rsb.h>
     46 
     47 enum sunxi_rsb_type {
     48 	SUNXI_P2WI,
     49 	SUNXI_RSB,
     50 };
     51 
     52 static const struct of_compat_data compat_data[] = {
     53 	{ "allwinner,sun6i-a31-p2wi",	SUNXI_P2WI },
     54 	{ "allwinner,sun8i-a23-rsb",	SUNXI_RSB },
     55 	{ NULL }
     56 };
     57 
     58 #define RSB_ADDR_PMIC_PRIMARY	0x3a3
     59 #define RSB_ADDR_PMIC_SECONDARY	0x745
     60 #define RSB_ADDR_PERIPH_IC	0xe89
     61 
     62 /*
     63  * Device address to Run-time address mappings.
     64  *
     65  * Run-time address (RTA) is an 8-bit value used to address the device during
     66  * a read or write transaction. The following are valid RTAs:
     67  *  0x17 0x2d 0x3a 0x4e 0x59 0x63 0x74 0x8b 0x9c 0xa6 0xb1 0xc5 0xd2 0xe8 0xff
     68  *
     69  * Allwinner uses RTA 0x2d for the primary PMIC, 0x3a for the secondary PMIC,
     70  * and 0x4e for the peripheral IC (where applicable).
     71  */
     72 static const struct {
     73 	uint16_t        addr;
     74 	uint8_t         rta;
     75 } rsb_rtamap[] = {
     76 	{ .addr = RSB_ADDR_PMIC_PRIMARY,	.rta = 0x2d },
     77 	{ .addr = RSB_ADDR_PMIC_SECONDARY,	.rta = 0x3a },
     78 	{ .addr = RSB_ADDR_PERIPH_IC,		.rta = 0x4e },
     79 	{ .addr = 0,				.rta = 0 }
     80 };
     81 
     82 struct sunxi_rsb_softc {
     83 	device_t sc_dev;
     84 	bus_space_tag_t sc_bst;
     85 	bus_space_handle_t sc_bsh;
     86 	enum sunxi_rsb_type sc_type;
     87 	struct i2c_controller sc_ic;
     88 	kmutex_t sc_lock;
     89 	kcondvar_t sc_cv;
     90 	device_t sc_i2cdev;
     91 	void *sc_ih;
     92 	uint32_t sc_stat;
     93 
     94 	uint16_t sc_rsb_last_da;
     95 };
     96 
     97 #define RSB_READ(sc, reg) \
     98     bus_space_read_4((sc)->sc_bst, (sc)->sc_bsh, (reg))
     99 #define RSB_WRITE(sc, reg, val) \
    100     bus_space_write_4((sc)->sc_bst, (sc)->sc_bsh, (reg), (val))
    101 
    102 static int	sunxi_rsb_acquire_bus(void *, int);
    103 static void     sunxi_rsb_release_bus(void *, int);
    104 static int	sunxi_rsb_exec(void *, i2c_op_t, i2c_addr_t, const void *,
    105 			       size_t, void *, size_t, int);
    106 
    107 static int	sunxi_rsb_intr(void *);
    108 static int	sunxi_rsb_wait(struct sunxi_rsb_softc *, int);
    109 static int	sunxi_rsb_rsb_config(struct sunxi_rsb_softc *,
    110 				     uint8_t, i2c_addr_t, int);
    111 
    112 static int	sunxi_rsb_match(device_t, cfdata_t, void *);
    113 static void	sunxi_rsb_attach(device_t, device_t, void *);
    114 
    115 static i2c_tag_t
    116 sunxi_rsb_get_tag(device_t dev)
    117 {
    118 	struct sunxi_rsb_softc * const sc = device_private(dev);
    119 
    120 	return &sc->sc_ic;
    121 }
    122 
    123 static const struct fdtbus_i2c_controller_func sunxi_rsb_funcs = {
    124 	.get_tag = sunxi_rsb_get_tag,
    125 };
    126 
    127 CFATTACH_DECL_NEW(sunxi_rsb, sizeof(struct sunxi_rsb_softc),
    128 	sunxi_rsb_match, sunxi_rsb_attach, NULL, NULL);
    129 
    130 static int
    131 sunxi_rsb_match(device_t parent, cfdata_t cf, void *aux)
    132 {
    133 	struct fdt_attach_args * const faa = aux;
    134 
    135 	return of_match_compat_data(faa->faa_phandle, compat_data);
    136 }
    137 
    138 static void
    139 sunxi_rsb_attach(device_t parent, device_t self, void *aux)
    140 {
    141 	struct sunxi_rsb_softc * const sc = device_private(self);
    142 	struct fdt_attach_args * const faa = aux;
    143 	const int phandle = faa->faa_phandle;
    144 	struct fdtbus_reset *rst;
    145 	struct clk *clk;
    146 	char intrstr[128];
    147 	bus_addr_t addr;
    148 	bus_size_t size;
    149 
    150 	if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
    151 		aprint_error(": couldn't get registers\n");
    152 		return;
    153 	}
    154 
    155 	if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
    156 		aprint_error(": couldn't decode interrupt\n");
    157 		return;
    158 	}
    159 
    160 	if ((clk = fdtbus_clock_get_index(phandle, 0)) != NULL)
    161 		if (clk_enable(clk) != 0) {
    162 			aprint_error(": couldn't enable clock\n");
    163 			return;
    164 		}
    165 	if ((rst = fdtbus_reset_get_index(phandle, 0)) != NULL)
    166 		if (fdtbus_reset_deassert(rst) != 0) {
    167 			aprint_error(": couldn't de-assert reset\n");
    168 			return;
    169 		}
    170 
    171 	sc->sc_dev = self;
    172 	sc->sc_type = of_search_compatible(phandle, compat_data)->data;
    173 	sc->sc_bst = faa->faa_bst;
    174 	if (bus_space_map(sc->sc_bst, addr, size, 0, &sc->sc_bsh) != 0) {
    175 		aprint_error(": couldn't map registers\n");
    176 		return;
    177 	}
    178 
    179 	mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_SCHED);
    180 	cv_init(&sc->sc_cv, "awinp2wi");
    181 
    182 	aprint_naive("\n");
    183 	aprint_normal(": %s\n", sc->sc_type == SUNXI_P2WI ? "P2WI" : "RSB");
    184 
    185 	sc->sc_ih = fdtbus_intr_establish(phandle, 0, IPL_VM, 0,
    186 	    sunxi_rsb_intr, sc);
    187 	if (sc->sc_ih == NULL) {
    188 		aprint_error_dev(self, "couldn't establish interrupt on %s\n",
    189 		    intrstr);
    190 		return;
    191 	}
    192 	aprint_normal_dev(self, "interrupting on %s\n", intrstr);
    193 
    194 	/* Enable interrupts */
    195 	RSB_WRITE(sc, RSB_INTE_REG,
    196 	    RSB_INTE_LOAD_BSY_ENB |
    197 	    RSB_INTE_TRANS_ERR_ENB |
    198 	    RSB_INTE_TRANS_OVER_ENB);
    199 	RSB_WRITE(sc, RSB_CTRL_REG,
    200 	    RSB_CTRL_GLOBAL_INT_ENB);
    201 
    202 	sc->sc_ic.ic_cookie = sc;
    203 	sc->sc_ic.ic_acquire_bus = sunxi_rsb_acquire_bus;
    204 	sc->sc_ic.ic_release_bus = sunxi_rsb_release_bus;
    205 	sc->sc_ic.ic_exec = sunxi_rsb_exec;
    206 
    207 	fdtbus_register_i2c_controller(self, phandle, &sunxi_rsb_funcs);
    208 
    209 	fdtbus_attach_i2cbus(self, phandle, &sc->sc_ic, iicbus_print);
    210 }
    211 
    212 static int
    213 sunxi_rsb_intr(void *priv)
    214 {
    215 	struct sunxi_rsb_softc *sc = priv;
    216 	uint32_t stat;
    217 
    218 	stat = RSB_READ(sc, RSB_STAT_REG);
    219 	if ((stat & RSB_STAT_MASK) == 0)
    220 		return 0;
    221 
    222 	RSB_WRITE(sc, RSB_STAT_REG, stat & RSB_STAT_MASK);
    223 
    224 	mutex_enter(&sc->sc_lock);
    225 	sc->sc_stat |= stat;
    226 	cv_broadcast(&sc->sc_cv);
    227 	mutex_exit(&sc->sc_lock);
    228 
    229 	return 1;
    230 }
    231 
    232 static int
    233 sunxi_rsb_wait(struct sunxi_rsb_softc *sc, int flags)
    234 {
    235 	int error = 0, retry;
    236 
    237 	/* Wait up to 5 seconds for a transfer to complete */
    238 	sc->sc_stat = 0;
    239 	for (retry = (flags & I2C_F_POLL) ? 100 : 5; retry > 0; retry--) {
    240 		if (flags & I2C_F_POLL) {
    241 			sc->sc_stat |= RSB_READ(sc, RSB_STAT_REG);
    242 		} else {
    243 			error = cv_timedwait(&sc->sc_cv, &sc->sc_lock, hz);
    244 			if (error && error != EWOULDBLOCK) {
    245 				break;
    246 			}
    247 		}
    248 		if (sc->sc_stat & RSB_STAT_MASK) {
    249 			break;
    250 		}
    251 		if (flags & I2C_F_POLL) {
    252 			delay(10000);
    253 		}
    254 	}
    255 	if (retry == 0)
    256 		error = EAGAIN;
    257 
    258 	if (flags & I2C_F_POLL) {
    259 		RSB_WRITE(sc, RSB_STAT_REG,
    260 		    sc->sc_stat & RSB_STAT_MASK);
    261 	}
    262 
    263 	if (error) {
    264 		/* Abort transaction */
    265 		device_printf(sc->sc_dev, "transfer timeout, error = %d\n",
    266 		    error);
    267 		RSB_WRITE(sc, RSB_CTRL_REG,
    268 		    RSB_CTRL_ABORT_TRANS);
    269 		return error;
    270 	}
    271 
    272 	if (sc->sc_stat & RSB_STAT_LOAD_BSY) {
    273 		device_printf(sc->sc_dev, "transfer busy\n");
    274 		return EBUSY;
    275 	}
    276 	if (sc->sc_stat & RSB_STAT_TRANS_ERR) {
    277 		device_printf(sc->sc_dev, "transfer error, id 0x%02llx\n",
    278 		    __SHIFTOUT(sc->sc_stat, RSB_STAT_TRANS_ERR_ID));
    279 		return EIO;
    280 	}
    281 
    282 	return 0;
    283 }
    284 
    285 static int
    286 sunxi_rsb_rsb_config(struct sunxi_rsb_softc *sc, uint8_t rta, i2c_addr_t da,
    287     int flags)
    288 {
    289 	uint32_t dar, ctrl;
    290 
    291 	KASSERT(mutex_owned(&sc->sc_lock));
    292 
    293 	RSB_WRITE(sc, RSB_STAT_REG,
    294 	    RSB_READ(sc, RSB_STAT_REG) & RSB_STAT_MASK);
    295 
    296 	dar = __SHIFTIN(rta, RSB_DAR_RTA);
    297 	dar |= __SHIFTIN(da, RSB_DAR_DA);
    298 	RSB_WRITE(sc, RSB_DAR_REG, dar);
    299 	RSB_WRITE(sc, RSB_CMD_REG, RSB_CMD_IDX_SRTA);
    300 
    301 	/* Make sure the controller is idle */
    302 	ctrl = RSB_READ(sc, RSB_CTRL_REG);
    303 	if (ctrl & RSB_CTRL_START_TRANS) {
    304 		device_printf(sc->sc_dev, "device is busy\n");
    305 		return EBUSY;
    306 	}
    307 
    308 	/* Start the transfer */
    309 	RSB_WRITE(sc, RSB_CTRL_REG,
    310 	    ctrl | RSB_CTRL_START_TRANS);
    311 
    312 	return sunxi_rsb_wait(sc, flags);
    313 }
    314 
    315 static int
    316 sunxi_rsb_acquire_bus(void *priv, int flags)
    317 {
    318 	struct sunxi_rsb_softc *sc = priv;
    319 
    320 	if (flags & I2C_F_POLL) {
    321 		if (!mutex_tryenter(&sc->sc_lock))
    322 			return EBUSY;
    323 	} else {
    324 		mutex_enter(&sc->sc_lock);
    325 	}
    326 
    327 	return 0;
    328 }
    329 
    330 static void
    331 sunxi_rsb_release_bus(void *priv, int flags)
    332 {
    333 	struct sunxi_rsb_softc *sc = priv;
    334 
    335 	mutex_exit(&sc->sc_lock);
    336 }
    337 
    338 static int
    339 sunxi_rsb_exec(void *priv, i2c_op_t op, i2c_addr_t addr,
    340     const void *cmdbuf, size_t cmdlen, void *buf, size_t len, int flags)
    341 {
    342 	struct sunxi_rsb_softc *sc = priv;
    343 	uint32_t dlen, ctrl;
    344 	uint8_t rta;
    345 	int error, i;
    346 
    347 	KASSERT(mutex_owned(&sc->sc_lock));
    348 
    349 	if (cmdlen != 1 || (len != 1 && len != 2 && len != 4))
    350 		return EINVAL;
    351 
    352 	if (sc->sc_type == SUNXI_RSB && sc->sc_rsb_last_da != addr) {
    353 		/* Lookup run-time address for given device address */
    354 		for (rta = 0, i = 0; rsb_rtamap[i].rta != 0; i++)
    355 			if (rsb_rtamap[i].addr == addr) {
    356 				rta = rsb_rtamap[i].rta;
    357 				break;
    358 			}
    359 		if (rta == 0) {
    360 			device_printf(sc->sc_dev,
    361 			    "RTA not known for address %#x\n", addr);
    362 			return ENXIO;
    363 		}
    364 		error = sunxi_rsb_rsb_config(sc, rta, addr, flags);
    365 		if (error) {
    366 			device_printf(sc->sc_dev,
    367 			    "SRTA failed, flags = %x, error = %d\n",
    368 			    flags, error);
    369 			sc->sc_rsb_last_da = 0;
    370 			return error;
    371 		}
    372 
    373 		sc->sc_rsb_last_da = addr;
    374 	}
    375 
    376 	/* Data byte register */
    377 	RSB_WRITE(sc, RSB_DADDR0_REG, *(const uint8_t *)cmdbuf);
    378 
    379 	if (I2C_OP_WRITE_P(op)) {
    380 		uint8_t *pbuf = buf;
    381 		uint32_t data;
    382 		/* Write data */
    383 		switch (len) {
    384 		case 1:
    385 			data = pbuf[0];
    386 			break;
    387 		case 2:
    388 			data = pbuf[0] | (pbuf[1] << 8);
    389 			break;
    390 		case 4:
    391 			data = pbuf[0] | (pbuf[1] << 8) |
    392 			    (pbuf[2] << 16) | (pbuf[3] << 24);
    393 			break;
    394 		default:
    395 			return EINVAL;
    396 		}
    397 		RSB_WRITE(sc, RSB_DATA0_REG, data);
    398 	}
    399 
    400 	if (sc->sc_type == SUNXI_RSB) {
    401 		uint8_t cmd;
    402 		if (I2C_OP_WRITE_P(op)) {
    403 			switch (len) {
    404 			case 1:	cmd = RSB_CMD_IDX_WR8; break;
    405 			case 2: cmd = RSB_CMD_IDX_WR16; break;
    406 			case 4: cmd = RSB_CMD_IDX_WR32; break;
    407 			default: return EINVAL;
    408 			}
    409 		} else {
    410 			switch (len) {
    411 			case 1:	cmd = RSB_CMD_IDX_RD8; break;
    412 			case 2: cmd = RSB_CMD_IDX_RD16; break;
    413 			case 4: cmd = RSB_CMD_IDX_RD32; break;
    414 			default: return EINVAL;
    415 			}
    416 		}
    417 		RSB_WRITE(sc, RSB_CMD_REG, cmd);
    418 	}
    419 
    420 	/* Program data length register; if reading, set read/write bit */
    421 	dlen = __SHIFTIN(len - 1, RSB_DLEN_ACCESS_LENGTH);
    422 	if (I2C_OP_READ_P(op)) {
    423 		dlen |= RSB_DLEN_READ_WRITE_FLAG;
    424 	}
    425 	RSB_WRITE(sc, RSB_DLEN_REG, dlen);
    426 
    427 	/* Make sure the controller is idle */
    428 	ctrl = RSB_READ(sc, RSB_CTRL_REG);
    429 	if (ctrl & RSB_CTRL_START_TRANS) {
    430 		device_printf(sc->sc_dev, "device is busy\n");
    431 		return EBUSY;
    432 	}
    433 
    434 	/* Start the transfer */
    435 	RSB_WRITE(sc, RSB_CTRL_REG,
    436 	    ctrl | RSB_CTRL_START_TRANS);
    437 
    438 	error = sunxi_rsb_wait(sc, flags);
    439 	if (error) {
    440 		return error;
    441 	}
    442 
    443 	if (I2C_OP_READ_P(op)) {
    444 		uint32_t data = RSB_READ(sc, RSB_DATA0_REG);
    445 		switch (len) {
    446 		case 4:
    447 			*(uint32_t *)buf = data;
    448 			break;
    449 		case 2:
    450 			*(uint16_t *)buf = data & 0xffff;
    451 			break;
    452 		case 1:
    453 			*(uint8_t *)buf = data & 0xff;
    454 			break;
    455 		default:
    456 			return EINVAL;
    457 		}
    458 	}
    459 
    460 	return 0;
    461 }
    462