aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/intel/usb4/retimer/chip.h
blob: 46bd77ab94a150580097eb93459cd3c883c6958e (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
/* SPDX-License-Identifier: GPL-2.0-or-later */

#ifndef __DRIVERS_INTEL_USB4_RETIMER_H__
#define __DRIVERS_INTEL_USB4_RETIMER_H__

#include <acpi/acpi_device.h>
#include <acpi/acpi.h>
#include <acpi/acpi_pld.h>

#define DFP_NUM_MAX	2

struct drivers_intel_usb4_retimer_config {
	/* Downstream facing port(DFP) */
	struct {
		/* GPIO used to control power of retimer device */
		struct acpi_gpio power_gpio;
		/* _PLD setting */
		struct acpi_pld_group group;
		/* Type-C port associated with retimer */
		DEVTREE_CONST struct device *typec_port;
	} dfp[DFP_NUM_MAX];
};

#endif /* __DRIVERS_INTEL_USB4_RETIMER_H__ */