]> git.sur5r.net Git - u-boot/blobdiff - board/prodrive/pdnb3/pdnb3.c
Merge git://git.denx.de/u-boot-arm
[u-boot] / board / prodrive / pdnb3 / pdnb3.c
index e2fed5d7486eab3727b4001fe4daebbe88894db8..fa320da2d483fad3bd6d3cb66adfcf195c701adb 100644 (file)
@@ -2,23 +2,7 @@
  * (C) Copyright 2006
  * Stefan Roese, DENX Software Engineering, sr@denx.de.
  *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
+ * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
-/* Prototypes */
-int gunzip(void *, int, unsigned char *, unsigned long *);
-int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
-
 /* predefine these here for FPGA programming (before including fpga.c) */
 #define SET_FPGA(data) *IXP425_GPIO_GPOUTR = (data)
-#define FPGA_DONE_STATE (*IXP425_GPIO_GPINR & CFG_FPGA_DONE)
-#define FPGA_INIT_STATE (*IXP425_GPIO_GPINR & CFG_FPGA_INIT)
+#define FPGA_DONE_STATE (*IXP425_GPIO_GPINR & CONFIG_SYS_FPGA_DONE)
+#define FPGA_INIT_STATE (*IXP425_GPIO_GPINR & CONFIG_SYS_FPGA_INIT)
 #define OLD_VAL                old_val
 
 static unsigned long old_val = 0;
@@ -48,59 +28,51 @@ static unsigned long old_val = 0;
 /*
  * Miscelaneous platform dependent initialisations
  */
-int board_post_init(void)
-{
-       return (0);
-}
-
 int board_init(void)
 {
-       /* arch number of PDNB3 */
-       gd->bd->bi_arch_number = MACH_TYPE_PDNB3;
-
        /* adress of boot parameters */
        gd->bd->bi_boot_params = 0x00000100;
 
-       GPIO_OUTPUT_SET(CFG_GPIO_FPGA_RESET);
-       GPIO_OUTPUT_ENABLE(CFG_GPIO_FPGA_RESET);
+       GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_FPGA_RESET);
+       GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_FPGA_RESET);
 
-       GPIO_OUTPUT_SET(CFG_GPIO_SYS_RUNNING);
-       GPIO_OUTPUT_ENABLE(CFG_GPIO_SYS_RUNNING);
+       GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_SYS_RUNNING);
+       GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_SYS_RUNNING);
 
        /*
         * Setup GPIO's for FPGA programming
         */
-       GPIO_OUTPUT_CLEAR(CFG_GPIO_PRG);
-       GPIO_OUTPUT_CLEAR(CFG_GPIO_CLK);
-       GPIO_OUTPUT_CLEAR(CFG_GPIO_DATA);
-       GPIO_OUTPUT_ENABLE(CFG_GPIO_PRG);
-       GPIO_OUTPUT_ENABLE(CFG_GPIO_CLK);
-       GPIO_OUTPUT_ENABLE(CFG_GPIO_DATA);
-       GPIO_OUTPUT_DISABLE(CFG_GPIO_INIT);
-       GPIO_OUTPUT_DISABLE(CFG_GPIO_DONE);
+       GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_PRG);
+       GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_CLK);
+       GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_DATA);
+       GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_PRG);
+       GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_CLK);
+       GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_DATA);
+       GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_INIT);
+       GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_DONE);
 
        /*
         * Setup GPIO's for interrupts
         */
-       GPIO_OUTPUT_DISABLE(CFG_GPIO_PCI_INTA);
-       GPIO_INT_ACT_LOW_SET(CFG_GPIO_PCI_INTA);
-       GPIO_OUTPUT_DISABLE(CFG_GPIO_PCI_INTB);
-       GPIO_INT_ACT_LOW_SET(CFG_GPIO_PCI_INTB);
-       GPIO_OUTPUT_DISABLE(CFG_GPIO_RESTORE_INT);
-       GPIO_INT_ACT_LOW_SET(CFG_GPIO_RESTORE_INT);
-       GPIO_OUTPUT_DISABLE(CFG_GPIO_RESTART_INT);
-       GPIO_INT_ACT_LOW_SET(CFG_GPIO_RESTART_INT);
+       GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_PCI_INTA);
+       GPIO_INT_ACT_LOW_SET(CONFIG_SYS_GPIO_PCI_INTA);
+       GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_PCI_INTB);
+       GPIO_INT_ACT_LOW_SET(CONFIG_SYS_GPIO_PCI_INTB);
+       GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_RESTORE_INT);
+       GPIO_INT_ACT_LOW_SET(CONFIG_SYS_GPIO_RESTORE_INT);
+       GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_RESTART_INT);
+       GPIO_INT_ACT_LOW_SET(CONFIG_SYS_GPIO_RESTART_INT);
 
        /*
         * Setup GPIO's for 33MHz clock output
         */
        *IXP425_GPIO_GPCLKR = 0x01FF0000;
-       GPIO_OUTPUT_ENABLE(CFG_GPIO_CLK_33M);
+       GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_CLK_33M);
 
        /*
         * Setup other chip select's
         */
-       *IXP425_EXP_CS1 = CFG_EXP_CS1;
+       *IXP425_EXP_CS1 = CONFIG_SYS_EXP_CS1;
 
        return 0;
 }
@@ -110,13 +82,14 @@ int board_init(void)
  */
 int checkboard(void)
 {
-       char *s = getenv("serial#");
+       char buf[64];
+       int i = getenv_f("serial#", buf, sizeof(buf));
 
        puts("Board: PDNB3");
 
-       if (s != NULL) {
+       if (i > 0) {
                puts(", serial# ");
-               puts(s);
+               puts(buf);
        }
        putc('\n');
 
@@ -137,14 +110,14 @@ int do_fpga_boot(unsigned char *fpgadata)
        int status;
        int index;
        int i;
-       ulong len = CFG_MALLOC_LEN;
+       ulong len = CONFIG_SYS_MALLOC_LEN;
 
        /*
         * Setup GPIO's for FPGA programming
         */
-       GPIO_OUTPUT_CLEAR(CFG_GPIO_PRG);
-       GPIO_OUTPUT_CLEAR(CFG_GPIO_CLK);
-       GPIO_OUTPUT_CLEAR(CFG_GPIO_DATA);
+       GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_PRG);
+       GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_CLK);
+       GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_DATA);
 
        /*
         * Save value so no readback is required upon programming
@@ -154,8 +127,8 @@ int do_fpga_boot(unsigned char *fpgadata)
        /*
         * First try to decompress fpga image (gzip compressed?)
         */
-       dst = malloc(CFG_FPGA_MAX_SIZE);
-       if (gunzip(dst, CFG_FPGA_MAX_SIZE, (uchar *)fpgadata, &len) != 0) {
+       dst = malloc(CONFIG_SYS_FPGA_MAX_SIZE);
+       if (gunzip(dst, CONFIG_SYS_FPGA_MAX_SIZE, (uchar *)fpgadata, &len) != 0) {
                printf("Error: Image has to be gzipp'ed!\n");
                return -1;
        }
@@ -209,21 +182,19 @@ int do_fpga_boot(unsigned char *fpgadata)
        /*
         * Reset FPGA
         */
-       GPIO_OUTPUT_CLEAR(CFG_GPIO_FPGA_RESET);
+       GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_FPGA_RESET);
        udelay(10);
-       GPIO_OUTPUT_SET(CFG_GPIO_FPGA_RESET);
+       GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_FPGA_RESET);
 
        return (0);
 }
 
-int do_fpga(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
+int do_fpga(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 {
        ulong addr;
 
-       if (argc < 2) {
-               printf ("Usage:\n%s\n", cmdtp->usage);
-               return 1;
-       }
+       if (argc < 2)
+               return cmd_usage(cmdtp);
 
        addr = simple_strtoul(argv[1], NULL, 16);
 
@@ -232,11 +203,11 @@ int do_fpga(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 
 U_BOOT_CMD(
        fpga,     2,     0,      do_fpga,
-       "fpga    - boot FPGA\n",
-       "address size\n    - boot FPGA with gzipped image at <address>\n"
+       "boot FPGA",
+       "address size\n    - boot FPGA with gzipped image at <address>"
 );
 
-#if (CONFIG_COMMANDS & CFG_CMD_PCI) || defined(CONFIG_PCI)
+#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
 extern struct pci_controller hose;
 extern void pci_ixp_init(struct pci_controller * hose);