summaryrefslogtreecommitdiff
path: root/test/usb_prl.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/usb_prl.c')
-rw-r--r--test/usb_prl.c39
1 files changed, 19 insertions, 20 deletions
diff --git a/test/usb_prl.c b/test/usb_prl.c
index 3ef3450649..9b4c956649 100644
--- a/test/usb_prl.c
+++ b/test/usb_prl.c
@@ -1,4 +1,4 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
@@ -34,14 +34,14 @@ const struct tcpc_config_t tcpc_config[CONFIG_USB_PD_PORT_MAX_COUNT] = {
static enum pd_power_role get_partner_power_role(int port)
{
- return pd_get_power_role(port) == PD_ROLE_SINK ?
- PD_ROLE_SOURCE : PD_ROLE_SINK;
+ return pd_get_power_role(port) == PD_ROLE_SINK ? PD_ROLE_SOURCE :
+ PD_ROLE_SINK;
}
static enum pd_data_role get_partner_data_role(int port)
{
- return pd_get_data_role(port) == PD_ROLE_UFP ?
- PD_ROLE_DFP : PD_ROLE_UFP;
+ return pd_get_data_role(port) == PD_ROLE_UFP ? PD_ROLE_DFP :
+ PD_ROLE_UFP;
}
static void enable_prl(int port, int en)
@@ -50,7 +50,7 @@ static void enable_prl(int port, int en)
mock_tc_port[port].pd_enable = en;
- task_wait_event(10*MSEC);
+ task_wait_event(10 * MSEC);
prl_set_rev(port, TCPCI_MSG_SOP, mock_tc_port[port].rev);
}
@@ -59,16 +59,16 @@ static int test_receive_control_msg(void)
{
int port = PORT0;
uint16_t header = PD_HEADER(PD_CTRL_DR_SWAP,
- get_partner_power_role(port),
- get_partner_data_role(port),
- mock_tc_port[port].msg_rx_id,
- 0, mock_tc_port[port].rev, 0);
+ get_partner_power_role(port),
+ get_partner_data_role(port),
+ mock_tc_port[port].msg_rx_id, 0,
+ mock_tc_port[port].rev, 0);
/* Set up the message to be received. */
mock_tcpm_rx_msg(port, header, 0, NULL);
/* Process the message. */
- task_wait_event(10*MSEC);
+ task_wait_event(10 * MSEC);
/* Check results. */
TEST_NE(mock_pe_port[port].mock_pe_message_received, 0, "%d");
@@ -94,7 +94,7 @@ static int test_send_control_msg(void)
/* Simulate the TX complete that the PD_INT handler would signal */
pd_transmit_complete(port, TCPC_TX_COMPLETE_SUCCESS);
- task_wait_event(10*MSEC);
+ task_wait_event(10 * MSEC);
/* Check results. */
TEST_NE(mock_pe_port[port].mock_pe_message_sent, 0, "%d");
@@ -111,16 +111,16 @@ static int test_discard_queued_tx_when_rx_happens(void)
{
int port = PORT0;
uint16_t header = PD_HEADER(PD_CTRL_DR_SWAP,
- get_partner_power_role(port),
- get_partner_data_role(port),
- mock_tc_port[port].msg_rx_id,
- 0, mock_tc_port[port].rev, 0);
+ get_partner_power_role(port),
+ get_partner_data_role(port),
+ mock_tc_port[port].msg_rx_id, 0,
+ mock_tc_port[port].rev, 0);
uint8_t *buf = tx_emsg[port].buf;
uint8_t len = 8;
uint8_t i = 0;
/* Set up the message to be sent. */
- for (i = 0 ; i < len ; i++)
+ for (i = 0; i < len; i++)
buf[i] = (uint8_t)i;
tx_emsg[port].len = len;
@@ -130,7 +130,7 @@ static int test_discard_queued_tx_when_rx_happens(void)
mock_tcpm_rx_msg(port, header, 0, NULL);
/* Process the message. */
- task_wait_event(10*MSEC);
+ task_wait_event(10 * MSEC);
/* Check results. Source should have discarded its message queued up
* to TX, and should have received the message from the sink.
@@ -166,14 +166,13 @@ void after_test(void)
enable_prl(PORT0, 0);
}
-void run_test(int argc, char **argv)
+void run_test(int argc, const char **argv)
{
RUN_TEST(test_receive_control_msg);
RUN_TEST(test_send_control_msg);
RUN_TEST(test_discard_queued_tx_when_rx_happens);
/* TODO add tests here */
-
/* Do basic state machine validity checks last. */
RUN_TEST(test_prl_no_parent_cycles);
RUN_TEST(test_prl_all_states_named);