]> git.sur5r.net Git - u-boot/blobdiff - board/iomega/iconnect/iconnect.c
SPDX: Convert all of our single license tags to Linux Kernel style
[u-boot] / board / iomega / iconnect / iconnect.c
index 45ff2940efddf2c149f27f92cc11d739ba80392b..fc7847bd1d6dc7255d2cd21244d47db6c96adc29 100644 (file)
@@ -1,15 +1,14 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * Copyright (C) 2009-2012
  * Wojciech Dubowik <wojciech.dubowik@neratec.com>
  * Luka Perkov <luka@openwrt.org>
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
 #include <miiphy.h>
 #include <asm/arch/cpu.h>
-#include <asm/arch/kirkwood.h>
+#include <asm/arch/soc.h>
 #include <asm/arch/mpp.h>
 #include "iconnect.h"
 
@@ -22,9 +21,9 @@ int board_early_init_f(void)
         * There are maximum 64 gpios controlled through 2 sets of registers
         * the below configuration configures mainly initial LED status
         */
-       kw_config_gpio(ICONNECT_OE_VAL_LOW,
-                       ICONNECT_OE_VAL_HIGH,
-                       ICONNECT_OE_LOW, ICONNECT_OE_HIGH);
+       mvebu_config_gpio(ICONNECT_OE_VAL_LOW,
+                         ICONNECT_OE_VAL_HIGH,
+                         ICONNECT_OE_LOW, ICONNECT_OE_HIGH);
 
        /* Multi-Purpose Pins Functionality configuration */
        static const u32 kwmpp_config[] = {
@@ -36,7 +35,7 @@ int board_early_init_f(void)
                MPP5_NF_IO7,
                MPP6_SYSRST_OUTn,       /* Reset signal */
                MPP7_GPO,
-               MPP8_TW_SDA,            /* I2C */       
+               MPP8_TW_SDA,            /* I2C */
                MPP9_TW_SCK,            /* I2C */
                MPP10_UART0_TXD,
                MPP11_UART0_RXD,
@@ -87,7 +86,7 @@ int board_early_init_f(void)
 int board_init(void)
 {
        /* adress of boot parameters */
-       gd->bd->bi_boot_params = kw_sdram_bar(0) + 0x100;
+       gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
 
        return 0;
 }