Merge tag 'ti-v2020.07-rc3' of https://gitlab.denx.de/u-boot/custodians/u-boot-ti
[oweals/u-boot.git] / board / cobra5272 / flash.c
index e8f02eb8121b61953ada93e990c0184778b00cf5..4337f4879de77306c6d5da4076791d7b93d72d09 100644 (file)
@@ -1,34 +1,23 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * (C) Copyright 2000-2003
  * Wolfgang Denk, DENX Software Engineering, wd@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
  */
 
 #include <common.h>
+#include <console.h>
+#include <cpu_func.h>
+#include <flash.h>
+#include <irq_func.h>
+#include <uuid.h>
+#include <linux/delay.h>
 
 #define PHYS_FLASH_1 CONFIG_SYS_FLASH_BASE
 #define FLASH_BANK_SIZE 0x200000
 
 flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];
 
-void flash_print_info (flash_info_t * info)
+void flash_print_info(flash_info_t *info)
 {
        int i;
 
@@ -69,7 +58,7 @@ Done:
 }
 
 
-unsigned long flash_init (void)
+unsigned long flash_init(void)
 {
        int i, j;
        ulong size = 0;
@@ -112,9 +101,9 @@ unsigned long flash_init (void)
                size += flash_info[i].size;
        }
 
-       flash_protect (FLAG_PROTECT_SET,
-                      CONFIG_SYS_FLASH_BASE,
-                      CONFIG_SYS_FLASH_BASE + 0x3ffff, &flash_info[0]);
+       flash_protect(FLAG_PROTECT_SET,
+                     CONFIG_SYS_FLASH_BASE,
+                     CONFIG_SYS_FLASH_BASE + 0x3ffff, &flash_info[0]);
 
        return size;
 }
@@ -141,7 +130,7 @@ unsigned long flash_init (void)
 #define TMO   4
 
 
-int flash_erase (flash_info_t * info, int s_first, int s_last)
+int flash_erase(flash_info_t *info, int s_first, int s_last)
 {
        ulong result;
        int iflag, cflag, prot, sect;
@@ -180,9 +169,9 @@ int flash_erase (flash_info_t * info, int s_first, int s_last)
         * chip is in programming mode.
         */
 
-       cflag = icache_status ();
-       icache_disable ();
-       iflag = disable_interrupts ();
+       cflag = icache_status();
+       icache_disable();
+       iflag = disable_interrupts();
 
        printf ("\n");
 
@@ -231,7 +220,7 @@ int flash_erase (flash_info_t * info, int s_first, int s_last)
                                goto outahere;
                        }
                        if (chip1 == TMO) {
-                               rc = ERR_TIMOUT;
+                               rc = ERR_TIMEOUT;
                                goto outahere;
                        }
 
@@ -247,18 +236,18 @@ int flash_erase (flash_info_t * info, int s_first, int s_last)
 
       outahere:
        /* allow flash to settle - wait 10 ms */
-       udelay (10000);
+       mdelay(10);
 
        if (iflag)
-               enable_interrupts ();
+               enable_interrupts();
 
        if (cflag)
-               icache_enable ();
+               icache_enable();
 
        return rc;
 }
 
-static int write_word (flash_info_t * info, ulong dest, ulong data)
+static int write_word(flash_info_t *info, ulong dest, ulong data)
 {
        volatile u16 *addr = (volatile u16 *) dest;
        ulong result;
@@ -283,9 +272,9 @@ static int write_word (flash_info_t * info, ulong dest, ulong data)
         * chip is in programming mode.
         */
 
-       cflag = icache_status ();
-       icache_disable ();
-       iflag = disable_interrupts ();
+       cflag = icache_status();
+       icache_disable();
+       iflag = disable_interrupts();
 
        MEM_FLASH_ADDR1 = CMD_UNLOCK1;
        MEM_FLASH_ADDR2 = CMD_UNLOCK2;
@@ -316,16 +305,16 @@ static int write_word (flash_info_t * info, ulong dest, ulong data)
                rc = ERR_PROG_ERROR;
 
        if (iflag)
-               enable_interrupts ();
+               enable_interrupts();
 
        if (cflag)
-               icache_enable ();
+               icache_enable();
 
        return rc;
 }
 
 
-int write_buff (flash_info_t * info, uchar * src, ulong addr, ulong cnt)
+int write_buff(flash_info_t *info, uchar *src, ulong addr, ulong cnt)
 {
        ulong wp, data;
        int rc;