summaryrefslogtreecommitdiff
path: root/chip/stm32/config-stm32f4.h
blob: d7ef66888661809f46ae099a70344de3772c87e2 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* Copyright 2016 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* Memory mapping */
#ifdef CHIP_VARIANT_STM32F412
#define CONFIG_FLASH_SIZE_BYTES (1 * 1024 * 1024)
#else
#define CONFIG_FLASH_SIZE_BYTES (512 * 1024)
#endif

/* 3 regions type: 16K, 64K and 128K */
#define SIZE_16KB (16 * 1024)
#define SIZE_64KB (64 * 1024)
#define SIZE_128KB (128 * 1024)
#define CONFIG_FLASH_REGION_TYPE_COUNT 3
#define CONFIG_FLASH_MULTIPLE_REGION \
	(5 + (CONFIG_FLASH_SIZE_BYTES - SIZE_128KB) / SIZE_128KB)

/* Erasing 128K can take up to 2s, need to defer erase. */
#define CONFIG_FLASH_DEFERRED_ERASE

/* minimum write size for 3.3V. 1 for 1.8V */
#define STM32_FLASH_WRITE_SIZE_1800 1
#define STM32_FLASH_WS_DIV_1800 16000000
#define STM32_FLASH_WRITE_SIZE_3300 4
#define STM32_FLASH_WS_DIV_3300 30000000

/* No page mode on STM32F, so no benefit to larger write sizes */
#define CONFIG_FLASH_WRITE_IDEAL_SIZE CONFIG_FLASH_WRITE_SIZE

#ifdef CHIP_VARIANT_STM32F412
#define CONFIG_RAM_BASE 0x20000000
#define CONFIG_RAM_SIZE 0x00040000 /* 256 KB */
#else
#define CONFIG_RAM_BASE 0x20000000
#define CONFIG_RAM_SIZE 0x00020000 /* 128 KB */
#endif

#define CONFIG_RO_MEM_OFF 0
#define CONFIG_RO_SIZE (256 * 1024)
#define CONFIG_RW_MEM_OFF (256 * 1024)
#define CONFIG_RW_SIZE (256 * 1024)

#define CONFIG_RO_STORAGE_OFF 0
#define CONFIG_RW_STORAGE_OFF 0

#define CONFIG_EC_PROTECTED_STORAGE_OFF 0
#define CONFIG_EC_PROTECTED_STORAGE_SIZE CONFIG_RW_MEM_OFF
#define CONFIG_EC_WRITABLE_STORAGE_OFF CONFIG_RW_MEM_OFF
#define CONFIG_EC_WRITABLE_STORAGE_SIZE \
	(CONFIG_FLASH_SIZE_BYTES - CONFIG_EC_WRITABLE_STORAGE_OFF)

#define CONFIG_WP_STORAGE_OFF CONFIG_EC_PROTECTED_STORAGE_OFF
#define CONFIG_WP_STORAGE_SIZE CONFIG_EC_PROTECTED_STORAGE_SIZE

#undef I2C_PORT_COUNT
#define I2C_PORT_COUNT 4

/* Use PSTATE embedded in the RO image, not in its own erase block */
#define CONFIG_FLASH_PSTATE
#undef CONFIG_FLASH_PSTATE_BANK

/* Use OTP regions */
#define CONFIG_OTP

/* Number of IRQ vectors on the NVIC */
#define CONFIG_IRQ_COUNT 97

#undef CONFIG_CMD_CHARGEN

/* DFU Address */
#define STM32_DFU_BASE 0x1fff0000

/*
 * SET_RTC_MATCH_DELAY: max time to set RTC match alarm. If we set the alarm
 * in the past, it will never wake up and cause a watchdog.
 *
 * This value is minimal time for which we can set RTC match alarm. It was
 * obtained by setting the alarm and checking if the alarm interrupt was
 * triggered. Unit test test_rtc_match_delay is responsible for verifying if
 * setting the RTC match alarm with this value will generate the interrupt.
 */
#define SET_RTC_MATCH_DELAY 200 /* us */