aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/octopus/variants/casta/variant.c
diff options
context:
space:
mode:
authorEdward O'Callaghan <quasisec@google.com>2020-02-21 14:58:43 +1100
committerEdward O'Callaghan <quasisec@chromium.org>2020-03-04 02:11:42 +0000
commitc6ab2ffaa06182803e9df59060faa34032fdd62e (patch)
tree15051b046757727efb888a2d8a067303a4db81f6 /src/mainboard/google/octopus/variants/casta/variant.c
parent8187f11d1a3b21a4cf38f4560f9c9921deb06757 (diff)
mainboard/google/octopus: Migrate onto SKU ID helpers
Leverage the common sku id space helper encoders and set the sku id max to 0xff for legacy to ensure we behave the same. BUG=b:149348474 BRANCH=none TEST=tested on hatch Change-Id: I60a37a5f9659b8df4018872956f95e07a3506440 Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39035 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/mainboard/google/octopus/variants/casta/variant.c')
-rw-r--r--src/mainboard/google/octopus/variants/casta/variant.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mainboard/google/octopus/variants/casta/variant.c b/src/mainboard/google/octopus/variants/casta/variant.c
index 12c8dd747b..4b1e42d9c3 100644
--- a/src/mainboard/google/octopus/variants/casta/variant.c
+++ b/src/mainboard/google/octopus/variants/casta/variant.c
@@ -13,6 +13,7 @@
* GNU General Public License for more details.
*/
+#include <ec/google/chromeec/ec.h>
#include <baseboard/variants.h>
#include <sar.h>
@@ -21,7 +22,7 @@
const char *get_wifi_sar_cbfs_filename(void)
{
const char *filename = NULL;
- uint32_t sku_id = get_board_sku();
+ uint32_t sku_id = google_chromeec_get_board_sku();
if (sku_id == 2)
filename = "wifi_sar-bluebird.hex";
@@ -31,7 +32,7 @@ const char *get_wifi_sar_cbfs_filename(void)
bool variant_ext_usb_status(unsigned int port_type, unsigned int port_id)
{
- uint32_t sku_id = get_board_sku();
+ uint32_t sku_id = google_chromeec_get_board_sku();
if (sku_id == 2 && port_id == RIGHT_USB_C_PORT_ID)
return false;