summaryrefslogtreecommitdiff
path: root/zephyr/shim/src/usba.c
blob: a7360a9ddb0aa90836c90972391d2ba9c6649ee9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Copyright 2022 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#define DT_DRV_COMPAT cros_ec_usba_port_enable_pins

#include "hooks.h"

#include <zephyr/devicetree.h>

#define PIN(node_id, prop, idx) \
	GPIO_SIGNAL(DT_PHANDLE_BY_IDX(node_id, prop, idx)),

BUILD_ASSERT(DT_NUM_INST_STATUS_OKAY(DT_DRV_COMPAT) > 0,
	     "No compatible USBA Port Enable instance found");

#define USBA_ENABLE_PINS(inst) DT_INST_FOREACH_PROP_ELEM(inst, enable_pins, PIN)

#if !IS_ENABLED(CONFIG_PLATFORM_EC_USB_PORT_ENABLE_DYNAMIC)
const
#endif
	int usb_port_enable[] = { DT_INST_FOREACH_STATUS_OKAY(
		USBA_ENABLE_PINS) };