summaryrefslogtreecommitdiff
path: root/chip/stm32/config_chip.h
diff options
context:
space:
mode:
Diffstat (limited to 'chip/stm32/config_chip.h')
-rw-r--r--chip/stm32/config_chip.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/chip/stm32/config_chip.h b/chip/stm32/config_chip.h
new file mode 100644
index 0000000000..e6df7a7730
--- /dev/null
+++ b/chip/stm32/config_chip.h
@@ -0,0 +1,56 @@
+/* Copyright (c) 2013 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_CHIP_H
+#define __CROS_EC_CONFIG_CHIP_H
+
+/* use variant specific configuration for flash / UART / IRQ */
+#if defined(CHIP_VARIANT_stm32l15x)
+#include "config-stm32l15x.h"
+#elif defined(CHIP_VARIANT_stm32f100)
+/* STM32F100xx is currently the only outlier in the STM32F series */
+#include "config-stm32f100.h"
+#elif defined(CHIP_VARIANT_stm32f10x)
+/* STM32F101xx, STM32F102xx, STM32F103xx, STM32F105xx, and STM32F107xx */
+#include "config-stm32f10x.h"
+#else
+#error "Unsupported chip variant"
+#endif
+
+/* System stack size */
+#define CONFIG_STACK_SIZE 1024
+
+/* Idle task stack size */
+#define IDLE_TASK_STACK_SIZE 256
+
+/* Default task stack size */
+#define TASK_STACK_SIZE 488
+
+/* Interval between HOOK_TICK notifications */
+#define HOOK_TICK_INTERVAL (500 * MSEC)
+
+/* Maximum number of deferrable functions */
+#define DEFERRABLE_MAX_COUNT 8
+
+/* Number of I2C ports */
+#define I2C_PORT_COUNT 2
+
+/* support programming on-chip flash */
+#define CONFIG_FLASH
+#define CONFIG_FMAP
+
+/* build with assertions and debug messages */
+#define CONFIG_DEBUG
+
+/* Enable watchdog timer */
+#define CONFIG_WATCHDOG
+
+/* Flash protection applies to the next boot, not the current one */
+#define CONFIG_FLASH_PROTECT_NEXT_BOOT
+
+/* Compile for running from RAM instead of flash */
+/* #define COMPILE_FOR_RAM */
+
+#endif /* __CROS_EC_CONFIG_CHIP_H */