summaryrefslogtreecommitdiff
path: root/board/snow/board.h
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2015-05-29 13:51:49 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-06-05 19:35:06 +0000
commitbdc680d8ed7ea24cdfb1b5498f73a1008c71ad37 (patch)
tree476e29e4edc29049843b19c3d2344ca6a2d435c0 /board/snow/board.h
parente856db125850bfc38e341b7df055efea5ae59026 (diff)
downloadchrome-ec-bdc680d8ed7ea24cdfb1b5498f73a1008c71ad37.tar.gz
Remove obsolete EC targets
This is needed to allow cleanup and refactoring of the EC codebase in ToT. All of these boards use firmware from branches and uploaded to BCS, so they don't actually care that ToT can't build their firmware. BUG=chromium:493866 TEST=build on the following using cbuildbot: daisy-paladin falco-paladin link-paladin nyan-paladin peppy-paladin samus-paladin squawks-paladin daisy_spring-paladin CQ-DEPEND=CL:274121,CL:274127 BRANCH=none Change-Id: I19598843755ded7b2385cc712ef463e5de4411b8 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/274121 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
Diffstat (limited to 'board/snow/board.h')
-rw-r--r--board/snow/board.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/board/snow/board.h b/board/snow/board.h
deleted file mode 100644
index 499f4d4d11..0000000000
--- a/board/snow/board.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/* 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.
- */
-
-/* Snow board configuration */
-
-#ifndef __BOARD_H
-#define __BOARD_H
-
-/* 16 MHz SYSCLK clock frequency */
-#define CPU_CLOCK 16000000
-
-/* Debug features */
-#undef CONFIG_TASK_PROFILING
-
-/* Optional features */
-#define CONFIG_BATTERY_BQ20Z453
-#define CONFIG_BATTERY_SMART
-#define CONFIG_BOARD_PRE_INIT
-#define CONFIG_CHARGER_TPS65090
-#define CONFIG_CHIPSET_GAIA
-#define CONFIG_CMD_PMU
-#define CONFIG_EXTPOWER_SNOW
-#define CONFIG_HOST_COMMAND_STATUS
-#define CONFIG_I2C
-#define CONFIG_I2C_ARBITRATION
-#define CONFIG_KEYBOARD_PROTOCOL_MKBP
-#define CONFIG_KEYBOARD_SUPPRESS_NOISE
-#define CONFIG_PMU_HARD_RESET
-#define CONFIG_PMU_TPS65090
-#define CONFIG_PWM
-#define CONFIG_VBOOT_HASH
-
-/* use STOP mode when we have nothing to do */
-#define CONFIG_LOW_POWER_IDLE
-
-#ifndef __ASSEMBLER__
-
-/* Keyboard output ports */
-#define KB_OUT_PORT_LIST GPIO_B, GPIO_C
-
-/* Charging */
-#define I2C_PORT_MASTER 1
-#define I2C_PORT_BATTERY I2C_PORT_MASTER
-#define I2C_PORT_CHARGER I2C_PORT_MASTER
-#define I2C_PORT_SLAVE 1
-
-#define GPIO_AP_CLAIM GPIO_SPI1_NSS /* AP claims bus */
-#define GPIO_EC_CLAIM GPIO_SPI1_MISO /* EC claims bus */
-
-/* Timer selection */
-#define TIM_CLOCK_MSB 3
-#define TIM_CLOCK_LSB 4
-#define TIM_POWER_LED 2
-#define TIM_WATCHDOG 1
-
-#include "gpio_signal.h"
-
-enum pwm_channel {
- PWM_CH_POWER_LED = 0,
- /* Number of PWM channels */
- PWM_CH_COUNT
-};
-
-#endif /* !__ASSEMBLER__ */
-
-#endif /* __BOARD_H */