]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - drivers/mtd/nand/nand.c
nand: Embed mtd_info in struct nand_chip
[karo-tx-uboot.git] / drivers / mtd / nand / nand.c
index 4cf4c1c7076c1f933bb77086f68fd3894e98a6f3..ddd8249d59a481a0e373f592c9b5ff1837731c56 100644 (file)
@@ -3,22 +3,7 @@
  * 2N Telekomunikace, a.s. <www.2n.cz>
  * Ladislav Michl <michl@2n.cz>
  *
- * 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
- * version 2 as published by the Free Software Foundation.
- *
- * 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>
@@ -34,7 +19,7 @@ DECLARE_GLOBAL_DATA_PTR;
 int nand_curr_device = -1;
 
 
-nand_info_t nand_info[CONFIG_SYS_MAX_NAND_DEVICE];
+struct mtd_info *nand_info[CONFIG_SYS_MAX_NAND_DEVICE];
 
 #ifndef CONFIG_SYS_NAND_SELF_INIT
 static struct nand_chip nand_chip[CONFIG_SYS_MAX_NAND_DEVICE];
@@ -45,15 +30,25 @@ static char dev_name[CONFIG_SYS_MAX_NAND_DEVICE][8];
 
 static unsigned long total_nand_size; /* in kiB */
 
-/* Register an initialized NAND mtd device with the U-Boot NAND command. */
-int nand_register(int devnum)
+int nand_mtd_to_devnum(struct mtd_info *mtd)
 {
-       struct mtd_info *mtd;
+       int i;
 
+       for (i = 0; i < ARRAY_SIZE(nand_info); i++) {
+               if (mtd && nand_info[i] == mtd)
+                       return i;
+       }
+
+       return -ENODEV;
+}
+
+/* Register an initialized NAND mtd device with the U-Boot NAND command. */
+int nand_register(int devnum, struct mtd_info *mtd)
+{
        if (devnum >= CONFIG_SYS_MAX_NAND_DEVICE)
                return -EINVAL;
 
-       mtd = &nand_info[devnum];
+       nand_info[devnum] = mtd;
 
        sprintf(dev_name[devnum], "nand%d", devnum);
        mtd->name = dev_name[devnum];
@@ -77,8 +72,8 @@ int nand_register(int devnum)
 #ifndef CONFIG_SYS_NAND_SELF_INIT
 static void nand_init_chip(int i)
 {
-       struct mtd_info *mtd = &nand_info[i];
        struct nand_chip *nand = &nand_chip[i];
+       struct mtd_info *mtd = &nand->mtd;
        ulong base_addr = base_address[i];
        int maxchips = CONFIG_SYS_NAND_MAX_CHIPS;
 
@@ -94,7 +89,7 @@ static void nand_init_chip(int i)
        if (nand_scan(mtd, maxchips))
                return;
 
-       nand_register(i);
+       nand_register(i, mtd);
 }
 #endif
 
@@ -115,6 +110,7 @@ void nand_init(void)
        /*
         * Select the chip in the board/cpu specific driver
         */
-       board_nand_select_device(nand_info[nand_curr_device].priv, nand_curr_device);
+       board_nand_select_device(nand_info[nand_curr_device]->priv,
+                                nand_curr_device);
 #endif
 }