mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
This change enables the flash driver on u-boot for the AP152 target. Change-Id: I9778adf4a4d347fdcce16fbfede87f765302595c Signed-off-by: Prabhu Jayakumar <pjayak@codeaurora.org>
46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
/*
|
|
* Copyright (c) 2016 The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only 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.
|
|
*
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <config.h>
|
|
#include <asm/types.h>
|
|
#include <flash.h>
|
|
|
|
#ifndef CONFIG_ATH_NAND_BR
|
|
/*
|
|
* sets up flash_info and returns size of FLASH (bytes)
|
|
*/
|
|
unsigned long
|
|
flash_get_geom (flash_info_t *flash_info)
|
|
{
|
|
int i;
|
|
|
|
/* XXX this is hardcoded until we figure out how to read flash id */
|
|
|
|
flash_info->flash_id = FLASH_M25P64;
|
|
flash_info->size = CFG_FLASH_SIZE; /* bytes */
|
|
flash_info->sector_count = flash_info->size / CFG_FLASH_SECTOR_SIZE;
|
|
|
|
for (i = 0; i < flash_info->sector_count; i++) {
|
|
flash_info->start[i] = CFG_FLASH_BASE +
|
|
(i * CFG_FLASH_SECTOR_SIZE);
|
|
flash_info->protect[i] = 0;
|
|
}
|
|
|
|
printf ("flash size %dMB, sector count = %d\n",
|
|
FLASH_SIZE, flash_info->sector_count);
|
|
|
|
return (flash_info->size);
|
|
}
|
|
#endif /* CONFIG_ATH_NAND_BR */
|