1/* SPDX-License-Identifier: BSD-3-Clause */
2/*
3 * Copyright (c) 2020, MIPI Alliance, Inc.
4 *
5 * Author: Nicolas Pitre <npitre@baylibre.com>
6 *
7 * Common DCT related stuff
8 */
9
10#ifndef DCT_H
11#define DCT_H
12
13void i3c_hci_dct_get_val(struct i3c_hci *hci, unsigned int dct_idx,
14			 u64 *pid, unsigned int *dcr, unsigned int *bcr);
15
16#endif
17