summaryrefslogtreecommitdiff
path: root/chip/g/config_std_flash.h
blob: 86df29c4e44efb9a69b9d647126abaa749434c94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* Copyright (c) 2014 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.
 */

#ifndef __CROS_EC_CONFIG_STD_FLASH_H
#define __CROS_EC_CONFIG_STD_FLASH_H

/* RO firmware must start at beginning of flash */
#define CONFIG_RO_MEM_OFF		0

/*
 * The EC uses the one bank of flash to emulate a SPI-like write protect
 * register with persistent state.
 */
#define CONFIG_FW_PSTATE_SIZE		CONFIG_FLASH_BANK_SIZE

/* PSTATE immediately follows RO, in the first half of flash */
#define CONFIG_RO_SIZE			(CONFIG_FW_IMAGE_SIZE		\
					 - CONFIG_FW_PSTATE_SIZE)
#define CONFIG_FW_PSTATE_OFF		CONFIG_RO_SIZE
#define CONFIG_FLASH_SIZE		CONFIG_FLASH_PHYSICAL_SIZE

/* RW firmware is one firmware image offset from the start */
#define CONFIG_RW_MEM_OFF		CONFIG_FW_IMAGE_SIZE
#define CONFIG_RW_SIZE			CONFIG_FW_IMAGE_SIZE

/* TODO(crosbug.com/p/23796): why 2 sets of configs with the same numbers? */
#define CONFIG_WP_OFF			CONFIG_RO_MEM_OFF
#define CONFIG_WP_SIZE			CONFIG_RO_SIZE

#endif	/* __CROS_EC_CONFIG_STD_FLASH_H */