summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoramber.chen <amber.chen@lcfc.corp-partner.google.com>2021-07-20 14:38:34 +0800
committerCommit Bot <commit-bot@chromium.org>2021-07-22 07:31:58 +0000
commit8ad65a6f25a8237cf9d991141fd4a3f3fc366565 (patch)
tree3034b777aca94295ebb58c711a7261c70260a926
parentd89d526c638fb033bdef1c5ee05fbb5f3a20310a (diff)
downloadchrome-ec-stabilize-14106.B-main.tar.gz
taeko: replace board name to "Taeko"stabilize-14106.B-main
BUG=b:193377622 BRANCH=main TEST=make BOARD=taeko Signed-off-by: amber.chen <amber.chen@lcfc.corp-partner.google.com> Change-Id: Ic0fd57ed60ca6872adda3d626b2ca4012d840444 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3040938 Reviewed-by: Boris Mittelberg <bmbm@google.com>
-rw-r--r--board/taeko/battery.c2
-rw-r--r--board/taeko/board.c2
-rw-r--r--board/taeko/board.h6
-rw-r--r--board/taeko/build.mk2
-rw-r--r--board/taeko/fw_config.c10
-rw-r--r--board/taeko/fw_config.h14
-rw-r--r--board/taeko/gpio.inc4
-rw-r--r--board/taeko/led.c2
-rw-r--r--board/taeko/tune_mp2964.c2
-rw-r--r--board/taeko/usbc_config.h2
10 files changed, 23 insertions, 23 deletions
diff --git a/board/taeko/battery.c b/board/taeko/battery.c
index a18ab029b6..fde02cc6c4 100644
--- a/board/taeko/battery.c
+++ b/board/taeko/battery.c
@@ -10,7 +10,7 @@
#include "compile_time_macros.h"
/*
- * Battery info for all Brya battery types. Note that the fields
+ * Battery info for all Taeko battery types. Note that the fields
* start_charging_min/max and charging_min/max are not used for the charger.
* The effective temperature limits are given by discharging_min/max_c.
*
diff --git a/board/taeko/board.c b/board/taeko/board.c
index c5109945b1..c912bc95ce 100644
--- a/board/taeko/board.c
+++ b/board/taeko/board.c
@@ -75,7 +75,7 @@ DECLARE_HOOK(HOOK_CHIPSET_SUSPEND, board_chipset_suspend, HOOK_PRIO_DEFAULT);
#ifdef CONFIG_CHARGE_RAMP_SW
/*
- * TODO(b/181508008): tune this threshold
+ * TODO: tune this threshold
*/
#define BC12_MIN_VOLTAGE 4400
diff --git a/board/taeko/board.h b/board/taeko/board.h
index b2617406df..4d0c611085 100644
--- a/board/taeko/board.h
+++ b/board/taeko/board.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* Brya board configuration */
+/* Taeko board configuration */
#ifndef __CROS_EC_BOARD_H
#define __CROS_EC_BOARD_H
@@ -11,7 +11,7 @@
#include "compile_time_macros.h"
/*
- * Early brya boards are not set up for vivaldi
+ * Early Taeko boards are not set up for vivaldi
*/
#undef CONFIG_KEYBOARD_VIVALDI
@@ -193,7 +193,7 @@
#define CONFIG_STEINHART_HART_3V3_30K9_47K_4050B
/*
- * TODO(b/181271666): no fan control loop until sensors are tuned
+ * TODO: no fan control loop until sensors are tuned
*/
/* #define CONFIG_FANS FAN_CH_COUNT */
diff --git a/board/taeko/build.mk b/board/taeko/build.mk
index 78fee4583b..7751dbacbb 100644
--- a/board/taeko/build.mk
+++ b/board/taeko/build.mk
@@ -3,7 +3,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
-# Brya board specific files build
+# Taeko board specific files build
#
CHIP:=npcx
diff --git a/board/taeko/fw_config.c b/board/taeko/fw_config.c
index fb8acb635d..886c56b314 100644
--- a/board/taeko/fw_config.c
+++ b/board/taeko/fw_config.c
@@ -11,20 +11,20 @@
#define CPRINTS(format, args...) cprints(CC_CHIPSET, format, ## args)
-static union brya_cbi_fw_config fw_config;
+static union taeko_cbi_fw_config fw_config;
BUILD_ASSERT(sizeof(fw_config) == sizeof(uint32_t));
/*
- * FW_CONFIG defaults for brya if the CBI.FW_CONFIG data is not
+ * FW_CONFIG defaults for Taeko if the CBI.FW_CONFIG data is not
* initialized.
*/
-static const union brya_cbi_fw_config fw_config_defaults = {
+static const union taeko_cbi_fw_config fw_config_defaults = {
.usb_db = DB_USB3_PS8815,
.kb_bl = KEYBOARD_BACKLIGHT_ENABLED,
};
/****************************************************************************
- * Brya FW_CONFIG access
+ * Taeko FW_CONFIG access
*/
void board_init_fw_config(void)
{
@@ -49,7 +49,7 @@ void board_init_fw_config(void)
}
}
-union brya_cbi_fw_config get_fw_config(void)
+union taeko_cbi_fw_config get_fw_config(void)
{
return fw_config;
}
diff --git a/board/taeko/fw_config.h b/board/taeko/fw_config.h
index 6e4eb3ef58..7e59a4308e 100644
--- a/board/taeko/fw_config.h
+++ b/board/taeko/fw_config.h
@@ -3,15 +3,15 @@
* found in the LICENSE file.
*/
-#ifndef __BOARD_BRYA_FW_CONFIG_H_
-#define __BOARD_BRYA_FW_CONFIG_H_
+#ifndef __BOARD_TAEKO_FW_CONFIG_H_
+#define __BOARD_TAEKO_FW_CONFIG_H_
#include <stdint.h>
/****************************************************************************
- * CBI FW_CONFIG layout for Brya board.
+ * CBI FW_CONFIG layout for Taeko board.
*
- * Source of truth is the project/brya/brya/config.star configuration file.
+ * Source of truth is the project/taeko/taeko/config.star configuration file.
*/
enum ec_cfg_usb_db_type {
@@ -25,7 +25,7 @@ enum ec_cfg_keyboard_backlight_type {
KEYBOARD_BACKLIGHT_ENABLED = 1
};
-union brya_cbi_fw_config {
+union taeko_cbi_fw_config {
struct {
enum ec_cfg_usb_db_type usb_db : 4;
uint32_t sd_db : 2;
@@ -42,7 +42,7 @@ union brya_cbi_fw_config {
*
* @return the FW_CONFIG for the board.
*/
-union brya_cbi_fw_config get_fw_config(void);
+union taeko_cbi_fw_config get_fw_config(void);
/**
* Get the USB daughter board type from FW_CONFIG.
@@ -51,4 +51,4 @@ union brya_cbi_fw_config get_fw_config(void);
*/
enum ec_cfg_usb_db_type ec_cfg_usb_db_type(void);
-#endif /* __BOARD_BRYA_FW_CONFIG_H_ */
+#endif /* __BOARD_TAEKO_FW_CONFIG_H_ */
diff --git a/board/taeko/gpio.inc b/board/taeko/gpio.inc
index 79a97b0475..eb493469d8 100644
--- a/board/taeko/gpio.inc
+++ b/board/taeko/gpio.inc
@@ -8,14 +8,14 @@
#define MODULE_KB MODULE_KEYBOARD_SCAN
/*
- * Generated-gpio.inc is produced using a Brya specific tool that
+ * Generated-gpio.inc is produced using a Taeko specific tool that
* parses the GPIO definitions derived from the board schematics and
* EC pinout descriptions derived form the chip datasheets to generate
* the Chrome EC GPIO pinout definitions. Due to the confidential
* nature of schematics and datasheets, they are not provided here.
*
* Variants that do not auto-generate their GPIO definitions should
- * combine the Brya gpio.inc and generated-gpio.inc into their
+ * combine the Taeko gpio.inc and generated-gpio.inc into their
* gpio.inc and customize as appropriate.
*/
diff --git a/board/taeko/led.c b/board/taeko/led.c
index 38caa38d37..f32207444c 100644
--- a/board/taeko/led.c
+++ b/board/taeko/led.c
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* Brya specific PWM LED settings: there are 2 LEDs on each side of the board,
+/* Taeko specific PWM LED settings: there are 2 LEDs on each side of the board,
* each one can be controlled separately. The LED colors are white or amber,
* and the default behavior is tied to the charging process: both sides are
* amber while charging the battery and white when the battery is charged.
diff --git a/board/taeko/tune_mp2964.c b/board/taeko/tune_mp2964.c
index 198f06d8eb..b9e3e5ccd5 100644
--- a/board/taeko/tune_mp2964.c
+++ b/board/taeko/tune_mp2964.c
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* Tune the MP2964 IMVP9.1 parameters for brya */
+/* Tune the MP2964 IMVP9.1 parameters for Taeko */
#include "common.h"
#include "compile_time_macros.h"
diff --git a/board/taeko/usbc_config.h b/board/taeko/usbc_config.h
index 5d08a446fb..63a40b3cc1 100644
--- a/board/taeko/usbc_config.h
+++ b/board/taeko/usbc_config.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* Brya board-specific USB-C configuration */
+/* Taeko board-specific USB-C configuration */
#ifndef __CROS_EC_USBC_CONFIG_H
#define __CROS_EC_USBC_CONFIG_H