Deleted Added
full compact
rk30xx_gpio.c (273799) rk30xx_gpio.c (274670)
1/*-
2 * Copyright (c) 2013 Ganbold Tsagaankhuu <ganbold@freebsd.org>
3 * Copyright (c) 2012 Oleksandr Tymoshenko <gonzo@freebsd.org>
4 * Copyright (c) 2012 Luiz Otavio O Souza.
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

--- 13 unchanged lines hidden (view full) ---

22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, 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>
1/*-
2 * Copyright (c) 2013 Ganbold Tsagaankhuu <ganbold@freebsd.org>
3 * Copyright (c) 2012 Oleksandr Tymoshenko <gonzo@freebsd.org>
4 * Copyright (c) 2012 Luiz Otavio O Souza.
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

--- 13 unchanged lines hidden (view full) ---

22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, 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__FBSDID("$FreeBSD: head/sys/arm/rockchip/rk30xx_gpio.c 273799 2014-10-28 18:33:59Z loos $");
30__FBSDID("$FreeBSD: head/sys/arm/rockchip/rk30xx_gpio.c 274670 2014-11-18 17:22:08Z loos $");
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/bus.h>
35
36#include <sys/kernel.h>
37#include <sys/module.h>
38#include <sys/rman.h>

--- 274 unchanged lines hidden (view full) ---

313 for (i = 0; i < sc->sc_gpio_npins; i++) {
314 if (sc->sc_gpio_pins[i].gp_pin == pin)
315 break;
316 }
317
318 if (i >= sc->sc_gpio_npins)
319 return (EINVAL);
320
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/bus.h>
35
36#include <sys/kernel.h>
37#include <sys/module.h>
38#include <sys/rman.h>

--- 274 unchanged lines hidden (view full) ---

313 for (i = 0; i < sc->sc_gpio_npins; i++) {
314 if (sc->sc_gpio_pins[i].gp_pin == pin)
315 break;
316 }
317
318 if (i >= sc->sc_gpio_npins)
319 return (EINVAL);
320
321 /* Check for unwanted flags. */
322 if ((flags & sc->sc_gpio_pins[i].gp_caps) != flags)
323 return (EINVAL);
324
325 /* Can't mix input/output together. */
326 if ((flags & (GPIO_PIN_INPUT|GPIO_PIN_OUTPUT)) ==
327 (GPIO_PIN_INPUT|GPIO_PIN_OUTPUT))
328 return (EINVAL);
329
330 /* Can't mix pull-up/pull-down together. */
331 if ((flags & (GPIO_PIN_PULLUP|GPIO_PIN_PULLDOWN)) ==
332 (GPIO_PIN_PULLUP|GPIO_PIN_PULLDOWN))
333 return (EINVAL);
334
335 rk30_gpio_pin_configure(sc, &sc->sc_gpio_pins[i], flags);
336
337 return (0);
338}
339
340static int
341rk30_gpio_pin_set(device_t dev, uint32_t pin, unsigned int value)
342{

--- 334 unchanged lines hidden ---
321 rk30_gpio_pin_configure(sc, &sc->sc_gpio_pins[i], flags);
322
323 return (0);
324}
325
326static int
327rk30_gpio_pin_set(device_t dev, uint32_t pin, unsigned int value)
328{

--- 334 unchanged lines hidden ---