1 From dcf24c8deeb43a4406ae18136c8700dc2f867415 Mon Sep 17 00:00:00 2001
2 From: Weijie Gao <weijie.gao@mediatek.com>
3 Date: Mon, 25 Jul 2022 11:18:03 +0800
4 Subject: [PATCH 42/71] common: board_r: add support to initialize NMBM after
7 This patch add support to initialize NMBM after nand initialized.
9 Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
11 common/board_r.c | 17 +++++++++++++++++
12 1 file changed, 17 insertions(+)
14 --- a/common/board_r.c
15 +++ b/common/board_r.c
16 @@ -388,6 +388,20 @@ static int initr_nand(void)
20 +#ifdef CONFIG_NMBM_MTD
22 +__weak int board_nmbm_init(void)
27 +/* go init the NMBM */
28 +static int initr_nmbm(void)
30 + return board_nmbm_init();
34 #if defined(CONFIG_CMD_ONENAND)
35 /* go init the NAND */
36 static int initr_onenand(void)
37 @@ -696,6 +710,9 @@ static init_fnc_t init_sequence_r[] = {
38 #ifdef CONFIG_CMD_ONENAND
41 +#ifdef CONFIG_NMBM_MTD