Home | History | Annotate | Line # | Download | only in dev
augpio.c revision 1.7.6.1
      1  1.7.6.1  jdolecek /* $NetBSD: augpio.c,v 1.7.6.1 2017/12/03 11:36:26 jdolecek Exp $ */
      2      1.1   gdamore 
      3      1.1   gdamore /*-
      4      1.1   gdamore  * Copyright (c) 2006 Itronix Inc.
      5      1.1   gdamore  * All rights reserved.
      6      1.1   gdamore  *
      7      1.1   gdamore  * Written by Garrett D'Amore for Itronix Inc.
      8      1.1   gdamore  *
      9      1.1   gdamore  * Redistribution and use in source and binary forms, with or without
     10      1.1   gdamore  * modification, are permitted provided that the following conditions
     11      1.1   gdamore  * are met:
     12      1.1   gdamore  * 1. Redistributions of source code must retain the above copyright
     13      1.1   gdamore  *    notice, this list of conditions and the following disclaimer.
     14      1.1   gdamore  * 2. Redistributions in binary form must reproduce the above copyright
     15      1.1   gdamore  *    notice, this list of conditions and the following disclaimer in the
     16      1.1   gdamore  *    documentation and/or other materials provided with the distribution.
     17      1.1   gdamore  * 3. The name of Itronix Inc. may not be used to endorse
     18      1.1   gdamore  *    or promote products derived from this software without specific
     19      1.1   gdamore  *    prior written permission.
     20      1.1   gdamore  *
     21      1.1   gdamore  * THIS SOFTWARE IS PROVIDED BY ITRONIX INC. ``AS IS'' AND
     22      1.1   gdamore  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     23      1.1   gdamore  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24      1.1   gdamore  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
     25      1.1   gdamore  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     26      1.1   gdamore  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     27      1.1   gdamore  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
     28      1.1   gdamore  * ON ANY THEORY OF LIABILITY, WHETHER IN
     29      1.1   gdamore  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30      1.1   gdamore  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31      1.1   gdamore  * POSSIBILITY OF SUCH DAMAGE.
     32      1.1   gdamore  */
     33      1.1   gdamore 
     34      1.1   gdamore #include <sys/cdefs.h>
     35  1.7.6.1  jdolecek __KERNEL_RCSID(0, "$NetBSD: augpio.c,v 1.7.6.1 2017/12/03 11:36:26 jdolecek Exp $");
     36      1.1   gdamore 
     37      1.1   gdamore #include <sys/types.h>
     38      1.1   gdamore #include <sys/param.h>
     39      1.1   gdamore #include <sys/systm.h>
     40      1.1   gdamore #include <sys/errno.h>
     41      1.1   gdamore #include <sys/device.h>
     42      1.1   gdamore #include <sys/gpio.h>
     43      1.1   gdamore #include <sys/kernel.h>
     44  1.7.6.1  jdolecek #include <sys/bus.h>
     45      1.1   gdamore 
     46      1.1   gdamore #include <dev/gpio/gpiovar.h>
     47      1.1   gdamore 
     48  1.7.6.1  jdolecek #include <mips/locore.h>
     49      1.1   gdamore 
     50      1.1   gdamore #include <mips/alchemy/include/aubusvar.h>
     51      1.1   gdamore #include <mips/alchemy/include/aureg.h>
     52      1.1   gdamore #include <mips/alchemy/dev/augpioreg.h>
     53      1.4   gdamore #include <mips/alchemy/dev/augpiovar.h>
     54      1.1   gdamore 
     55      1.1   gdamore struct augpio_softc {
     56      1.7  kiyohara 	device_t			sc_dev;
     57      1.1   gdamore 	struct gpio_chipset_tag		sc_gc;
     58      1.1   gdamore 	gpio_pin_t			sc_pins[AUGPIO_NPINS];
     59      1.1   gdamore 	int				sc_npins;
     60      1.3   gdamore 	bus_space_tag_t			sc_bst;
     61      1.3   gdamore 	int				sc_caps;
     62      1.3   gdamore 	const char 			*sc_name;
     63      1.3   gdamore 	int				(*sc_getctl)(void *, int);
     64      1.1   gdamore };
     65      1.1   gdamore 
     66      1.7  kiyohara static int augpio_match(device_t, struct cfdata *, void *);
     67      1.7  kiyohara static void augpio_attach(device_t, device_t, void *);
     68      1.1   gdamore 
     69      1.7  kiyohara CFATTACH_DECL_NEW(augpio, sizeof(struct augpio_softc),
     70      1.1   gdamore     augpio_match, augpio_attach, NULL, NULL);
     71      1.1   gdamore 
     72      1.1   gdamore #define	GETREG(x)	\
     73      1.1   gdamore 	(*(volatile uint32_t *)MIPS_PHYS_TO_KSEG1(x))
     74      1.1   gdamore #define	PUTREG(x, v)	\
     75      1.1   gdamore 	((*(volatile uint32_t *)MIPS_PHYS_TO_KSEG1(x)) = (v))
     76      1.1   gdamore 
     77      1.4   gdamore #define	GETGPIO(x)	GETREG(GPIO_BASE + (x))
     78      1.4   gdamore #define	PUTGPIO(x,v)	PUTREG(GPIO_BASE + (x), (v))
     79      1.4   gdamore #define	GETGPIO2(x)	GETREG(GPIO2_BASE + (x))
     80      1.4   gdamore #define	PUTGPIO2(x,v)	PUTREG(GPIO2_BASE + (x), (v))
     81      1.4   gdamore 
     82      1.1   gdamore int
     83      1.7  kiyohara augpio_match(device_t parent, struct cfdata *match, void *aux)
     84      1.1   gdamore {
     85      1.1   gdamore 	struct aubus_attach_args *aa = (struct aubus_attach_args *)aux;
     86      1.1   gdamore 
     87      1.1   gdamore 	if (strcmp(aa->aa_name, "augpio") != 0)
     88      1.1   gdamore 		return 0;
     89      1.1   gdamore 
     90      1.1   gdamore 	return 1;
     91      1.1   gdamore }
     92      1.1   gdamore 
     93      1.1   gdamore void
     94      1.7  kiyohara augpio_attach(device_t parent, device_t self, void *aux)
     95      1.1   gdamore {
     96      1.1   gdamore 	int	pin;
     97      1.1   gdamore 
     98      1.7  kiyohara 	struct augpio_softc *sc = device_private(self);
     99      1.1   gdamore 	struct aubus_attach_args *aa = aux;
    100      1.1   gdamore 	struct gpiobus_attach_args gba;
    101      1.1   gdamore 
    102      1.7  kiyohara 	sc->sc_dev = self;
    103      1.3   gdamore 	sc->sc_bst = aa->aa_st;
    104      1.3   gdamore 	sc->sc_npins = aa->aa_addrs[1];
    105      1.3   gdamore 	sc->sc_gc.gp_cookie = sc;
    106      1.1   gdamore 
    107      1.3   gdamore 	if (aa->aa_addrs[0] == GPIO_BASE) {
    108      1.2   gdamore 
    109      1.3   gdamore 		sc->sc_caps = GPIO_PIN_INPUT | GPIO_PIN_OUTPUT |
    110      1.3   gdamore 		    GPIO_PIN_TRISTATE;
    111      1.3   gdamore 		sc->sc_gc.gp_pin_read = augpio_read;
    112      1.3   gdamore 		sc->sc_gc.gp_pin_write = augpio_write;
    113      1.3   gdamore 		sc->sc_gc.gp_pin_ctl = augpio_ctl;
    114      1.3   gdamore 		sc->sc_getctl = augpio_getctl;
    115      1.3   gdamore 		sc->sc_name = "primary block";
    116      1.1   gdamore 
    117      1.1   gdamore 	} else if (aa->aa_addrs[0] == GPIO2_BASE) {
    118      1.2   gdamore 		/*
    119      1.2   gdamore 		 * We rely on firmware (or platform init code) to initialize
    120      1.2   gdamore 		 * the GPIO2 block.  We can't do it ourselves, because
    121      1.2   gdamore 		 * resetting the GPIO2 block can have nasty effects (e.g.
    122      1.2   gdamore 		 * reset PCI bus...)
    123      1.2   gdamore 		 */
    124      1.3   gdamore 		sc->sc_caps = GPIO_PIN_INPUT | GPIO_PIN_OUTPUT;
    125      1.3   gdamore 		sc->sc_gc.gp_pin_read = augpio2_read;
    126      1.3   gdamore 		sc->sc_gc.gp_pin_write = augpio2_write;
    127      1.3   gdamore 		sc->sc_gc.gp_pin_ctl = augpio2_ctl;
    128      1.3   gdamore 		sc->sc_getctl = augpio2_getctl;
    129      1.3   gdamore 		sc->sc_name = "secondary block";
    130      1.1   gdamore 
    131      1.1   gdamore 	} else {
    132      1.7  kiyohara 		aprint_error(": unidentified block\n");
    133      1.3   gdamore 		return;
    134      1.1   gdamore 	}
    135      1.1   gdamore 
    136      1.3   gdamore 	for (pin = 0; pin < sc->sc_npins; pin++) {
    137      1.3   gdamore 		gpio_pin_t	*pp = &sc->sc_pins[pin];
    138      1.3   gdamore 
    139      1.3   gdamore 		pp->pin_num = pin;
    140      1.3   gdamore 		pp->pin_caps = sc->sc_caps;
    141      1.3   gdamore 		pp->pin_flags = sc->sc_getctl(sc, pin);
    142      1.3   gdamore 		pp->pin_state = sc->sc_gc.gp_pin_read(sc, pin);
    143      1.3   gdamore 	}
    144      1.1   gdamore 
    145      1.1   gdamore 	gba.gba_gc = &sc->sc_gc;
    146      1.1   gdamore 	gba.gba_pins = sc->sc_pins;
    147      1.1   gdamore 	gba.gba_npins = sc->sc_npins;
    148      1.1   gdamore 
    149      1.7  kiyohara 	aprint_normal(": Alchemy GPIO, %s\n", sc->sc_name);
    150      1.7  kiyohara 	aprint_naive("\n");
    151      1.7  kiyohara 	config_found_ia(self, "gpiobus", &gba, gpiobus_print);
    152      1.1   gdamore }
    153      1.1   gdamore 
    154      1.1   gdamore int
    155      1.3   gdamore augpio_read(void *arg, int pin)
    156      1.1   gdamore {
    157      1.1   gdamore 
    158      1.3   gdamore 	pin = 1 << pin;
    159      1.1   gdamore 
    160      1.4   gdamore 	if (GETGPIO(AUGPIO_PINSTATERD) & pin)
    161      1.3   gdamore 		return GPIO_PIN_HIGH;
    162      1.1   gdamore 	else
    163      1.3   gdamore 		return GPIO_PIN_LOW;
    164      1.1   gdamore }
    165      1.1   gdamore 
    166      1.1   gdamore void
    167      1.3   gdamore augpio_write(void *arg, int pin, int value)
    168      1.1   gdamore {
    169      1.1   gdamore 
    170      1.1   gdamore 	pin = 1 << pin;
    171      1.4   gdamore 	PUTGPIO(value ? AUGPIO_OUTPUTSET : AUGPIO_OUTPUTCLR, pin);
    172      1.1   gdamore }
    173      1.1   gdamore 
    174      1.1   gdamore void
    175      1.3   gdamore augpio_ctl(void *arg, int pin, int flags)
    176      1.1   gdamore {
    177      1.3   gdamore 	bus_addr_t		reg;
    178      1.1   gdamore 
    179      1.1   gdamore 	pin = 1 << pin;
    180      1.3   gdamore 
    181      1.3   gdamore 	if (flags & (GPIO_PIN_TRISTATE|GPIO_PIN_INPUT)) {
    182      1.3   gdamore 		reg = AUGPIO_TRIOUTCLR;
    183      1.3   gdamore 	} else if (flags & GPIO_PIN_OUTPUT) {
    184      1.3   gdamore 		uint32_t		out;
    185      1.4   gdamore 		out = GETGPIO(AUGPIO_OUTPUTRD);
    186      1.3   gdamore 		reg = pin & out ? AUGPIO_OUTPUTSET : AUGPIO_OUTPUTCLR;
    187      1.1   gdamore 	} else {
    188      1.3   gdamore 		return;
    189      1.1   gdamore 	}
    190      1.3   gdamore 
    191      1.4   gdamore 	PUTGPIO(reg, pin);
    192      1.1   gdamore }
    193      1.1   gdamore 
    194      1.1   gdamore int
    195      1.3   gdamore augpio_getctl(void *arg, int pin)
    196      1.1   gdamore {
    197      1.1   gdamore 
    198      1.4   gdamore 	if (GETGPIO(AUGPIO_TRIOUTRD) & pin)
    199      1.3   gdamore 		return GPIO_PIN_OUTPUT;
    200      1.3   gdamore 	else
    201      1.3   gdamore 		return GPIO_PIN_INPUT;
    202      1.1   gdamore }
    203      1.1   gdamore 
    204      1.1   gdamore int
    205      1.3   gdamore augpio2_read(void *arg, int pin)
    206      1.1   gdamore {
    207      1.1   gdamore 
    208      1.1   gdamore 	pin = 1 << pin;
    209      1.3   gdamore 
    210      1.4   gdamore 	if (GETGPIO2(AUGPIO2_PINSTATE) & pin)
    211      1.3   gdamore 		return GPIO_PIN_HIGH;
    212      1.3   gdamore 	else
    213      1.3   gdamore 		return GPIO_PIN_LOW;
    214      1.1   gdamore }
    215      1.1   gdamore 
    216      1.1   gdamore void
    217      1.3   gdamore augpio2_write(void *arg, int pin, int value)
    218      1.1   gdamore {
    219      1.1   gdamore 
    220      1.1   gdamore 	pin = 1 << pin;
    221      1.1   gdamore 
    222      1.1   gdamore 	if (value) {
    223      1.3   gdamore 		pin = pin | (pin << 16);
    224      1.1   gdamore 	} else {
    225      1.3   gdamore 		pin = (pin << 16);
    226      1.1   gdamore 	}
    227      1.3   gdamore 
    228      1.4   gdamore 	PUTGPIO2(AUGPIO2_OUTPUT, pin);
    229      1.1   gdamore }
    230      1.1   gdamore 
    231      1.3   gdamore void
    232      1.3   gdamore augpio2_ctl(void *arg, int pin, int flags)
    233      1.1   gdamore {
    234      1.1   gdamore 	uint32_t		dir;
    235      1.1   gdamore 
    236      1.1   gdamore 	pin = 1 << pin;
    237      1.1   gdamore 
    238      1.4   gdamore 	dir = GETGPIO2(AUGPIO2_DIR);
    239      1.1   gdamore 
    240      1.1   gdamore 	if (flags & GPIO_PIN_INPUT) {
    241      1.1   gdamore 		dir |= pin;
    242      1.1   gdamore 	} else if (flags & GPIO_PIN_OUTPUT) {
    243      1.1   gdamore 		dir &= ~pin;
    244      1.1   gdamore 	}
    245      1.4   gdamore 	PUTGPIO2(AUGPIO2_DIR, dir);
    246      1.3   gdamore }
    247      1.1   gdamore 
    248      1.3   gdamore int
    249      1.3   gdamore augpio2_getctl(void *arg, int pin)
    250      1.3   gdamore {
    251      1.3   gdamore 	uint32_t		dir;
    252      1.3   gdamore 
    253      1.3   gdamore 	pin = 1 << pin;
    254      1.3   gdamore 
    255      1.4   gdamore 	dir = GETGPIO2(AUGPIO2_DIR);
    256      1.3   gdamore 	if (dir & (uint32_t)pin) {
    257      1.3   gdamore 		return GPIO_PIN_OUTPUT;
    258      1.3   gdamore 	} else {
    259      1.3   gdamore 		return GPIO_PIN_INPUT;
    260      1.3   gdamore 	}
    261      1.1   gdamore }
    262      1.3   gdamore 
    263