mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 20:32:04 +09:00
nand: adjust nand info page for ddr parameter function [1/1]
PD#SWPL-7804 Problem: OTA upgrade would fail because nand info page no consisent Solution: Keep nand info page consisent between bl2/bl33/kernel Verify: s420 Change-Id: Icef5f720ba80e5f639b4ee7d1f1201833d5a5656 Signed-off-by: Liang Yang <liang.yang@amlogic.com>
This commit is contained in:
@@ -166,9 +166,9 @@ struct _nand_page0 {
|
||||
struct _ext_info ext_info;
|
||||
/* added for slc */
|
||||
struct _fip_info fip_info;
|
||||
uint32_t ddrp_start_page;
|
||||
};
|
||||
|
||||
|
||||
union nand_core_clk {
|
||||
/*raw register data */
|
||||
uint32_t d32;
|
||||
@@ -216,6 +216,7 @@ union nand_core_clk {
|
||||
#define NAND_ENV_BLOCK_NUM 8
|
||||
#define NAND_KEY_BLOCK_NUM 8
|
||||
#define NAND_DTB_BLOCK_NUM 4
|
||||
#define NAND_DDR_BLOCK_NUM 2
|
||||
|
||||
#define AML_CHIP_NONE_RB 4
|
||||
#define AML_INTERLEAVING_MODE 8
|
||||
@@ -283,6 +284,7 @@ union nand_core_clk {
|
||||
#define KEY_NAND_MAGIC "nkey"
|
||||
#define SEC_NAND_MAGIC "nsec"
|
||||
#define DTB_NAND_MAGIC "ndtb"
|
||||
#define DDR_NAND_MAGIC "nddr"
|
||||
#define NAND_SYS_PART_SIZE 0x8000000
|
||||
|
||||
struct nand_menson_key {
|
||||
@@ -559,6 +561,7 @@ struct aml_nand_chip {
|
||||
struct aml_nandrsv_info_t *aml_nandenv_info;
|
||||
struct aml_nandrsv_info_t *aml_nandkey_info;
|
||||
struct aml_nandrsv_info_t *aml_nanddtb_info;
|
||||
struct aml_nandrsv_info_t *aml_nandddr_info;
|
||||
struct aml_nand_bch_desc *bch_desc;
|
||||
|
||||
/*golbal variable for retry support*/
|
||||
@@ -826,6 +829,8 @@ int aml_nand_read_key(struct mtd_info *mtd, size_t offset, u_char *buf);
|
||||
|
||||
int aml_nand_key_check(struct mtd_info *mtd);
|
||||
|
||||
int aml_nand_ddr_check(struct mtd_info *mtd);
|
||||
|
||||
/*int aml_nand_free_valid_env(struct mtd_info *mtd);*/
|
||||
|
||||
int aml_nand_save_bbt(struct mtd_info *mtd, u_char *buf);
|
||||
|
||||
@@ -2143,6 +2143,7 @@ int aml_nand_init(struct aml_nand_chip *aml_chip)
|
||||
#endif
|
||||
aml_nand_key_check(mtd);
|
||||
aml_nand_dtb_check(mtd);
|
||||
aml_nand_ddr_check(mtd);
|
||||
|
||||
if (aml_chip->support_new_nand == 1) {
|
||||
if ((new_nand_info->type)
|
||||
|
||||
@@ -101,6 +101,7 @@ void __attribute__((unused)) nand_info_page_prepare(
|
||||
struct nand_setup *p_nand_setup = NULL;
|
||||
int each_boot_pages, boot_num, bbt_pages;
|
||||
uint32_t pages_per_blk_shift, bbt_size;
|
||||
uint32_t ddrp_start_block = 0;
|
||||
|
||||
pages_per_blk_shift = (chip->phys_erase_shift - chip->page_shift);
|
||||
aml_chip_normal = mtd_to_nand_chip(nand_info[1]);
|
||||
@@ -157,6 +158,12 @@ void __attribute__((unused)) nand_info_page_prepare(
|
||||
p_ext_info->bbt_occupy_pages = bbt_pages;
|
||||
p_ext_info->bbt_start_block =
|
||||
(BOOT_TOTAL_PAGES >> pages_per_blk_shift) + NAND_GAP_BLOCK_NUM;
|
||||
ddrp_start_block = aml_chip_normal->aml_nandddr_info->start_block;
|
||||
p_nand_page0->ddrp_start_page =
|
||||
(ddrp_start_block << pages_per_blk_shift)
|
||||
+ aml_chip_normal->aml_nandddr_info->valid_node->phy_page_addr;
|
||||
pr_info("ddrp_start_page = 0x%x ddr_start_block = 0x%x\n",
|
||||
p_nand_page0->ddrp_start_page, ddrp_start_block);
|
||||
/* fill descrete infos */
|
||||
if (aml_chip->bl_mode) {
|
||||
p_fip_info->version = 1;
|
||||
|
||||
@@ -920,6 +920,24 @@ int aml_nand_rsv_info_init(struct mtd_info *mtd)
|
||||
aml_chip->aml_nanddtb_info->size = aml_chip->dtbsize;
|
||||
memcpy(aml_chip->aml_nanddtb_info->name, DTB_NAND_MAGIC, 4);
|
||||
|
||||
aml_chip->aml_nandddr_info =
|
||||
kzalloc(sizeof(struct aml_nandrsv_info_t), GFP_KERNEL);
|
||||
if (aml_chip->aml_nandddr_info == NULL)
|
||||
return -ENOMEM;
|
||||
aml_chip->aml_nandddr_info->mtd = mtd;
|
||||
aml_chip->aml_nandddr_info->valid_node =
|
||||
kzalloc(sizeof(struct valid_node_t), GFP_KERNEL);
|
||||
if (aml_chip->aml_nandddr_info->valid_node == NULL)
|
||||
return -ENOMEM;
|
||||
|
||||
aml_chip->aml_nandddr_info->valid_node->phy_blk_addr = -1;
|
||||
aml_chip->aml_nandddr_info->start_block =
|
||||
aml_chip->aml_nanddtb_info->end_block;
|
||||
aml_chip->aml_nandddr_info->end_block =
|
||||
aml_chip->aml_nanddtb_info->end_block + NAND_DDR_BLOCK_NUM;
|
||||
aml_chip->aml_nandddr_info->size = aml_chip->dtbsize;
|
||||
memcpy(aml_chip->aml_nandddr_info->name, DDR_NAND_MAGIC, 4);
|
||||
|
||||
if ((vernier - (BOOT_TOTAL_PAGES >> pages_per_blk_shift)) >
|
||||
RESERVED_BLOCK_NUM) {
|
||||
pr_info("ERROR: total blk number is over the limit\n");
|
||||
@@ -935,6 +953,8 @@ int aml_nand_rsv_info_init(struct mtd_info *mtd)
|
||||
aml_chip->aml_nandkey_info->start_block);
|
||||
pr_info("dtb_start=%d\n",
|
||||
aml_chip->aml_nanddtb_info->start_block);
|
||||
pr_info("ddr_start=%d\n",
|
||||
aml_chip->aml_nandddr_info->start_block);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -1255,6 +1275,21 @@ int aml_nand_dtb_check(struct mtd_info *mtd)
|
||||
return ret;
|
||||
}
|
||||
|
||||
int aml_nand_ddr_check(struct mtd_info *mtd)
|
||||
{
|
||||
struct aml_nand_chip *aml_chip = mtd_to_nand_chip(mtd);
|
||||
int ret = 0;
|
||||
|
||||
ret = aml_nand_scan_rsv_info(mtd, aml_chip->aml_nandddr_info);
|
||||
if ((ret != 0) && ((ret != (-1))))
|
||||
pr_info("%s %d\n", __func__, __LINE__);
|
||||
|
||||
if (aml_chip->aml_nandddr_info->valid == 0)
|
||||
pr_info("%s %d NO dtb exist\n", __func__, __LINE__);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int aml_nand_bbt_check(struct mtd_info *mtd)
|
||||
{
|
||||
struct aml_nand_chip *aml_chip = mtd_to_nand_chip(mtd);
|
||||
|
||||
Reference in New Issue
Block a user