summaryrefslogtreecommitdiff
path: root/common/lb_common.c
diff options
context:
space:
mode:
authorVic Yang <victoryang@chromium.org>2014-10-20 14:15:01 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-10-22 00:30:46 +0000
commit7198d0303c19291c6f4925fe19c54c6627dd4b4d (patch)
treef15f82962c58743d0a4f5211da1fa3c381ca206a /common/lb_common.c
parent00551f7331119b0dbde124c01810daeb9dcdd665 (diff)
downloadchrome-ec-7198d0303c19291c6f4925fe19c54c6627dd4b4d.tar.gz
ryu: enable lightbar on P2 boards
Ryu uses the same LEDs as Samus, so let's use the same brightness values for them. Also, increase the stack size for console task so that 'lightbar' command doesn't cause stack overflow. BRANCH=None BUG=chrome-os-partner:32203 TEST=See lightbar in action on Ryu. Change-Id: I89b61f6df2751c9dd6b40f9e374f01e1b0dfd504 Signed-off-by: Vic Yang <victoryang@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/224426 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
Diffstat (limited to 'common/lb_common.c')
-rw-r--r--common/lb_common.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/common/lb_common.c b/common/lb_common.c
index 41617f1dff..6db3d9d445 100644
--- a/common/lb_common.c
+++ b/common/lb_common.c
@@ -62,7 +62,7 @@ static inline uint8_t controller_read(int ctrl_num, uint8_t reg)
#define MAX_GREEN 0x30
#define MAX_BLUE 0x67
#endif
-#ifdef BOARD_SAMUS
+#if defined(BOARD_SAMUS) || defined(BOARD_RYU_P2)
/* Samus uses completely different LEDs, so the numbers are different */
#define MAX_RED 0x4f
#define MAX_GREEN 0x55
@@ -120,6 +120,9 @@ static const uint8_t led_to_isc[] = { 0x18, 0x15, 0x18, 0x15 };
#ifdef BOARD_SAMUS
static const uint8_t led_to_isc[] = { 0x15, 0x18, 0x15, 0x18 };
#endif
+#ifdef BOARD_RYU_P2
+static const uint8_t led_to_isc[] = { 0x18, 0x15, 0x18, 0x15 };
+#endif
#ifdef BOARD_HOST
/* For testing only */
static const uint8_t led_to_isc[] = { 0x15, 0x18, 0x15, 0x18 };