Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/evbarm/netwalker Fix build



details:   https://anonhg.NetBSD.org/src/rev/4c7d5f2def7f
branches:  trunk
changeset: 467149:4c7d5f2def7f
user:      skrll <skrll%NetBSD.org@localhost>
date:      Wed Jan 15 10:25:47 2020 +0000

description:
Fix build

diffstat:

 sys/arch/evbarm/netwalker/netwalker_lcd.c |  20 +++++++-------
 sys/arch/evbarm/netwalker/netwalker_spi.c |  44 +++++++++++++++---------------
 sys/arch/evbarm/netwalker/netwalker_usb.c |  22 +++++++-------
 3 files changed, 43 insertions(+), 43 deletions(-)

diffs (191 lines):

diff -r 968678b68d20 -r 4c7d5f2def7f sys/arch/evbarm/netwalker/netwalker_lcd.c
--- a/sys/arch/evbarm/netwalker/netwalker_lcd.c Wed Jan 15 09:21:21 2020 +0000
+++ b/sys/arch/evbarm/netwalker/netwalker_lcd.c Wed Jan 15 10:25:47 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netwalker_lcd.c,v 1.6 2019/07/24 12:33:18 hkenken Exp $        */
+/*     $NetBSD: netwalker_lcd.c,v 1.7 2020/01/15 10:25:47 skrll Exp $  */
 
 /*-
  * Copyright (c) 2011, 2012 Genetec corp. All rights reserved.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netwalker_lcd.c,v 1.6 2019/07/24 12:33:18 hkenken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netwalker_lcd.c,v 1.7 2020/01/15 10:25:47 skrll Exp $");
 
 #include "opt_imx51_ipuv3.h"
 #include "opt_netwalker_lcd.h"
@@ -143,17 +143,17 @@
        }
 
        /* LCD power on */
-       gpio_set_direction(GPIO_NO(4, 9), GPIO_PIN_OUTPUT);
-       gpio_set_direction(GPIO_NO(4, 10), GPIO_PIN_OUTPUT);
-       gpio_set_direction(GPIO_NO(3, 3), GPIO_PIN_OUTPUT);
+       imxgpio_set_direction(GPIO_NO(4, 9), GPIO_PIN_OUTPUT);
+       imxgpio_set_direction(GPIO_NO(4, 10), GPIO_PIN_OUTPUT);
+       imxgpio_set_direction(GPIO_NO(3, 3), GPIO_PIN_OUTPUT);
 
-       gpio_data_write(GPIO_NO(3, 3), GPIO_PIN_HIGH);
-       gpio_data_write(GPIO_NO(4, 9), GPIO_PIN_HIGH);
+       imxgpio_data_write(GPIO_NO(3, 3), GPIO_PIN_HIGH);
+       imxgpio_data_write(GPIO_NO(4, 9), GPIO_PIN_HIGH);
        delay(180 * 1000);
-       gpio_data_write(GPIO_NO(4, 10), GPIO_PIN_HIGH);
+       imxgpio_data_write(GPIO_NO(4, 10), GPIO_PIN_HIGH);
 
-       gpio_set_direction(GPIO_NO(2, 13), GPIO_PIN_OUTPUT);
-       gpio_data_write(GPIO_NO(2, 13), GPIO_PIN_HIGH);
+       imxgpio_set_direction(GPIO_NO(2, 13), GPIO_PIN_OUTPUT);
+       imxgpio_data_write(GPIO_NO(2, 13), GPIO_PIN_HIGH);
 
        imx51_ipuv3_attach_sub(sc, aux, &sharp_panel);
 
diff -r 968678b68d20 -r 4c7d5f2def7f sys/arch/evbarm/netwalker/netwalker_spi.c
--- a/sys/arch/evbarm/netwalker/netwalker_spi.c Wed Jan 15 09:21:21 2020 +0000
+++ b/sys/arch/evbarm/netwalker/netwalker_spi.c Wed Jan 15 10:25:47 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netwalker_spi.c,v 1.3 2019/08/19 11:41:36 hkenken Exp $        */
+/*     $NetBSD: netwalker_spi.c,v 1.4 2020/01/15 10:25:47 skrll Exp $  */
 
 /*-
  * Copyright (c) 2009  Genetec Corporation.  All rights reserved.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netwalker_spi.c,v 1.3 2019/08/19 11:41:36 hkenken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netwalker_spi.c,v 1.4 2020/01/15 10:25:47 skrll Exp $");
 
 #include "opt_imxspi.h"
 
@@ -61,16 +61,16 @@
 {
        switch (slave) {
        case 0:
-               gpio_data_write(GPIO_NO(4, 24), GPIO_PIN_LOW);
-               gpio_set_direction(GPIO_NO(4, 24), GPIO_PIN_OUTPUT);
+               imxgpio_data_write(GPIO_NO(4, 24), GPIO_PIN_LOW);
+               imxgpio_set_direction(GPIO_NO(4, 24), GPIO_PIN_OUTPUT);
                break;
        case 1:
-               gpio_data_write(GPIO_NO(4, 25), GPIO_PIN_LOW);
-               gpio_set_direction(GPIO_NO(4, 25), GPIO_PIN_OUTPUT);
+               imxgpio_data_write(GPIO_NO(4, 25), GPIO_PIN_LOW);
+               imxgpio_set_direction(GPIO_NO(4, 25), GPIO_PIN_OUTPUT);
                break;
        case 2:
-               gpio_data_write(GPIO_NO(3, 0), GPIO_PIN_LOW);
-               gpio_set_direction(GPIO_NO(3, 0), GPIO_PIN_OUTPUT);
+               imxgpio_data_write(GPIO_NO(3, 0), GPIO_PIN_LOW);
+               imxgpio_set_direction(GPIO_NO(3, 0), GPIO_PIN_OUTPUT);
                break;
        }
 
@@ -82,16 +82,16 @@
 {
        switch (slave) {
        case 0:
-               gpio_data_write(GPIO_NO(4, 24), GPIO_PIN_HIGH);
-               gpio_set_direction(GPIO_NO(4, 24), GPIO_PIN_INPUT);
+               imxgpio_data_write(GPIO_NO(4, 24), GPIO_PIN_HIGH);
+               imxgpio_set_direction(GPIO_NO(4, 24), GPIO_PIN_INPUT);
                break;
        case 1:
-               gpio_data_write(GPIO_NO(4, 25), GPIO_PIN_HIGH);
-               gpio_set_direction(GPIO_NO(4, 25), GPIO_PIN_INPUT);
+               imxgpio_data_write(GPIO_NO(4, 25), GPIO_PIN_HIGH);
+               imxgpio_set_direction(GPIO_NO(4, 25), GPIO_PIN_INPUT);
                break;
        case 2:
-               gpio_data_write(GPIO_NO(3, 0), GPIO_PIN_HIGH);
-               gpio_set_direction(GPIO_NO(3, 0), GPIO_PIN_INPUT);
+               imxgpio_data_write(GPIO_NO(3, 0), GPIO_PIN_HIGH);
+               imxgpio_set_direction(GPIO_NO(3, 0), GPIO_PIN_INPUT);
                break;
        }
 
@@ -129,21 +129,21 @@
        switch (device_unit(self)) {
        case 0:
                /* CS 0 GPIO setting */
-               gpio_data_write(GPIO_NO(4, 24), GPIO_PIN_HIGH);
-               gpio_set_direction(GPIO_NO(4, 24), GPIO_PIN_INPUT);
+               imxgpio_data_write(GPIO_NO(4, 24), GPIO_PIN_HIGH);
+               imxgpio_set_direction(GPIO_NO(4, 24), GPIO_PIN_INPUT);
 
                /* CS 1 GPIO setting */
-               gpio_data_write(GPIO_NO(4, 25), GPIO_PIN_HIGH);
-               gpio_set_direction(GPIO_NO(4, 25), GPIO_PIN_INPUT);
+               imxgpio_data_write(GPIO_NO(4, 25), GPIO_PIN_HIGH);
+               imxgpio_set_direction(GPIO_NO(4, 25), GPIO_PIN_INPUT);
 
                /* CS 2 */
                /* OJ6SH-T25 Shutdown */
-               gpio_data_write(GPIO_NO(3, 14), GPIO_PIN_LOW);
-               gpio_set_direction(GPIO_NO(3, 14), GPIO_PIN_OUTPUT);
+               imxgpio_data_write(GPIO_NO(3, 14), GPIO_PIN_LOW);
+               imxgpio_set_direction(GPIO_NO(3, 14), GPIO_PIN_OUTPUT);
 
                /* CS 2 GPIO setting */
-               gpio_data_write(GPIO_NO(3, 0), GPIO_PIN_HIGH);
-               gpio_set_direction(GPIO_NO(3, 0), GPIO_PIN_INPUT);
+               imxgpio_data_write(GPIO_NO(3, 0), GPIO_PIN_HIGH);
+               imxgpio_set_direction(GPIO_NO(3, 0), GPIO_PIN_INPUT);
 
                isc->sc_tag.spi_cs_enable = imxspi_cs_enable;
                isc->sc_tag.spi_cs_disable = imxspi_cs_disable;
diff -r 968678b68d20 -r 4c7d5f2def7f sys/arch/evbarm/netwalker/netwalker_usb.c
--- a/sys/arch/evbarm/netwalker/netwalker_usb.c Wed Jan 15 09:21:21 2020 +0000
+++ b/sys/arch/evbarm/netwalker/netwalker_usb.c Wed Jan 15 10:25:47 2020 +0000
@@ -25,7 +25,7 @@
  *
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netwalker_usb.c,v 1.7 2019/08/05 12:30:13 hkenken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netwalker_usb.c,v 1.8 2020/01/15 10:25:47 skrll Exp $");
 
 #include "locators.h"
 
@@ -148,8 +148,8 @@
        uint32_t reg;
 
        /* output HIGH to USBH1_STP */
-       gpio_data_write(GPIO_NO(1, 27), GPIO_PIN_HIGH);
-       gpio_set_direction(GPIO_NO(1, 27), GPIO_PIN_OUTPUT);
+       imxgpio_data_write(GPIO_NO(1, 27), GPIO_PIN_HIGH);
+       imxgpio_set_direction(GPIO_NO(1, 27), GPIO_PIN_OUTPUT);
 
        iomux_mux_config(iomux_usb1_config);
 
@@ -181,21 +181,21 @@
 
 
        /* HUB RESET release */
-       gpio_data_write(GPIO_NO(1, 7), GPIO_PIN_HIGH);
-       gpio_set_direction(GPIO_NO(1, 7), GPIO_PIN_OUTPUT);
+       imxgpio_data_write(GPIO_NO(1, 7), GPIO_PIN_HIGH);
+       imxgpio_set_direction(GPIO_NO(1, 7), GPIO_PIN_OUTPUT);
 
        /* Drive 26M_OSC_EN line high 3_1 */
-       gpio_data_write(GPIO_NO(3, 1), GPIO_PIN_HIGH);
-       gpio_set_direction(GPIO_NO(3, 1), GPIO_PIN_OUTPUT);
+       imxgpio_data_write(GPIO_NO(3, 1), GPIO_PIN_HIGH);
+       imxgpio_set_direction(GPIO_NO(3, 1), GPIO_PIN_OUTPUT);
 
        /* Drive USB_CLK_EN_B line low  2_1 */
-       gpio_data_write(GPIO_NO(2, 1), GPIO_PIN_LOW);
-       gpio_set_direction(GPIO_NO(2, 1), GPIO_PIN_INPUT);
+       imxgpio_data_write(GPIO_NO(2, 1), GPIO_PIN_LOW);
+       imxgpio_set_direction(GPIO_NO(2, 1), GPIO_PIN_INPUT);
 
        /* MX51_PIN_EIM_D21 - De-assert USB PHY RESETB */
        delay(10 * 1000);
-       gpio_data_write(GPIO_NO(2, 5), GPIO_PIN_HIGH);
-       gpio_set_direction(GPIO_NO(2, 5), GPIO_PIN_OUTPUT);
+       imxgpio_data_write(GPIO_NO(2, 5), GPIO_PIN_HIGH);
+       imxgpio_set_direction(GPIO_NO(2, 5), GPIO_PIN_OUTPUT);
        iomux_set_function(MUX_PIN(EIM_D21), IOMUX_CONFIG_ALT1);
        delay(5 * 1000);
 }



Home | Main Index | Thread Index | Old Index