summaryrefslogtreecommitdiff
path: root/zephyr/program/myst/myst/src/ppc_config.c
blob: a16e38a25d511ab0ea691905bdad321a946ffb9d (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
25
26
27
28
29
/* Copyright 2023 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* Myst board-specific PPC code */

#include "driver/ppc/aoz1380_public.h"
#include "driver/ppc/nx20p348x.h"
#include "usbc_ppc.h"

#include <zephyr/drivers/gpio.h>

#define CPRINTSUSB(format, args...) cprints(CC_USBCHARGE, format, ##args)
#define CPRINTFUSB(format, args...) cprintf(CC_USBCHARGE, format, ##args)

void ppc_interrupt(enum gpio_signal signal)
{
	switch (signal) {
	case GPIO_USB_C0_PPC_INT_ODL:
		break;

	case GPIO_USB_C1_PPC_INT_ODL:
		break;

	default:
		break;
	}
}