blob: 6285f60ec5982f532b6482d848de4019ff07ccb3 [file] [log] [blame]
/*
* Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
* Alternatively, this software may be distributed under the terms of the
* GNU General Public License ("GPL") version 2 as published by the Free
* Software Foundation.
*/
/* Implementation of firmware storage access interface for SPI */
#include <common.h>
#include <dm.h>
#include <fdtdec.h>
#include <libfdt.h>
#include <malloc.h>
#include <spi_flash.h>
#include <cros/common.h>
#include <cros/cros_fdtdec.h>
#include <cros/firmware_storage.h>
DECLARE_GLOBAL_DATA_PTR;
/*
* Check the right-exclusive range [offset:offset+*count_ptr), and adjust
* value pointed by <count_ptr> to form a valid range when needed.
*
* Return 0 if it is possible to form a valid range. and non-zero if not.
*/
static int border_check(struct spi_flash *flash, uint32_t offset,
uint32_t count)
{
uint32_t max_offset = offset + count;
if (offset >= flash->size) {
VBDEBUG("at EOF\n");
return -1;
}
/* max_offset will be less than offset iff overflow occurred. */
if (max_offset < offset || max_offset > flash->size) {
VBDEBUG("exceed range\n");
return -1;
}
return 0;
}
static int read_spi(firmware_storage_t *file, uint32_t offset, uint32_t count,
void *buf)
{
struct spi_flash *flash = file->context;
if (border_check(flash, offset, count))
return -1;
if (spi_flash_read(flash, offset, count, buf)) {
VBDEBUG("SPI read fail\n");
return -1;
}
return 0;
}
/*
* FIXME: It is a reasonable assumption that sector size = 4096 bytes.
* Nevertheless, comparing to coding this magic number here, there should be a
* better way (maybe rewrite driver interface?) to expose this parameter from
* eeprom driver.
*/
#define SECTOR_SIZE 0x1000
/*
* Align the right-exclusive range [*offset_ptr:*offset_ptr+*length_ptr) with
* SECTOR_SIZE.
* After alignment adjustment, both offset and length will be multiple of
* SECTOR_SIZE, and will be larger than or equal to the original range.
*/
static void align_to_sector(uint32_t *offset_ptr, uint32_t *length_ptr)
{
VBDEBUG("before adjustment\n");
VBDEBUG("offset: 0x%x\n", *offset_ptr);
VBDEBUG("length: 0x%x\n", *length_ptr);
/* Adjust if offset is not multiple of SECTOR_SIZE */
if (*offset_ptr & (SECTOR_SIZE - 1ul)) {
*offset_ptr &= ~(SECTOR_SIZE - 1ul);
}
/* Adjust if length is not multiple of SECTOR_SIZE */
if (*length_ptr & (SECTOR_SIZE - 1ul)) {
*length_ptr &= ~(SECTOR_SIZE - 1ul);
*length_ptr += SECTOR_SIZE;
}
VBDEBUG("after adjustment\n");
VBDEBUG("offset: 0x%x\n", *offset_ptr);
VBDEBUG("length: 0x%x\n", *length_ptr);
}
static int write_spi(firmware_storage_t *file, uint32_t offset, uint32_t count,
void *buf)
{
struct spi_flash *flash = file->context;
uint8_t static_buf[SECTOR_SIZE];
uint8_t *backup_buf;
uint32_t k, n;
int status, ret = -1;
/* We will erase <n> bytes starting from <k> */
k = offset;
n = count;
align_to_sector(&k, &n);
VBDEBUG("offset: 0x%08x\n", offset);
VBDEBUG("adjusted offset: 0x%08x\n", k);
if (k > offset) {
VBDEBUG("align incorrect: %08x > %08x\n", k, offset);
return -1;
}
if (border_check(flash, k, n))
return -1;
backup_buf = n > sizeof(static_buf) ? malloc(n) : static_buf;
if ((status = spi_flash_read(flash, k, n, backup_buf))) {
VBDEBUG("cannot backup data: %d\n", status);
goto EXIT;
}
if ((status = spi_flash_erase(flash, k, n))) {
VBDEBUG("SPI erase fail: %d\n", status);
goto EXIT;
}
/* combine data we want to write and backup data */
memcpy(backup_buf + (offset - k), buf, count);
if (spi_flash_write(flash, k, n, backup_buf)) {
VBDEBUG("SPI write fail\n");
goto EXIT;
}
ret = 0;
EXIT:
if (backup_buf != static_buf)
free(backup_buf);
return ret;
}
static int close_spi(firmware_storage_t *file)
{
struct spi_flash *flash = file->context;
spi_flash_free(flash);
return 0;
}
static int sw_wp_enabled_spi(firmware_storage_t *file)
{
uint8_t yes_it_is = 0;
int r = 0;
// r = spi_flash_read_sw_wp_status(file->context, &yes_it_is);
if (r) {
VBDEBUG("spi_flash_read_sw_wp_status() failed: %d\n", r);
return 0;
}
VBDEBUG("flash SW WP is %d\n", yes_it_is);
return yes_it_is;
}
int firmware_storage_open(firmware_storage_t *file)
{
const void *blob = gd->fdt_blob;
struct spi_flash *flash;
struct udevice *dev;
int node;
int ret;
node = cros_fdtdec_config_node(blob);
if (node < 0)
return -1;
node = fdtdec_lookup_phandle(blob, node, "firmware-storage");
if (node < 0) {
VBDEBUG("fail to look up phandle: %d\n", node);
return -1;
}
ret = uclass_get_device_by_of_offset(UCLASS_SPI_FLASH, node, &dev);
if (ret) {
VBDEBUG("fail to init SPI flash at %s\n",
fdt_get_name(blob, node, NULL));
return -1;
}
flash = dev_get_uclass_priv(dev);
file->read = read_spi;
file->write = write_spi;
file->close = close_spi;
file->sw_wp_enabled = sw_wp_enabled_spi;
file->context = flash;
return 0;
}